imx_gpio: add mmap based jtag interface for IMX processors
[fw/openocd] / src / jtag / interfaces.c
index 396043d268da1766a93d234a9632df0d4507bf65..174c63a3cde2cee378feb69fa26929c9fd5a583f 100644 (file)
@@ -126,6 +126,9 @@ extern struct jtag_interface cmsis_dap_interface;
 #if BUILD_KITPROG == 1
 extern struct jtag_interface kitprog_interface;
 #endif
+#if BUILD_IMX_GPIO == 1
+extern struct jtag_interface imx_gpio_interface;
+#endif
 #endif /* standard drivers */
 
 /**
@@ -222,6 +225,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_KITPROG == 1
                &kitprog_interface,
 #endif
+#if BUILD_IMX_GPIO == 1
+               &imx_gpio_interface,
+#endif
 #endif /* standard drivers */
                NULL,
        };