jtag/drivers/bcm2835gpio: fix bcm2835_peri_base output format
[openocd.git] / src / jtag / drivers / libusb_helper.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2
3 /***************************************************************************
4 * Copyright (C) 2009 by Zachary T Welch <zw@superlucidity.net> *
5 * *
6 * Copyright (C) 2011 by Mauro Gamba <maurillo71@gmail.com> *
7 ***************************************************************************/
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif
12
13 #include <string.h>
14
15 #include <helper/log.h>
16 #include <jtag/adapter.h>
17 #include "libusb_helper.h"
18
19 /*
20 * comment from libusb:
21 * As per the USB 3.0 specs, the current maximum limit for the depth is 7.
22 */
23 #define MAX_USB_PORTS 7
24
25 static struct libusb_context *jtag_libusb_context; /**< Libusb context **/
26 static struct libusb_device **devs; /**< The usb device list **/
27
28 static int jtag_libusb_error(int err)
29 {
30 switch (err) {
31 case LIBUSB_SUCCESS:
32 return ERROR_OK;
33 case LIBUSB_ERROR_TIMEOUT:
34 return ERROR_TIMEOUT_REACHED;
35 case LIBUSB_ERROR_IO:
36 case LIBUSB_ERROR_INVALID_PARAM:
37 case LIBUSB_ERROR_ACCESS:
38 case LIBUSB_ERROR_NO_DEVICE:
39 case LIBUSB_ERROR_NOT_FOUND:
40 case LIBUSB_ERROR_BUSY:
41 case LIBUSB_ERROR_OVERFLOW:
42 case LIBUSB_ERROR_PIPE:
43 case LIBUSB_ERROR_INTERRUPTED:
44 case LIBUSB_ERROR_NO_MEM:
45 case LIBUSB_ERROR_NOT_SUPPORTED:
46 case LIBUSB_ERROR_OTHER:
47 return ERROR_FAIL;
48 default:
49 return ERROR_FAIL;
50 }
51 }
52
53 bool jtag_libusb_match_ids(struct libusb_device_descriptor *dev_desc,
54 const uint16_t vids[], const uint16_t pids[])
55 {
56 for (unsigned i = 0; vids[i]; i++) {
57 if (dev_desc->idVendor == vids[i] &&
58 dev_desc->idProduct == pids[i]) {
59 return true;
60 }
61 }
62 return false;
63 }
64
65 #ifdef HAVE_LIBUSB_GET_PORT_NUMBERS
66 static bool jtag_libusb_location_equal(struct libusb_device *device)
67 {
68 uint8_t port_path[MAX_USB_PORTS];
69 uint8_t dev_bus;
70 int path_len;
71
72 path_len = libusb_get_port_numbers(device, port_path, MAX_USB_PORTS);
73 if (path_len == LIBUSB_ERROR_OVERFLOW) {
74 LOG_WARNING("cannot determine path to usb device! (more than %i ports in path)\n",
75 MAX_USB_PORTS);
76 return false;
77 }
78 dev_bus = libusb_get_bus_number(device);
79
80 return adapter_usb_location_equal(dev_bus, port_path, path_len);
81 }
82 #else /* HAVE_LIBUSB_GET_PORT_NUMBERS */
83 static bool jtag_libusb_location_equal(struct libusb_device *device)
84 {
85 return true;
86 }
87 #endif /* HAVE_LIBUSB_GET_PORT_NUMBERS */
88
89
90 /* Returns true if the string descriptor indexed by str_index in device matches string */
91 static bool string_descriptor_equal(struct libusb_device_handle *device, uint8_t str_index,
92 const char *string)
93 {
94 int retval;
95 bool matched;
96 char desc_string[256+1]; /* Max size of string descriptor */
97
98 if (str_index == 0)
99 return false;
100
101 retval = libusb_get_string_descriptor_ascii(device, str_index,
102 (unsigned char *)desc_string, sizeof(desc_string)-1);
103 if (retval < 0) {
104 LOG_ERROR("libusb_get_string_descriptor_ascii() failed with %d", retval);
105 return false;
106 }
107
108 /* Null terminate descriptor string in case it needs to be logged. */
109 desc_string[sizeof(desc_string)-1] = '\0';
110
111 matched = strncmp(string, desc_string, sizeof(desc_string)) == 0;
112 if (!matched)
113 LOG_DEBUG("Device serial number '%s' doesn't match requested serial '%s'",
114 desc_string, string);
115 return matched;
116 }
117
118 static bool jtag_libusb_match_serial(struct libusb_device_handle *device,
119 struct libusb_device_descriptor *dev_desc, const char *serial,
120 adapter_get_alternate_serial_fn adapter_get_alternate_serial)
121 {
122 if (string_descriptor_equal(device, dev_desc->iSerialNumber, serial))
123 return true;
124
125 /* check the alternate serial helper */
126 if (!adapter_get_alternate_serial)
127 return false;
128
129 /* get the alternate serial */
130 char *alternate_serial = adapter_get_alternate_serial(device, dev_desc);
131
132 /* check possible failures */
133 if (!alternate_serial)
134 return false;
135
136 /* then compare and free the alternate serial */
137 bool match = false;
138 if (strcmp(serial, alternate_serial) == 0)
139 match = true;
140 else
141 LOG_DEBUG("Device alternate serial number '%s' doesn't match requested serial '%s'",
142 alternate_serial, serial);
143
144 free(alternate_serial);
145 return match;
146 }
147
148 int jtag_libusb_open(const uint16_t vids[], const uint16_t pids[],
149 struct libusb_device_handle **out,
150 adapter_get_alternate_serial_fn adapter_get_alternate_serial)
151 {
152 int cnt, idx, err_code;
153 int retval = ERROR_FAIL;
154 bool serial_mismatch = false;
155 struct libusb_device_handle *libusb_handle = NULL;
156 const char *serial = adapter_get_required_serial();
157
158 if (libusb_init(&jtag_libusb_context) < 0)
159 return ERROR_FAIL;
160
161 cnt = libusb_get_device_list(jtag_libusb_context, &devs);
162
163 for (idx = 0; idx < cnt; idx++) {
164 struct libusb_device_descriptor dev_desc;
165
166 if (libusb_get_device_descriptor(devs[idx], &dev_desc) != 0)
167 continue;
168
169 if (!jtag_libusb_match_ids(&dev_desc, vids, pids))
170 continue;
171
172 if (adapter_usb_get_location() && !jtag_libusb_location_equal(devs[idx]))
173 continue;
174
175 err_code = libusb_open(devs[idx], &libusb_handle);
176
177 if (err_code) {
178 LOG_ERROR("libusb_open() failed with %s",
179 libusb_error_name(err_code));
180 continue;
181 }
182
183 /* Device must be open to use libusb_get_string_descriptor_ascii. */
184 if (serial &&
185 !jtag_libusb_match_serial(libusb_handle, &dev_desc, serial, adapter_get_alternate_serial)) {
186 serial_mismatch = true;
187 libusb_close(libusb_handle);
188 continue;
189 }
190
191 /* Success. */
192 *out = libusb_handle;
193 retval = ERROR_OK;
194 serial_mismatch = false;
195 break;
196 }
197 if (cnt >= 0)
198 libusb_free_device_list(devs, 1);
199
200 if (serial_mismatch)
201 LOG_INFO("No device matches the serial string");
202
203 if (retval != ERROR_OK)
204 libusb_exit(jtag_libusb_context);
205
206 return retval;
207 }
208
209 void jtag_libusb_close(struct libusb_device_handle *dev)
210 {
211 /* Close device */
212 libusb_close(dev);
213
214 libusb_exit(jtag_libusb_context);
215 }
216
217 int jtag_libusb_control_transfer(struct libusb_device_handle *dev, uint8_t request_type,
218 uint8_t request, uint16_t value, uint16_t index, char *bytes,
219 uint16_t size, unsigned int timeout, int *transferred)
220 {
221 int retval = libusb_control_transfer(dev, request_type, request, value, index,
222 (unsigned char *)bytes, size, timeout);
223
224 if (retval < 0) {
225 LOG_ERROR("libusb_control_transfer error: %s", libusb_error_name(retval));
226 if (transferred)
227 *transferred = 0;
228 return jtag_libusb_error(retval);
229 }
230
231 if (transferred)
232 *transferred = retval;
233
234 return ERROR_OK;
235 }
236
237 int jtag_libusb_bulk_write(struct libusb_device_handle *dev, int ep, char *bytes,
238 int size, int timeout, int *transferred)
239 {
240 int ret;
241
242 *transferred = 0;
243
244 ret = libusb_bulk_transfer(dev, ep, (unsigned char *)bytes, size,
245 transferred, timeout);
246 if (ret != LIBUSB_SUCCESS) {
247 LOG_ERROR("libusb_bulk_write error: %s", libusb_error_name(ret));
248 return jtag_libusb_error(ret);
249 }
250
251 return ERROR_OK;
252 }
253
254 int jtag_libusb_bulk_read(struct libusb_device_handle *dev, int ep, char *bytes,
255 int size, int timeout, int *transferred)
256 {
257 int ret;
258
259 *transferred = 0;
260
261 ret = libusb_bulk_transfer(dev, ep, (unsigned char *)bytes, size,
262 transferred, timeout);
263 if (ret != LIBUSB_SUCCESS) {
264 LOG_ERROR("libusb_bulk_read error: %s", libusb_error_name(ret));
265 return jtag_libusb_error(ret);
266 }
267
268 return ERROR_OK;
269 }
270
271 int jtag_libusb_set_configuration(struct libusb_device_handle *devh,
272 int configuration)
273 {
274 struct libusb_device *udev = libusb_get_device(devh);
275 int retval = -99;
276
277 struct libusb_config_descriptor *config = NULL;
278 int current_config = -1;
279
280 retval = libusb_get_configuration(devh, &current_config);
281 if (retval != 0)
282 return retval;
283
284 retval = libusb_get_config_descriptor(udev, configuration, &config);
285 if (retval != 0 || !config)
286 return retval;
287
288 /* Only change the configuration if it is not already set to the
289 same one. Otherwise this issues a lightweight reset and hangs
290 LPC-Link2 with JLink firmware. */
291 if (current_config != config->bConfigurationValue)
292 retval = libusb_set_configuration(devh, config->bConfigurationValue);
293
294 libusb_free_config_descriptor(config);
295
296 return retval;
297 }
298
299 int jtag_libusb_choose_interface(struct libusb_device_handle *devh,
300 unsigned int *usb_read_ep,
301 unsigned int *usb_write_ep,
302 int bclass, int subclass, int protocol, int trans_type)
303 {
304 struct libusb_device *udev = libusb_get_device(devh);
305 const struct libusb_interface *inter;
306 const struct libusb_interface_descriptor *interdesc;
307 const struct libusb_endpoint_descriptor *epdesc;
308 struct libusb_config_descriptor *config;
309
310 *usb_read_ep = *usb_write_ep = 0;
311
312 libusb_get_config_descriptor(udev, 0, &config);
313 for (int i = 0; i < (int)config->bNumInterfaces; i++) {
314 inter = &config->interface[i];
315
316 interdesc = &inter->altsetting[0];
317 for (int k = 0;
318 k < (int)interdesc->bNumEndpoints; k++) {
319 if ((bclass > 0 && interdesc->bInterfaceClass != bclass) ||
320 (subclass > 0 && interdesc->bInterfaceSubClass != subclass) ||
321 (protocol > 0 && interdesc->bInterfaceProtocol != protocol))
322 continue;
323
324 epdesc = &interdesc->endpoint[k];
325 if (trans_type > 0 && (epdesc->bmAttributes & 0x3) != trans_type)
326 continue;
327
328 uint8_t epnum = epdesc->bEndpointAddress;
329 bool is_input = epnum & 0x80;
330 LOG_DEBUG("usb ep %s %02x",
331 is_input ? "in" : "out", epnum);
332
333 if (is_input)
334 *usb_read_ep = epnum;
335 else
336 *usb_write_ep = epnum;
337
338 if (*usb_read_ep && *usb_write_ep) {
339 LOG_DEBUG("Claiming interface %d", (int)interdesc->bInterfaceNumber);
340 libusb_claim_interface(devh, (int)interdesc->bInterfaceNumber);
341 libusb_free_config_descriptor(config);
342 return ERROR_OK;
343 }
344 }
345 }
346 libusb_free_config_descriptor(config);
347
348 return ERROR_FAIL;
349 }
350
351 int jtag_libusb_get_pid(struct libusb_device *dev, uint16_t *pid)
352 {
353 struct libusb_device_descriptor dev_desc;
354
355 if (libusb_get_device_descriptor(dev, &dev_desc) == 0) {
356 *pid = dev_desc.idProduct;
357
358 return ERROR_OK;
359 }
360
361 return ERROR_FAIL;
362 }
363
364 int jtag_libusb_handle_events_completed(int *completed)
365 {
366 return libusb_handle_events_completed(jtag_libusb_context, completed);
367 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)