forked from auracaster/openocd
- add board and device config files - add interface config file for hpmicro evk boards Change-Id: I8afb0b734b1064d71c4af3c118c7777d0ead9e6b Signed-off-by: Ryan QIAN <jianghao.qian@hpmicro.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8697 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
25 lines
671 B
INI
25 lines
671 B
INI
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) 2021 HPMicro
|
|
#
|
|
# datasheet: https://www.hpmicro.com/Public/Uploads/uploadfile/files/20251124/HPM67006400DSV27.pdf
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
set _CHIP $CHIPNAME
|
|
} else {
|
|
set _CHIP hpm6750
|
|
}
|
|
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
|
|
|
|
source [find target/hpmicro/hpm_common.cfg]
|
|
source [find target/hpmicro/hpm_common_csr.cfg]
|
|
|
|
proc reset_soc {} {
|
|
sba_write_mem 0xF40C001C 24000000
|
|
}
|