2009-01-19 22:29:46 -06:00
|
|
|
######################################
|
2008-03-03 14:43:38 -06:00
|
|
|
# Target: Atmel AT91SAM9260
|
|
|
|
######################################
|
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
2009-01-19 22:29:46 -06:00
|
|
|
set _CHIPNAME at91sam9260
|
|
|
|
}
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
if { [info exists ENDIAN] } {
|
|
|
|
set _ENDIAN $ENDIAN
|
|
|
|
} else {
|
2009-01-19 22:29:46 -06:00
|
|
|
set _ENDIAN little
|
|
|
|
}
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2009-01-19 22:29:46 -06:00
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
# force an error till we get a good number
|
|
|
|
set _CPUTAPID 0x0792603f
|
|
|
|
}
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2009-08-21 06:23:24 -05:00
|
|
|
reset_config trst_and_srst separate trst_push_pull srst_open_drain
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2009-01-19 22:29:46 -06:00
|
|
|
#
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2010-03-15 10:41:30 -05:00
|
|
|
adapter_nsrst_delay 300
|
2009-08-25 02:12:57 -05:00
|
|
|
jtag_ntrst_delay 200
|
2009-08-21 06:23:24 -05:00
|
|
|
|
|
|
|
jtag_rclk 3
|
2008-10-31 01:57:42 -05:00
|
|
|
|
2009-01-19 22:29:46 -06:00
|
|
|
######################
|
|
|
|
# Target configuration
|
|
|
|
######################
|
2008-07-28 01:08:05 -05:00
|
|
|
|
2009-09-04 00:17:03 -05:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2009-01-19 22:29:46 -06:00
|
|
|
target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm926ejs
|
2008-03-03 14:43:38 -06:00
|
|
|
|
2009-01-19 22:29:46 -06:00
|
|
|
# Internal sram1 memory
|
2009-11-08 10:52:40 -06:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x00300000 -work-area-size 0x1000 -work-area-backup 1
|
2008-03-03 14:43:38 -06:00
|
|
|
|
|
|
|
|