]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/fx2lafw/fx2lafw.c
sr: remove obsolete SR_DI_INST
[libsigrok.git] / hardware / fx2lafw / fx2lafw.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010-2012 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 <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <inttypes.h>
25#include <libusb.h>
26#include "config.h"
27#include "libsigrok.h"
28#include "libsigrok-internal.h"
29#include "fx2lafw.h"
30#include "command.h"
31
32static const struct fx2lafw_profile supported_fx2[] = {
33 /*
34 * CWAV USBee AX
35 * EE Electronics ESLA201A
36 * ARMFLY AX-Pro
37 */
38 { 0x08a9, 0x0014, "CWAV", "USBee AX", NULL,
39 FIRMWARE_DIR "/fx2lafw-cwav-usbeeax.fw",
40 0 },
41 /*
42 * CWAV USBee DX
43 * XZL-Studio DX
44 */
45 { 0x08a9, 0x0015, "CWAV", "USBee DX", NULL,
46 FIRMWARE_DIR "/fx2lafw-cwav-usbeedx.fw",
47 DEV_CAPS_16BIT },
48
49 /*
50 * CWAV USBee SX
51 */
52 { 0x08a9, 0x0009, "CWAV", "USBee SX", NULL,
53 FIRMWARE_DIR "/fx2lafw-cwav-usbeesx.fw",
54 0 },
55
56 /*
57 * Saleae Logic
58 * EE Electronics ESLA100
59 * Robomotic MiniLogic
60 * Robomotic BugLogic 3
61 */
62 { 0x0925, 0x3881, "Saleae", "Logic", NULL,
63 FIRMWARE_DIR "/fx2lafw-saleae-logic.fw",
64 0 },
65
66 /*
67 * Default Cypress FX2 without EEPROM, e.g.:
68 * Lcsoft Mini Board
69 * Braintechnology USB Interface V2.x
70 */
71 { 0x04B4, 0x8613, "Cypress", "FX2", NULL,
72 FIRMWARE_DIR "/fx2lafw-cypress-fx2.fw",
73 DEV_CAPS_16BIT },
74
75 /*
76 * Braintechnology USB-LPS
77 */
78 { 0x16d0, 0x0498, "Braintechnology", "USB-LPS", NULL,
79 FIRMWARE_DIR "/fx2lafw-braintechnology-usb-lps.fw",
80 DEV_CAPS_16BIT },
81
82 { 0, 0, 0, 0, 0, 0, 0 }
83};
84
85static const int hwcaps[] = {
86 SR_HWCAP_LOGIC_ANALYZER,
87 SR_HWCAP_SAMPLERATE,
88
89 /* These are really implemented in the driver, not the hardware. */
90 SR_HWCAP_LIMIT_SAMPLES,
91 SR_HWCAP_CONTINUOUS,
92 0,
93};
94
95static const char *probe_names[] = {
96 "0",
97 "1",
98 "2",
99 "3",
100 "4",
101 "5",
102 "6",
103 "7",
104 "8",
105 "9",
106 "10",
107 "11",
108 "12",
109 "13",
110 "14",
111 "15",
112 NULL,
113};
114
115static const uint64_t supported_samplerates[] = {
116 SR_KHZ(20),
117 SR_KHZ(25),
118 SR_KHZ(50),
119 SR_KHZ(100),
120 SR_KHZ(200),
121 SR_KHZ(250),
122 SR_KHZ(500),
123 SR_MHZ(1),
124 SR_MHZ(2),
125 SR_MHZ(3),
126 SR_MHZ(4),
127 SR_MHZ(6),
128 SR_MHZ(8),
129 SR_MHZ(12),
130 SR_MHZ(16),
131 SR_MHZ(24),
132 0,
133};
134
135static const struct sr_samplerates samplerates = {
136 0,
137 0,
138 0,
139 supported_samplerates,
140};
141
142static libusb_context *usb_context = NULL;
143
144SR_PRIV struct sr_dev_driver fx2lafw_driver_info;
145static struct sr_dev_driver *fdi = &fx2lafw_driver_info;
146static int hw_dev_close(struct sr_dev_inst *sdi);
147static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
148 const void *value);
149static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
150 void *cb_data);
151
152/**
153 * Check the USB configuration to determine if this is an fx2lafw device.
154 *
155 * @return TRUE if the device's configuration profile match fx2lafw
156 * configuration, FALSE otherwise.
157 */
158static gboolean check_conf_profile(libusb_device *dev)
159{
160 struct libusb_device_descriptor des;
161 struct libusb_device_handle *hdl;
162 gboolean ret;
163 unsigned char strdesc[64];
164
165 hdl = NULL;
166 ret = FALSE;
167 while (!ret) {
168 /* Assume the FW has not been loaded, unless proven wrong. */
169 if (libusb_get_device_descriptor(dev, &des) != 0)
170 break;
171
172 if (libusb_open(dev, &hdl) != 0)
173 break;
174
175 if (libusb_get_string_descriptor_ascii(hdl,
176 des.iManufacturer, strdesc, sizeof(strdesc)) < 0)
177 break;
178 if (strncmp((const char *)strdesc, "sigrok", 6))
179 break;
180
181 if (libusb_get_string_descriptor_ascii(hdl,
182 des.iProduct, strdesc, sizeof(strdesc)) < 0)
183 break;
184 if (strncmp((const char *)strdesc, "fx2lafw", 7))
185 break;
186
187 /* If we made it here, it must be an fx2lafw. */
188 ret = TRUE;
189 }
190 if (hdl)
191 libusb_close(hdl);
192
193 return ret;
194}
195
196static int fx2lafw_dev_open(struct sr_dev_inst *sdi)
197{
198 libusb_device **devlist;
199 struct libusb_device_descriptor des;
200 struct context *ctx;
201 struct version_info vi;
202 int ret, skip, i;
203 uint8_t revid;
204
205 ctx = sdi->priv;
206
207 if (sdi->status == SR_ST_ACTIVE)
208 /* already in use */
209 return SR_ERR;
210
211 skip = 0;
212 const int device_count = libusb_get_device_list(usb_context, &devlist);
213 if (device_count < 0) {
214 sr_err("fx2lafw: Failed to retrieve device list (%d)",
215 device_count);
216 return SR_ERR;
217 }
218
219 for (i = 0; i < device_count; i++) {
220 if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
221 sr_err("fx2lafw: Failed to get device descriptor: %d.",
222 ret);
223 continue;
224 }
225
226 if (des.idVendor != ctx->profile->vid
227 || des.idProduct != ctx->profile->pid)
228 continue;
229
230 if (sdi->status == SR_ST_INITIALIZING) {
231 if (skip != sdi->index) {
232 /* Skip devices of this type that aren't the one we want. */
233 skip += 1;
234 continue;
235 }
236 } else if (sdi->status == SR_ST_INACTIVE) {
237 /*
238 * This device is fully enumerated, so we need to find
239 * this device by vendor, product, bus and address.
240 */
241 if (libusb_get_bus_number(devlist[i]) != ctx->usb->bus
242 || libusb_get_device_address(devlist[i]) != ctx->usb->address)
243 /* this is not the one */
244 continue;
245 }
246
247 if (!(ret = libusb_open(devlist[i], &ctx->usb->devhdl))) {
248 if (ctx->usb->address == 0xff)
249 /*
250 * first time we touch this device after firmware upload,
251 * so we don't know the address yet.
252 */
253 ctx->usb->address = libusb_get_device_address(devlist[i]);
254 } else {
255 sr_err("fx2lafw: Failed to open device: %d.", ret);
256 break;
257 }
258
259 ret = command_get_fw_version(ctx->usb->devhdl, &vi);
260 if (ret != SR_OK) {
261 sr_err("fx2lafw: Failed to retrieve "
262 "firmware version information.");
263 break;
264 }
265
266 ret = command_get_revid_version(ctx->usb->devhdl, &revid);
267 if (ret != SR_OK) {
268 sr_err("fx2lafw: Failed to retrieve REVID.");
269 break;
270 }
271
272 /*
273 * Changes in major version mean incompatible/API changes, so
274 * bail out if we encounter an incompatible version.
275 * Different minor versions are OK, they should be compatible.
276 */
277 if (vi.major != FX2LAFW_REQUIRED_VERSION_MAJOR) {
278 sr_err("fx2lafw: Expected firmware version %d.x, "
279 "got %d.%d.", FX2LAFW_REQUIRED_VERSION_MAJOR,
280 vi.major, vi.minor);
281 break;
282 }
283
284 sdi->status = SR_ST_ACTIVE;
285 sr_info("fx2lafw: Opened device %d on %d.%d "
286 "interface %d, firmware %d.%d, REVID %d.",
287 sdi->index, ctx->usb->bus, ctx->usb->address,
288 USB_INTERFACE, vi.major, vi.minor, revid);
289
290 break;
291 }
292 libusb_free_device_list(devlist, 1);
293
294 if (sdi->status != SR_ST_ACTIVE)
295 return SR_ERR;
296
297 return SR_OK;
298}
299
300static int configure_probes(struct context *ctx, GSList *probes)
301{
302 struct sr_probe *probe;
303 GSList *l;
304 int probe_bit, stage, i;
305 char *tc;
306
307 for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
308 ctx->trigger_mask[i] = 0;
309 ctx->trigger_value[i] = 0;
310 }
311
312 stage = -1;
313 for (l = probes; l; l = l->next) {
314 probe = (struct sr_probe *)l->data;
315 if (probe->enabled == FALSE)
316 continue;
317
318 if (probe->index > 7)
319 ctx->sample_wide = TRUE;
320
321 probe_bit = 1 << (probe->index);
322 if (!(probe->trigger))
323 continue;
324
325 stage = 0;
326 for (tc = probe->trigger; *tc; tc++) {
327 ctx->trigger_mask[stage] |= probe_bit;
328 if (*tc == '1')
329 ctx->trigger_value[stage] |= probe_bit;
330 stage++;
331 if (stage > NUM_TRIGGER_STAGES)
332 return SR_ERR;
333 }
334 }
335
336 if (stage == -1)
337 /*
338 * We didn't configure any triggers, make sure acquisition
339 * doesn't wait for any.
340 */
341 ctx->trigger_stage = TRIGGER_FIRED;
342 else
343 ctx->trigger_stage = 0;
344
345 return SR_OK;
346}
347
348static struct context *fx2lafw_dev_new(void)
349{
350 struct context *ctx;
351
352 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
353 sr_err("fx2lafw: %s: ctx malloc failed.", __func__);
354 return NULL;
355 }
356
357 ctx->trigger_stage = TRIGGER_FIRED;
358
359 return ctx;
360}
361
362static int clear_instances(void)
363{
364 GSList *l;
365 struct sr_dev_inst *sdi;
366 struct context *ctx;
367 int ret;
368
369 ret = SR_OK;
370 for (l = fdi->instances; l; l = l->next) {
371 if (!(sdi = l->data)) {
372 /* Log error, but continue cleaning up the rest. */
373 sr_err("fx2lafw: %s: sdi was NULL, continuing.",
374 __func__);
375 ret = SR_ERR_BUG;
376 continue;
377 }
378 if (!(ctx = sdi->priv)) {
379 /* Log error, but continue cleaning up the rest. */
380 sr_err("fx2lafw: %s: sdi->priv was NULL, continuing",
381 __func__);
382 ret = SR_ERR_BUG;
383 continue;
384 }
385 hw_dev_close(sdi);
386 sdi = l->data;
387 sr_dev_inst_free(sdi);
388 }
389
390 g_slist_free(fdi->instances);
391 fdi->instances = NULL;
392
393 return ret;
394}
395
396
397/*
398 * API callbacks
399 */
400
401static int hw_init(void)
402{
403
404 if (libusb_init(&usb_context) != 0) {
405 sr_warn("fx2lafw: Failed to initialize libusb.");
406 return SR_ERR;
407 }
408
409 return SR_OK;
410}
411
412static GSList *hw_scan(GSList *options)
413{
414 GSList *devices;
415 struct libusb_device_descriptor des;
416 struct sr_dev_inst *sdi;
417 const struct fx2lafw_profile *prof;
418 struct context *ctx;
419 struct sr_probe *probe;
420 libusb_device **devlist;
421 int devcnt, num_logic_probes, ret, i, j;
422
423 /* Avoid compiler warnings. */
424 (void)options;
425
426 /* This scan always invalidates any previous scans. */
427 clear_instances();
428
429 /* Find all fx2lafw compatible devices and upload firmware to them. */
430 devices = NULL;
431 libusb_get_device_list(usb_context, &devlist);
432 for (i = 0; devlist[i]; i++) {
433
434 if ((ret = libusb_get_device_descriptor(
435 devlist[i], &des)) != 0) {
436 sr_warn("fx2lafw: Failed to get device descriptor: %d.", ret);
437 continue;
438 }
439
440 prof = NULL;
441 for (j = 0; supported_fx2[j].vid; j++) {
442 if (des.idVendor == supported_fx2[j].vid &&
443 des.idProduct == supported_fx2[j].pid) {
444 prof = &supported_fx2[j];
445 }
446 }
447
448 /* Skip if the device was not found */
449 if (!prof)
450 continue;
451
452 devcnt = g_slist_length(fdi->instances);
453 sdi = sr_dev_inst_new(devcnt, SR_ST_INITIALIZING,
454 prof->vendor, prof->model, prof->model_version);
455 if (!sdi)
456 return NULL;
457 sdi->driver = fdi;
458
459 /* Fill in probelist according to this device's profile. */
460 num_logic_probes = prof->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
461 for (j = 0; j < num_logic_probes; j++) {
462 if (!(probe = sr_probe_new(j, SR_PROBE_LOGIC, TRUE,
463 probe_names[j])))
464 return NULL;
465 sdi->probes = g_slist_append(sdi->probes, probe);
466 }
467
468 ctx = fx2lafw_dev_new();
469 ctx->profile = prof;
470 sdi->priv = ctx;
471 fdi->instances = g_slist_append(fdi->instances, sdi);
472 devices = g_slist_append(devices, sdi);
473
474 if (check_conf_profile(devlist[i])) {
475 /* Already has the firmware, so fix the new address. */
476 sr_dbg("fx2lafw: Found an fx2lafw device.");
477 sdi->status = SR_ST_INACTIVE;
478 ctx->usb = sr_usb_dev_inst_new
479 (libusb_get_bus_number(devlist[i]),
480 libusb_get_device_address(devlist[i]), NULL);
481 } else {
482 if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION,
483 prof->firmware) == SR_OK)
484 /* Remember when the firmware on this device was updated */
485 ctx->fw_updated = g_get_monotonic_time();
486 else
487 sr_err("fx2lafw: Firmware upload failed for "
488 "device %d.", devcnt);
489 ctx->usb = sr_usb_dev_inst_new
490 (libusb_get_bus_number(devlist[i]), 0xff, NULL);
491 }
492 }
493 libusb_free_device_list(devlist, 1);
494
495 return devices;
496}
497
498static int hw_dev_open(struct sr_dev_inst *sdi)
499{
500 struct context *ctx;
501 int ret;
502 int64_t timediff_us, timediff_ms;
503
504 ctx = sdi->priv;
505
506 /*
507 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
508 * milliseconds for the FX2 to renumerate.
509 */
510 ret = SR_ERR;
511 if (ctx->fw_updated > 0) {
512 sr_info("fx2lafw: Waiting for device to reset.");
513 /* takes at least 300ms for the FX2 to be gone from the USB bus */
514 g_usleep(300 * 1000);
515 timediff_ms = 0;
516 while (timediff_ms < MAX_RENUM_DELAY_MS) {
517 if ((ret = fx2lafw_dev_open(sdi)) == SR_OK)
518 break;
519 g_usleep(100 * 1000);
520
521 timediff_us = g_get_monotonic_time() - ctx->fw_updated;
522 timediff_ms = timediff_us / 1000;
523 sr_spew("fx2lafw: waited %" PRIi64 " ms", timediff_ms);
524 }
525 sr_info("fx2lafw: Device came back after %d ms.", timediff_ms);
526 } else {
527 ret = fx2lafw_dev_open(sdi);
528 }
529
530 if (ret != SR_OK) {
531 sr_err("fx2lafw: Unable to open device.");
532 return SR_ERR;
533 }
534 ctx = sdi->priv;
535
536 ret = libusb_claim_interface(ctx->usb->devhdl, USB_INTERFACE);
537 if (ret != 0) {
538 switch(ret) {
539 case LIBUSB_ERROR_BUSY:
540 sr_err("fx2lafw: Unable to claim USB interface. Another "
541 "program or driver has already claimed it.");
542 break;
543
544 case LIBUSB_ERROR_NO_DEVICE:
545 sr_err("fx2lafw: Device has been disconnected.");
546 break;
547
548 default:
549 sr_err("fx2lafw: Unable to claim interface: %d.", ret);
550 break;
551 }
552
553 return SR_ERR;
554 }
555
556 if (ctx->cur_samplerate == 0) {
557 /* Samplerate hasn't been set; default to the slowest one. */
558 if (hw_dev_config_set(sdi, SR_HWCAP_SAMPLERATE,
559 &supported_samplerates[0]) == SR_ERR)
560 return SR_ERR;
561 }
562
563 return SR_OK;
564}
565
566static int hw_dev_close(struct sr_dev_inst *sdi)
567{
568 struct context *ctx;
569
570 ctx = sdi->priv;
571 if (ctx->usb->devhdl == NULL)
572 return SR_ERR;
573
574 sr_info("fx2lafw: Closing device %d on %d.%d interface %d.",
575 sdi->index, ctx->usb->bus, ctx->usb->address, USB_INTERFACE);
576 libusb_release_interface(ctx->usb->devhdl, USB_INTERFACE);
577 libusb_close(ctx->usb->devhdl);
578 ctx->usb->devhdl = NULL;
579 sdi->status = SR_ST_INACTIVE;
580
581 return SR_OK;
582}
583
584static int hw_cleanup(void)
585{
586 int ret;
587
588 ret = clear_instances();
589
590 if (usb_context)
591 libusb_exit(usb_context);
592 usb_context = NULL;
593
594 return ret;
595}
596
597static int hw_info_get(int info_id, const void **data,
598 const struct sr_dev_inst *sdi)
599{
600 struct context *ctx;
601
602 switch (info_id) {
603 case SR_DI_HWCAPS:
604 *data = hwcaps;
605 break;
606 case SR_DI_NUM_PROBES:
607 if (sdi) {
608 ctx = sdi->priv;
609 *data = GINT_TO_POINTER(
610 (ctx->profile->dev_caps & DEV_CAPS_16BIT) ?
611 16 : 8);
612 } else
613 return SR_ERR;
614 break;
615 case SR_DI_PROBE_NAMES:
616 *data = probe_names;
617 break;
618 case SR_DI_SAMPLERATES:
619 *data = &samplerates;
620 break;
621 case SR_DI_TRIGGER_TYPES:
622 *data = TRIGGER_TYPES;
623 break;
624 case SR_DI_CUR_SAMPLERATE:
625 if (sdi) {
626 ctx = sdi->priv;
627 *data = &ctx->cur_samplerate;
628 } else
629 return SR_ERR;
630 break;
631 default:
632 return SR_ERR_ARG;
633 }
634
635 return SR_OK;
636}
637
638static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
639 const void *value)
640{
641 struct context *ctx;
642 int ret;
643
644 ctx = sdi->priv;
645
646 if (hwcap == SR_HWCAP_SAMPLERATE) {
647 ctx->cur_samplerate = *(const uint64_t *)value;
648 ret = SR_OK;
649 } else if (hwcap == SR_HWCAP_PROBECONFIG) {
650 ret = configure_probes(ctx, (GSList *) value);
651 } else if (hwcap == SR_HWCAP_LIMIT_SAMPLES) {
652 ctx->limit_samples = *(const uint64_t *)value;
653 ret = SR_OK;
654 } else {
655 ret = SR_ERR;
656 }
657
658 return ret;
659}
660
661static int receive_data(int fd, int revents, void *cb_data)
662{
663 struct timeval tv;
664
665 /* Avoid compiler warnings. */
666 (void)fd;
667 (void)revents;
668 (void)cb_data;
669
670 tv.tv_sec = tv.tv_usec = 0;
671 libusb_handle_events_timeout(usb_context, &tv);
672
673 return TRUE;
674}
675
676static void abort_acquisition(struct context *ctx)
677{
678 int i;
679
680 ctx->num_samples = -1;
681
682 for (i = ctx->num_transfers - 1; i >= 0; i--) {
683 if (ctx->transfers[i])
684 libusb_cancel_transfer(ctx->transfers[i]);
685 }
686}
687
688static void finish_acquisition(struct context *ctx)
689{
690 struct sr_datafeed_packet packet;
691 int i;
692
693 /* Terminate session */
694 packet.type = SR_DF_END;
695 sr_session_send(ctx->session_dev_id, &packet);
696
697 /* Remove fds from polling */
698 const struct libusb_pollfd **const lupfd =
699 libusb_get_pollfds(usb_context);
700 for (i = 0; lupfd[i]; i++)
701 sr_source_remove(lupfd[i]->fd);
702 free(lupfd); /* NOT g_free()! */
703
704 ctx->num_transfers = 0;
705 g_free(ctx->transfers);
706}
707
708static void free_transfer(struct libusb_transfer *transfer)
709{
710 struct context *ctx = transfer->user_data;
711 unsigned int i;
712
713 g_free(transfer->buffer);
714 transfer->buffer = NULL;
715 libusb_free_transfer(transfer);
716
717 for (i = 0; i < ctx->num_transfers; i++) {
718 if (ctx->transfers[i] == transfer) {
719 ctx->transfers[i] = NULL;
720 break;
721 }
722 }
723
724 ctx->submitted_transfers--;
725 if (ctx->submitted_transfers == 0)
726 finish_acquisition(ctx);
727
728}
729
730static void resubmit_transfer(struct libusb_transfer *transfer)
731{
732 if (libusb_submit_transfer(transfer) != 0) {
733 free_transfer(transfer);
734 /* TODO: Stop session? */
735 /* TODO: Better error message. */
736 sr_err("fx2lafw: %s: libusb_submit_transfer error.", __func__);
737 }
738}
739
740static void receive_transfer(struct libusb_transfer *transfer)
741{
742 gboolean packet_has_error = FALSE;
743 struct sr_datafeed_packet packet;
744 struct sr_datafeed_logic logic;
745 struct context *ctx = transfer->user_data;
746 int trigger_offset, i;
747
748 /*
749 * If acquisition has already ended, just free any queued up
750 * transfer that come in.
751 */
752 if (ctx->num_samples == -1) {
753 free_transfer(transfer);
754 return;
755 }
756
757 sr_info("fx2lafw: receive_transfer(): status %d received %d bytes.",
758 transfer->status, transfer->actual_length);
759
760 /* Save incoming transfer before reusing the transfer struct. */
761 uint8_t *const cur_buf = transfer->buffer;
762 const int sample_width = ctx->sample_wide ? 2 : 1;
763 const int cur_sample_count = transfer->actual_length / sample_width;
764
765 switch (transfer->status) {
766 case LIBUSB_TRANSFER_NO_DEVICE:
767 abort_acquisition(ctx);
768 free_transfer(transfer);
769 return;
770 case LIBUSB_TRANSFER_COMPLETED:
771 case LIBUSB_TRANSFER_TIMED_OUT: /* We may have received some data though */
772 break;
773 default:
774 packet_has_error = TRUE;
775 break;
776 }
777
778 if (transfer->actual_length == 0 || packet_has_error) {
779 ctx->empty_transfer_count++;
780 if (ctx->empty_transfer_count > MAX_EMPTY_TRANSFERS) {
781 /*
782 * The FX2 gave up. End the acquisition, the frontend
783 * will work out that the samplecount is short.
784 */
785 abort_acquisition(ctx);
786 free_transfer(transfer);
787 } else {
788 resubmit_transfer(transfer);
789 }
790 return;
791 } else {
792 ctx->empty_transfer_count = 0;
793 }
794
795 trigger_offset = 0;
796 if (ctx->trigger_stage >= 0) {
797 for (i = 0; i < cur_sample_count; i++) {
798
799 const uint16_t cur_sample = ctx->sample_wide ?
800 *((const uint16_t*)cur_buf + i) :
801 *((const uint8_t*)cur_buf + i);
802
803 if ((cur_sample & ctx->trigger_mask[ctx->trigger_stage]) ==
804 ctx->trigger_value[ctx->trigger_stage]) {
805 /* Match on this trigger stage. */
806 ctx->trigger_buffer[ctx->trigger_stage] = cur_sample;
807 ctx->trigger_stage++;
808
809 if (ctx->trigger_stage == NUM_TRIGGER_STAGES ||
810 ctx->trigger_mask[ctx->trigger_stage] == 0) {
811 /* Match on all trigger stages, we're done. */
812 trigger_offset = i + 1;
813
814 /*
815 * TODO: Send pre-trigger buffer to session bus.
816 * Tell the frontend we hit the trigger here.
817 */
818 packet.type = SR_DF_TRIGGER;
819 packet.payload = NULL;
820 sr_session_send(ctx->session_dev_id, &packet);
821
822 /*
823 * Send the samples that triggered it, since we're
824 * skipping past them.
825 */
826 packet.type = SR_DF_LOGIC;
827 packet.payload = &logic;
828 logic.unitsize = sizeof(*ctx->trigger_buffer);
829 logic.length = ctx->trigger_stage * logic.unitsize;
830 logic.data = ctx->trigger_buffer;
831 sr_session_send(ctx->session_dev_id, &packet);
832
833 ctx->trigger_stage = TRIGGER_FIRED;
834 break;
835 }
836 } else if (ctx->trigger_stage > 0) {
837 /*
838 * We had a match before, but not in the next sample. However, we may
839 * have a match on this stage in the next bit -- trigger on 0001 will
840 * fail on seeing 00001, so we need to go back to stage 0 -- but at
841 * the next sample from the one that matched originally, which the
842 * counter increment at the end of the loop takes care of.
843 */
844 i -= ctx->trigger_stage;
845 if (i < -1)
846 i = -1; /* Oops, went back past this buffer. */
847 /* Reset trigger stage. */
848 ctx->trigger_stage = 0;
849 }
850 }
851 }
852
853 if (ctx->trigger_stage == TRIGGER_FIRED) {
854 /* Send the incoming transfer to the session bus. */
855 const int trigger_offset_bytes = trigger_offset * sample_width;
856 packet.type = SR_DF_LOGIC;
857 packet.payload = &logic;
858 logic.length = transfer->actual_length - trigger_offset_bytes;
859 logic.unitsize = sample_width;
860 logic.data = cur_buf + trigger_offset_bytes;
861 sr_session_send(ctx->session_dev_id, &packet);
862
863 ctx->num_samples += cur_sample_count;
864 if (ctx->limit_samples &&
865 (unsigned int)ctx->num_samples > ctx->limit_samples) {
866 abort_acquisition(ctx);
867 free_transfer(transfer);
868 return;
869 }
870 } else {
871 /*
872 * TODO: Buffer pre-trigger data in capture
873 * ratio-sized buffer.
874 */
875 }
876
877 resubmit_transfer(transfer);
878}
879
880static unsigned int to_bytes_per_ms(unsigned int samplerate)
881{
882 return samplerate / 1000;
883}
884
885static size_t get_buffer_size(struct context *ctx)
886{
887 size_t s;
888
889 /* The buffer should be large enough to hold 10ms of data and a multiple
890 * of 512. */
891 s = 10 * to_bytes_per_ms(ctx->cur_samplerate);
892 return (s + 511) & ~511;
893}
894
895static unsigned int get_number_of_transfers(struct context *ctx)
896{
897 unsigned int n;
898
899 /* Total buffer size should be able to hold about 500ms of data */
900 n = 500 * to_bytes_per_ms(ctx->cur_samplerate) / get_buffer_size(ctx);
901
902 if (n > NUM_SIMUL_TRANSFERS)
903 return NUM_SIMUL_TRANSFERS;
904
905 return n;
906}
907
908static unsigned int get_timeout(struct context *ctx)
909{
910 size_t total_size;
911 unsigned int timeout;
912
913 total_size = get_buffer_size(ctx) * get_number_of_transfers(ctx);
914 timeout = total_size / to_bytes_per_ms(ctx->cur_samplerate);
915 return timeout + timeout / 4; /* Leave a headroom of 25% percent */
916}
917
918static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
919 void *cb_data)
920{
921 struct sr_datafeed_packet packet;
922 struct sr_datafeed_header header;
923 struct sr_datafeed_meta_logic meta;
924 struct context *ctx;
925 struct libusb_transfer *transfer;
926 const struct libusb_pollfd **lupfd;
927 unsigned int i;
928 int ret;
929 unsigned char *buf;
930
931 ctx = sdi->priv;
932 if (ctx->submitted_transfers != 0)
933 return SR_ERR;
934
935 ctx->session_dev_id = cb_data;
936 ctx->num_samples = 0;
937 ctx->empty_transfer_count = 0;
938
939 const unsigned int timeout = get_timeout(ctx);
940 const unsigned int num_transfers = get_number_of_transfers(ctx);
941 const size_t size = get_buffer_size(ctx);
942
943 ctx->transfers = g_try_malloc0(sizeof(*ctx->transfers) * num_transfers);
944 if (!ctx->transfers)
945 return SR_ERR;
946
947 ctx->num_transfers = num_transfers;
948
949 for (i = 0; i < num_transfers; i++) {
950 if (!(buf = g_try_malloc(size))) {
951 sr_err("fx2lafw: %s: buf malloc failed.", __func__);
952 return SR_ERR_MALLOC;
953 }
954 transfer = libusb_alloc_transfer(0);
955 libusb_fill_bulk_transfer(transfer, ctx->usb->devhdl,
956 2 | LIBUSB_ENDPOINT_IN, buf, size,
957 receive_transfer, ctx, timeout);
958 if (libusb_submit_transfer(transfer) != 0) {
959 libusb_free_transfer(transfer);
960 g_free(buf);
961 abort_acquisition(ctx);
962 return SR_ERR;
963 }
964 ctx->transfers[i] = transfer;
965 ctx->submitted_transfers++;
966 }
967
968 lupfd = libusb_get_pollfds(usb_context);
969 for (i = 0; lupfd[i]; i++)
970 sr_source_add(lupfd[i]->fd, lupfd[i]->events,
971 timeout, receive_data, NULL);
972 free(lupfd); /* NOT g_free()! */
973
974 packet.type = SR_DF_HEADER;
975 packet.payload = &header;
976 header.feed_version = 1;
977 gettimeofday(&header.starttime, NULL);
978 sr_session_send(cb_data, &packet);
979
980 /* Send metadata about the SR_DF_LOGIC packets to come. */
981 packet.type = SR_DF_META_LOGIC;
982 packet.payload = &meta;
983 meta.samplerate = ctx->cur_samplerate;
984 meta.num_probes = ctx->sample_wide ? 16 : 8;
985 sr_session_send(cb_data, &packet);
986
987 if ((ret = command_start_acquisition (ctx->usb->devhdl,
988 ctx->cur_samplerate, ctx->sample_wide)) != SR_OK) {
989 abort_acquisition(ctx);
990 return ret;
991 }
992
993 return SR_OK;
994}
995
996/* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
997static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
998 void *cb_data)
999{
1000
1001 /* Avoid compiler warnings. */
1002 (void)cb_data;
1003
1004 abort_acquisition(sdi->priv);
1005
1006 return SR_OK;
1007}
1008
1009SR_PRIV struct sr_dev_driver fx2lafw_driver_info = {
1010 .name = "fx2lafw",
1011 .longname = "fx2lafw (generic driver for FX2 based LAs)",
1012 .api_version = 1,
1013 .init = hw_init,
1014 .cleanup = hw_cleanup,
1015 .scan = hw_scan,
1016 .dev_open = hw_dev_open,
1017 .dev_close = hw_dev_close,
1018 .info_get = hw_info_get,
1019 .dev_config_set = hw_dev_config_set,
1020 .dev_acquisition_start = hw_dev_acquisition_start,
1021 .dev_acquisition_stop = hw_dev_acquisition_stop,
1022 .instances = NULL,
1023};