xilinx-xc7: Add additional IDCODEs.
[fw/openocd] / src / jtag / interfaces.c
index ad656a84b1a6ee716298d203a389a8557023b434..286a73ac67483bf30ee0b0b00ccbdb5193d4386f 100644 (file)
@@ -60,6 +60,9 @@ extern struct jtag_interface usb_blaster_interface;
 #if BUILD_JTAG_VPI == 1
 extern struct jtag_interface jtag_vpi_interface;
 #endif
+#if BUILD_FT232R == 1
+extern struct jtag_interface ft232r_interface;
+#endif
 #if BUILD_AMTJTAGACCEL == 1
 extern struct jtag_interface amt_jtagaccel_interface;
 #endif
@@ -123,6 +126,15 @@ extern struct jtag_interface bcm2835gpio_interface;
 #if BUILD_CMSIS_DAP == 1
 extern struct jtag_interface cmsis_dap_interface;
 #endif
+#if BUILD_KITPROG == 1
+extern struct jtag_interface kitprog_interface;
+#endif
+#if BUILD_IMX_GPIO == 1
+extern struct jtag_interface imx_gpio_interface;
+#endif
+#if BUILD_XDS110 == 1
+extern struct jtag_interface xds110_interface;
+#endif
 #endif /* standard drivers */
 
 /**
@@ -153,6 +165,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_JTAG_VPI == 1
                &jtag_vpi_interface,
 #endif
+#if BUILD_FT232R == 1
+               &ft232r_interface,
+#endif
 #if BUILD_AMTJTAGACCEL == 1
                &amt_jtagaccel_interface,
 #endif
@@ -216,6 +231,15 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_CMSIS_DAP == 1
                &cmsis_dap_interface,
 #endif
+#if BUILD_KITPROG == 1
+               &kitprog_interface,
+#endif
+#if BUILD_IMX_GPIO == 1
+               &imx_gpio_interface,
+#endif
+#if BUILD_XDS110 == 1
+               &xds110_interface,
+#endif
 #endif /* standard drivers */
                NULL,
        };