aboutsummaryrefslogtreecommitdiff
path: root/src/target/cortex_a.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/cortex_a.c')
-rw-r--r--src/target/cortex_a.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/target/cortex_a.c b/src/target/cortex_a.c
index f9c92736..39e59ae7 100644
--- a/src/target/cortex_a.c
+++ b/src/target/cortex_a.c
@@ -2754,10 +2754,12 @@ static int cortex_a_write_memory(struct target *target, uint32_t address,
if (retval != ERROR_OK)
return retval;
}
- retval = cortex_a_write_apb_ab_memory(target, address, size, count, buffer);
+ /* memory writes bypass the caches, must flush before writing */
armv7a_cache_auto_flush_on_write(target, address, size * count);
+ retval = cortex_a_write_apb_ab_memory(target, address, size, count, buffer);
+
return retval;
}