2008-11-30 22:25:43 +00:00
|
|
|
# -*- tcl -*-
|
|
|
|
# Target configuration for the Samsung s3c6410 system on chip
|
|
|
|
# Tested on a SMDK6410
|
|
|
|
# Processor : ARM1176
|
|
|
|
# Info: JTAG device found: 0x0032409d (Manufacturer: 0x04e, Part: 0x0324, Version: 0x0)
|
|
|
|
# [Duane Ellis 27/nov/2008: Above 0x0032409d appears to be copy/paste from other places]
|
|
|
|
# [and I do not believe it to be accurate, hence the 0xffffffff below]
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _CHIPNAME s3c6410
|
|
|
|
}
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists ENDIAN] } {
|
|
|
|
set _ENDIAN $ENDIAN
|
|
|
|
} else {
|
2008-11-30 22:25:43 +00:00
|
|
|
# this defaults to a bigendian
|
|
|
|
set _ENDIAN little
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists BSTAPID ] } {
|
|
|
|
set _BSTAPID $BSTAPID
|
|
|
|
} else {
|
|
|
|
# force an error till we get a good number
|
2008-12-10 11:44:45 +00:00
|
|
|
set _BSTAPID 0x2b900f0f
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
# force an error till we get a good number
|
2008-12-10 11:44:45 +00:00
|
|
|
set _CPUTAPID 0x07b76f0f
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#jtag scan chain
|
|
|
|
|
|
|
|
# I think the "unknown" is the boundry scan tap
|
|
|
|
jtag newtap $_CHIPNAME unknown -irlen 4 -ircapture 0x1 -irmask 0xe -expected-id $_BSTAPID
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1 -irmask 0x1f -expected-id $_CPUTAPID
|
|
|
|
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2008-12-10 11:44:45 +00:00
|
|
|
target create $_TARGETNAME arm11 -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm1176
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
jtag_nsrst_delay 500
|
|
|
|
jtag_ntrst_delay 500
|
|
|
|
|
|
|
|
#reset configuration
|
|
|
|
reset_config trst_and_srst
|