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