2021-04-06 13:08:11 -05:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Cadence virtual debug interface
|
|
|
|
# ARM Cortex M
|
|
|
|
|
2024-01-09 07:57:29 -06:00
|
|
|
if {![info exists CHIPNAME]} {
|
|
|
|
set CHIPNAME cortex_m
|
2021-04-06 13:08:11 -05:00
|
|
|
}
|
2024-01-09 07:57:29 -06:00
|
|
|
set _TARGETNAME $CHIPNAME.cpu
|
|
|
|
set _DAPNAME $CHIPNAME.dap
|
2021-04-06 13:08:11 -05:00
|
|
|
|
2024-01-09 07:57:29 -06:00
|
|
|
dap create $_DAPNAME -chain-position $_TARGETNAME
|
2021-04-06 13:08:11 -05:00
|
|
|
|
2024-01-09 07:57:29 -06:00
|
|
|
target create $_TARGETNAME cortex_m -dap $_DAPNAME
|