From 79e257a209cbb827557a752572a0b3c6d3b149c6 Mon Sep 17 00:00:00 2001 From: Øyvind Harboe Date: Tue, 20 Oct 2009 12:22:55 +0200 Subject: Added the faux flash driver and target. Used for testing. --- tcl/target/faux.cfg | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tcl/target/faux.cfg (limited to 'tcl') 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 -- cgit v1.2.3