diff options
author | mkdorg@users.sourceforge.net <mkdorg@users.sourceforge.net> | 2009-12-15 18:30:59 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-12-15 18:38:52 +0100 |
commit | 646ce814b4fb678b7d8d341afe0694c266112426 (patch) | |
tree | f47236c7e4e51f5125635bd562ba153bafac8544 /tcl | |
parent | 4639366947427da6face9cb6954b6603eb2e2fd3 (diff) | |
download | openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.gz openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.bz2 openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.xz openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.zip |
target: add basic dsp563xx support
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/interface/arm-usb-ocd-tiny.cfg | 10 | ||||
-rw-r--r-- | tcl/target/dsp56321.cfg | 38 |
2 files changed, 48 insertions, 0 deletions
diff --git a/tcl/interface/arm-usb-ocd-tiny.cfg b/tcl/interface/arm-usb-ocd-tiny.cfg new file mode 100644 index 00000000..34793f38 --- /dev/null +++ b/tcl/interface/arm-usb-ocd-tiny.cfg @@ -0,0 +1,10 @@ +# +# Olimex ARM-USB-OCD-TINY +# +# http://www.olimex.com/dev/arm-usb-tiny.html +# + +interface ft2232 +ft2232_device_desc "Olimex OpenOCD JTAG TINY" +ft2232_layout "olimex-jtag" +ft2232_vid_pid 0x15ba 0x0004 diff --git a/tcl/target/dsp56321.cfg b/tcl/target/dsp56321.cfg new file mode 100644 index 00000000..45068370 --- /dev/null +++ b/tcl/target/dsp56321.cfg @@ -0,0 +1,38 @@ +# Script for freescale DSP56321 +# + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME dsp56321 +} + +if { [info exists ENDIAN] } { + set _ENDIAN $ENDIAN +} else { + # this defaults to a big endian + set _ENDIAN big +} + +if { [info exists CPUTAPID ] } { + set _CPUTAPID $CPUTAPID +} else { + # force an error till we get a good number + set _CPUTAPID 0x1181501d +} + +#jtag speed +jtag_khz 4500 + +#has only srst +reset_config srst_only + +#jtag scan chain +jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 1 -irmask 0x1 -expected-id $_CPUTAPID + +#target configuration +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME dsp563xx -endian $_ENDIAN -chain-position $_TARGETNAME + +#working area at base of ram +$_TARGETNAME configure -work-area-virt 0 |