tcl/target: add SPDX tag
[fw/openocd] / tcl / target / at91sam9.cfg
1 # SPDX-License-Identifier: GPL-2.0-or-later
2
3 ######################################
4 # Target:    Atmel AT91SAM9
5 ######################################
6
7 if { [info exists AT91_CHIPNAME] } {
8         set _CHIPNAME $AT91_CHIPNAME
9 } else {
10         error "you must specify a chip name"
11 }
12
13 if { [info exists ENDIAN] } {
14         set _ENDIAN $ENDIAN
15 } else {
16         set _ENDIAN little
17 }
18
19 if { [info exists CPUTAPID] } {
20         set _CPUTAPID $CPUTAPID
21 } else {
22         set _CPUTAPID 0x0792603f
23 }
24
25 reset_config trst_and_srst separate trst_push_pull srst_open_drain
26
27 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
28
29 adapter srst delay 300
30 jtag_ntrst_delay 200
31
32 adapter speed 3
33
34 ######################
35 # Target configuration
36 ######################
37
38 set _TARGETNAME $_CHIPNAME.cpu
39 target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME