board: Add TI AM335x Evaluation Module
[fw/openocd] / src / jtag / interfaces.c
index 4937adbac0d0c3d7021838205f1e585467c19e6c..4b054bef4e5eeb2a14957712cccc9fe21c9886d3 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
@@ -107,6 +110,9 @@ extern struct jtag_interface stlink_interface;
 #if BUILD_OSBDM == 1
 extern struct jtag_interface osbdm_interface;
 #endif
+#if BUILD_OPENDOUS == 1
+extern struct jtag_interface opendous_interface;
+#endif
 #endif /* standard drivers */
 
 /**
@@ -134,6 +140,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
@@ -182,6 +191,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_OSBDM == 1
                &osbdm_interface,
 #endif
+#if BUILD_OPENDOUS == 1
+               &opendous_interface,
+#endif
 #endif /* standard drivers */
                NULL,
        };