diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-10-20 12:22:55 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-10-20 12:23:56 +0200 |
commit | 79e257a209cbb827557a752572a0b3c6d3b149c6 (patch) | |
tree | 6078b55c8fda2cbeed5641f07e39f374bb296f20 /tcl | |
parent | ad7563961104833a986a29c4a70c98078f661beb (diff) | |
download | openocd+libswd-79e257a209cbb827557a752572a0b3c6d3b149c6.tar.gz openocd+libswd-79e257a209cbb827557a752572a0b3c6d3b149c6.tar.bz2 openocd+libswd-79e257a209cbb827557a752572a0b3c6d3b149c6.tar.xz openocd+libswd-79e257a209cbb827557a752572a0b3c6d3b149c6.zip |
Added the faux flash driver and target. Used for testing.
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/target/faux.cfg | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tcl/target/faux.cfg b/tcl/target/faux.cfg new file mode 100644 index 00000000..cc09ee31 --- /dev/null +++ b/tcl/target/faux.cfg @@ -0,0 +1,29 @@ +#Script for faux target - used for testing + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME at91eb40a +} + +if { [info exists ENDIAN] } { + set _ENDIAN $ENDIAN +} else { + set _ENDIAN little +} + +if { [info exists CPUTAPID ] } { + set _CPUTAPID $CPUTAPID +} else { + set _CPUTAPID 0x00000000 +} + + +jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID + +#target configuration +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME arm7tdmi -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm7tdmi-s_r4 + +#dummy flash driver +flash bank faux 0x01000000 0x200000 2 2 0 |