Remove annoying end-of-line whitespace from tcl/* files
[fw/openocd] / tcl / target / pxa255.cfg
1 # PXA255 chip ... originally from Intel, PXA line was sold to Marvell.
2 #  This chip is now at end-of-life.  Final orders have been taken.
3
4 if { [info exists CHIPNAME] } {
5    set  _CHIPNAME $CHIPNAME
6 } else {
7    set  _CHIPNAME pxa255
8 }
9
10 if { [info exists ENDIAN] } {
11    set  _ENDIAN $ENDIAN
12 } else {
13    set  _ENDIAN little
14 }
15
16 if { [info exists CPUTAPID ] } {
17    set _CPUTAPID $CPUTAPID
18 } else {
19    set _CPUTAPID 0x69264013
20 }
21
22 jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1e -irmask 0x1f -expected-id $_CPUTAPID
23
24 set _TARGETNAME $_CHIPNAME.cpu
25 target create $_TARGETNAME xscale -endian $_ENDIAN -chain-position $_TARGETNAME
26 debug_level 3