mirror of
https://git.code.sf.net/p/openocd/code
synced 2025-04-03 08:45:27 +00:00
BL602, BL702 and BL702L series of chips are sharing same architecture, so they all need same software reset mechanism as well. Only difference (in terms of configuration needed for JTAG) are TAP ID, workarea address and size. This is addressed by creating bl602_common.cfg tcl file, which contains all those common stuff between the chips. The script is prefixed by bl602, as this was first *publicly* available chip from Bouffalo with this architecture. This patch also improves reset mechanism. Previous reset mechanism did not worked properly when slower JTAG adapter was used (it attached too late). New reset mechanism uses various methods to keep CPU in BootROM, until the JTAG adapter does not attach again after reset. Additionally, we trigger SW Reset by directly using DMI commands to write to register with system bus method, to avoid getting error about unsuccessful write. The new method works on both FT232H (8MHz JTAG clock) and unnamed CMSIS-DAP dongle (1.5MHz JTAG clock). Change-Id: I5be3694927793fd3f64c9ed4ee6ded2db0d25cae Signed-off-by: Marek Kraus <gamelaster@outlook.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8593 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
48 lines
1.1 KiB
INI
48 lines
1.1 KiB
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#
|
|
# Bouffalo Labs BL702L and BL704L target
|
|
#
|
|
# https://en.bouffalolab.com/product/?type=detail&id=26
|
|
#
|
|
# Default JTAG pins: (if not changed by eFuse configuration)
|
|
# TMS - GPIO0
|
|
# TDI - GPIO1
|
|
# TCK - GPIO2
|
|
# TDO - GPIO7
|
|
#
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
set BL602_CHIPNAME $CHIPNAME
|
|
} else {
|
|
set BL602_CHIPNAME bl702l
|
|
}
|
|
|
|
set CPUTAPID 0x20000e05
|
|
|
|
# For work-area we use beginning of OCRAM, since BL702L have only ITCM, which can be taken
|
|
# by L1 cache and XIP during runtime.
|
|
set WORKAREAADDR 0x42020000
|
|
set WORKAREASIZE 0x10000
|
|
|
|
source [find target/bl602_common.cfg]
|
|
|
|
# JTAG reset is broken. Read comment of bl602_sw_reset function for more information
|
|
# On BL702L, we are forcing boot into ISP mode, so chip stays in BootROM until JTAG re-attach
|
|
$_TARGETNAME configure -event reset-assert {
|
|
halt
|
|
|
|
# Restore clocks to defaults
|
|
bl602_restore_clock_defaults
|
|
|
|
# In HBN_RSV2, set HBN_RELEASE_CORE to HBN_RELEASE_CORE_FLAG (4)
|
|
# and HBN_USER_BOOT_SEL to 1 (ISP)
|
|
mww 0x4000f108 0x44000000
|
|
|
|
# Perform software reset
|
|
bl602_sw_reset
|
|
|
|
# Reset HBN_RSV2 so BootROM will not force ISP mode again
|
|
mww 0x4000f108 0x00000000
|
|
}
|