summaryrefslogtreecommitdiff
path: root/src/target/armv7a.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-01 00:49:11 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-01 00:49:11 -0800
commit5949a3b3a55d987008b63b80af42c08601babb75 (patch)
tree469bbfeb9a497f237cc309d9b0d42734b8097a3c /src/target/armv7a.h
parent563d937c3c6a7080998baa2313d66ae184b820ac (diff)
downloadopenocd+libswd-5949a3b3a55d987008b63b80af42c08601babb75.tar.gz
openocd+libswd-5949a3b3a55d987008b63b80af42c08601babb75.tar.bz2
openocd+libswd-5949a3b3a55d987008b63b80af42c08601babb75.tar.xz
openocd+libswd-5949a3b3a55d987008b63b80af42c08601babb75.zip
Cortex-A8: remove previous mcr()/mrc() methods
We don't need this code, now that the DPM code handles it. Neither do we need the ARMv7-A CP15 operations; remove their remnants too. And disable a mostly-needless diagnostic. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/armv7a.h')
-rw-r--r--src/target/armv7a.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index f843f03b..ee0d2acb 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -62,13 +62,6 @@ struct armv7a_common
/* Cache and Memory Management Unit */
struct armv4_5_mmu_common armv4_5_mmu;
- int (*read_cp15)(struct target *target,
- uint32_t op1, uint32_t op2,
- uint32_t CRn, uint32_t CRm, uint32_t *value);
- int (*write_cp15)(struct target *target,
- uint32_t op1, uint32_t op2,
- uint32_t CRn, uint32_t CRm, uint32_t value);
-
int (*examine_debug_reason)(struct target *target);
void (*post_debug_entry)(struct target *target);