Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ m4_define([JTAG_VPI_ADAPTER],
m4_define([RSHIM_ADAPTER],
[[[rshim], [BlueField SoC via rshim], [RSHIM]]])

m4_define([NETWORK_ADAPTERS],
[[[xvc], [Xilinx XVC TCP], [XVC]]])

# The word 'Adapter' in "Dummy Adapter" below must begin with a capital letter
# because there is an M4 macro called 'adapter'.
m4_define([DUMMY_ADAPTER],
Expand Down Expand Up @@ -322,7 +325,8 @@ AC_ARG_ADAPTERS([
JTAG_VPI_ADAPTER,
RSHIM_ADAPTER,
PCIE_ADAPTERS,
LIBJAYLINK_ADAPTERS
LIBJAYLINK_ADAPTERS,
NETWORK_ADAPTERS
],[auto])

AC_ARG_ENABLE([parport],
Expand Down Expand Up @@ -721,6 +725,11 @@ PROCESS_ADAPTERS([JTAG_VPI_ADAPTER], [true], [unused])
PROCESS_ADAPTERS([RSHIM_ADAPTER], ["x$can_build_rshim" = "xyes"],
[internal error: validation should happen beforehand])
PROCESS_ADAPTERS([DUMMY_ADAPTER], [true], [unused])
PROCESS_ADAPTERS([NETWORK_ADAPTERS], [true], [unused])

AS_IF([test "x$enable_xvc" != "xno"], [
build_bitbang=yes
])

AS_IF([test "x$enable_linuxgpiod" != "xno"], [
build_bitbang=yes
Expand Down Expand Up @@ -873,6 +882,7 @@ m4_foreach([adapter], [USB1_ADAPTERS,
LIBGPIOD_ADAPTERS,
REMOTE_BITBANG_ADAPTER,
LIBJAYLINK_ADAPTERS, PCIE_ADAPTERS, SERIAL_PORT_ADAPTERS,
NETWORK_ADAPTERS,
LINUXSPIDEV_ADAPTER,
VDEBUG_ADAPTER,
JTAG_DPI_ADAPTER,
Expand Down
Binary file added doc/openocd.info-3
Binary file not shown.
3 changes: 3 additions & 0 deletions src/jtag/drivers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@ endif
if AM335XGPIO
DRIVERFILES += %D%/am335xgpio.c
endif
if XVC
DRIVERFILES += %D%/xvc.c
endif

DRIVERHEADERS = \
%D%/bitbang.h \
Expand Down
Loading
Loading