cmsis-dap: add initial cmsis-dap support 42/1542/19
authorSpencer Oliver <spen@spen-soft.co.uk>
Thu, 19 Dec 2013 21:33:19 +0000 (21:33 +0000)
committerSpencer Oliver <spen@spen-soft.co.uk>
Thu, 9 Jan 2014 15:20:51 +0000 (15:20 +0000)
This is based on work from:
https://github.com/TheShed/OpenOCD-CMSIS-DAP/tree/cmsis-dap

Main changes include moving over to using HIDAPI rather than libusb-1.0
and cleaning up to merge into master. Support for reset using srst has
also been added.

It has been tested on all the mbed boards as well as the Freedom board
from Freescale. These boards only implement SWD mode, however JTAG mode
has been tested with a Keil ULINK2 and a stm32 target - but requires a lot
more work.

Change-Id: I96d5ee1993bc9c0526219ab754c5aad3b55d812d
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Signed-off-by: Andrey Yurovsky <yurovsky@gmail.com>
Reviewed-on: http://openocd.zylin.com/1542
Tested-by: jenkins
23 files changed:
configure.ac
contrib/cross-build.sh
contrib/openocd.udev
doc/openocd.texi
src/Makefile.am
src/jtag/core.c
src/jtag/drivers/Makefile.am
src/jtag/drivers/cmsis_dap_usb.c [new file with mode: 0644]
src/jtag/interface.h
src/jtag/interfaces.c
src/jtag/swd.h
src/jtag/tcl.c
src/target/Makefile.am
src/target/adi_v5_cmsis_dap.c [new file with mode: 0644]
src/target/adi_v5_swd.c
tcl/board/frdm-kl25z.cfg [new file with mode: 0644]
tcl/board/mbed-lpc11u24.cfg [new file with mode: 0644]
tcl/board/mbed-lpc1768.cfg [new file with mode: 0644]
tcl/interface/cmsis-dap.cfg [new file with mode: 0644]
tcl/target/kl25.cfg [new file with mode: 0644]
tcl/target/lpc11uxx.cfg [new file with mode: 0644]
tcl/target/lpc17xx.cfg
tcl/target/swj-dp.tcl

index 968e381be890f4aaf35b42efae44426ec21754ce..68546db257790ecc7798e32fd0ca0cf499185cad 100644 (file)
@@ -209,6 +209,9 @@ m4_define([USB0_ADAPTERS],
        [[rlink], [Raisonance RLink JTAG Programmer], [RLINK]],
        [[armjtagew], [Olimex ARM-JTAG-EW Programmer], [ARMJTAGEW]]])
 
        [[rlink], [Raisonance RLink JTAG Programmer], [RLINK]],
        [[armjtagew], [Olimex ARM-JTAG-EW Programmer], [ARMJTAGEW]]])
 
+m4_define([HIDAPI_ADAPTERS],
+       [[[cmsis_dap], [CMSIS-DAP Compliant Debugger], [CMSIS_DAP]]])
+
 #========================================
 # FTD2XXX support comes in 4 forms.
 #    (1) win32 - via a zip file
 #========================================
 # FTD2XXX support comes in 4 forms.
 #    (1) win32 - via a zip file
@@ -367,7 +370,7 @@ m4_define([AC_ARG_ADAPTERS], [
   ])
 ])
 
   ])
 ])
 
-AC_ARG_ADAPTERS([USB1_ADAPTERS, USB_ADAPTERS, USB0_ADAPTERS], [auto])
+AC_ARG_ADAPTERS([USB1_ADAPTERS, USB_ADAPTERS, USB0_ADAPTERS, HIDAPI_ADAPTERS], [auto])
 
 AC_ARG_ENABLE([parport],
   AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
 
 AC_ARG_ENABLE([parport],
   AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
@@ -751,7 +754,7 @@ else
   AC_DEFINE([BUILD_BUSPIRATE], [0], [0 if you don't want the Buspirate JTAG driver.])
 fi
 
   AC_DEFINE([BUILD_BUSPIRATE], [0], [0 if you don't want the Buspirate JTAG driver.])
 fi
 
-if test "$use_internal_jimtcl" = yes; then
+if test $use_internal_jimtcl = yes; then
   if test -f "$srcdir/jimtcl/configure.ac"; then
     AX_CONFIG_SUBDIR_OPTION([jimtcl], [--disable-install-jim])
   else
   if test -f "$srcdir/jimtcl/configure.ac"; then
     AX_CONFIG_SUBDIR_OPTION([jimtcl], [--disable-install-jim])
   else
@@ -1103,6 +1106,15 @@ PKG_CHECK_MODULES([LIBUSB1], [libusb-1.0], [
 
 PKG_CHECK_MODULES([LIBUSB0], [libusb], [use_libusb0=yes], [use_libusb0=no])
 
 
 PKG_CHECK_MODULES([LIBUSB0], [libusb], [use_libusb0=yes], [use_libusb0=no])
 
+for hidapi_lib in hidapi hidapi-hidraw hidapi-libusb; do
+       PKG_CHECK_MODULES([HIDAPI],[$hidapi_lib],[
+               use_hidapi=yes
+               break
+       ],[
+               use_hidapi=no
+       ])
+done
+
 m4_define([PROCESS_ADAPTERS], [
   m4_foreach([adapter], [$1], [
        if test $2; then
 m4_define([PROCESS_ADAPTERS], [
   m4_foreach([adapter], [$1], [
        if test $2; then
@@ -1124,6 +1136,7 @@ m4_define([PROCESS_ADAPTERS], [
 PROCESS_ADAPTERS([USB1_ADAPTERS], [$use_libusb1 = yes], [libusb-1.x])
 PROCESS_ADAPTERS([USB_ADAPTERS], [$use_libusb1 = yes -o $use_libusb0 = yes], [libusb-1.x or libusb-0.1])
 PROCESS_ADAPTERS([USB0_ADAPTERS], [$use_libusb0 = yes], [libusb-0.1])
 PROCESS_ADAPTERS([USB1_ADAPTERS], [$use_libusb1 = yes], [libusb-1.x])
 PROCESS_ADAPTERS([USB_ADAPTERS], [$use_libusb1 = yes -o $use_libusb0 = yes], [libusb-1.x or libusb-0.1])
 PROCESS_ADAPTERS([USB0_ADAPTERS], [$use_libusb0 = yes], [libusb-0.1])
+PROCESS_ADAPTERS([HIDAPI_ADAPTERS], [$use_hidapi = yes], [hidapi])
 
 if test $enable_stlink != no -o $enable_ti_icdi != no; then
        AC_DEFINE([BUILD_HLADAPTER], [1], [1 if you want the High Level JTAG driver.])
 
 if test $enable_stlink != no -o $enable_ti_icdi != no; then
        AC_DEFINE([BUILD_HLADAPTER], [1], [1 if you want the High Level JTAG driver.])
@@ -1165,6 +1178,7 @@ AM_CONDITIONAL([IS_MINGW], [test $is_mingw = yes])
 AM_CONDITIONAL([IS_WIN32], [test $is_win32 = yes])
 AM_CONDITIONAL([IS_DARWIN], [test $is_darwin = yes])
 AM_CONDITIONAL([BITQ], [test $build_bitq = yes])
 AM_CONDITIONAL([IS_WIN32], [test $is_win32 = yes])
 AM_CONDITIONAL([IS_DARWIN], [test $is_darwin = yes])
 AM_CONDITIONAL([BITQ], [test $build_bitq = yes])
+AM_CONDITIONAL([CMSIS_DAP], [test $use_hidapi = yes])
 
 AM_CONDITIONAL([MINIDRIVER], [test $build_minidriver = yes])
 AM_CONDITIONAL([MINIDRIVER_DUMMY], [test $build_minidriver_dummy = yes])
 
 AM_CONDITIONAL([MINIDRIVER], [test $build_minidriver = yes])
 AM_CONDITIONAL([MINIDRIVER_DUMMY], [test $build_minidriver_dummy = yes])
@@ -1290,7 +1304,7 @@ echo
 echo
 echo OpenOCD configuration summary
 echo --------------------------------------------------
 echo
 echo OpenOCD configuration summary
 echo --------------------------------------------------
-m4_foreach([adapter], [USB1_ADAPTERS, USB_ADAPTERS, USB0_ADAPTERS],
+m4_foreach([adapter], [USB1_ADAPTERS, USB_ADAPTERS, USB0_ADAPTERS, HIDAPI_ADAPTERS],
        [echo -n m4_format(["%-40s"], ADAPTER_DESC([adapter]))
        case $ADAPTER_VAR([adapter]) in
                auto)
        [echo -n m4_format(["%-40s"], ADAPTER_DESC([adapter]))
        case $ADAPTER_VAR([adapter]) in
                auto)
index 397b7f41a9672da684a1d5c2c2b7e8c0a998e15e..74ab0f4f56b5b3b300933302644d98bb79c045d6 100755 (executable)
@@ -20,6 +20,7 @@
 #
 # Usage:
 # export LIBUSB1_SRC=/path/to/libusb-1.0
 #
 # Usage:
 # export LIBUSB1_SRC=/path/to/libusb-1.0
+# export HIDAPI_SRC=/path/to/hidapi
 # export OPENOCD_CONFIG="--enable-..."
 # cd /work/dir
 # /path/to/openocd/contrib/cross-build.sh <host-triplet>
 # export OPENOCD_CONFIG="--enable-..."
 # cd /work/dir
 # /path/to/openocd/contrib/cross-build.sh <host-triplet>
@@ -36,13 +37,16 @@ WORK_DIR=$PWD
 ## Source code paths, customize as necessary
 : ${OPENOCD_SRC:="`dirname "$0"`/.."}
 : ${LIBUSB1_SRC:=/path/to/libusb}
 ## Source code paths, customize as necessary
 : ${OPENOCD_SRC:="`dirname "$0"`/.."}
 : ${LIBUSB1_SRC:=/path/to/libusb}
+: ${HIDAPI_SRC:=/path/to/hidapi}
 
 OPENOCD_SRC=`readlink -m $OPENOCD_SRC`
 LIBUSB1_SRC=`readlink -m $LIBUSB1_SRC`
 
 OPENOCD_SRC=`readlink -m $OPENOCD_SRC`
 LIBUSB1_SRC=`readlink -m $LIBUSB1_SRC`
+HIDAPI_SRC=`readlink -m $HIDAPI_SRC`
 
 HOST_TRIPLET=$1
 BUILD_DIR=$WORK_DIR/$HOST_TRIPLET-build
 LIBUSB1_BUILD_DIR=$BUILD_DIR/libusb1
 
 HOST_TRIPLET=$1
 BUILD_DIR=$WORK_DIR/$HOST_TRIPLET-build
 LIBUSB1_BUILD_DIR=$BUILD_DIR/libusb1
+HIDAPI_BUILD_DIR=$BUILD_DIR/hidapi
 OPENOCD_BUILD_DIR=$BUILD_DIR/openocd
 
 ## Root of host file tree
 OPENOCD_BUILD_DIR=$BUILD_DIR/openocd
 
 ## Root of host file tree
@@ -90,6 +94,17 @@ $LIBUSB1_CONFIG
 make
 make install DESTDIR=$SYSROOT
 
 make
 make install DESTDIR=$SYSROOT
 
+# hidapi build & install into sysroot
+if [ -d $HIDAPI_SRC ] ; then
+  mkdir -p $HIDAPI_BUILD_DIR
+  cd $HIDAPI_BUILD_DIR
+  $HIDAPI_SRC/configure --build=`$HIDAPI_SRC/config.guess` --host=$HOST_TRIPLET \
+    --with-sysroot=$SYSROOT --prefix=$PREFIX \
+    $HIDAPI_CONFIG
+  make
+  make install DESTDIR=$SYSROOT
+fi
+
 # OpenOCD build & install into sysroot
 mkdir -p $OPENOCD_BUILD_DIR
 cd $OPENOCD_BUILD_DIR
 # OpenOCD build & install into sysroot
 mkdir -p $OPENOCD_BUILD_DIR
 cd $OPENOCD_BUILD_DIR
index 7065014a309156d1080f043141a02495cbfc2c43..c1e04b5f9915686a46e502f88fe6dd3057ed7115 100644 (file)
@@ -1,5 +1,5 @@
 ACTION!="add|change", GOTO="openocd_rules_end"
 ACTION!="add|change", GOTO="openocd_rules_end"
-SUBSYSTEM!="usb|tty", GOTO="openocd_rules_end"
+SUBSYSTEM!="usb|tty|hidraw", GOTO="openocd_rules_end"
 
 # Olimex ARM-USB-OCD
 ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="0003", MODE="664", GROUP="plugdev"
 
 # Olimex ARM-USB-OCD
 ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="0003", MODE="664", GROUP="plugdev"
@@ -89,4 +89,16 @@ ATTRS{idVendor}=="0483", ATTRS{idProduct}=="3748", MODE="664", GROUP="plugdev"
 # opendous and estick
 ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="204f", MODE="664", GROUP="plugdev"
 
 # opendous and estick
 ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="204f", MODE="664", GROUP="plugdev"
 
+# mbed CMSIS-DAP
+ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="664", GROUP="plugdev"
+KERNEL=="hidraw*", ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="664", GROUP="plugdev"
+
+# Freescale Freedom Board CMSIS-DAP
+ATTRS{idVendor}=="c251", ATTRS{idProduct}=="f002", MODE="664", GROUP="plugdev"
+KERNEL=="hidraw*", ATTRS{idVendor}=="c251", ATTRS{idProduct}=="f002", MODE="664", GROUP="plugdev"
+
+# Keil ULINK2 CMSIS-DAP
+ATTRS{idVendor}=="c251", ATTRS{idProduct}=="2722", MODE="664", GROUP="plugdev"
+KERNEL=="hidraw*", ATTRS{idVendor}=="c251", ATTRS{idProduct}=="2722", MODE="664", GROUP="plugdev"
+
 LABEL="openocd_rules_end"
 LABEL="openocd_rules_end"
index 59b5b7d6805e3ba6906531e8ac304ec6aa978f24..9ea3535e38f00ecec6cba67db8358be60bf9a1cf 100644 (file)
@@ -490,6 +490,10 @@ Texas Instruments has an adapter called @b{ICDI}.
 It is not to be confused with the FTDI based adapters that were originally fitted to their
 evaluation boards. This is the adapter fitted to the Stellaris LaunchPad.
 
 It is not to be confused with the FTDI based adapters that were originally fitted to their
 evaluation boards. This is the adapter fitted to the Stellaris LaunchPad.
 
+@section USB CMSIS-DAP based
+ARM has released a interface standard called CMSIS-DAP that simplifies connecting
+debuggers to ARM Cortex based targets @url{http://www.keil.com/support/man/docs/dapdebug/dapdebug_introduction.htm}.
+
 @section USB Other
 @itemize @bullet
 @item @b{USBprog}
 @section USB Other
 @itemize @bullet
 @item @b{USBprog}
@@ -2541,6 +2545,23 @@ and a specific set of GPIOs is used.
 @c chooses among list of bit configs ... only one option
 @end deffn
 
 @c chooses among list of bit configs ... only one option
 @end deffn
 
+@deffn {Interface Driver} {cmsis-dap}
+CMSIS-DAP compliant based adapter.
+
+@deffn {Config Command} {cmsis_dap_vid_pid} [vid pid]+
+The vendor ID and product ID of the CMSIS-DAP device. If not specified
+known default values are used.
+Currently, up to eight [@var{vid}, @var{pid}] pairs may be given, e.g.
+@example
+cmsis_dap_vid_pid 0xc251 0xf001 0x0d28 0x0204
+@end example
+@end deffn
+
+@deffn {Command} {cmsis-dap info}
+Display various device information, like hardware version, firmware version, current bus status.
+@end deffn
+@end deffn
+
 @deffn {Interface Driver} {dummy}
 A dummy software-only driver for debugging.
 @end deffn
 @deffn {Interface Driver} {dummy}
 A dummy software-only driver for debugging.
 @end deffn
@@ -3135,6 +3156,11 @@ Wire Control Register (WCR).
 No parameters: displays current settings.
 @end deffn
 
 No parameters: displays current settings.
 @end deffn
 
+@subsection CMSIS-DAP Transport
+@cindex CMSIS-DAP
+CMSIS-DAP is an ARM-specific transport that is used to connect to
+compilant debuggers.
+
 @subsection SPI Transport
 @cindex SPI
 @cindex Serial Peripheral Interface
 @subsection SPI Transport
 @cindex SPI
 @cindex Serial Peripheral Interface
index 48af21d4b3d51e89928d81d78eb2a6a2edbda075..5e9c850996425ba3c1a91765fbac5cf1293f1808 100644 (file)
@@ -75,7 +75,7 @@ libopenocd_la_LIBADD = \
        $(top_builddir)/src/rtos/librtos.la \
        $(top_builddir)/src/helper/libhelper.la \
        $(LIBFTDI_LIBS) $(MINGWLDADD) \
        $(top_builddir)/src/rtos/librtos.la \
        $(top_builddir)/src/helper/libhelper.la \
        $(LIBFTDI_LIBS) $(MINGWLDADD) \
-       $(LIBUSB1_LIBS) $(LIBUSB0_LIBS)
+       $(HIDAPI_LIBS) $(LIBUSB1_LIBS) $(LIBUSB0_LIBS)
 
 STARTUP_TCL_SRCS = \
        $(srcdir)/helper/startup.tcl \
 
 STARTUP_TCL_SRCS = \
        $(srcdir)/helper/startup.tcl \
@@ -103,7 +103,7 @@ CLEANFILES = startup.tcl startup_tcl.c
 # we do not want generated file in the dist
 dist-hook:
        rm -f $(distdir)/startup_tcl.c
 # we do not want generated file in the dist
 dist-hook:
        rm -f $(distdir)/startup_tcl.c
-       
+
 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
 
 # The "quick" target builds executables & reinstalls the executables
 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
 
 # The "quick" target builds executables & reinstalls the executables
index 08217352116e3abf7c6f2ac5ce52c1412497978a..24f6a511d7a0f5f8911b2d06f91f98008ea7edc4 100644 (file)
@@ -134,8 +134,6 @@ static int jtag_speed;
 
 static struct jtag_interface *jtag;
 
 
 static struct jtag_interface *jtag;
 
-const struct swd_driver *swd;
-
 /* configuration */
 struct jtag_interface *jtag_interface;
 
 /* configuration */
 struct jtag_interface *jtag_interface;
 
@@ -1824,6 +1822,8 @@ void adapter_assert_reset(void)
                        jtag_add_reset(0, 1);
        } else if (transport_is_swd())
                swd_add_reset(1);
                        jtag_add_reset(0, 1);
        } else if (transport_is_swd())
                swd_add_reset(1);
+       else if (transport_is_cmsis_dap())
+               swd_add_reset(1);  /* FIXME */
        else if (get_current_transport() != NULL)
                LOG_ERROR("reset is not supported on %s",
                        get_current_transport()->name);
        else if (get_current_transport() != NULL)
                LOG_ERROR("reset is not supported on %s",
                        get_current_transport()->name);
@@ -1837,6 +1837,8 @@ void adapter_deassert_reset(void)
                jtag_add_reset(0, 0);
        else if (transport_is_swd())
                swd_add_reset(0);
                jtag_add_reset(0, 0);
        else if (transport_is_swd())
                swd_add_reset(0);
+       else if (transport_is_cmsis_dap())
+               swd_add_reset(0);  /* FIXME */
        else if (get_current_transport() != NULL)
                LOG_ERROR("reset is not supported on %s",
                        get_current_transport()->name);
        else if (get_current_transport() != NULL)
                LOG_ERROR("reset is not supported on %s",
                        get_current_transport()->name);
index 00f0165e57805069c3ae2b2a00c2f73236bc302d..72fbb3471836abe2b6c0ed5a6054ee94837cd5d4 100644 (file)
@@ -6,7 +6,8 @@ libocdjtagdrivers_la_LIBADD =
 libocdjtagdrivers_la_SOURCES = \
        $(DRIVERFILES)
 
 libocdjtagdrivers_la_SOURCES = \
        $(DRIVERFILES)
 
-libocdjtagdrivers_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBUSB1_CFLAGS) $(LIBUSB0_CFLAGS)
+libocdjtagdrivers_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBUSB1_CFLAGS) \
+       $(LIBUSB0_CFLAGS) $(HIDAPI_CFLAGS)
 
 ULINK_FIRMWARE = $(srcdir)/OpenULINK
 
 
 ULINK_FIRMWARE = $(srcdir)/OpenULINK
 
@@ -122,6 +123,10 @@ if OPENJTAG
 DRIVERFILES += openjtag.c
 endif
 
 DRIVERFILES += openjtag.c
 endif
 
+if CMSIS_DAP
+DRIVERFILES += cmsis_dap_usb.c
+endif
+
 noinst_HEADERS = \
        bitbang.h \
        bitq.h \
 noinst_HEADERS = \
        bitbang.h \
        bitq.h \
diff --git a/src/jtag/drivers/cmsis_dap_usb.c b/src/jtag/drivers/cmsis_dap_usb.c
new file mode 100644 (file)
index 0000000..5cd117f
--- /dev/null
@@ -0,0 +1,1091 @@
+/***************************************************************************
+ *   Copyright (C) 2013 by mike brown                                      *
+ *   mike@theshedworks.org.uk                                              *
+ *                                                                         *
+ *   Copyright (C) 2013 by Spencer Oliver                                  *
+ *   spen@spen-soft.co.uk                                                  *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
+ ***************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <transport/transport.h>
+#include <jtag/swd.h>
+#include <jtag/interface.h>
+#include <jtag/commands.h>
+#include <jtag/tcl.h>
+
+#include <hidapi.h>
+
+#ifdef _DEBUG_JTAG_IO_
+ #define DEBUG_IO(expr...) LOG_DEBUG(expr)
+#else
+ #define DEBUG_IO(expr...) do {} while (0)
+#endif
+
+/*
+ * See CMSIS-DAP documentation:
+ * Version 0.01 - Beta.
+ */
+
+/* USB Config */
+
+/* Known vid/pid pairs:
+ * VID 0xc251: Keil Software
+ * PID 0xf001: LPC-Link-II CMSIS_DAP
+ * PID 0xf002: OPEN-SDA CMSIS_DAP (Freedom Board)
+ * PID 0x2722: Keil ULINK2 CMSIS-DAP
+ *
+ * VID 0x0d28: mbed Software
+ * PID 0x0204: MBED CMSIS-DAP
+ */
+
+#define MAX_USB_IDS 8
+/* vid = pid = 0 marks the end of the list */
+static uint16_t cmsis_dap_vid[MAX_USB_IDS + 1] = { 0xc251, 0xc251, 0xc251, 0x0d28, 0x03eb, 0 };
+static uint16_t cmsis_dap_pid[MAX_USB_IDS + 1] = { 0xf001, 0xf002, 0x2722, 0x0204, 0x2111, 0 };
+
+#define PACKET_SIZE       (64 + 1)     /* 64 bytes plus report id */
+#define USB_TIMEOUT       1000
+
+/* CMSIS-DAP General Commands */
+#define CMD_DAP_INFO              0x00
+#define CMD_DAP_LED               0x01
+#define CMD_DAP_CONNECT           0x02
+#define CMD_DAP_DISCONNECT        0x03
+#define CMD_DAP_WRITE_ABORT       0x08
+#define CMD_DAP_DELAY             0x09
+#define CMD_DAP_RESET_TARGET      0x0A
+
+/* CMD_INFO */
+#define INFO_ID_VID               0x00      /* string */
+#define INFO_ID_PID               0x02      /* string */
+#define INFO_ID_SERNUM            0x03      /* string */
+#define INFO_ID_FW_VER            0x04      /* string */
+#define INFO_ID_TD_VEND           0x05      /* string */
+#define INFO_ID_TD_NAME           0x06      /* string */
+#define INFO_ID_CAPS              0xf0      /* byte */
+#define INFO_ID_PKT_CNT           0xfe      /* byte */
+#define INFO_ID_PKT_SZ            0xff      /* short */
+
+#define INFO_CAPS_SWD             0x01
+#define INFO_CAPS_JTAG            0x02
+
+/* CMD_LED */
+#define LED_ID_CONNECT            0x00
+#define LED_ID_RUN                0x01
+
+#define LED_OFF                   0x00
+#define LED_ON                    0x01
+
+/* CMD_CONNECT */
+#define CONNECT_DEFAULT           0x00
+#define CONNECT_SWD               0x01
+#define CONNECT_JTAG              0x02
+
+/* CMSIS-DAP Common SWD/JTAG Commands */
+#define CMD_DAP_DELAY             0x09
+#define CMD_DAP_SWJ_PINS          0x10
+#define CMD_DAP_SWJ_CLOCK         0x11
+#define CMD_DAP_SWJ_SEQ           0x12
+
+/*
+ * PINS
+ * Bit 0: SWCLK/TCK
+ * Bit 1: SWDIO/TMS
+ * Bit 2: TDI
+ * Bit 3: TDO
+ * Bit 5: nTRST
+ * Bit 7: nRESET
+ */
+
+/* CMSIS-DAP SWD Commands */
+#define CMD_DAP_SWD_CONFIGURE     0x13
+
+/* CMSIS-DAP JTAG Commands */
+#define CMD_DAP_JTAG_SEQ          0x14
+#define CMD_DAP_JTAG_CONFIGURE    0x15
+#define CMD_DAP_JTAG_IDCODE       0x16
+
+/* CMSIS-DAP Transfer Commands */
+#define CMD_DAP_TFER_CONFIGURE    0x04
+#define CMD_DAP_TFER              0x05
+#define CMD_DAP_TFER_BLOCK        0x06
+#define CMD_DAP_TFER_ABORT        0x07
+
+/* DAP Status Code */
+#define DAP_OK                    0
+#define DAP_ERROR                 0xFF
+
+/* CMSIS-DAP Vendor Commands
+ * None as yet... */
+
+static char *info_caps_str[] = {
+       "SWD  Supported",
+       "JTAG Supported"
+};
+
+/* max clock speed (kHz) */
+#define DAP_MAX_CLOCK             5000
+
+struct cmsis_dap {
+       hid_device *dev_handle;
+       uint16_t packet_size;
+       uint16_t packet_count;
+       uint8_t *packet_buffer;
+       uint8_t caps;
+       uint8_t mode;
+};
+
+static struct cmsis_dap *cmsis_dap_handle;
+
+static int cmsis_dap_usb_open(void)
+{
+       hid_device *dev = NULL;
+       int i;
+
+       if (hid_init() != 0) {
+               LOG_ERROR("unable to open HIDAPI");
+               return ERROR_FAIL;
+       }
+
+       for (i = 0; cmsis_dap_vid[i] || cmsis_dap_pid[i]; i++) {
+               dev = hid_open(cmsis_dap_vid[i], cmsis_dap_pid[i], NULL);
+               if (dev != NULL)
+                       break;
+       }
+
+       if (dev == NULL) {
+               LOG_ERROR("unable to open CMSIS-DAP device");
+               return ERROR_FAIL;
+       }
+
+       struct cmsis_dap *dap = malloc(sizeof(struct cmsis_dap));
+       if (dap == NULL) {
+               LOG_ERROR("unable to allocate memory");
+               return ERROR_FAIL;
+       }
+
+       dap->dev_handle = dev;
+       dap->caps = 0;
+       dap->mode = 0;
+
+       cmsis_dap_handle = dap;
+
+       /* allocate default packet buffer, may be changed later.
+        * currently with HIDAPI we have no way of getting the output report length
+        * without this info we cannot communicate with the adapter.
+        * For the moment we ahve to hard code the packet size */
+
+       int packet_size = PACKET_SIZE;
+
+       /* atmel cmsis-dap uses 512 byte reports */
+       if (cmsis_dap_vid[i] == 0x03eb && cmsis_dap_pid[i] == 0x2111)
+               packet_size = 512 + 1;
+
+       cmsis_dap_handle->packet_buffer = malloc(packet_size);
+       cmsis_dap_handle->packet_size = packet_size;
+
+       if (cmsis_dap_handle->packet_buffer == NULL) {
+               LOG_ERROR("unable to allocate memory");
+               return ERROR_FAIL;
+       }
+
+       return ERROR_OK;
+}
+
+static void cmsis_dap_usb_close(struct cmsis_dap *dap)
+{
+       hid_close(dap->dev_handle);
+       hid_exit();
+
+       if (cmsis_dap_handle->packet_buffer)
+               free(cmsis_dap_handle->packet_buffer);
+
+       if (cmsis_dap_handle) {
+               free(cmsis_dap_handle);
+               cmsis_dap_handle = NULL;
+       }
+
+       return;
+}
+
+/* Send a message and receive the reply */
+static int cmsis_dap_usb_xfer(struct cmsis_dap *dap, int txlen)
+{
+       /* Pad the rest of the TX buffer with 0's */
+       memset(dap->packet_buffer + txlen, 0, dap->packet_size - 1 - txlen);
+
+       /* write data to device */
+       int retval = hid_write(dap->dev_handle, dap->packet_buffer, dap->packet_size);
+       if (retval == -1) {
+               LOG_ERROR("error writing data: %ls", hid_error(dap->dev_handle));
+               return ERROR_FAIL;
+       }
+
+       /* get reply */
+       retval = hid_read_timeout(dap->dev_handle, dap->packet_buffer, dap->packet_size, USB_TIMEOUT);
+       if (retval == -1 || retval == 0) {
+               LOG_DEBUG("error reading data: %ls", hid_error(dap->dev_handle));
+               return ERROR_FAIL;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_SWJ_Pins(uint8_t pins, uint8_t mask, uint32_t wait, uint8_t *input)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_PINS;
+       buffer[2] = pins;
+       buffer[3] = mask;
+       buffer[4] = wait & 0xff;
+       buffer[5] = (wait >> 8) & 0xff;
+       buffer[6] = (wait >> 16) & 0xff;
+       buffer[7] = (wait >> 24) & 0xff;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 8);
+
+       if (retval != ERROR_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_DAP_SWJ_PINS failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       if (input)
+               *input = buffer[1];
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_SWJ_Clock(uint32_t swj_clock)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       /* set clock in Hz */
+       swj_clock *= 1000;
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_CLOCK;
+       buffer[2] = swj_clock & 0xff;
+       buffer[3] = (swj_clock >> 8) & 0xff;
+       buffer[4] = (swj_clock >> 16) & 0xff;
+       buffer[5] = (swj_clock >> 24) & 0xff;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 6);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_DAP_SWJ_CLOCK failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_Info(uint8_t info, uint8_t **data)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_INFO;
+       buffer[2] = info;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 3);
+
+       if (retval != ERROR_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_INFO failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       *data = &(buffer[1]);
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_LED(uint8_t leds)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_LED;
+       buffer[2] = 0x00;
+       buffer[3] = leds;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 4);
+
+       if (retval != ERROR_OK || buffer[1] != 0x00) {
+               LOG_ERROR("CMSIS-DAP command CMD_LED failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_Connect(uint8_t mode)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_CONNECT;
+       buffer[2] = mode;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 3);
+
+       if (retval != ERROR_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_CONNECT failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       if (buffer[1] != mode) {
+               LOG_ERROR("CMSIS-DAP failed to connect in mode (%d)", mode);
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_Disconnect(void)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_DISCONNECT;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 2);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_DISCONNECT failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_TFER_Configure(uint8_t idle, uint16_t wait, uint16_t retry)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_TFER_CONFIGURE;
+       buffer[2] = idle;
+       buffer[3] = wait & 0xff;
+       buffer[4] = (wait >> 8) & 0xff;
+       buffer[5] = retry & 0xff;
+       buffer[6] = (retry >> 8) & 0xff;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 7);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_TFER_Configure failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_cmd_DAP_SWD_Configure(uint8_t cfg)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWD_CONFIGURE;
+       buffer[2] = cfg;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 3);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_SWD_Configure failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+
+#if 0
+static int cmsis_dap_cmd_DAP_Delay(uint16_t delay_us)
+{
+       int retval;
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_DELAY;
+       buffer[2] = delay_us & 0xff;
+       buffer[3] = (delay_us >> 8) & 0xff;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 4);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK) {
+               LOG_ERROR("CMSIS-DAP command CMD_Delay failed.");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       return ERROR_OK;
+}
+#endif
+
+static int cmsis_dap_swd_read_reg(uint8_t cmd, uint32_t *value)
+{
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+       int retval;
+       uint32_t val;
+
+       DEBUG_IO("CMSIS-DAP: Read  Reg 0x%02" PRIx8, cmd);
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_TFER;
+       buffer[2] = 0x00;
+       buffer[3] = 0x01;
+       buffer[4] = cmd;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 5);
+
+       /* TODO - need better response checking */
+       if (retval != ERROR_OK || buffer[1] != 0x01) {
+               LOG_ERROR("CMSIS-DAP: Read Error (0x%02" PRIx8 ")", buffer[2]);
+               return buffer[2];
+       }
+
+       val = le_to_h_u32(&buffer[3]);
+       DEBUG_IO("0x%08" PRIx32, val);
+
+       if (value)
+               *value = val;
+
+       return retval;
+}
+
+static int cmsis_dap_swd_write_reg(uint8_t cmd, uint32_t value)
+{
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       DEBUG_IO("CMSIS-DAP: Write Reg 0x%02" PRIx8 " 0x%08" PRIx32, cmd, value);
+
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_TFER;
+       buffer[2] = 0x00;
+       buffer[3] = 0x01;
+       buffer[4] = cmd;
+       buffer[5] = (value) & 0xff;
+       buffer[6] = (value >> 8) & 0xff;
+       buffer[7] = (value >> 16) & 0xff;
+       buffer[8] = (value >> 24) & 0xff;
+       int retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 9);
+
+       if (buffer[1] != 0x01) {
+               LOG_ERROR("CMSIS-DAP: Write Error (0x%02" PRIx8 ")", buffer[2]);
+               retval = buffer[2];
+       }
+
+       return retval;
+}
+
+static int cmsis_dap_swd_read_block(uint8_t cmd, uint32_t blocksize, uint8_t *dest_buf)
+{
+       uint8_t *buffer;
+       int tfer_sz;
+       int retval = ERROR_OK;
+       uint16_t read_count;
+
+       DEBUG_IO("CMSIS-DAP: Read Block 0x%02" PRIx8 " %" PRIu32, cmd, blocksize);
+
+       while (blocksize) {
+
+               buffer = cmsis_dap_handle->packet_buffer;
+               tfer_sz = blocksize;
+               if (tfer_sz > 15)
+                       tfer_sz = 8;
+
+               buffer[0] = 0;  /* report number */
+               buffer[1] = CMD_DAP_TFER_BLOCK;
+               buffer[2] = 0x00;
+               buffer[3] = tfer_sz;
+               buffer[4] = 0x00;
+               buffer[5] = cmd;
+               retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 6);
+
+               read_count = le_to_h_u16(&buffer[1]);
+               if (read_count != tfer_sz) {
+                       LOG_ERROR("CMSIS-DAP: Block Read Error (0x%02" PRIx8 ")", buffer[3]);
+                       retval = buffer[3];
+               }
+
+               read_count *= 4;
+               memcpy(dest_buf, &buffer[4], read_count);
+
+               dest_buf += read_count;
+               blocksize -= tfer_sz;
+       }
+
+       return retval;
+}
+
+static int cmsis_dap_get_version_info(void)
+{
+       uint8_t *data;
+
+       /* INFO_ID_FW_VER - string */
+       int retval = cmsis_dap_cmd_DAP_Info(INFO_ID_FW_VER, &data);
+       if (retval != ERROR_OK)
+               return retval;
+
+       if (data[0]) /* strlen */
+               LOG_INFO("CMSIS-DAP: FW Version = %s", &data[1]);
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_get_caps_info(void)
+{
+       uint8_t *data;
+
+       /* INFO_ID_CAPS - byte */
+       int retval = cmsis_dap_cmd_DAP_Info(INFO_ID_CAPS, &data);
+       if (retval != ERROR_OK)
+               return retval;
+
+       if (data[0] == 1) {
+               uint8_t caps = data[1];
+
+               cmsis_dap_handle->caps = caps;
+
+               if (caps & INFO_CAPS_SWD)
+                       LOG_INFO("CMSIS-DAP: %s", info_caps_str[0]);
+               if (caps & INFO_CAPS_JTAG)
+                       LOG_INFO("CMSIS-DAP: %s", info_caps_str[1]);
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_get_status(void)
+{
+       uint8_t d;
+
+       int retval = cmsis_dap_cmd_DAP_SWJ_Pins(0, 0, 0, &d);
+
+       if (retval == ERROR_OK) {
+               LOG_INFO("SWCLK/TCK = %d SWDIO/TMS = %d TDI = %d TDO = %d nTRST = %d nRESET = %d",
+                       (d & (0x01 << 0)) ? 1 : 0,      /* Bit 0: SWCLK/TCK */
+                       (d & (0x01 << 1)) ? 1 : 0,      /* Bit 1: SWDIO/TMS */
+                       (d & (0x01 << 2)) ? 1 : 0,      /* Bit 2: TDI */
+                       (d & (0x01 << 3)) ? 1 : 0,      /* Bit 3: TDO */
+                       (d & (0x01 << 5)) ? 1 : 0,      /* Bit 5: nTRST */
+                       (d & (0x01 << 7)) ? 1 : 0);     /* Bit 7: nRESET */
+       }
+
+       return retval;
+}
+
+static int cmsis_dap_reset_link(void)
+{
+       uint8_t *buffer = cmsis_dap_handle->packet_buffer;
+
+       LOG_DEBUG("CMSIS-DAP: cmsis_dap_reset_link");
+       LOG_INFO("DAP_SWJ Sequence (reset: 50+ '1' followed by 0)");
+
+       /* reset line with SWDIO high for >50 cycles */
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_SEQ;
+       buffer[2] = 7 * 8;
+       buffer[3] = 0xff;
+       buffer[4] = 0xff;
+       buffer[5] = 0xff;
+       buffer[6] = 0xff;
+       buffer[7] = 0xff;
+       buffer[8] = 0xff;
+       buffer[9] = 0xff;
+       int retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 10);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK)
+               return ERROR_FAIL;
+
+       /* 16bit JTAG-SWD sequence */
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_SEQ;
+       buffer[2] = 2 * 8;
+       buffer[3] = 0x9e;
+       buffer[4] = 0xe7;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 5);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK)
+               return ERROR_FAIL;
+
+       /* another reset just incase */
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_SEQ;
+       buffer[2] = 7 * 8;
+       buffer[3] = 0xff;
+       buffer[4] = 0xff;
+       buffer[5] = 0xff;
+       buffer[6] = 0xff;
+       buffer[7] = 0xff;
+       buffer[8] = 0xff;
+       buffer[9] = 0xff;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 10);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK)
+               return ERROR_FAIL;
+
+       /* 16 cycle idle period */
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_SWJ_SEQ;
+       buffer[2] = 2 * 8;
+       buffer[3] = 0x00;
+       buffer[4] = 0x00;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 5);
+
+       if (retval != ERROR_OK || buffer[1] != DAP_OK)
+               return ERROR_FAIL;
+
+       DEBUG_IO("DAP Read IDCODE");
+
+       /* read the id code is always the next sequence */
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_TFER;
+       buffer[2] = 0x00;
+       buffer[3] = 0x01;
+       buffer[4] = 0x02;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 5);
+
+       if (retval != ERROR_OK)
+               return retval;
+
+       if (buffer[1] == 0) {
+               LOG_DEBUG("Result 0x%02" PRIx8 " 0x%02" PRIx8, buffer[1], buffer[2]);
+
+               LOG_DEBUG("DAP Reset Target");
+               buffer[0] = 0;  /* report number */
+               buffer[1] = CMD_DAP_RESET_TARGET;
+               retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 2);
+               LOG_DEBUG("Result 0x%02" PRIx8 " 0x%02" PRIx8, buffer[1], buffer[2]);
+
+               LOG_DEBUG("DAP Write Abort");
+               buffer[0] = 0;  /* report number */
+               buffer[1] = CMD_DAP_WRITE_ABORT;
+               buffer[2] = 0x00;
+               buffer[3] = 0x1e/*0x1f*/;
+               buffer[4] = 0x00;
+               buffer[5] = 0x00;
+               buffer[6] = 0x00;
+               retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 7);
+               LOG_DEBUG("Result 0x%02" PRIx8, buffer[1]);
+
+               return 0x80 + buffer[1];
+       }
+
+       LOG_DEBUG("DAP Write Abort");
+       buffer[0] = 0;  /* report number */
+       buffer[1] = CMD_DAP_WRITE_ABORT;
+       buffer[2] = 0x00;
+       buffer[3] = 0x1e;
+       buffer[4] = 0x00;
+       buffer[5] = 0x00;
+       buffer[6] = 0x00;
+       retval = cmsis_dap_usb_xfer(cmsis_dap_handle, 7);
+       LOG_DEBUG("Result 0x%02" PRIx8, buffer[1]);
+
+       return retval;
+}
+
+static int cmsis_dap_init(void)
+{
+       int retval;
+       uint8_t *data;
+
+       if (cmsis_dap_handle == NULL) {
+
+               /* JTAG init */
+               retval = cmsis_dap_usb_open();
+               if (retval != ERROR_OK)
+                       return retval;
+
+               retval = cmsis_dap_get_caps_info();
+               if (retval != ERROR_OK)
+                       return retval;
+
+               /* Connect in JTAG mode */
+               if (!(cmsis_dap_handle->caps & INFO_CAPS_JTAG)) {
+                       LOG_ERROR("CMSIS-DAP: JTAG not supported");
+                       return ERROR_JTAG_DEVICE_ERROR;
+               }
+
+               retval = cmsis_dap_cmd_DAP_Connect(CONNECT_JTAG);
+               if (retval != ERROR_OK)
+                       return retval;
+
+               LOG_INFO("CMSIS-DAP: Interface Initialised (JTAG)");
+       }
+
+       retval = cmsis_dap_get_version_info();
+       if (retval != ERROR_OK)
+               return retval;
+
+       /* INFO_ID_PKT_SZ - short */
+       retval = cmsis_dap_cmd_DAP_Info(INFO_ID_PKT_SZ, &data);
+       if (retval != ERROR_OK)
+               return retval;
+
+       if (data[0] == 2) {  /* short */
+               uint16_t pkt_sz = data[1] + (data[2] << 8);
+
+               if (cmsis_dap_handle->packet_size != pkt_sz + 1) {
+                       /* reallocate buffer */
+                       cmsis_dap_handle->packet_size = pkt_sz + 1;
+                       cmsis_dap_handle->packet_buffer = realloc(cmsis_dap_handle->packet_buffer,
+                                       cmsis_dap_handle->packet_size);
+                       if (cmsis_dap_handle->packet_buffer == NULL) {
+                               LOG_ERROR("unable to reallocate memory");
+                               return ERROR_FAIL;
+                       }
+               }
+
+               LOG_DEBUG("CMSIS-DAP: Packet Size = %" PRId16, pkt_sz);
+       }
+
+       /* INFO_ID_PKT_CNT - byte */
+       retval = cmsis_dap_cmd_DAP_Info(INFO_ID_PKT_CNT, &data);
+       if (retval != ERROR_OK)
+               return retval;
+
+       if (data[0] == 1) { /* byte */
+               uint16_t pkt_cnt = data[1];
+               cmsis_dap_handle->packet_count = pkt_cnt;
+               LOG_DEBUG("CMSIS-DAP: Packet Count = %" PRId16, pkt_cnt);
+       }
+
+       retval = cmsis_dap_get_status();
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+
+       /* Now try to connect to the target
+        * TODO: This is all SWD only @ present */
+       retval = cmsis_dap_cmd_DAP_SWJ_Clock(100);              /* 100kHz */
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+
+       retval = cmsis_dap_cmd_DAP_TFER_Configure(0, 64, 0);
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+       retval = cmsis_dap_cmd_DAP_SWD_Configure(0x00);
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+
+       retval = cmsis_dap_cmd_DAP_LED(0x03);           /* Both LEDs on */
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+
+       /* support connecting with srst asserted */
+       enum reset_types jtag_reset_config = jtag_get_reset_config();
+
+       if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
+               if (jtag_reset_config & RESET_SRST_NO_GATING) {
+                       retval = cmsis_dap_cmd_DAP_SWJ_Pins(0, (1 << 7), 0, NULL);
+                       if (retval != ERROR_OK)
+                               return ERROR_FAIL;
+                       LOG_INFO("Connecting under reset");
+               }
+       }
+
+       retval = cmsis_dap_reset_link();
+       if (retval != ERROR_OK)
+               return ERROR_FAIL;
+
+       cmsis_dap_cmd_DAP_LED(0x00);                            /* Both LEDs off */
+
+       LOG_INFO("CMSIS-DAP: Interface ready");
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_swd_init(uint8_t trn)
+{
+       int retval;
+
+       DEBUG_IO("CMSIS-DAP: cmsis_dap_swd_init");
+
+       if (cmsis_dap_handle == NULL) {
+
+               /* SWD init */
+               retval = cmsis_dap_usb_open();
+               if (retval != ERROR_OK)
+                       return retval;
+
+               retval = cmsis_dap_get_caps_info();
+               if (retval != ERROR_OK)
+                       return retval;
+       }
+
+       if (!(cmsis_dap_handle->caps & INFO_CAPS_SWD)) {
+               LOG_ERROR("CMSIS-DAP: SWD not supported");
+               return ERROR_JTAG_DEVICE_ERROR;
+       }
+
+       retval = cmsis_dap_cmd_DAP_Connect(CONNECT_SWD);
+       if (retval != ERROR_OK)
+               return retval;
+
+       /* Add more setup here.??... */
+
+       LOG_INFO("CMSIS-DAP: Interface Initialised (SWD)");
+       return ERROR_OK;
+}
+
+static int cmsis_dap_quit(void)
+{
+       cmsis_dap_cmd_DAP_Disconnect();
+       cmsis_dap_cmd_DAP_LED(0x00);            /* Both LEDs off */
+
+       cmsis_dap_usb_close(cmsis_dap_handle);
+
+       return ERROR_OK;
+}
+
+static void cmsis_dap_execute_reset(struct jtag_command *cmd)
+{
+       int retval = cmsis_dap_cmd_DAP_SWJ_Pins(cmd->cmd.reset->srst ? 0 : (1 << 7), \
+                       (1 << 7), 0, NULL);
+       if (retval != ERROR_OK)
+               LOG_ERROR("CMSIS-DAP: Interface reset failed");
+}
+
+static void cmsis_dap_execute_sleep(struct jtag_command *cmd)
+{
+#if 0
+       int retval = cmsis_dap_cmd_DAP_Delay(cmd->cmd.sleep->us);
+       if (retval != ERROR_OK)
+#endif
+               jtag_sleep(cmd->cmd.sleep->us);
+}
+
+static void cmsis_dap_execute_command(struct jtag_command *cmd)
+{
+       switch (cmd->type) {
+               case JTAG_RESET:
+                       cmsis_dap_execute_reset(cmd);
+                       break;
+               case JTAG_SLEEP:
+                       cmsis_dap_execute_sleep(cmd);
+                       break;
+               default:
+                       LOG_ERROR("BUG: unknown JTAG command type encountered");
+                       exit(-1);
+       }
+}
+
+static int cmsis_dap_execute_queue(void)
+{
+       struct jtag_command *cmd = jtag_command_queue;
+
+       while (cmd != NULL) {
+               cmsis_dap_execute_command(cmd);
+               cmd = cmd->next;
+       }
+
+       return ERROR_OK;
+}
+
+static int cmsis_dap_speed(int speed)
+{
+       if (speed > DAP_MAX_CLOCK) {
+               LOG_INFO("reduce speed request: %dkHz to %dkHz maximum", speed, DAP_MAX_CLOCK);
+               speed = DAP_MAX_CLOCK;
+       }
+
+       if (speed == 0) {
+               LOG_INFO("RTCK not supported");
+               return ERROR_JTAG_NOT_IMPLEMENTED;
+       }
+
+       return cmsis_dap_cmd_DAP_SWJ_Clock(speed);
+}
+
+static int cmsis_dap_speed_div(int speed, int *khz)
+{
+       *khz = speed;
+       return ERROR_OK;
+}
+
+static int cmsis_dap_khz(int khz, int *jtag_speed)
+{
+       *jtag_speed = khz;
+       return ERROR_OK;
+}
+
+COMMAND_HANDLER(cmsis_dap_handle_info_command)
+{
+       if (cmsis_dap_get_version_info() == ERROR_OK)
+               cmsis_dap_get_status();
+
+       return ERROR_OK;
+}
+
+COMMAND_HANDLER(cmsis_dap_handle_vid_pid_command)
+{
+       if (CMD_ARGC > MAX_USB_IDS * 2) {
+               LOG_WARNING("ignoring extra IDs in cmsis_dap_vid_pid "
+                       "(maximum is %d pairs)", MAX_USB_IDS);
+               CMD_ARGC = MAX_USB_IDS * 2;
+       }
+       if (CMD_ARGC < 2 || (CMD_ARGC & 1)) {
+               LOG_WARNING("incomplete cmsis_dap_vid_pid configuration directive");
+               if (CMD_ARGC < 2)
+                       return ERROR_COMMAND_SYNTAX_ERROR;
+               /* remove the incomplete trailing id */
+               CMD_ARGC -= 1;
+       }
+
+       unsigned i;
+       for (i = 0; i < CMD_ARGC; i += 2) {
+               COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i], cmsis_dap_vid[i >> 1]);
+               COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], cmsis_dap_pid[i >> 1]);
+       }
+
+       /*
+        * Explicitly terminate, in case there are multiples instances of
+        * cmsis_dap_vid_pid.
+        */
+       cmsis_dap_vid[i >> 1] = cmsis_dap_pid[i >> 1] = 0;
+
+       return ERROR_OK;
+}
+
+static const struct command_registration cmsis_dap_subcommand_handlers[] = {
+       {
+               .name = "info",
+               .handler = &cmsis_dap_handle_info_command,
+               .mode = COMMAND_EXEC,
+               .usage = "",
+               .help = "show cmsis-dap info",
+       },
+       COMMAND_REGISTRATION_DONE
+};
+
+COMMAND_HANDLER(cmsis_dap_reset_command)
+{
+       LOG_DEBUG("cmsis_dap_reset_command");
+       return ERROR_OK;
+}
+
+COMMAND_HANDLER(cmsis_dap_jtag_command)
+{
+       LOG_DEBUG("cmsis_dap_jtag_command");
+       return ERROR_OK;
+}
+
+static const struct command_registration cmsis_dap_jtag_subcommand_handlers[] = {
+       {
+               .name = "init",
+               .mode = COMMAND_ANY,
+               .handler = cmsis_dap_jtag_command,
+               .usage = ""
+        },
+       {
+               .name = "arp_init",
+               .mode = COMMAND_ANY,
+               .handler = cmsis_dap_jtag_command,
+               .usage = ""
+        },
+       {
+               .name = "arp_init-reset",
+               .mode = COMMAND_ANY,
+               .handler = cmsis_dap_reset_command,
+               .usage = ""
+        },
+       {
+               .name = "tapisenabled",
+               .mode = COMMAND_EXEC,
+               .jim_handler = jim_jtag_tap_enabler,
+        },
+       {
+               .name = "tapenable",
+               .mode = COMMAND_EXEC,
+               .jim_handler = jim_jtag_tap_enabler,
+        },
+       {
+               .name = "tapdisable",
+               .mode = COMMAND_EXEC,
+               .handler = cmsis_dap_jtag_command,
+               .usage = "",
+        },
+       {
+               .name = "configure",
+               .mode = COMMAND_EXEC,
+               .handler = cmsis_dap_jtag_command,
+               .usage = "",
+        },
+       {
+               .name = "cget",
+               .mode = COMMAND_EXEC,
+               .jim_handler = jim_jtag_configure,
+        },
+       {
+               .name = "names",
+               .mode = COMMAND_ANY,
+               .handler = cmsis_dap_jtag_command,
+               .usage = "",
+        },
+        COMMAND_REGISTRATION_DONE
+};
+
+static const struct command_registration cmsis_dap_command_handlers[] = {
+       {
+               .name = "cmsis-dap",
+               .mode = COMMAND_ANY,
+               .help = "perform CMSIS-DAP management",
+               .usage = "<cmd>",
+               .chain = cmsis_dap_subcommand_handlers,
+       },
+       {
+               .name = "cmsis_dap_vid_pid",
+               .handler = &cmsis_dap_handle_vid_pid_command,
+               .mode = COMMAND_CONFIG,
+               .help = "the vendor ID and product ID of the CMSIS-DAP device",
+               .usage = "(vid pid)* ",
+       },
+       {
+               /* this is currently a nasty hack so we get
+                * reset working with non jtag interfaces */
+               .name = "jtag",
+               .mode = COMMAND_ANY,
+               .usage = "",
+               .chain = cmsis_dap_jtag_subcommand_handlers,
+       },
+       COMMAND_REGISTRATION_DONE
+};
+
+static const struct swd_driver cmsis_dap_swd_driver = {
+       .init       = cmsis_dap_swd_init,
+       .read_reg   = cmsis_dap_swd_read_reg,
+       .write_reg  = cmsis_dap_swd_write_reg,
+       .read_block = cmsis_dap_swd_read_block
+};
+
+const char *cmsis_dap_transport[] = {"cmsis-dap", NULL};
+
+struct jtag_interface cmsis_dap_interface = {
+       .name = "cmsis-dap",
+       .commands = cmsis_dap_command_handlers,
+       .swd = &cmsis_dap_swd_driver,
+       .transports = cmsis_dap_transport,
+
+       .execute_queue = cmsis_dap_execute_queue,
+       .speed = cmsis_dap_speed,
+       .speed_div = cmsis_dap_speed_div,
+       .khz = cmsis_dap_khz,
+       .init = cmsis_dap_init,
+       .quit = cmsis_dap_quit,
+};
index ac4eacc707585757d8a3da19378717c91a20e68c..8dacd22348e4a858c91f65d1041e2db32a1cb2c6 100644 (file)
@@ -302,8 +302,6 @@ struct jtag_interface {
 
 extern const char *jtag_only[];
 
 
 extern const char *jtag_only[];
 
-extern const struct swd_driver *swd;
-
 void adapter_assert_reset(void);
 void adapter_deassert_reset(void);
 
 void adapter_assert_reset(void);
 void adapter_deassert_reset(void);
 
index eb447cddd05dfa207e347370b4845d5455cff7bf..d0bc3827ee0bd6ead5342413e90e83906ae5e51e 100644 (file)
@@ -128,6 +128,9 @@ extern struct jtag_interface aice_interface;
 #if BUILD_BCM2835GPIO == 1
 extern struct jtag_interface bcm2835gpio_interface;
 #endif
 #if BUILD_BCM2835GPIO == 1
 extern struct jtag_interface bcm2835gpio_interface;
 #endif
+#if BUILD_CMSIS_DAP == 1
+extern struct jtag_interface cmsis_dap_interface;
+#endif
 #endif /* standard drivers */
 
 /**
 #endif /* standard drivers */
 
 /**
@@ -224,6 +227,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_BCM2835GPIO == 1
                &bcm2835gpio_interface,
 #endif
 #if BUILD_BCM2835GPIO == 1
                &bcm2835gpio_interface,
 #endif
+#if BUILD_CMSIS_DAP == 1
+               &cmsis_dap_interface,
+#endif
 #endif /* standard drivers */
                NULL,
        };
 #endif /* standard drivers */
                NULL,
        };
index 80d50ff81008c462714913f9344a39c741b0a17b..f131ddbc3ee38cc21b94b4b29573bf6c108f87f2 100644 (file)
@@ -110,11 +110,17 @@ struct swd_driver {
          */
         int (*write_reg)(uint8_t cmd, uint32_t value);
 
          */
         int (*write_reg)(uint8_t cmd, uint32_t value);
 
-       /* XXX START WITH enough to:
-        *      init (synch mode, WCR)
-        *              for async, TRN > 1
-        *      read IDCODE from DP
-        */
+        /**
+         * Synchronous block read of an AP or DP register.
+         *
+         * @param cmd with APnDP/RnW/addr/parity bits
+         * @param number of reads from register to be executed
+         * @param buffer to store data read from register
+         *
+         * @return SWD_ACK_* code for the transaction
+         *             or (negative) fault code
+         */
+        int (*read_block)(uint8_t cmd, uint32_t blocksize, uint8_t *buffer);
 
        /**
         * Configures data collection from the Single-wire
 
        /**
         * Configures data collection from the Single-wire
@@ -135,5 +141,6 @@ int swd_init_reset(struct command_context *cmd_ctx);
 void swd_add_reset(int req_srst);
 
 bool transport_is_swd(void);
 void swd_add_reset(int req_srst);
 
 bool transport_is_swd(void);
+bool transport_is_cmsis_dap(void);
 
 #endif /* SWD_H */
 
 #endif /* SWD_H */
index 3f63ffc15ff8ece7f50b7f8f3b8e2ce66add9ca1..ceea19303c53e8debad0d8eee4473efbb9a24d31 100644 (file)
@@ -59,8 +59,6 @@ static const Jim_Nvp nvp_jtag_tap_event[] = {
        { .name = NULL, .value = -1 }
 };
 
        { .name = NULL, .value = -1 }
 };
 
-extern struct jtag_interface *jtag_interface;
-
 struct jtag_tap *jtag_tap_by_jim_obj(Jim_Interp *interp, Jim_Obj *o)
 {
        const char *cp = Jim_GetString(o, NULL);
 struct jtag_tap *jtag_tap_by_jim_obj(Jim_Interp *interp, Jim_Obj *o)
 {
        const char *cp = Jim_GetString(o, NULL);
index 1560753664254b2a4cdc97a7d21be34152b92659..4d9ea418a39a9319ecdeaf90ef013a40e153979c 100644 (file)
@@ -91,6 +91,7 @@ ARM_DEBUG_SRC = \
        arm_adi_v5.c \
        adi_v5_jtag.c \
        adi_v5_swd.c \
        arm_adi_v5.c \
        adi_v5_jtag.c \
        adi_v5_swd.c \
+       adi_v5_cmsis_dap.c \
        embeddedice.c \
        trace.c \
        etb.c \
        embeddedice.c \
        trace.c \
        etb.c \
diff --git a/src/target/adi_v5_cmsis_dap.c b/src/target/adi_v5_cmsis_dap.c
new file mode 100644 (file)
index 0000000..3ff5bfe
--- /dev/null
@@ -0,0 +1,344 @@
+/***************************************************************************
+ *   Copyright (C) 2013 by mike brown                                      *
+ *   mike@theshedworks.org.uk                                              *
+ *                                                                         *
+ *   Copyright (C) 2013 by Spencer Oliver                                  *
+ *   spen@spen-soft.co.uk                                                  *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
+ ***************************************************************************/
+
+/**
+ * @file
+ * Utilities to support ARM "CMSIS-DAP", The CoreSight Debug Access Port.
+ * This is coupled to recent versions of ARM's "CoreSight" debug framework.
+ * This specific code is a transport level interface, with
+ * "target/arm_adi_v5.[hc]" code understanding operation semantics,
+ * shared with the SWD & JTAG transports.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "arm.h"
+#include "arm_adi_v5.h"
+#include <helper/time_support.h>
+
+#include <transport/transport.h>
+#include <jtag/interface.h>
+
+#include <jtag/swd.h>
+
+#define CMSIS_CMD_DP            (0   << 0)    /* set only for AP access */
+#define CMSIS_CMD_AP            (1   << 0)    /* set only for AP access */
+#define CMSIS_CMD_READ          (1   << 1)    /* set only for read access */
+#define CMSIS_CMD_WRITE         (0   << 1)    /* set only for read access */
+#define CMSIS_CMD_A32(n)        ((n)&0x0C)    /* bits A[3:2] of register addr */
+#define CMSIS_CMD_VAL_MATCH     (1   << 4)    /* Value Match */
+#define CMSIS_CMD_MATCH_MSK     (1   << 5)    /* Match Mask */
+
+/* YUK! - but this is currently a global.... */
+extern struct jtag_interface *jtag_interface;
+
+static int (cmsis_dap_queue_ap_abort)(struct adiv5_dap *dap, uint8_t *ack)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_abort");
+
+       /* FIXME: implement this properly cmsis-dap has DAP_WriteABORT()
+        * for now just hack @ everything */
+       return jtag_interface->swd->write_reg(
+                       (CMSIS_CMD_DP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(DP_ABORT)), 0x1e);
+}
+
+static int cmsis_dap_queue_dp_read(struct adiv5_dap *dap, unsigned reg, uint32_t *data)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_read %d", reg);
+
+       int retval = jtag_interface->swd->read_reg(
+                       (CMSIS_CMD_DP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
+
+       if (retval != ERROR_OK) {
+               /* fault response */
+               uint8_t ack = retval & 0xff;
+               cmsis_dap_queue_ap_abort(dap, &ack);
+       }
+
+       return retval;
+}
+
+static int cmsis_dap_queue_idcode_read(struct adiv5_dap *dap, uint8_t *ack, uint32_t *data)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_idcode_read");
+
+       int retval = cmsis_dap_queue_dp_read(dap, DP_IDCODE, data);
+       if (retval != ERROR_OK)
+               return retval;
+
+       *ack = retval;
+
+       return ERROR_OK;
+}
+
+static int (cmsis_dap_queue_dp_write)(struct adiv5_dap *dap, unsigned reg, uint32_t data)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_write %d 0x%08" PRIx32, reg, data);
+
+       /* setting the ORUNDETECT bit causes issues for some targets,
+        * disable until we find out why */
+       if (reg == DP_CTRL_STAT) {
+               LOG_DEBUG("disabling overrun detection");
+               data &= ~CORUNDETECT;
+       }
+
+       int retval = jtag_interface->swd->write_reg(
+                       (CMSIS_CMD_DP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(reg)), data);
+
+       if (retval != ERROR_OK) {
+               /* fault response */
+               uint8_t ack = retval & 0xff;
+               cmsis_dap_queue_ap_abort(dap, &ack);
+       }
+
+       return retval;
+}
+
+/** Select the AP register bank matching bits 7:4 of reg. */
+static int cmsis_dap_ap_q_bankselect(struct adiv5_dap *dap, unsigned reg)
+{
+       uint32_t select_ap_bank = reg & 0x000000F0;
+
+       if (select_ap_bank == dap->ap_bank_value)
+               return ERROR_OK;
+
+       dap->ap_bank_value = select_ap_bank;
+       select_ap_bank |= dap->ap_current;
+
+       return cmsis_dap_queue_dp_write(dap, DP_SELECT, select_ap_bank);
+}
+
+static int (cmsis_dap_queue_ap_read)(struct adiv5_dap *dap, unsigned reg, uint32_t *data)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_read %d", reg);
+
+       int retval = cmsis_dap_ap_q_bankselect(dap, reg);
+       if (retval != ERROR_OK)
+               return retval;
+
+       retval = jtag_interface->swd->read_reg(
+                       (CMSIS_CMD_AP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
+
+       if (retval != ERROR_OK) {
+               /* fault response */
+               uint8_t ack = retval & 0xff;
+               cmsis_dap_queue_ap_abort(dap, &ack);
+       }
+
+       return retval;
+}
+
+static int (cmsis_dap_queue_ap_write)(struct adiv5_dap *dap, unsigned reg, uint32_t data)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_write %d 0x%08" PRIx32, reg, data);
+
+       /* TODO: CSW_DBGSWENABLE (bit31) causes issues for some targets
+        * disable until we find out why */
+       if (reg == AP_REG_CSW)
+               data &= ~CSW_DBGSWENABLE;
+
+       int retval = cmsis_dap_ap_q_bankselect(dap, reg);
+       if (retval != ERROR_OK)
+               return retval;
+
+       retval = jtag_interface->swd->write_reg(
+                       (CMSIS_CMD_AP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(reg)), data);
+
+       if (retval != ERROR_OK) {
+               /* fault response */
+               uint8_t ack = retval & 0xff;
+               cmsis_dap_queue_ap_abort(dap, &ack);
+       }
+
+       return retval;
+}
+
+static int (cmsis_dap_queue_ap_read_block)(struct adiv5_dap *dap, unsigned reg,
+               uint32_t blocksize, uint8_t *buffer)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_read_block 0x%08" PRIx32, blocksize);
+
+       int retval = jtag_interface->swd->read_block(
+                       (CMSIS_CMD_AP | CMSIS_CMD_READ | CMSIS_CMD_A32(AP_REG_DRW)),
+                       blocksize, buffer);
+
+       if (retval != ERROR_OK) {
+               /* fault response */
+               uint8_t ack = retval & 0xff;
+               cmsis_dap_queue_ap_abort(dap, &ack);
+       }
+
+       return retval;
+}
+
+/** Executes all queued DAP operations. */
+static int cmsis_dap_run(struct adiv5_dap *dap)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_run");
+       /* FIXME: for now the CMSIS-DAP interface hard-wires a zero-size queue. */
+
+       return ERROR_OK;
+}
+
+const struct dap_ops cmsis_dap_ops = {
+       .is_swd = true,
+       .queue_idcode_read   = cmsis_dap_queue_idcode_read,
+       .queue_dp_read       = cmsis_dap_queue_dp_read,
+       .queue_dp_write      = cmsis_dap_queue_dp_write,
+       .queue_ap_read       = cmsis_dap_queue_ap_read,
+       .queue_ap_write      = cmsis_dap_queue_ap_write,
+       .queue_ap_read_block = cmsis_dap_queue_ap_read_block,
+       .queue_ap_abort      = cmsis_dap_queue_ap_abort,
+       .run = cmsis_dap_run,
+};
+
+static const struct command_registration cmsis_dap_commands[] = {
+       {
+       /*
+       * Set up SWD and JTAG targets identically, unless/until
+       * infrastructure improves ...  meanwhile, ignore all
+       * JTAG-specific stuff like IR length for SWD.
+       *
+       * REVISIT can we verify "just one SWD DAP" here/early?
+       */
+               .name = "newdap",
+               .jim_handler = jim_jtag_newtap,
+               .mode = COMMAND_CONFIG,
+               .help = "declare a new CMSIS-DAP"
+       },
+       COMMAND_REGISTRATION_DONE
+};
+
+static const struct command_registration cmsis_dap_handlers[] = {
+       {
+               .name = "cmsis-dap",
+               .mode = COMMAND_ANY,
+               .help = "cmsis_dap command group",
+               .chain = cmsis_dap_commands,
+       },
+       COMMAND_REGISTRATION_DONE
+};
+
+static int cmsis_dap_select(struct command_context *ctx)
+{
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_select");
+
+       int retval = register_commands(ctx, NULL, cmsis_dap_handlers);
+
+       if (retval != ERROR_OK)
+               return retval;
+
+       /* FIXME: This needs a real overhaul!! FIXME
+        * be sure driver is in SWD mode; start
+        * with hardware default TRN (1), it can be changed later
+        * we use a bogus 'swd' driver to implement cmsis-dap as it is quite similar */
+
+       const struct swd_driver *swd = jtag_interface->swd;
+       if (!swd || !swd->read_reg || !swd->write_reg || !swd->init) {
+               LOG_ERROR("no SWD driver?");
+               return ERROR_FAIL;
+       }
+
+       retval = swd->init(1);
+       if (retval != ERROR_OK) {
+               LOG_ERROR("unable to init CMSIS-DAP driver");
+               return retval;
+       }
+
+       return retval;
+}
+
+static int cmsis_dap_init(struct command_context *ctx)
+{
+       struct target *target = get_current_target(ctx);
+       struct arm *arm = target_to_arm(target);
+       struct adiv5_dap *dap = arm->dap;
+       uint32_t idcode;
+       int status;
+
+       LOG_DEBUG("CMSIS-ADI: cmsis_dap_init");
+
+       /* Force the DAP's ops vector for CMSIS-DAP mode.
+        * messy - is there a better way? */
+       arm->dap->ops = &cmsis_dap_ops;
+
+       /* FIXME validate transport config ... is the
+        * configured DAP present (check IDCODE)?
+        * Is *only* one DAP configured?
+        *
+        * MUST READ IDCODE
+        */
+
+       /* Note, debugport_init() does setup too */
+
+#if 0
+       const struct swd_driver *swd = jtag_interface->swd;
+       if (!swd || !swd->read_reg || !swd->write_reg || !swd->init) {
+               LOG_ERROR("no SWD driver?");
+               return ERROR_FAIL;
+       }
+
+       int retval = swd->init(1);
+       if (retval != ERROR_OK) {
+               LOG_ERROR("unable to init CMSIS-DAP driver");
+               return retval;
+       }
+#endif
+
+       uint8_t ack;
+
+       status = cmsis_dap_queue_idcode_read(dap, &ack, &idcode);
+
+       if (status == ERROR_OK)
+               LOG_INFO("IDCODE 0x%08" PRIx32, idcode);
+
+       /* force clear all sticky faults */
+       cmsis_dap_queue_ap_abort(dap, &ack);
+
+       /* this is a workaround to get polling working */
+       jtag_add_reset(0, 0);
+
+       return status;
+}
+
+static struct transport cmsis_dap_transport = {
+       .name = "cmsis-dap",
+       .select = cmsis_dap_select,
+       .init = cmsis_dap_init,
+};
+
+static void cmsis_dap_constructor(void) __attribute__((constructor));
+static void cmsis_dap_constructor(void)
+{
+       transport_register(&cmsis_dap_transport);
+}
+
+/** Returns true if the current debug session
+ * is using CMSIS-DAP as its transport.
+ */
+bool transport_is_cmsis_dap(void)
+{
+       return get_current_transport() == &cmsis_dap_transport;
+}
index 027e06696c4a31c8e448566255904e1d3c54895f..6ff858a85d627b1334d553c03a7ce69c53adf039 100644 (file)
 
 #include <jtag/swd.h>
 
 
 #include <jtag/swd.h>
 
+/* YUK! - but this is currently a global.... */
+extern struct jtag_interface *jtag_interface;
+
 static int swd_queue_dp_read(struct adiv5_dap *dap, unsigned reg,
                uint32_t *data)
 {
        /* REVISIT status return vs ack ... */
 static int swd_queue_dp_read(struct adiv5_dap *dap, unsigned reg,
                uint32_t *data)
 {
        /* REVISIT status return vs ack ... */
+       const struct swd_driver *swd = jtag_interface->swd;
+       assert(swd);
+
        return swd->read_reg(swd_cmd(true,  false, reg), data);
 }
 
        return swd->read_reg(swd_cmd(true,  false, reg), data);
 }
 
@@ -77,6 +83,9 @@ static int (swd_queue_dp_write)(struct adiv5_dap *dap, unsigned reg,
                uint32_t data)
 {
        /* REVISIT status return vs ack ... */
                uint32_t data)
 {
        /* REVISIT status return vs ack ... */
+       const struct swd_driver *swd = jtag_interface->swd;
+       assert(swd);
+
        return swd->write_reg(swd_cmd(false,  false, reg), data);
 }
 
        return swd->write_reg(swd_cmd(false,  false, reg), data);
 }
 
@@ -86,6 +95,9 @@ static int (swd_queue_ap_read)(struct adiv5_dap *dap, unsigned reg,
 {
        /* REVISIT  APSEL ... */
        /* REVISIT status return ... */
 {
        /* REVISIT  APSEL ... */
        /* REVISIT status return ... */
+       const struct swd_driver *swd = jtag_interface->swd;
+       assert(swd);
+
        return swd->read_reg(swd_cmd(true,  true, reg), data);
 }
 
        return swd->read_reg(swd_cmd(true,  true, reg), data);
 }
 
@@ -94,6 +106,9 @@ static int (swd_queue_ap_write)(struct adiv5_dap *dap, unsigned reg,
 {
        /* REVISIT  APSEL ... */
        /* REVISIT status return ... */
 {
        /* REVISIT  APSEL ... */
        /* REVISIT status return ... */
+       const struct swd_driver *swd = jtag_interface->swd;
+       assert(swd);
+
        return swd->write_reg(swd_cmd(false,  true, reg), data);
 }
 
        return swd->write_reg(swd_cmd(false,  true, reg), data);
 }
 
@@ -185,8 +200,6 @@ int dap_to_swd(struct target *target)
        return retval;
 }
 
        return retval;
 }
 
-
-
 COMMAND_HANDLER(handle_swd_wcr)
 {
        int retval;
 COMMAND_HANDLER(handle_swd_wcr)
 {
        int retval;
@@ -280,7 +293,6 @@ static const struct command_registration swd_handlers[] = {
 
 static int swd_select(struct command_context *ctx)
 {
 
 static int swd_select(struct command_context *ctx)
 {
-       struct target *target = get_current_target(ctx);
        int retval;
 
        retval = register_commands(ctx, NULL, swd_handlers);
        int retval;
 
        retval = register_commands(ctx, NULL, swd_handlers);
@@ -288,6 +300,8 @@ static int swd_select(struct command_context *ctx)
        if (retval != ERROR_OK)
                return retval;
 
        if (retval != ERROR_OK)
                return retval;
 
+       const struct swd_driver *swd = jtag_interface->swd;
+
         /* be sure driver is in SWD mode; start
          * with hardware default TRN (1), it can be changed later
          */
         /* be sure driver is in SWD mode; start
          * with hardware default TRN (1), it can be changed later
          */
@@ -296,14 +310,20 @@ static int swd_select(struct command_context *ctx)
                return ERROR_FAIL;
        }
 
                return ERROR_FAIL;
        }
 
-        retval = swd->init(1);
+       retval = swd->init(1);
        if (retval != ERROR_OK) {
                LOG_DEBUG("can't init SWD driver");
                return retval;
        }
 
        /* force DAP into SWD mode (not JTAG) */
        if (retval != ERROR_OK) {
                LOG_DEBUG("can't init SWD driver");
                return retval;
        }
 
        /* force DAP into SWD mode (not JTAG) */
-       retval = dap_to_swd(target);
+       /*retval = dap_to_swd(target);*/
+
+       if (ctx->current_target) {
+               /* force DAP into SWD mode (not JTAG) */
+               struct target *target = get_current_target(ctx);
+               retval = dap_to_swd(target);
+       }
 
        return retval;
 }
 
        return retval;
 }
@@ -316,6 +336,10 @@ static int swd_init(struct command_context *ctx)
        uint32_t idcode;
        int status;
 
        uint32_t idcode;
        int status;
 
+       /* Force the DAP's ops vector for SWD mode.
+        * messy - is there a better way? */
+       arm->dap->ops = &swd_dap_ops;
+
        /* FIXME validate transport config ... is the
         * configured DAP present (check IDCODE)?
         * Is *only* one DAP configured?
        /* FIXME validate transport config ... is the
         * configured DAP present (check IDCODE)?
         * Is *only* one DAP configured?
diff --git a/tcl/board/frdm-kl25z.cfg b/tcl/board/frdm-kl25z.cfg
new file mode 100644 (file)
index 0000000..40896e5
--- /dev/null
@@ -0,0 +1,13 @@
+# This is an Freescale Freedom eval board with a single MKL25Z128VLK4 chip.
+# http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=FRDM-KL25Z
+#
+
+source [find interface/cmsis-dap.cfg]
+
+# increase working area to 16KB
+set WORKAREASIZE 0x4000
+
+# chip name
+set CHIPNAME MKL25Z128VLK4
+
+source [find target/kl25.cfg]
diff --git a/tcl/board/mbed-lpc11u24.cfg b/tcl/board/mbed-lpc11u24.cfg
new file mode 100644 (file)
index 0000000..6a58264
--- /dev/null
@@ -0,0 +1,13 @@
+# This is an mbed eval board with a single NXP LPC11U24 chip.
+# http://mbed.org/handbook/mbed-NXP-LPC11U24
+#
+
+source [find interface/cmsis-dap.cfg]
+
+# increase working area to 8KB
+set WORKAREASIZE 0x2000
+
+# chip name
+set CHIPNAME lpc11u24
+
+source [find target/lpc11uxx.cfg]
diff --git a/tcl/board/mbed-lpc1768.cfg b/tcl/board/mbed-lpc1768.cfg
new file mode 100644 (file)
index 0000000..9cca30c
--- /dev/null
@@ -0,0 +1,7 @@
+# This is an mbed eval board with a single NXP LPC1768 chip.
+# http://mbed.org/handbook/mbed-NXP-LPC1768
+#
+
+source [find interface/cmsis-dap.cfg]
+
+source [find target/lpc1768.cfg]
diff --git a/tcl/interface/cmsis-dap.cfg b/tcl/interface/cmsis-dap.cfg
new file mode 100644 (file)
index 0000000..a8ea92e
--- /dev/null
@@ -0,0 +1,7 @@
+#
+# ARM CMSIS-DAP compliant adapter
+#
+# http://www.keil.com/support/man/docs/dapdebug/
+#
+
+interface cmsis-dap
diff --git a/tcl/target/kl25.cfg b/tcl/target/kl25.cfg
new file mode 100644 (file)
index 0000000..c5dda15
--- /dev/null
@@ -0,0 +1,48 @@
+#
+# Freescale Kinetis KL25 devices
+#
+
+#
+# KL25 devices support both JTAG and SWD transports.
+#
+source [find target/swj-dp.tcl]
+
+if { [info exists CHIPNAME] } {
+    set _CHIPNAME $CHIPNAME
+} else {
+    set _CHIPNAME kl25
+}
+
+if { [info exists ENDIAN] } {
+    set _ENDIAN $ENDIAN
+} else {
+    set _ENDIAN little
+}
+
+# Work-area is a space in RAM used for flash programming
+# By default use 4kB
+if { [info exists WORKAREASIZE] } {
+   set _WORKAREASIZE $WORKAREASIZE
+} else {
+   set _WORKAREASIZE 0x1000
+}
+
+if { [info exists CPUTAPID] } {
+    set _CPUTAPID $CPUTAPID
+} else {
+    set _CPUTAPID 0x0bc11477
+}
+
+swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_CHIPNAME.cpu
+
+$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
+
+set _FLASHNAME $_CHIPNAME.flash
+flash bank $_FLASHNAME kinetis 0 0 0 0 $_TARGETNAME
+
+# if srst is not fitted use SYSRESETREQ to
+# perform a soft reset
+cortex_m reset_config sysresetreq
diff --git a/tcl/target/lpc11uxx.cfg b/tcl/target/lpc11uxx.cfg
new file mode 100644 (file)
index 0000000..6968fcd
--- /dev/null
@@ -0,0 +1,48 @@
+#
+# NXP lpc11uxx family
+
+source [find target/swj-dp.tcl]
+
+if { [info exists CHIPNAME] } {
+       set _CHIPNAME $CHIPNAME
+} else {
+       set _CHIPNAME lpc11uxx
+}
+
+if { [info exists ENDIAN] } {
+       set _ENDIAN $ENDIAN
+} else {
+       set _ENDIAN little
+}
+
+# Work-area is a space in RAM used for flash programming
+# By default use 6kB
+if { [info exists WORKAREASIZE] } {
+   set _WORKAREASIZE $WORKAREASIZE
+} else {
+   set _WORKAREASIZE 0x1800
+}
+
+if { [info exists CPUTAPID] } {
+       set _CPUTAPID $CPUTAPID
+} else {
+       set _CPUTAPID 0x00000000
+}
+
+# delays on reset lines
+adapter_nsrst_delay 100
+#jtag_ntrst_delay 100
+
+swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
+
+$_TARGETNAME configure -work-area-phys 0x10000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
+
+#set _FLASHNAME $_CHIPNAME.flash
+#flash bank $_FLASHNAME lpc2000 0 0 0 0 $_TARGETNAME
+
+# if srst is not fitted use SYSRESETREQ to
+# perform a soft reset
+cortex_m reset_config sysresetreq
index 01a8cd3785e8e33c3fcd735d337759e5ff4e4052..c81971f93e615b05ed73e4401f32122e709be20c 100644 (file)
@@ -49,10 +49,6 @@ if { [info exists CPUROMSIZE] } {
        error "_CPUROMSIZE not set. Please do not include lpc17xx.cfg directly, but the specific chip configuration file (lpc1751.cfg, lpc1764.cfg, etc)."
 }
 
        error "_CPUROMSIZE not set. Please do not include lpc17xx.cfg directly, but the specific chip configuration file (lpc1751.cfg, lpc1764.cfg, etc)."
 }
 
-#delays on reset lines
-adapter_nsrst_delay 200
-jtag_ntrst_delay 200
-
 #jtag newtap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
 swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
 
 #jtag newtap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
 swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
 
@@ -74,6 +70,12 @@ flash bank $_FLASHNAME lpc2000 0x0 $_CPUROMSIZE 0 0 $_TARGETNAME \
 # we have no idea what clock the target is running at.
 adapter_khz 10
 
 # we have no idea what clock the target is running at.
 adapter_khz 10
 
+# delays on reset lines
+adapter_nsrst_delay 200
+if {$using_jtag} {
+ jtag_ntrst_delay 200
+}
+
 $_TARGETNAME configure -event reset-init {
        # Do not remap 0x0000-0x0020 to anything but the flash (i.e. select
        # "User Flash Mode" where interrupt vectors are _not_ remapped,
 $_TARGETNAME configure -event reset-init {
        # Do not remap 0x0000-0x0020 to anything but the flash (i.e. select
        # "User Flash Mode" where interrupt vectors are _not_ remapped,
index 377b7b5f4182f6d77841d30f3186ba914e608539..fa44583a436fb1f2e6e3614252833f89ef035e1d 100644 (file)
 # split out "chip" and "tag" so we can someday handle
 # them more uniformly irlen too...)
 
 # split out "chip" and "tag" so we can someday handle
 # them more uniformly irlen too...)
 
+global using_jtag
+set using_jtag 1
+
 proc swj_newdap {chip tag args} {
 proc swj_newdap {chip tag args} {
-set tran [transport select]
-if [string equal $tran "jtag"] { eval jtag newtap $chip $tag $args}
-if [string equal $tran "swd"] { eval swd newdap $chip $tag $args }
+ global using_jtag
+ set tran [transport select]
+ if [string equal $tran "jtag"] { eval jtag newtap $chip $tag $args; set using_jtag 1 }
+ if [string equal $tran "swd"] { eval swd newdap $chip $tag $args; set using_jtag 0 }
+ if [string equal $tran "cmsis-dap"] { eval cmsis-dap newdap $chip $tag $args; set using_jtag 0 }
 }
 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)