6d2e6354e52aab6eba6b0619c30bf6626dcd0afb
[fw/openocd] / tcl / board / tocoding_poplar.cfg
1 #
2 # board configuration for Tocoding Poplar
3 #
4
5 # board does not feature anything but JTAG
6 transport select jtag
7
8 adapter speed 10000
9
10 # SRST-only reset configuration
11 reset_config srst_only srst_push_pull
12
13 source [find target/hi3798.cfg]
14
15 # make sure the default target is the boot core
16 targets ${_TARGETNAME}0
17
18 proc core_up { args } {
19         global _TARGETNAME
20
21         # examine remaining cores
22         foreach _core [set args] {
23                 ${_TARGETNAME}$_core arp_examine
24         }
25 }