tcl/board: add SPDX tag
[fw/openocd] / tcl / board / lemaker_hikey.cfg
1 # SPDX-License-Identifier: GPL-2.0-or-later
2
3 #
4 # board configuration for LeMaker Hikey
5 #
6
7 # board does not feature anything but JTAG
8 transport select jtag
9
10 # SRST-only reset configuration
11 reset_config srst_only srst_push_pull
12
13 source [find target/hi6220.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 $args {
23                 ${_TARGETNAME}$_core arp_examine
24         }
25 }