14 lines
373 B
INI
14 lines
373 B
INI
# Copyright (c) 2023 HPMicro
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
set _CHIP hpm6880
|
|
set _CPUTAPID 0x1000563D
|
|
jtag newtap $_CHIP cpu -irlen 5 -expected-id $_CPUTAPID
|
|
|
|
set _TARGET0 $_CHIP.cpu0
|
|
target create $_TARGET0 riscv -chain-position $_CHIP.cpu -coreid 0
|
|
|
|
$_TARGET0 configure -work-area-phys 0x00000000 -work-area-size 0x20000 -work-area-backup 0
|
|
|
|
targets $_TARGET0
|