2008-10-28 17:49:22 +00:00
|
|
|
# Target configuration for the Samsung 2440 system on chip
|
2008-12-13 13:11:15 +00:00
|
|
|
# Tested on a S3C2440 Evaluation board by keesj
|
2008-10-28 17:49:22 +00:00
|
|
|
# Processor : ARM920Tid(wb) rev 0 (v4l)
|
2008-12-13 13:11:15 +00:00
|
|
|
# Info: JTAG tap: s3c2440.cpu tap/device found: 0x0032409d (Manufacturer: 0x04e, Part: 0x0324, Version: 0x0)
|
2008-11-30 22:25:43 +00:00
|
|
|
|
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 s3c2440
|
|
|
|
}
|
|
|
|
|
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 CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
# force an error till we get a good number
|
2008-12-13 13:11:15 +00:00
|
|
|
set _CPUTAPID 0x0032409d
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
2008-10-28 17:49:22 +00:00
|
|
|
|
|
|
|
#jtag scan chain
|
2008-11-30 22:25:43 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0x0f -expected-id $_CPUTAPID
|
2008-10-28 17:49:22 +00:00
|
|
|
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2008-11-30 22:25:43 +00:00
|
|
|
target create $_TARGETNAME arm920t -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm920t
|
2009-09-04 05:17:03 +00:00
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
$_TARGETNAME configure -work-area-virt 0 -work-area-phys 0x200000 -work-area-size 0x4000 -work-area-backup 1
|
2008-10-28 17:49:22 +00:00
|
|
|
|
|
|
|
#reset configuration
|
|
|
|
reset_config trst_and_srst
|
|
|
|
|