2009-07-22 14:25:56 +00:00
|
|
|
# Target configuration for the Samsung 2450 system on chip
|
|
|
|
# Processor : ARM926ejs (wb) rev 0 (v4l)
|
|
|
|
# Info: JTAG tap: s3c2450.cpu tap/device found: 0x07926F0F
|
|
|
|
|
|
|
|
|
|
|
|
# FIX!!! what to use here?
|
2009-09-21 18:48:22 +00:00
|
|
|
#
|
2009-07-22 14:25:56 +00:00
|
|
|
# RCLK?
|
2009-09-21 18:48:22 +00:00
|
|
|
#
|
2010-03-15 15:37:43 +00:00
|
|
|
# adapter_khz 0
|
2009-07-22 14:25:56 +00:00
|
|
|
#
|
|
|
|
# Really low clock during reset?
|
|
|
|
#
|
2010-03-15 15:37:43 +00:00
|
|
|
# adapter_khz 1
|
2009-07-22 14:25:56 +00:00
|
|
|
|
|
|
|
if { [info exists CHIPNAME] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CHIPNAME $CHIPNAME
|
2009-07-22 14:25:56 +00:00
|
|
|
} else {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CHIPNAME s3c2450
|
2009-07-22 14:25:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists ENDIAN] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN $ENDIAN
|
2009-07-22 14:25:56 +00:00
|
|
|
} else {
|
|
|
|
# this defaults to a bigendian
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN little
|
2009-07-22 14:25:56 +00:00
|
|
|
}
|
|
|
|
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists CPUTAPID] } {
|
2009-07-22 14:25:56 +00:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x07926f0f
|
|
|
|
}
|
|
|
|
|
|
|
|
#jtag scan chain
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0xE -irmask 0x0f -expected-id $_CPUTAPID
|
|
|
|
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2014-09-08 20:11:02 +00:00
|
|
|
target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME
|
2009-07-22 14:25:56 +00:00
|
|
|
|
|
|
|
# FIX!!!!! should this really use srst_pulls_trst?
|
|
|
|
# With srst_pulls_trst "reset halt" will not reset into the
|
|
|
|
# halted mode, but rather "reset run" and then halt the target.
|
|
|
|
#
|
|
|
|
# However, without "srst_pulls_trst", then "reset halt" produces weird
|
|
|
|
# errors:
|
|
|
|
# WARNING: unknown debug reason: 0x0
|
2009-09-04 05:17:03 +00:00
|
|
|
reset_config trst_and_srst
|