1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2009 SoftPLC Corporation *
12 * Copyright (C) 2009 Zachary T Welch *
13 * zw@superlucidity.net *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
20 * This program is distributed in the hope that it will be useful, *
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
23 * GNU General Public License for more details. *
25 * You should have received a copy of the GNU General Public License *
26 * along with this program; if not, write to the *
27 * Free Software Foundation, Inc., *
28 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
29 ***************************************************************************/
35 #include "interfaces.h"
38 * This file includes declarations for all built-in jtag interfaces,
39 * which are then listed in the jtag_interfaces array.
41 * Dynamic loading can be implemented be searching for shared libraries
42 * that contain a jtag_interface structure that can added to this list.
46 extern struct jtag_interface zy1000_interface
;
47 #elif defined(BUILD_MINIDRIVER_DUMMY)
48 extern struct jtag_interface minidummy_interface
;
49 #else /* standard drivers */
50 #if BUILD_PARPORT == 1
51 extern struct jtag_interface parport_interface
;
54 extern struct jtag_interface dummy_interface
;
56 #if BUILD_FT2232_FTD2XX == 1
57 extern struct jtag_interface ft2232_interface
;
59 #if BUILD_FT2232_LIBFTDI == 1
60 extern struct jtag_interface ft2232_interface
;
63 extern struct jtag_interface ftdi_interface
;
65 #if BUILD_USB_BLASTER_LIBFTDI == 1 || BUILD_USB_BLASTER_FTD2XX == 1 || BUILD_USB_BLASTER_2 == 1
66 extern struct jtag_interface usb_blaster_interface
;
68 #if BUILD_JTAG_VPI == 1
69 extern struct jtag_interface jtag_vpi_interface
;
71 #if BUILD_AMTJTAGACCEL == 1
72 extern struct jtag_interface amt_jtagaccel_interface
;
75 extern struct jtag_interface ep93xx_interface
;
77 #if BUILD_AT91RM9200 == 1
78 extern struct jtag_interface at91rm9200_interface
;
80 #if BUILD_GW16012 == 1
81 extern struct jtag_interface gw16012_interface
;
83 #if BUILD_PRESTO_LIBFTDI == 1 || BUILD_PRESTO_FTD2XX == 1
84 extern struct jtag_interface presto_interface
;
86 #if BUILD_USBPROG == 1
87 extern struct jtag_interface usbprog_interface
;
89 #if BUILD_OPENJTAG == 1
90 extern struct jtag_interface openjtag_interface
;
93 extern struct jtag_interface jlink_interface
;
95 #if BUILD_VSLLINK == 1
96 extern struct jtag_interface vsllink_interface
;
99 extern struct jtag_interface rlink_interface
;
102 extern struct jtag_interface ulink_interface
;
104 #if BUILD_ARMJTAGEW == 1
105 extern struct jtag_interface armjtagew_interface
;
107 #if BUILD_BUSPIRATE == 1
108 extern struct jtag_interface buspirate_interface
;
110 #if BUILD_REMOTE_BITBANG == 1
111 extern struct jtag_interface remote_bitbang_interface
;
113 #if BUILD_HLADAPTER == 1
114 extern struct jtag_interface hl_interface
;
117 extern struct jtag_interface osbdm_interface
;
119 #if BUILD_OPENDOUS == 1
120 extern struct jtag_interface opendous_interface
;
122 #if BUILD_SYSFSGPIO == 1
123 extern struct jtag_interface sysfsgpio_interface
;
126 extern struct jtag_interface aice_interface
;
128 #if BUILD_BCM2835GPIO == 1
129 extern struct jtag_interface bcm2835gpio_interface
;
131 #if BUILD_CMSIS_DAP == 1
132 extern struct jtag_interface cmsis_dap_interface
;
134 #endif /* standard drivers */
137 * The list of built-in JTAG interfaces, containing entries for those
138 * drivers that were enabled by the @c configure script.
140 * The list should be defined to contain either one minidriver interface
141 * or some number of standard driver interfaces, never both.
143 struct jtag_interface
*jtag_interfaces
[] = {
144 #if BUILD_ZY1000 == 1
146 #elif defined(BUILD_MINIDRIVER_DUMMY)
147 &minidummy_interface
,
148 #else /* standard drivers */
149 #if BUILD_PARPORT == 1
155 #if BUILD_FT2232_FTD2XX == 1
158 #if BUILD_FT2232_LIBFTDI == 1
164 #if BUILD_USB_BLASTER_LIBFTDI == 1 || BUILD_USB_BLASTER_FTD2XX == 1 || BUILD_USB_BLASTER_2 == 1
165 &usb_blaster_interface
,
167 #if BUILD_JTAG_VPI == 1
170 #if BUILD_AMTJTAGACCEL == 1
171 &amt_jtagaccel_interface
,
173 #if BUILD_EP93XX == 1
176 #if BUILD_AT91RM9200 == 1
177 &at91rm9200_interface
,
179 #if BUILD_GW16012 == 1
182 #if BUILD_PRESTO_LIBFTDI == 1 || BUILD_PRESTO_FTD2XX == 1
185 #if BUILD_USBPROG == 1
188 #if BUILD_OPENJTAG == 1
194 #if BUILD_VSLLINK == 1
203 #if BUILD_ARMJTAGEW == 1
204 &armjtagew_interface
,
206 #if BUILD_BUSPIRATE == 1
207 &buspirate_interface
,
209 #if BUILD_REMOTE_BITBANG == 1
210 &remote_bitbang_interface
,
212 #if BUILD_HLADAPTER == 1
218 #if BUILD_OPENDOUS == 1
221 #if BUILD_SYSFSGPIO == 1
222 &sysfsgpio_interface
,
227 #if BUILD_BCM2835GPIO == 1
228 &bcm2835gpio_interface
,
230 #if BUILD_CMSIS_DAP == 1
231 &cmsis_dap_interface
,
233 #endif /* standard drivers */
237 void jtag_interface_modules_load(const char *path
)
239 /* @todo: implement dynamic module loading for JTAG interface drivers */