target|board: Add Intel (Altera) Arria 10 target and related board
[openocd.git] / tcl / board / tocoding_poplar.cfg
blobfd6615605d7e117bc05df3b3defdcef0d298d9ca
2 # board configuration for Tocoding Poplar
5 # board does not feature anything but JTAG
6 transport select jtag
8 adapter_khz 10000
10 # SRST-only reset configuration
11 reset_config srst_only srst_push_pull
13 source [find tcl/target/hi3798.cfg]
15 # halt the cores when gdb attaches
16 ${_TARGETNAME}0 configure -event gdb-attach "halt"
18 # make sure the default target is the boot core
19 targets ${_TARGETNAME}0
21 proc core_up { args } {
22         global _TARGETNAME
24         # examine remaining cores
25         foreach _core [set args] {
26                 ${_TARGETNAME}$_core arp_examine
27         }