]> sigrok.org Git - libsigrok.git/blame_incremental - src/hardware/fx2lafw/api.c
Change type of SR_CONF keys to uint32_t.
[libsigrok.git] / src / hardware / fx2lafw / api.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
5 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "protocol.h"
22
23static const struct fx2lafw_profile supported_fx2[] = {
24 /*
25 * CWAV USBee AX
26 * EE Electronics ESLA201A
27 * ARMFLY AX-Pro
28 */
29 { 0x08a9, 0x0014, "CWAV", "USBee AX", NULL,
30 FIRMWARE_DIR "/fx2lafw-cwav-usbeeax.fw",
31 0, NULL, NULL},
32 /*
33 * CWAV USBee DX
34 * XZL-Studio DX
35 */
36 { 0x08a9, 0x0015, "CWAV", "USBee DX", NULL,
37 FIRMWARE_DIR "/fx2lafw-cwav-usbeedx.fw",
38 DEV_CAPS_16BIT, NULL, NULL },
39
40 /*
41 * CWAV USBee SX
42 */
43 { 0x08a9, 0x0009, "CWAV", "USBee SX", NULL,
44 FIRMWARE_DIR "/fx2lafw-cwav-usbeesx.fw",
45 0, NULL, NULL},
46
47 /*
48 * Saleae Logic
49 * EE Electronics ESLA100
50 * Robomotic MiniLogic
51 * Robomotic BugLogic 3
52 */
53 { 0x0925, 0x3881, "Saleae", "Logic", NULL,
54 FIRMWARE_DIR "/fx2lafw-saleae-logic.fw",
55 0, NULL, NULL},
56
57 /*
58 * Default Cypress FX2 without EEPROM, e.g.:
59 * Lcsoft Mini Board
60 * Braintechnology USB Interface V2.x
61 */
62 { 0x04B4, 0x8613, "Cypress", "FX2", NULL,
63 FIRMWARE_DIR "/fx2lafw-cypress-fx2.fw",
64 DEV_CAPS_16BIT, NULL, NULL },
65
66 /*
67 * Braintechnology USB-LPS
68 */
69 { 0x16d0, 0x0498, "Braintechnology", "USB-LPS", NULL,
70 FIRMWARE_DIR "/fx2lafw-braintechnology-usb-lps.fw",
71 DEV_CAPS_16BIT, NULL, NULL },
72
73 { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
74};
75
76static const uint32_t hwopts[] = {
77 SR_CONF_CONN,
78};
79
80static const uint32_t hwcaps[] = {
81 SR_CONF_LOGIC_ANALYZER,
82 SR_CONF_TRIGGER_MATCH,
83 SR_CONF_SAMPLERATE,
84
85 /* These are really implemented in the driver, not the hardware. */
86 SR_CONF_LIMIT_SAMPLES,
87 SR_CONF_CONTINUOUS,
88};
89
90static const char *channel_names[] = {
91 "0", "1", "2", "3", "4", "5", "6", "7",
92 "8", "9", "10", "11", "12", "13", "14", "15",
93 NULL,
94};
95
96static const int32_t soft_trigger_matches[] = {
97 SR_TRIGGER_ZERO,
98 SR_TRIGGER_ONE,
99 SR_TRIGGER_RISING,
100 SR_TRIGGER_FALLING,
101 SR_TRIGGER_EDGE,
102};
103
104static const uint64_t samplerates[] = {
105 SR_KHZ(20),
106 SR_KHZ(25),
107 SR_KHZ(50),
108 SR_KHZ(100),
109 SR_KHZ(200),
110 SR_KHZ(250),
111 SR_KHZ(500),
112 SR_MHZ(1),
113 SR_MHZ(2),
114 SR_MHZ(3),
115 SR_MHZ(4),
116 SR_MHZ(6),
117 SR_MHZ(8),
118 SR_MHZ(12),
119 SR_MHZ(16),
120 SR_MHZ(24),
121};
122
123SR_PRIV struct sr_dev_driver fx2lafw_driver_info;
124static struct sr_dev_driver *di = &fx2lafw_driver_info;
125
126static int init(struct sr_context *sr_ctx)
127{
128 return std_init(sr_ctx, di, LOG_PREFIX);
129}
130
131static GSList *scan(GSList *options)
132{
133 struct drv_context *drvc;
134 struct dev_context *devc;
135 struct sr_dev_inst *sdi;
136 struct sr_usb_dev_inst *usb;
137 struct sr_channel *ch;
138 struct sr_config *src;
139 const struct fx2lafw_profile *prof;
140 GSList *l, *devices, *conn_devices;
141 struct libusb_device_descriptor des;
142 libusb_device **devlist;
143 struct libusb_device_handle *hdl;
144 int devcnt, num_logic_channels, ret, i, j;
145 const char *conn;
146 char manufacturer[64], product[64];
147
148 drvc = di->priv;
149
150 conn = NULL;
151 for (l = options; l; l = l->next) {
152 src = l->data;
153 switch (src->key) {
154 case SR_CONF_CONN:
155 conn = g_variant_get_string(src->data, NULL);
156 break;
157 }
158 }
159 if (conn)
160 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
161 else
162 conn_devices = NULL;
163
164 /* Find all fx2lafw compatible devices and upload firmware to them. */
165 devices = NULL;
166 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
167 for (i = 0; devlist[i]; i++) {
168 if (conn) {
169 usb = NULL;
170 for (l = conn_devices; l; l = l->next) {
171 usb = l->data;
172 if (usb->bus == libusb_get_bus_number(devlist[i])
173 && usb->address == libusb_get_device_address(devlist[i]))
174 break;
175 }
176 if (!l)
177 /* This device matched none of the ones that
178 * matched the conn specification. */
179 continue;
180 }
181
182 if ((ret = libusb_get_device_descriptor( devlist[i], &des)) != 0) {
183 sr_warn("Failed to get device descriptor: %s.",
184 libusb_error_name(ret));
185 continue;
186 }
187
188 if ((ret = libusb_open(devlist[i], &hdl)) < 0)
189 continue;
190
191 if (des.iManufacturer == 0) {
192 manufacturer[0] = '\0';
193 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
194 des.iManufacturer, (unsigned char *) manufacturer,
195 sizeof(manufacturer))) < 0) {
196 sr_warn("Failed to get manufacturer string descriptor: %s.",
197 libusb_error_name(ret));
198 continue;
199 }
200
201 if (des.iProduct == 0) {
202 product[0] = '\0';
203 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
204 des.iProduct, (unsigned char *) product,
205 sizeof(product))) < 0) {
206 sr_warn("Failed to get product string descriptor: %s.",
207 libusb_error_name(ret));
208 continue;
209 }
210
211 libusb_close(hdl);
212
213 prof = NULL;
214 for (j = 0; supported_fx2[j].vid; j++) {
215 if (des.idVendor == supported_fx2[j].vid &&
216 des.idProduct == supported_fx2[j].pid &&
217 (!supported_fx2[j].usb_manufacturer ||
218 !strcmp(manufacturer, supported_fx2[j].usb_manufacturer)) &&
219 (!supported_fx2[j].usb_manufacturer ||
220 !strcmp(product, supported_fx2[j].usb_product))) {
221 prof = &supported_fx2[j];
222 break;
223 }
224 }
225
226 /* Skip if the device was not found. */
227 if (!prof)
228 continue;
229
230 devcnt = g_slist_length(drvc->instances);
231 sdi = sr_dev_inst_new(devcnt, SR_ST_INITIALIZING,
232 prof->vendor, prof->model, prof->model_version);
233 if (!sdi)
234 return NULL;
235 sdi->driver = di;
236
237 /* Fill in channellist according to this device's profile. */
238 num_logic_channels = prof->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
239 for (j = 0; j < num_logic_channels; j++) {
240 if (!(ch = sr_channel_new(j, SR_CHANNEL_LOGIC, TRUE,
241 channel_names[j])))
242 return NULL;
243 sdi->channels = g_slist_append(sdi->channels, ch);
244 }
245
246 devc = fx2lafw_dev_new();
247 devc->profile = prof;
248 sdi->priv = devc;
249 drvc->instances = g_slist_append(drvc->instances, sdi);
250 devices = g_slist_append(devices, sdi);
251
252 if (fx2lafw_check_conf_profile(devlist[i])) {
253 /* Already has the firmware, so fix the new address. */
254 sr_dbg("Found an fx2lafw device.");
255 sdi->status = SR_ST_INACTIVE;
256 sdi->inst_type = SR_INST_USB;
257 sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
258 libusb_get_device_address(devlist[i]), NULL);
259 } else {
260 if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION,
261 prof->firmware) == SR_OK)
262 /* Store when this device's FW was updated. */
263 devc->fw_updated = g_get_monotonic_time();
264 else
265 sr_err("Firmware upload failed for "
266 "device %d.", devcnt);
267 sdi->inst_type = SR_INST_USB;
268 sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
269 0xff, NULL);
270 }
271 }
272 libusb_free_device_list(devlist, 1);
273 g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
274
275 return devices;
276}
277
278static GSList *dev_list(void)
279{
280 return ((struct drv_context *)(di->priv))->instances;
281}
282
283static int dev_open(struct sr_dev_inst *sdi)
284{
285 struct sr_usb_dev_inst *usb;
286 struct dev_context *devc;
287 int ret;
288 int64_t timediff_us, timediff_ms;
289
290 devc = sdi->priv;
291 usb = sdi->conn;
292
293 /*
294 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
295 * milliseconds for the FX2 to renumerate.
296 */
297 ret = SR_ERR;
298 if (devc->fw_updated > 0) {
299 sr_info("Waiting for device to reset.");
300 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
301 g_usleep(300 * 1000);
302 timediff_ms = 0;
303 while (timediff_ms < MAX_RENUM_DELAY_MS) {
304 if ((ret = fx2lafw_dev_open(sdi, di)) == SR_OK)
305 break;
306 g_usleep(100 * 1000);
307
308 timediff_us = g_get_monotonic_time() - devc->fw_updated;
309 timediff_ms = timediff_us / 1000;
310 sr_spew("Waited %" PRIi64 "ms.", timediff_ms);
311 }
312 if (ret != SR_OK) {
313 sr_err("Device failed to renumerate.");
314 return SR_ERR;
315 }
316 sr_info("Device came back after %" PRIi64 "ms.", timediff_ms);
317 } else {
318 sr_info("Firmware upload was not needed.");
319 ret = fx2lafw_dev_open(sdi, di);
320 }
321
322 if (ret != SR_OK) {
323 sr_err("Unable to open device.");
324 return SR_ERR;
325 }
326
327 ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
328 if (ret != 0) {
329 switch (ret) {
330 case LIBUSB_ERROR_BUSY:
331 sr_err("Unable to claim USB interface. Another "
332 "program or driver has already claimed it.");
333 break;
334 case LIBUSB_ERROR_NO_DEVICE:
335 sr_err("Device has been disconnected.");
336 break;
337 default:
338 sr_err("Unable to claim interface: %s.",
339 libusb_error_name(ret));
340 break;
341 }
342
343 return SR_ERR;
344 }
345
346 if (devc->cur_samplerate == 0) {
347 /* Samplerate hasn't been set; default to the slowest one. */
348 devc->cur_samplerate = samplerates[0];
349 }
350
351 return SR_OK;
352}
353
354static int dev_close(struct sr_dev_inst *sdi)
355{
356 struct sr_usb_dev_inst *usb;
357
358 usb = sdi->conn;
359 if (usb->devhdl == NULL)
360 return SR_ERR;
361
362 sr_info("fx2lafw: Closing device %d on %d.%d interface %d.",
363 sdi->index, usb->bus, usb->address, USB_INTERFACE);
364 libusb_release_interface(usb->devhdl, USB_INTERFACE);
365 libusb_close(usb->devhdl);
366 usb->devhdl = NULL;
367 sdi->status = SR_ST_INACTIVE;
368
369 return SR_OK;
370}
371
372static int cleanup(void)
373{
374 int ret;
375 struct drv_context *drvc;
376
377 if (!(drvc = di->priv))
378 return SR_OK;
379
380 ret = std_dev_clear(di, NULL);
381
382 g_free(drvc);
383 di->priv = NULL;
384
385 return ret;
386}
387
388static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
389 const struct sr_channel_group *cg)
390{
391 struct dev_context *devc;
392 struct sr_usb_dev_inst *usb;
393 char str[128];
394
395 (void)cg;
396
397 if (!sdi)
398 return SR_ERR_ARG;
399
400 devc = sdi->priv;
401
402 switch (key) {
403 case SR_CONF_CONN:
404 if (!sdi->conn)
405 return SR_ERR_ARG;
406 usb = sdi->conn;
407 if (usb->address == 255)
408 /* Device still needs to re-enumerate after firmware
409 * upload, so we don't know its (future) address. */
410 return SR_ERR;
411 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
412 *data = g_variant_new_string(str);
413 break;
414 case SR_CONF_LIMIT_SAMPLES:
415 *data = g_variant_new_uint64(devc->limit_samples);
416 break;
417 case SR_CONF_SAMPLERATE:
418 *data = g_variant_new_uint64(devc->cur_samplerate);
419 break;
420 default:
421 return SR_ERR_NA;
422 }
423
424 return SR_OK;
425}
426
427static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
428 const struct sr_channel_group *cg)
429{
430 struct dev_context *devc;
431 uint64_t arg;
432 unsigned int i;
433 int ret;
434
435 (void)cg;
436
437 if (!sdi)
438 return SR_ERR_ARG;
439
440 if (sdi->status != SR_ST_ACTIVE)
441 return SR_ERR;
442
443 devc = sdi->priv;
444
445 ret = SR_OK;
446
447 switch (key) {
448 case SR_CONF_SAMPLERATE:
449 arg = g_variant_get_uint64(data);
450 for (i = 0; i < ARRAY_SIZE(samplerates); i++) {
451 if (samplerates[i] == arg) {
452 devc->cur_samplerate = arg;
453 break;
454 }
455 }
456 if (i == ARRAY_SIZE(samplerates))
457 ret = SR_ERR_ARG;
458 break;
459 case SR_CONF_LIMIT_SAMPLES:
460 devc->limit_samples = g_variant_get_uint64(data);
461 break;
462 default:
463 ret = SR_ERR_NA;
464 }
465
466 return ret;
467}
468
469static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
470 const struct sr_channel_group *cg)
471{
472 GVariant *gvar;
473 GVariantBuilder gvb;
474
475 (void)sdi;
476 (void)cg;
477
478 switch (key) {
479 case SR_CONF_SCAN_OPTIONS:
480 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
481 hwopts, ARRAY_SIZE(hwopts), sizeof(uint32_t));
482 break;
483 case SR_CONF_DEVICE_OPTIONS:
484 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
485 hwcaps, ARRAY_SIZE(hwcaps), sizeof(uint32_t));
486 break;
487 case SR_CONF_SAMPLERATE:
488 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
489 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
490 ARRAY_SIZE(samplerates), sizeof(uint64_t));
491 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
492 *data = g_variant_builder_end(&gvb);
493 break;
494 case SR_CONF_TRIGGER_MATCH:
495 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
496 soft_trigger_matches, ARRAY_SIZE(soft_trigger_matches),
497 sizeof(int32_t));
498 break;
499 default:
500 return SR_ERR_NA;
501 }
502
503 return SR_OK;
504}
505
506static int receive_data(int fd, int revents, void *cb_data)
507{
508 struct timeval tv;
509 struct drv_context *drvc;
510
511 (void)fd;
512 (void)revents;
513 (void)cb_data;
514
515 drvc = di->priv;
516
517 tv.tv_sec = tv.tv_usec = 0;
518 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
519
520 return TRUE;
521}
522
523static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
524{
525 struct dev_context *devc;
526 struct drv_context *drvc;
527 struct sr_usb_dev_inst *usb;
528 struct sr_trigger *trigger;
529 struct libusb_transfer *transfer;
530 unsigned int i, timeout, num_transfers;
531 int ret;
532 unsigned char *buf;
533 size_t size;
534
535 if (sdi->status != SR_ST_ACTIVE)
536 return SR_ERR_DEV_CLOSED;
537
538 drvc = di->priv;
539 devc = sdi->priv;
540 usb = sdi->conn;
541
542 devc->cb_data = cb_data;
543 devc->sent_samples = 0;
544 devc->acq_aborted = FALSE;
545 devc->empty_transfer_count = 0;
546
547 if ((trigger = sr_session_trigger_get(sdi->session))) {
548 devc->stl = soft_trigger_logic_new(sdi, trigger);
549 devc->trigger_fired = FALSE;
550 } else
551 devc->trigger_fired = TRUE;
552
553 timeout = fx2lafw_get_timeout(devc);
554 num_transfers = fx2lafw_get_number_of_transfers(devc);
555 size = fx2lafw_get_buffer_size(devc);
556 devc->submitted_transfers = 0;
557
558 devc->transfers = g_try_malloc0(sizeof(*devc->transfers) * num_transfers);
559 if (!devc->transfers) {
560 sr_err("USB transfers malloc failed.");
561 return SR_ERR_MALLOC;
562 }
563
564 devc->num_transfers = num_transfers;
565 for (i = 0; i < num_transfers; i++) {
566 if (!(buf = g_try_malloc(size))) {
567 sr_err("USB transfer buffer malloc failed.");
568 return SR_ERR_MALLOC;
569 }
570 transfer = libusb_alloc_transfer(0);
571 libusb_fill_bulk_transfer(transfer, usb->devhdl,
572 2 | LIBUSB_ENDPOINT_IN, buf, size,
573 fx2lafw_receive_transfer, (void *)sdi, timeout);
574 if ((ret = libusb_submit_transfer(transfer)) != 0) {
575 sr_err("Failed to submit transfer: %s.",
576 libusb_error_name(ret));
577 libusb_free_transfer(transfer);
578 g_free(buf);
579 fx2lafw_abort_acquisition(devc);
580 return SR_ERR;
581 }
582 devc->transfers[i] = transfer;
583 devc->submitted_transfers++;
584 }
585
586 devc->ctx = drvc->sr_ctx;
587
588 usb_source_add(sdi->session, devc->ctx, timeout, receive_data, NULL);
589
590 /* Send header packet to the session bus. */
591 std_session_send_df_header(cb_data, LOG_PREFIX);
592
593 if ((ret = fx2lafw_command_start_acquisition(sdi)) != SR_OK) {
594 fx2lafw_abort_acquisition(devc);
595 return ret;
596 }
597
598 return SR_OK;
599}
600
601static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
602{
603 (void)cb_data;
604
605 fx2lafw_abort_acquisition(sdi->priv);
606
607 return SR_OK;
608}
609
610SR_PRIV struct sr_dev_driver fx2lafw_driver_info = {
611 .name = "fx2lafw",
612 .longname = "fx2lafw (generic driver for FX2 based LAs)",
613 .api_version = 1,
614 .init = init,
615 .cleanup = cleanup,
616 .scan = scan,
617 .dev_list = dev_list,
618 .dev_clear = NULL,
619 .config_get = config_get,
620 .config_set = config_set,
621 .config_list = config_list,
622 .dev_open = dev_open,
623 .dev_close = dev_close,
624 .dev_acquisition_start = dev_acquisition_start,
625 .dev_acquisition_stop = dev_acquisition_stop,
626 .priv = NULL,
627};