diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-08-19 09:20:36 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-08-19 09:20:36 +0000 |
commit | 66ef0cee519b9a51419c13b6bdb7191febc20170 (patch) | |
tree | f19a618ff963f1cae9dfe0f62566a003396bcf60 /src/target | |
parent | 6bfad873ede29b341b11cfa56d28d73e98b7e2bb (diff) | |
download | openocd_libswd-66ef0cee519b9a51419c13b6bdb7191febc20170.tar.gz openocd_libswd-66ef0cee519b9a51419c13b6bdb7191febc20170.tar.bz2 openocd_libswd-66ef0cee519b9a51419c13b6bdb7191febc20170.tar.xz openocd_libswd-66ef0cee519b9a51419c13b6bdb7191febc20170.zip |
added wip imx31.cfg file
git-svn-id: svn://svn.berlios.de/openocd/trunk@931 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/Makefile.am | 1 | ||||
-rw-r--r-- | src/target/target/imx31.cfg | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/target/Makefile.am b/src/target/Makefile.am index 47a22a16..9ae960a8 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -31,6 +31,7 @@ nobase_dist_pkglib_DATA = xscale/debug_handler.bin target/at91eb40a.cfg \ target/omap5912.cfg target/pxa270.cfg target/str750.cfg target/str9comstick.cfg \ target/str730.cfg target/stm32stick.cfg event/str710_program.script \ target/lm3s811.cfg interface/luminary.cfg interface/luminary-libftdi.cfg interface/luminary-lm3s811.cfg \ + target/imx31.cfg \ interface/stm32-stick.cfg interface/calao-usb-a9260-c01.cfg interface/calao-usb-a9260-c02.cfg \ interface/calao-usb-a9260.cfg target/at91sam9260minimal.cfg \ interface/chameleon.cfg interface/at91rm9200.cfg interface/jlink.cfg interface/arm-usb-ocd.cfg \ diff --git a/src/target/target/imx31.cfg b/src/target/target/imx31.cfg new file mode 100644 index 00000000..f38de00e --- /dev/null +++ b/src/target/target/imx31.cfg @@ -0,0 +1,19 @@ +# imx31 config
+#
+# NB! Does not work yet. Work in progress
+
+#jtag scan chain
+#format L IRC IRCM IDCODE (Length, IR Capture, IR Capture Mask, IDCODE)
+# 4 devices otherwise openocd complains, the last one returns 0x0 for all bytes
+jtag_device 4 0x1 0x0 0xe
+jtag_device 5 0x1 0x1f 0x1e
+#jtag_device 4 0x0 0x0 0xe
+# The device below does not have an IDCODE, so lsb is 1
+jtag_device 4 0x0 0x0 0xf
+jtag_device 5 0x1 0x0 0x1e
+
+jtag_nsrst_delay 500
+jtag_ntrst_delay 500
+
+target arm11 little 1
+
|