aboutsummaryrefslogtreecommitdiff
path: root/src/target/armv7a.h
diff options
context:
space:
mode:
authorMatthias Welwarsky <matthias@welwarsky.de>2015-10-07 22:38:31 +0200
committerFreddie Chopin <freddie.chopin@gmail.com>2015-11-05 22:27:36 +0000
commit411ca773f01eac35c64d48dc396138c7a314fba9 (patch)
tree5191da76191217dbc58edff068783bb8c0ac8e05 /src/target/armv7a.h
parentfad64c618025ea96be585b0900bd70c2e5a8713a (diff)
armv7a: re-read ttb information if ttbcr changes
If ttbcr is changed after the debugger has examined a target for the first time, address translations may fail. This problem does not show up with Linux because it doesn't use ttbr1, but it shows with other OS that use this feature. If the debugger connects to the target while it's in u-boot, all address translations will fail after the OS has booted and the target can not be debugged. This patch reads the ttbcr in armv7a_mmu_translate_va() and compares it a cached value. If a difference is detected, armv7a_read_ttbcr() is called to re-parse the ttb configuration and update the cache. Change-Id: I1c3adf53ea9d748a0e1e3091d9581e5c43ed64e8 Signed-off-by: Matthias Welwarsky <matthias@welwarsky.de> Reviewed-on: http://openocd.zylin.com/3005 Tested-by: jenkins Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Diffstat (limited to 'src/target/armv7a.h')
-rw-r--r--src/target/armv7a.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index 4341acae..db34ca66 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -81,6 +81,7 @@ struct armv7a_mmu_common {
int32_t ttbr1_used; /* -1 not initialized, 0 no ttbr1 1 ttbr1 used and */
uint32_t ttbr0_mask;/* masked to be used */
uint32_t os_border;
+ uint32_t ttbcr;
int (*read_physical_memory)(struct target *target, uint32_t address, uint32_t size,
uint32_t count, uint8_t *buffer);