tcl/board: add SPDX tag
[fw/openocd] / tcl / board / sifive-e31arty.cfg
1 # SPDX-License-Identifier: GPL-2.0-or-later
2
3 #
4 # Be sure you include the speed and interface before this file
5 # Example:
6 # -c "adapter speed 5000" -f "interface/ftdi/olimex-arm-usb-tiny-h.cfg" -f "board/sifive-e31arty.cfg"
7
8 set _CHIPNAME riscv
9 jtag newtap $_CHIPNAME cpu -irlen 5 -expected-id 0x20000001
10
11 set _TARGETNAME $_CHIPNAME.cpu
12
13 target create $_TARGETNAME.0 riscv -chain-position $_TARGETNAME
14 $_TARGETNAME.0 configure -work-area-phys 0x80000000 -work-area-size 10000 -work-area-backup 1
15
16 flash bank spi0 fespi 0x40000000 0 0 0 $_TARGETNAME.0 0x20004000
17 init
18 if {[ info exists pulse_srst]} {
19   ftdi set_signal nSRST 0
20   ftdi set_signal nSRST z
21 }
22 halt
23 flash protect 0 64 last off
24 echo "Ready for Remote Connections"