2009-06-29 20:04:08 +00:00
|
|
|
# PXA255 chip ... originally from Intel, PXA line was sold to Marvell.
|
|
|
|
# This chip is now at end-of-life. Final orders have been taken.
|
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
|
|
|
set _CHIPNAME pxa255
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists ENDIAN] } {
|
|
|
|
set _ENDIAN $ENDIAN
|
|
|
|
} else {
|
|
|
|
set _ENDIAN little
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2009-06-29 20:04:08 +00:00
|
|
|
set _CPUTAPID 0x69264013
|
2008-10-31 06:57:42 +00:00
|
|
|
}
|
2008-09-01 07:20:21 +00:00
|
|
|
|
2009-06-29 20:04:08 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1e -irmask 0x1f -expected-id $_CPUTAPID
|
2008-03-03 20:43:38 +00:00
|
|
|
|
2009-06-29 20:04:08 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
|
|
|
target create $_TARGETNAME xscale -endian $_ENDIAN -chain-position $_TARGETNAME
|
|
|
|
debug_level 3
|