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