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