2009-08-18 10:27:24 +00:00
|
|
|
# TI/Luminary Stellaris lm3s6965
|
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 lm3s6965
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2008-12-03 12:02:46 +00:00
|
|
|
set _CPUTAPID 0x3ba00477
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2008-07-04 17:33:46 +00:00
|
|
|
# jtag speed
|
|
|
|
jtag_khz 500
|
|
|
|
|
2008-04-21 08:52:52 +00:00
|
|
|
jtag_nsrst_delay 100
|
|
|
|
jtag_ntrst_delay 100
|
2008-04-09 07:31:24 +00:00
|
|
|
|
2008-04-21 08:52:52 +00:00
|
|
|
#LM3S6965 Evaluation Board has only srst
|
|
|
|
reset_config srst_only
|
2008-04-09 07:31:24 +00:00
|
|
|
|
|
|
|
#jtag scan chain
|
2008-11-30 22:25:43 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 1 -irmask 0xf -expected-id $_CPUTAPID
|
|
|
|
|
2008-04-28 20:05:17 +00:00
|
|
|
# the luminary variant causes a software reset rather than asserting SRST
|
|
|
|
# this stops the debug registers from being cleared
|
|
|
|
# this will be fixed in later revisions of silicon
|
2009-08-18 10:27:24 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
|
|
|
target create $_TARGETNAME cortex_m3 -chain-position $_CHIPNAME.cpu -variant lm3s
|
2008-04-09 07:31:24 +00:00
|
|
|
|
2009-08-18 10:27:24 +00:00
|
|
|
# 8k working area at base of ram, not backed up
|
|
|
|
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size 0x2000
|
2008-04-09 07:31:24 +00:00
|
|
|
|
|
|
|
#flash configuration
|
2009-11-18 10:15:52 +00:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
|
|
|
flash bank $_FLASHNAME stellaris 0 0 0 0 $_TARGETNAME
|