aboutsummaryrefslogtreecommitdiff
path: root/src/target/armv7a.h
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2015-12-06 01:34:09 +0100
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2015-12-29 20:28:33 +0000
commit557aa6dc5c596f2475d41c62e5a62c53d17dd421 (patch)
treec64192f7d812cbb32fd521cfbe4fa4b13f89712e /src/target/armv7a.h
parentbeb843d28dd1dcf5ef4f761128bb2639913bfcfe (diff)
downloadriscv-openocd-557aa6dc5c596f2475d41c62e5a62c53d17dd421.zip
riscv-openocd-557aa6dc5c596f2475d41c62e5a62c53d17dd421.tar.gz
riscv-openocd-557aa6dc5c596f2475d41c62e5a62c53d17dd421.tar.bz2
arm_adi_v5: Convert the AP references from numbers to pointers
Change the debug_ap and memory_ap fields of the cortex_a target and the debug_ap field of the cortex_m target to be pointers to the struct adiv5_ap instead of AP numbers in some known DAP. This reduces the dependency on the DAP struct in the targets and enables MEM-AP accesses to take the relevant AP as parameter. Change-Id: I39d7b134d78000564b7eec5bff464adf0ef89147 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/3147 Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
Diffstat (limited to 'src/target/armv7a.h')
-rw-r--r--src/target/armv7a.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index cb7eb01..5ca4eb8 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -107,8 +107,8 @@ struct armv7a_common {
/* Core Debug Unit */
struct arm_dpm dpm;
uint32_t debug_base;
- uint8_t debug_ap;
- uint8_t memory_ap;
+ struct adiv5_ap *debug_ap;
+ struct adiv5_ap *memory_ap;
bool memory_ap_available;
/* mdir */
uint8_t multi_processor_system;