X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Farm7_9_common.h;h=5821e132bdc2f5f1f03d0861da0d42e76759a9af;hb=6e32887f917b8e5a870e2d485139820ee5161b4f;hp=85e5ac045657b2c824c6a89c789bee5daa011f8c;hpb=5c2f920cc792d40f449cf596b5729671d0414fa1;p=openocd.git diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h index 85e5ac0456..5821e132bd 100644 --- a/src/target/arm7_9_common.h +++ b/src/target/arm7_9_common.h @@ -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);