1 # script for ATMEL sam3, a CORTEX-M3 chip
28 source [find target/swj-dp.tcl]
30 if { [info exists CHIPNAME] } {
31 set _CHIPNAME $CHIPNAME
36 if { [info exists ENDIAN] } {
42 # Work-area is a space in RAM used for flash programming
44 if { [info exists WORKAREASIZE] } {
45 set _WORKAREASIZE $WORKAREASIZE
47 set _WORKAREASIZE 0x4000
51 if { [info exists CPUTAPID] } {
52 set _CPUTAPID $CPUTAPID
54 set _CPUTAPID 0x4ba00477
57 swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
59 set _TARGETNAME $_CHIPNAME.cpu
60 target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
62 # 16K is plenty, the smallest chip has this much
63 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
65 $_TARGETNAME configure -event gdb-flash-erase-start {
69 # JTAG speed should be <= F_CPU/6. F_CPU after reset is 4 MHz, so use F_JTAG = 0.5MHz
71 # Since we may be running of an RC oscilator, we crank down the speed a
72 # bit more to be on the safe side. Perhaps superstition, but if are
73 # running off a crystal, we can run closer to the limit. Note
74 # that there can be a pretty wide band where things are more or less stable.
78 adapter_nsrst_delay 100
84 # if srst is not fitted use SYSRESETREQ to
85 # perform a soft reset
86 cortex_m reset_config sysresetreq