hc
2024-07-16 5fbd6e2385615a225453562361c4bdab3b15fda1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
config BR2_PACKAGE_OPENOCD
   bool "openocd"
   select BR2_PACKAGE_JIMTCL
   help
     OpenOCD - Open On-Chip Debugger
 
     http://openocd.sourceforge.net/
 
if BR2_PACKAGE_OPENOCD
 
comment "Adapters"
 
config BR2_PACKAGE_OPENOCD_CMSIS_DAP
   bool "CMSIS-DAP compliant debuggers"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   depends on BR2_PACKAGE_HAS_UDEV # hidapi
   depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # hidapi
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_HIDAPI
   help
     Enable support for CMSIS-DAP compliant debuggers (i.e
     Atmel/Microchip EDBG, etc.)
 
config BR2_PACKAGE_OPENOCD_FTDI
   bool "MPSSE mode of FTDI based devices"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the MPSSE mode of FTDI
     (FT2xxx/FT4xxx) based devices (default is auto)
 
config BR2_PACKAGE_OPENOCD_STLINK
   bool "ST-Link JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the ST-Link JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_TI_ICDI
   bool "TI ICDI JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the TI ICDI JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_ULINK
   bool "Keil ULINK JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the Keil ULINK JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_UBLASTER2
   bool "Altera USB-Blaster II Compatible"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the Altera USB-Blaster
     II Compatible (default is auto)
 
config BR2_PACKAGE_OPENOCD_JLINK
   bool "Segger J-Link JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Segger J-Link JTAG Programmer and clone such as Atmel
     SAM-ICE
 
config BR2_PACKAGE_OPENOCD_OSDBM
   bool "OSDBM JTAG (only) Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the OSBDM (JTAG only)
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_OPENDOUS
   bool "eStick/opendous JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the eStick/opendous JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_AICE
   bool "Andes JTAG Programmer"
   depends on BR2_USE_MMU # use fork()
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the Andes JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_VSLLINK
   bool "Versaloon-Link JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb-compat -> libusb
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_LIBUSB_COMPAT
   help
     Enable building support for the Versaloon-Link JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_USBPROG
   bool "USBProg JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb-compat -> libusb
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_LIBUSB_COMPAT
   help
     Enable building support for the USBProg JTAG
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_RLINK
   bool "Raisonance RLink JTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb-compat -> libusb
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_LIBUSB_COMPAT
   help
     Enable building support for the Raisonance RLink
     JTAG Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_ARMEW
   bool "Olimex ARM-JTAG-EW Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb-compat -> libusb
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_LIBUSB_COMPAT
   help
     Enable building support for the Olimex ARM-JTAG-EW
     Programmer (default is auto)
 
config BR2_PACKAGE_OPENOCD_XDS110
   bool "TI XDS110 Debug Probe"
   depends on BR2_USE_WCHAR
   depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
   select BR2_PACKAGE_LIBUSB
   help
     Enable building support for the TI XDS110 Debug Probe.
 
config BR2_PACKAGE_OPENOCD_PARPORT
   bool "pc parallel port driver"
   help
     Enable building the pc parallel port driver
 
config BR2_PACKAGE_OPENOCD_VPI
   bool "JTAG VPI"
   help
     Enable building support for JTAG VPI
 
config BR2_PACKAGE_OPENOCD_UBLASTER
   bool "Altera USB-Blaster"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libftdi -> libusb
   select BR2_PACKAGE_LIBFTDI1
   help
     Enable building support for the Altera USB-Blaster
     using the libftdi driver, opensource alternate of
     FTD2XX
 
config BR2_PACKAGE_OPENOCD_AMTJT
   bool "Amontec JTAG-Accelerator"
   help
     Enable building the Amontec JTAG-Accelerator driver
 
if BR2_arm
 
config BR2_PACKAGE_OPENOCD_EP93XX
   bool "EP93xx based SBCs"
   help
     Enable building support for EP93xx based SBCs
 
config BR2_PACKAGE_OPENOCD_AT91RM
   bool "AT91RM9200 based SBCs"
   help
     Enable building support for AT91RM9200 based SBCs
 
config BR2_PACKAGE_OPENOCD_BCM2835
   bool "bitbanging on BCM2835"
   help
     Enable building support for bitbanging on BCM2835
     (as found in Raspberry Pi)
 
endif # BR2_arm
 
config BR2_PACKAGE_OPENOCD_GW16012
   bool "Gateworks GW16012 JTAG Programmer"
   help
     Enable building support for the Gateworks GW16012
     JTAG Programmer
 
config BR2_PACKAGE_OPENOCD_PRESTO
   bool "ASIX Presto Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libftdi -> libusb
   select BR2_PACKAGE_LIBFTDI1
   help
     Enable building support for ASIX Presto Programmer
     using the libftdi driver
 
config BR2_PACKAGE_OPENOCD_OPENJTAG
   bool "OpenJTAG Programmer"
   depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libftdi -> libusb
   select BR2_PACKAGE_LIBFTDI1
   select BR2_PACKAGE_LIBUSB
   select BR2_PACKAGE_LIBUSB_COMPAT # needs usb.h
   help
     Enable building support for the OpenJTAG Programmer
     with ftdi driver
 
config BR2_PACKAGE_OPENOCD_BUSPIRATE
   bool "Buspirate"
   help
     Enable building support for the Buspirate
 
config BR2_PACKAGE_OPENOCD_SYSFS
   bool "programming via sysfs gpios"
   help
     Enable building support for programming driven via
     sysfs gpios.
 
# Many adapters need libusb or libusb-compat, which require threads and
# gcc >= 4.9 but we don't want to duplicate this comment for all
# adapters that select libusb or libusb-compat.
comment "many openocd adapters needs a toolchain w/ threads, gcc >= 4.9"
   depends on !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
 
comment "xds110 adapter support needs toolchain w/ wchar"
   depends on !BR2_USE_WCHAR
   depends on BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
 
endif # BR2_PACKAGE_OPENOCD