]> git.gag.com Git - fw/openocd/blobdiff - src/jtag/interfaces.c
cfg: ftdi icdi enable srst open drain config
[fw/openocd] / src / jtag / interfaces.c
index 304dab622400f360c45d758708a17b5b9662b610..19d2fccca6ed5438c8f5bc810d8298c003bfd864 100644 (file)
@@ -59,6 +59,9 @@ extern struct jtag_interface ft2232_interface;
 #if BUILD_FT2232_LIBFTDI == 1
 extern struct jtag_interface ft2232_interface;
 #endif
+#if BUILD_FTDI == 1
+extern struct jtag_interface ftdi_interface;
+#endif
 #if BUILD_USB_BLASTER_LIBFTDI == 1 || BUILD_USB_BLASTER_FTD2XX == 1
 extern struct jtag_interface usb_blaster_interface;
 #endif
@@ -104,6 +107,15 @@ extern struct jtag_interface remote_bitbang_interface;
 #if BUILD_STLINK == 1
 extern struct jtag_interface stlink_interface;
 #endif
+#if BUILD_OSBDM == 1
+extern struct jtag_interface osbdm_interface;
+#endif
+#if BUILD_OPENDOUS == 1
+extern struct jtag_interface opendous_interface;
+#endif
+#if BUILD_SYSFSGPIO == 1
+extern struct jtag_interface sysfsgpio_interface;
+#endif
 #endif /* standard drivers */
 
 /**
@@ -131,6 +143,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_FT2232_LIBFTDI == 1
                &ft2232_interface,
 #endif
+#if BUILD_FTDI == 1
+               &ftdi_interface,
+#endif
 #if BUILD_USB_BLASTER_LIBFTDI == 1 || BUILD_USB_BLASTER_FTD2XX == 1
                &usb_blaster_interface,
 #endif
@@ -176,6 +191,15 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_STLINK == 1
                &stlink_interface,
 #endif
+#if BUILD_OSBDM == 1
+               &osbdm_interface,
+#endif
+#if BUILD_OPENDOUS == 1
+               &opendous_interface,
+#endif
+#if BUILD_SYSFSGPIO == 1
+               &sysfsgpio_interface,
+#endif
 #endif /* standard drivers */
                NULL,
        };