Skip to content

Commit

Permalink
esp: Adds support for on-silicon USB-to-JTAG functionality in Espress…
Browse files Browse the repository at this point in the history
…if chips
  • Loading branch information
Spritetm authored and gerekon committed Oct 28, 2020
1 parent 08e5f80 commit 7fbfdc8
Show file tree
Hide file tree
Showing 7 changed files with 794 additions and 0 deletions.
7 changes: 7 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ m4_define([USB1_ADAPTERS],
m4_define([USB_ADAPTERS],
[[[osbdm], [OSBDM (JTAG only) Programmer], [OSBDM]],
[[opendous], [eStick/opendous JTAG Programmer], [OPENDOUS]],
[[esp_usb_jtag], [Espressif JTAG Programmer], [ESP_USB_JTAG]],
[[aice], [Andes JTAG Programmer], [AICE]]])

m4_define([USB0_ADAPTERS],
Expand Down Expand Up @@ -691,6 +692,12 @@ AS_IF([test "x$enable_presto" != "xno"], [
build_bitq=yes
])

# esp-usb-jtag also needs the bitq module
AS_IF([test "x$enable_esp_usb_jtag" != "xno"], [
build_bitq=yes
])


AM_CONDITIONAL([RELEASE], [test "x$build_release" = "xyes"])
AM_CONDITIONAL([PARPORT], [test "x$build_parport" = "xyes"])
AM_CONDITIONAL([DUMMY], [test "x$build_dummy" = "xyes"])
Expand Down
3 changes: 3 additions & 0 deletions src/jtag/drivers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ endif
if PRESTO
DRIVERFILES += %D%/presto.c
endif
if ESP_USB_JTAG
DRIVERFILES += %D%/esp_usb_jtag.c
endif
if USBPROG
DRIVERFILES += %D%/usbprog.c
endif
Expand Down
Loading

0 comments on commit 7fbfdc8

Please sign in to comment.