aboutsummaryrefslogtreecommitdiff
path: root/src/target/armv7m.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/armv7m.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/armv7m.h')
-rw-r--r--src/target/armv7m.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/armv7m.h b/src/target/armv7m.h
index a012fa2..65a2ef0 100644
--- a/src/target/armv7m.h
+++ b/src/target/armv7m.h
@@ -148,7 +148,7 @@ struct armv7m_common {
int exception_number;
/* AP this processor is connected to in the DAP */
- uint8_t debug_ap;
+ struct adiv5_ap *debug_ap;
int fp_feature;
uint32_t demcr;