]> git.sur5r.net Git - openocd/blobdiff - src/target/arm7_9_common.h
arm7_9: Avoid infinite loops in bulk write dispatching
[openocd] / src / target / arm7_9_common.h
index 85e5ac045657b2c824c6a89c789bee5daa011f8c..5821e132bdc2f5f1f03d0861da0d42e76759a9af 100644 (file)
@@ -119,6 +119,13 @@ struct arm7_9_common {
        void (*pre_restore_context)(struct target *target);
        /**< Callback function called before restoring the processor context */
 
+       /**
+        * Variant specific memory write function that does not dispatch to bulk_write_memory.
+        * Used as a fallback when bulk writes are unavailable, or for writing data needed to
+        * do the bulk writes.
+        */
+       int (*write_memory)(struct target *target, uint32_t address,
+                       uint32_t size, uint32_t count, const uint8_t *buffer);
        /**
         * Write target memory in multiples of 4 bytes, optimized for
         * writing large quantities of data.
@@ -160,6 +167,8 @@ int arm7_9_write_memory(struct target *target, uint32_t address,
                uint32_t size, uint32_t count, const uint8_t *buffer);
 int arm7_9_write_memory_opt(struct target *target, uint32_t address,
                uint32_t size, uint32_t count, const uint8_t *buffer);
+int arm7_9_write_memory_no_opt(struct target *target, uint32_t address,
+               uint32_t size, uint32_t count, const uint8_t *buffer);
 int arm7_9_bulk_write_memory(struct target *target, uint32_t address,
                uint32_t count, const uint8_t *buffer);