From: Felipe Balbi Date: Wed, 18 Mar 2015 20:23:06 +0000 (-0500) Subject: target: am437x: fix DebugSS DAP ID X-Git-Tag: v0.9.0-rc1~58 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=0c20f1ff3f50f0bc6e225c16460e5fbbb58e82a7 target: am437x: fix DebugSS DAP ID Main DAP (where Cortex A9 sits) ID is actually 0x46b6902f. Fix it. Change-Id: Ifa3335186bcf60d264d4ecea477bfe2f5ca10ead Signed-off-by: Felipe Balbi Reviewed-on: http://openocd.zylin.com/2619 Tested-by: jenkins Reviewed-by: Tom Rini Reviewed-by: Paul Fertser --- diff --git a/tcl/target/am437x.cfg b/tcl/target/am437x.cfg index 75c13e4b87..8b51f99679 100644 --- a/tcl/target/am437x.cfg +++ b/tcl/target/am437x.cfg @@ -456,7 +456,7 @@ jtag configure $_CHIPNAME.m3_dap -event tap-enable "icepick_d_tapenable $_CHIPNA if { [info exists DAP_TAPID] } { set _DAP_TAPID $DAP_TAPID } else { - set _DAP_TAPID 0x4b6b902f + set _DAP_TAPID 0x46b6902f } jtag newtap $_CHIPNAME dap -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_DAP_TAPID -disable jtag configure $_CHIPNAME.dap -event tap-enable "icepick_d_tapenable $_CHIPNAME.jrc 12"