mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-08-07 08:27:02 +10:00
This change implements the support for the ARM Debug Interface v6. The DAP-level interface properly selects the DP Banks and AP address. Sample ARM configuration DAP and JTAG scripts have been updated. Change-Id: I7df87ef764bca587697c778810443649a7f46c2b Signed-off-by: Jacek Wuwer <jacekmw8@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8067 Tested-by: jenkins Reviewed-by: Ian Thompson <ianst@cadence.com> Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
14 lines
310 B
INI
14 lines
310 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Cadence virtual debug interface
|
|
# ARM Cortex M
|
|
|
|
if {![info exists CHIPNAME]} {
|
|
set CHIPNAME cortex_m
|
|
}
|
|
set _TARGETNAME $CHIPNAME.cpu
|
|
set _DAPNAME $CHIPNAME.dap
|
|
|
|
dap create $_DAPNAME -chain-position $_TARGETNAME
|
|
|
|
target create $_TARGETNAME cortex_m -dap $_DAPNAME
|