jtag/drivers: add support for Nu-Link (Nuvoton ICE) over usb
Add support for Nu-Link1 over usb hidapi and config file. The original work is fetched from Nuvoton github. Code cleanup, fix merge conflicts, compile and runtime issues. Switch the code from libusb to hidapi, being the device HID based. Add documentation. Merge fixes for multi-word memory read. Reset is not fully compatible with openocd framework; currently the target is reset and then halt at openocd start. Change-Id: I9738de4e26783ba462ea3e39ec32069fd5bb7d94 Signed-off-by: Zale Yu <cyyu@nuvoton.com> Signed-off-by: Saravanan Sekar <saravanan@linumiz.com> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5635 Tested-by: jenkins Reviewed-by: Marc Schink <dev@zapb.de>
This commit is contained in:
parent
583a65644b
commit
b12fca236d
|
@ -127,7 +127,8 @@ m4_define([USB0_ADAPTERS],
|
||||||
[[armjtagew], [Olimex ARM-JTAG-EW Programmer], [ARMJTAGEW]]])
|
[[armjtagew], [Olimex ARM-JTAG-EW Programmer], [ARMJTAGEW]]])
|
||||||
|
|
||||||
m4_define([HIDAPI_ADAPTERS],
|
m4_define([HIDAPI_ADAPTERS],
|
||||||
[[[cmsis_dap], [CMSIS-DAP Compliant Debugger], [CMSIS_DAP]]])
|
[[[cmsis_dap], [CMSIS-DAP Compliant Debugger], [CMSIS_DAP]],
|
||||||
|
[[nulink], [Nu-Link Programmer], [HLADAPTER_NULINK]]])
|
||||||
|
|
||||||
m4_define([HIDAPI_USB1_ADAPTERS],
|
m4_define([HIDAPI_USB1_ADAPTERS],
|
||||||
[[[kitprog], [Cypress KitProg Programmer], [KITPROG]]])
|
[[[kitprog], [Cypress KitProg Programmer], [KITPROG]]])
|
||||||
|
@ -696,7 +697,7 @@ AS_IF([test "x$enable_linuxgpiod" != "xno"], [
|
||||||
build_bitbang=yes
|
build_bitbang=yes
|
||||||
])
|
])
|
||||||
|
|
||||||
AS_IF([test "x$enable_stlink" != "xno" -o "x$enable_ti_icdi" != "xno"], [
|
AS_IF([test "x$enable_stlink" != "xno" -o "x$enable_ti_icdi" != "xno" -o "x$enable_nulink" != "xno"], [
|
||||||
AC_DEFINE([BUILD_HLADAPTER], [1], [1 if you want the High Level JTAG driver.])
|
AC_DEFINE([BUILD_HLADAPTER], [1], [1 if you want the High Level JTAG driver.])
|
||||||
AM_CONDITIONAL([HLADAPTER], [true])
|
AM_CONDITIONAL([HLADAPTER], [true])
|
||||||
], [
|
], [
|
||||||
|
@ -705,6 +706,7 @@ AS_IF([test "x$enable_stlink" != "xno" -o "x$enable_ti_icdi" != "xno"], [
|
||||||
])
|
])
|
||||||
AM_CONDITIONAL([HLADAPTER_STLINK], [test "x$enable_stlink" != "xno"])
|
AM_CONDITIONAL([HLADAPTER_STLINK], [test "x$enable_stlink" != "xno"])
|
||||||
AM_CONDITIONAL([HLADAPTER_ICDI], [test "x$enable_ti_icdi" != "xno"])
|
AM_CONDITIONAL([HLADAPTER_ICDI], [test "x$enable_ti_icdi" != "xno"])
|
||||||
|
AM_CONDITIONAL([HLADAPTER_NULINK], [test "x$enable_nulink" != "xno"])
|
||||||
|
|
||||||
AS_IF([test "x$enable_jlink" != "xno"], [
|
AS_IF([test "x$enable_jlink" != "xno"], [
|
||||||
AS_IF([test "x$use_internal_libjaylink" = "xyes"], [
|
AS_IF([test "x$use_internal_libjaylink" = "xyes"], [
|
||||||
|
|
|
@ -55,6 +55,11 @@ ATTRS{idVendor}=="0403", ATTRS{idProduct}=="c141", MODE="660", GROUP="plugdev",
|
||||||
# Amontec JTAGkey and JTAGkey-tiny
|
# Amontec JTAGkey and JTAGkey-tiny
|
||||||
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="cff8", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="cff8", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
||||||
|
|
||||||
|
# Nuvoton NuLink
|
||||||
|
ATTRS{idVendor}=="0416", ATTRS{idProduct}=="511b", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
||||||
|
ATTRS{idVendor}=="0416", ATTRS{idProduct}=="511c", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
||||||
|
ATTRS{idVendor}=="0416", ATTRS{idProduct}=="511d", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
||||||
|
|
||||||
# TI ICDI
|
# TI ICDI
|
||||||
ATTRS{idVendor}=="0451", ATTRS{idProduct}=="c32a", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
ATTRS{idVendor}=="0451", ATTRS{idProduct}=="c32a", MODE="660", GROUP="plugdev", TAG+="uaccess"
|
||||||
|
|
||||||
|
|
|
@ -505,6 +505,12 @@ 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
|
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.
|
evaluation boards. This is the adapter fitted to the Stellaris LaunchPad.
|
||||||
|
|
||||||
|
@section USB Nuvoton Nu-Link
|
||||||
|
Nuvoton has an adapter called @b{Nu-Link}.
|
||||||
|
It is available either as stand-alone dongle and embedded on development boards.
|
||||||
|
It supports SWD, serial port bridge and mass storage for firmware update.
|
||||||
|
Only Nu-Link v1 is currently supported.
|
||||||
|
|
||||||
@section USB CMSIS-DAP based
|
@section USB CMSIS-DAP based
|
||||||
ARM has released a interface standard called CMSIS-DAP that simplifies connecting
|
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}.
|
debuggers to ARM Cortex based targets @url{http://www.keil.com/support/man/docs/dapdebug/dapdebug_introduction.htm}.
|
||||||
|
@ -3064,7 +3070,8 @@ This is a driver that supports multiple High Level Adapters.
|
||||||
This type of adapter does not expose some of the lower level api's
|
This type of adapter does not expose some of the lower level api's
|
||||||
that OpenOCD would normally use to access the target.
|
that OpenOCD would normally use to access the target.
|
||||||
|
|
||||||
Currently supported adapters include the STMicroelectronics ST-LINK and TI ICDI.
|
Currently supported adapters include the STMicroelectronics ST-LINK, TI ICDI
|
||||||
|
and Nuvoton Nu-Link.
|
||||||
ST-LINK firmware version >= V2.J21.S4 recommended due to issues with earlier
|
ST-LINK firmware version >= V2.J21.S4 recommended due to issues with earlier
|
||||||
versions of firmware where serial number is reset after first use. Suggest
|
versions of firmware where serial number is reset after first use. Suggest
|
||||||
using ST firmware update utility to upgrade ST-LINK firmware even if current
|
using ST firmware update utility to upgrade ST-LINK firmware even if current
|
||||||
|
@ -3078,7 +3085,7 @@ Currently Not Supported.
|
||||||
Specifies the serial number of the adapter.
|
Specifies the serial number of the adapter.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn {Config Command} {hla_layout} (@option{stlink}|@option{icdi})
|
@deffn {Config Command} {hla_layout} (@option{stlink}|@option{icdi}|@option{nulink})
|
||||||
Specifies the adapter layout to use.
|
Specifies the adapter layout to use.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
|
|
|
@ -143,6 +143,9 @@ endif
|
||||||
if HLADAPTER_ICDI
|
if HLADAPTER_ICDI
|
||||||
DRIVERFILES += %D%/ti_icdi_usb.c
|
DRIVERFILES += %D%/ti_icdi_usb.c
|
||||||
endif
|
endif
|
||||||
|
if HLADAPTER_NULINK
|
||||||
|
DRIVERFILES += %D%/nulink_usb.c
|
||||||
|
endif
|
||||||
if RSHIM
|
if RSHIM
|
||||||
DRIVERFILES += %D%/rshim.c
|
DRIVERFILES += %D%/rshim.c
|
||||||
endif
|
endif
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -72,6 +72,14 @@ static const struct hl_layout hl_layouts[] = {
|
||||||
.close = hl_layout_close,
|
.close = hl_layout_close,
|
||||||
.api = &icdi_usb_layout_api,
|
.api = &icdi_usb_layout_api,
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
|
#if BUILD_HLADAPTER_NULINK
|
||||||
|
{
|
||||||
|
.name = "nulink",
|
||||||
|
.open = hl_layout_open,
|
||||||
|
.close = hl_layout_close,
|
||||||
|
.api = &nulink_usb_layout_api,
|
||||||
|
},
|
||||||
#endif
|
#endif
|
||||||
{.name = NULL, /* END OF TABLE */ },
|
{.name = NULL, /* END OF TABLE */ },
|
||||||
};
|
};
|
||||||
|
|
|
@ -31,6 +31,7 @@ struct hl_interface_param_s;
|
||||||
/** */
|
/** */
|
||||||
extern struct hl_layout_api_s stlink_usb_layout_api;
|
extern struct hl_layout_api_s stlink_usb_layout_api;
|
||||||
extern struct hl_layout_api_s icdi_usb_layout_api;
|
extern struct hl_layout_api_s icdi_usb_layout_api;
|
||||||
|
extern struct hl_layout_api_s nulink_usb_layout_api;
|
||||||
|
|
||||||
/** */
|
/** */
|
||||||
struct hl_layout_api_s {
|
struct hl_layout_api_s {
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#
|
||||||
|
# Nuvoton Nu-Link in-circuit debugger/programmer
|
||||||
|
#
|
||||||
|
|
||||||
|
adapter driver hla
|
||||||
|
hla_layout nulink
|
||||||
|
hla_device_desc "Nu-Link"
|
||||||
|
hla_vid_pid 0x0416 0x511b 0x0416 0x511c 0x0416 0x511d
|
||||||
|
|
||||||
|
# Only swd is supported
|
||||||
|
transport select hla_swd
|
Loading…
Reference in New Issue