tcl/interface: add SPDX tag
[fw/openocd] / tcl / interface / ftdi / xds100v2.cfg
1 # SPDX-License-Identifier: GPL-2.0-or-later
2
3 #
4 # Texas Instruments XDS100v2
5 #
6 # http://processors.wiki.ti.com/index.php/XDS100#XDS100v2_Features
7 #
8 # Detailed documentation is available only as CPLD verilog source code
9 # to the registered TI users.
10 #
11
12 adapter driver ftdi
13 ftdi vid_pid 0x0403 0xa6d0 0x0403 0x6010
14
15 ftdi layout_init 0x0038 0x597b
16
17 #  8000 z - unused
18 #  4000 0 > CPLD loopback          (all target side pins high-Z)
19 #  2000 z < !( cable connected )   (open drain on CPLD side for $reasons)
20 #  1000 0 > EMU1_oe
21 #
22 #   800 0 > PWR_RST = clear power-loss flag on rising edge
23 #   400 z < !( power-loss flag )
24 #   200 z < nSRST
25 #   100 0 > nSRST_oe
26 #
27 #    80 z < RTCK
28 #    40 0 > EMU0_oe
29 #    20 1 > EMU_EN
30 #    10 1 > nTRST
31 #
32 #     8 1 > TMS
33 #     4 z < TDO
34 #     2 0 > TDI
35 #     1 0 > TCK
36 #
37 # As long as the power-loss flag is set, all target-side pins are
38 # high-Z except the EMU-pins for which the opposite holds unless
39 # EMU_EN is high.
40 #
41 # To use wait-in-reset, drive EMU0 low at power-on reset. If the
42 # target normally reuses EMU0 for other purposes, clear EMU_EN to
43 # keep the EMU pins high-Z until the target is power-cycled.
44 #
45 # The LED only turns off at USB suspend, which is also the only way to
46 # set the power-loss flag manually. (Can be done in software e.g. by
47 # changing the USB configuration to zero.)
48 #
49
50 ftdi layout_signal nTRST -data 0x0010
51 ftdi layout_signal nSRST -oe 0x0100
52 ftdi layout_signal EMU_EN -data 0x0020
53 ftdi layout_signal EMU0 -oe 0x0040
54 ftdi layout_signal EMU1 -oe 0x1000
55 ftdi layout_signal PWR_RST -data 0x0800
56 ftdi layout_signal LOOPBACK -data 0x4000
57
58 echo "\nInfo : to use this adapter you MUST add ``init; ftdi set_signal PWR_RST 1; jtag arp_init'' to the end of your config file!\n"
59 # note: rising edge on PWR_RST is also needed after power-cycling the
60 # target