aboutsummaryrefslogtreecommitdiff
path: root/src/target/cortex_a.c
diff options
context:
space:
mode:
authorPatrick Stewart <patstew@gmail.com>2015-12-06 00:18:33 +0100
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2015-12-29 12:35:04 +0000
commit67f24e67347329cb3cd2f72aa84308e0b978cdc5 (patch)
tree08925593a35b4de8277ed6210ac1804b70cb6f02 /src/target/cortex_a.c
parentc560d9d31b3f46677509246efb2d01a8834944f8 (diff)
cortex_m: Select an AP when accessing the DAP
Prepare to support multiple cortex-m cores on one DAP. Uses mem_ap_sel_* functions and removes mem_ap_* functions. Adds a new debug_ap parameter to the cortex_m (currently set to zero as in existing code). Change-Id: I6926029d1e7bf44a42d453d1aff349bda824ba72 Signed-off-by: Patrick Stewart <patstew@gmail.com> Reviewed-on: http://openocd.zylin.com/2983 Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de> Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'src/target/cortex_a.c')
-rw-r--r--src/target/cortex_a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/cortex_a.c b/src/target/cortex_a.c
index 86bf757e..410b13f5 100644
--- a/src/target/cortex_a.c
+++ b/src/target/cortex_a.c
@@ -2938,7 +2938,7 @@ static int cortex_a_examine_first(struct target *target)
/* We do one extra read to ensure DAP is configured,
* we call ahbap_debugport_init(swjdp) instead
*/
- retval = ahbap_debugport_init(swjdp);
+ retval = ahbap_debugport_init(swjdp, 0);
if (retval != ERROR_OK)
return retval;