]> sigrok.org Git - libsigrok.git/blame - src/hardware/fx2lafw/api.c
Fix a few "value never read" scan-build warnings.
[libsigrok.git] / src / hardware / fx2lafw / api.c
CommitLineData
f302a082 1/*
50985c20 2 * This file is part of the libsigrok project.
f302a082 3 *
13d8e03c 4 * Copyright (C) 2013 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
6ec6c43b 21#include <config.h>
2f937611 22#include "protocol.h"
b9d53092 23#include "dslogic.h"
f302a082 24
4679d14d 25static const struct fx2lafw_profile supported_fx2[] = {
7ae2f9d5
UH
26 /*
27 * CWAV USBee AX
17b6c75a 28 * EE Electronics ESLA201A
9f05304e 29 * ARMFLY AX-Pro
17b6c75a 30 */
f8b07fc6 31 { 0x08a9, 0x0014, "CWAV", "USBee AX", NULL,
d1ddc7a9 32 FIRMWARE_DIR "/fx2lafw-cwav-usbeeax.fw",
e826239c 33 0, NULL, NULL},
0e8d0e24
IF
34 /*
35 * CWAV USBee DX
36 * XZL-Studio DX
37 */
38 { 0x08a9, 0x0015, "CWAV", "USBee DX", NULL,
39 FIRMWARE_DIR "/fx2lafw-cwav-usbeedx.fw",
e826239c 40 DEV_CAPS_16BIT, NULL, NULL },
93a9f3da 41
7ae2f9d5
UH
42 /*
43 * CWAV USBee SX
4502e869
JH
44 */
45 { 0x08a9, 0x0009, "CWAV", "USBee SX", NULL,
d1ddc7a9 46 FIRMWARE_DIR "/fx2lafw-cwav-usbeesx.fw",
e826239c 47 0, NULL, NULL},
4502e869 48
b7c53d48 49 /* DreamSourceLab DSLogic (before FW upload) */
a7d7f93c
BV
50 { 0x2a0e, 0x0001, "DreamSourceLab", "DSLogic", NULL,
51 FIRMWARE_DIR "/dreamsourcelab-dslogic-fx2.fw",
52 DEV_CAPS_16BIT, NULL, NULL},
b7c53d48 53 /* DreamSourceLab DSLogic (after FW upload) */
a7d7f93c
BV
54 { 0x2a0e, 0x0001, "DreamSourceLab", "DSLogic", NULL,
55 FIRMWARE_DIR "/dreamsourcelab-dslogic-fx2.fw",
56 DEV_CAPS_16BIT, "DreamSourceLab", "DSLogic"},
57
b7c53d48
DG
58 /* DreamSourceLab DSCope (before FW upload) */
59 { 0x2a0e, 0x0002, "DreamSourceLab", "DSCope", NULL,
60 FIRMWARE_DIR "/dreamsourcelab-dscope-fx2.fw",
61 DEV_CAPS_16BIT, NULL, NULL},
62 /* DreamSourceLab DSCope (after FW upload) */
63 { 0x2a0e, 0x0002, "DreamSourceLab", "DSCope", NULL,
64 FIRMWARE_DIR "/dreamsourcelab-dscope-fx2.fw",
65 DEV_CAPS_16BIT, "DreamSourceLab", "DSCope"},
66
67 /* DreamSourceLab DSLogic Pro (before FW upload) */
68 { 0x2a0e, 0x0003, "DreamSourceLab", "DSLogic Pro", NULL,
69 FIRMWARE_DIR "/dreamsourcelab-dslogic-pro-fx2.fw",
70 DEV_CAPS_16BIT, NULL, NULL},
71 /* DreamSourceLab DSLogic Pro (after FW upload) */
72 { 0x2a0e, 0x0003, "DreamSourceLab", "DSLogic Pro", NULL,
73 FIRMWARE_DIR "/dreamsourcelab-dslogic-pro-fx2.fw",
74 DEV_CAPS_16BIT, "DreamSourceLab", "DSLogic"},
75
7ae2f9d5
UH
76 /*
77 * Saleae Logic
93a9f3da
JH
78 * EE Electronics ESLA100
79 * Robomotic MiniLogic
1663e470 80 * Robomotic BugLogic 3
93a9f3da
JH
81 */
82 { 0x0925, 0x3881, "Saleae", "Logic", NULL,
d1ddc7a9 83 FIRMWARE_DIR "/fx2lafw-saleae-logic.fw",
e826239c 84 0, NULL, NULL},
93a9f3da 85
f488762a 86 /*
1663e470
UH
87 * Default Cypress FX2 without EEPROM, e.g.:
88 * Lcsoft Mini Board
89 * Braintechnology USB Interface V2.x
f488762a
JH
90 */
91 { 0x04B4, 0x8613, "Cypress", "FX2", NULL,
d1ddc7a9 92 FIRMWARE_DIR "/fx2lafw-cypress-fx2.fw",
e826239c 93 DEV_CAPS_16BIT, NULL, NULL },
f488762a 94
1663e470
UH
95 /*
96 * Braintechnology USB-LPS
97 */
98 { 0x16d0, 0x0498, "Braintechnology", "USB-LPS", NULL,
d1ddc7a9 99 FIRMWARE_DIR "/fx2lafw-braintechnology-usb-lps.fw",
e826239c 100 DEV_CAPS_16BIT, NULL, NULL },
1663e470 101
e826239c 102 { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
187b3582
JH
103};
104
ff6b76a1
BV
105static const uint32_t drvopts[] = {
106 SR_CONF_LOGIC_ANALYZER,
107};
108
a0e0bb41 109static const uint32_t scanopts[] = {
89befd46
BV
110 SR_CONF_CONN,
111};
112
f254bc4b 113static const uint32_t devopts[] = {
ff6b76a1
BV
114 SR_CONF_CONTINUOUS | SR_CONF_SET,
115 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
5827f61b
BV
116 SR_CONF_CONN | SR_CONF_GET,
117 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
5827f61b 118 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
7bfcb25c 119 SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
8b35f474
JH
120};
121
ba7dd8bb 122static const char *channel_names[] = {
0f34cb47
UH
123 "0", "1", "2", "3", "4", "5", "6", "7",
124 "8", "9", "10", "11", "12", "13", "14", "15",
8b35f474
JH
125};
126
9615eeb5
BV
127static const int32_t soft_trigger_matches[] = {
128 SR_TRIGGER_ZERO,
129 SR_TRIGGER_ONE,
335122f0
BV
130 SR_TRIGGER_RISING,
131 SR_TRIGGER_FALLING,
132 SR_TRIGGER_EDGE,
9615eeb5
BV
133};
134
d6836bf1 135static const uint64_t samplerates[] = {
79dc6498
JH
136 SR_KHZ(20),
137 SR_KHZ(25),
897c1a2e
JH
138 SR_KHZ(50),
139 SR_KHZ(100),
9304d576
JH
140 SR_KHZ(200),
141 SR_KHZ(250),
142 SR_KHZ(500),
8b35f474
JH
143 SR_MHZ(1),
144 SR_MHZ(2),
145 SR_MHZ(3),
146 SR_MHZ(4),
147 SR_MHZ(6),
148 SR_MHZ(8),
149 SR_MHZ(12),
150 SR_MHZ(16),
772a0e61 151 SR_MHZ(24),
8b35f474
JH
152};
153
a7d7f93c
BV
154static const uint64_t dslogic_samplerates[] = {
155 SR_KHZ(10),
156 SR_KHZ(20),
157 SR_KHZ(50),
158 SR_KHZ(100),
159 SR_KHZ(200),
160 SR_KHZ(500),
161 SR_MHZ(1),
162 SR_MHZ(2),
163 SR_MHZ(5),
164 SR_MHZ(10),
165 SR_MHZ(20),
166 SR_MHZ(25),
167 SR_MHZ(50),
168 SR_MHZ(100),
169 SR_MHZ(200),
170 SR_MHZ(400),
171};
172
a8cc8e44 173SR_PRIV struct sr_dev_driver fx2lafw_driver_info;
610dbb70 174
4f840ce9 175static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
61136ea6 176{
f6beaac5 177 return std_init(sr_ctx, di, LOG_PREFIX);
61136ea6
BV
178}
179
4f840ce9 180static GSList *scan(struct sr_dev_driver *di, GSList *options)
f302a082 181{
dc9dbe94
BV
182 struct drv_context *drvc;
183 struct dev_context *devc;
754b5ff2
BV
184 struct sr_dev_inst *sdi;
185 struct sr_usb_dev_inst *usb;
754b5ff2
BV
186 struct sr_config *src;
187 const struct fx2lafw_profile *prof;
188 GSList *l, *devices, *conn_devices;
a7d7f93c 189 gboolean has_firmware;
754b5ff2 190 struct libusb_device_descriptor des;
187b3582 191 libusb_device **devlist;
e826239c 192 struct libusb_device_handle *hdl;
5e2c86eb 193 int num_logic_channels, ret, i, j;
754b5ff2 194 const char *conn;
5e2c86eb 195 char manufacturer[64], product[64], serial_num[64], connection_id[64];
3a7a22cb 196
41812aca 197 drvc = di->context;
187b3582 198
754b5ff2
BV
199 conn = NULL;
200 for (l = options; l; l = l->next) {
201 src = l->data;
202 switch (src->key) {
203 case SR_CONF_CONN:
204 conn = g_variant_get_string(src->data, NULL);
205 break;
206 }
207 }
208 if (conn)
209 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
210 else
211 conn_devices = NULL;
212
921634ec 213 /* Find all fx2lafw compatible devices and upload firmware to them. */
3a7a22cb 214 devices = NULL;
d4abb463 215 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
187b3582 216 for (i = 0; devlist[i]; i++) {
754b5ff2
BV
217 if (conn) {
218 usb = NULL;
219 for (l = conn_devices; l; l = l->next) {
220 usb = l->data;
221 if (usb->bus == libusb_get_bus_number(devlist[i])
222 && usb->address == libusb_get_device_address(devlist[i]))
223 break;
224 }
225 if (!l)
226 /* This device matched none of the ones that
227 * matched the conn specification. */
228 continue;
229 }
187b3582 230
2a8f2d41 231 libusb_get_device_descriptor( devlist[i], &des);
187b3582 232
e826239c
ML
233 if ((ret = libusb_open(devlist[i], &hdl)) < 0)
234 continue;
235
236 if (des.iManufacturer == 0) {
237 manufacturer[0] = '\0';
238 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
239 des.iManufacturer, (unsigned char *) manufacturer,
240 sizeof(manufacturer))) < 0) {
241 sr_warn("Failed to get manufacturer string descriptor: %s.",
242 libusb_error_name(ret));
243 continue;
244 }
245
246 if (des.iProduct == 0) {
247 product[0] = '\0';
248 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
249 des.iProduct, (unsigned char *) product,
250 sizeof(product))) < 0) {
251 sr_warn("Failed to get product string descriptor: %s.",
252 libusb_error_name(ret));
253 continue;
254 }
255
5e2c86eb
SA
256 if (des.iSerialNumber == 0) {
257 serial_num[0] = '\0';
258 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
259 des.iSerialNumber, (unsigned char *) serial_num,
260 sizeof(serial_num))) < 0) {
261 sr_warn("Failed to get serial number string descriptor: %s.",
262 libusb_error_name(ret));
263 continue;
264 }
265
266 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
267
e826239c
ML
268 libusb_close(hdl);
269
da686568 270 prof = NULL;
187b3582
JH
271 for (j = 0; supported_fx2[j].vid; j++) {
272 if (des.idVendor == supported_fx2[j].vid &&
e826239c
ML
273 des.idProduct == supported_fx2[j].pid &&
274 (!supported_fx2[j].usb_manufacturer ||
275 !strcmp(manufacturer, supported_fx2[j].usb_manufacturer)) &&
276 (!supported_fx2[j].usb_manufacturer ||
277 !strcmp(product, supported_fx2[j].usb_product))) {
da686568 278 prof = &supported_fx2[j];
e826239c 279 break;
187b3582
JH
280 }
281 }
282
b99457f0 283 /* Skip if the device was not found. */
da686568 284 if (!prof)
187b3582
JH
285 continue;
286
aac29cc1 287 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
288 sdi->status = SR_ST_INITIALIZING;
289 sdi->vendor = g_strdup(prof->vendor);
290 sdi->model = g_strdup(prof->model);
291 sdi->version = g_strdup(prof->model_version);
a873c594 292 sdi->driver = di;
5e2c86eb
SA
293 sdi->serial_num = g_strdup(serial_num);
294 sdi->connection_id = g_strdup(connection_id);
187b3582 295
ba7dd8bb
UH
296 /* Fill in channellist according to this device's profile. */
297 num_logic_channels = prof->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
5e23fcab
ML
298 for (j = 0; j < num_logic_channels; j++)
299 sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
c368e6f3 300 channel_names[j]);
06717a8a 301
dc9dbe94
BV
302 devc = fx2lafw_dev_new();
303 devc->profile = prof;
aab4b8cb 304 devc->sample_wide = (prof->dev_caps & DEV_CAPS_16BIT) != 0;
dc9dbe94
BV
305 sdi->priv = devc;
306 drvc->instances = g_slist_append(drvc->instances, sdi);
a8cc8e44 307 devices = g_slist_append(devices, sdi);
187b3582 308
b7c53d48
DG
309 if (!strcmp(prof->model, "DSLogic")
310 || !strcmp(prof->model, "DSLogic Pro")
311 || !strcmp(prof->model, "DSCope")) {
312 devc->dslogic = TRUE;
313 devc->samplerates = dslogic_samplerates;
314 devc->num_samplerates = ARRAY_SIZE(dslogic_samplerates);
315 has_firmware = match_manuf_prod(devlist[i], "DreamSourceLab", "DSLogic")
316 || match_manuf_prod(devlist[i], "DreamSourceLab", "DSCope");
317 } else {
a7d7f93c
BV
318 devc->dslogic = FALSE;
319 devc->samplerates = samplerates;
320 devc->num_samplerates = ARRAY_SIZE(samplerates);
321 has_firmware = match_manuf_prod(devlist[i],
322 "sigrok", "fx2lafw");
a7d7f93c
BV
323 }
324
325 if (has_firmware) {
b1eeb67e 326 /* Already has the firmware, so fix the new address. */
f427daef 327 sr_dbg("Found an fx2lafw device.");
b1eeb67e 328 sdi->status = SR_ST_INACTIVE;
250a78c7
BV
329 sdi->inst_type = SR_INST_USB;
330 sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
331 libusb_get_device_address(devlist[i]), NULL);
b1eeb67e 332 } else {
f8b07fc6 333 if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION,
da686568 334 prof->firmware) == SR_OK)
b99457f0 335 /* Store when this device's FW was updated. */
dc9dbe94 336 devc->fw_updated = g_get_monotonic_time();
b1eeb67e 337 else
f427daef 338 sr_err("Firmware upload failed for "
5e2c86eb
SA
339 "device %d.%d (logical).",
340 libusb_get_bus_number(devlist[i]),
341 libusb_get_device_address(devlist[i]));
250a78c7 342 sdi->inst_type = SR_INST_USB;
87b545fb 343 sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
250a78c7 344 0xff, NULL);
b1eeb67e 345 }
187b3582
JH
346 }
347 libusb_free_device_list(devlist, 1);
9dc7a75e 348 g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
187b3582 349
3a7a22cb 350 return devices;
f302a082
JH
351}
352
4f840ce9 353static GSList *dev_list(const struct sr_dev_driver *di)
811deee4 354{
41812aca 355 return ((struct drv_context *)(di->context))->instances;
811deee4
BV
356}
357
6078d2c9 358static int dev_open(struct sr_dev_inst *sdi)
f302a082 359{
4f840ce9 360 struct sr_dev_driver *di = sdi->driver;
250a78c7 361 struct sr_usb_dev_inst *usb;
dc9dbe94 362 struct dev_context *devc;
b7c53d48 363 char *fpga_firmware = NULL;
e8bd58ff
UH
364 int ret;
365 int64_t timediff_us, timediff_ms;
43125c69 366
dc9dbe94 367 devc = sdi->priv;
250a78c7 368 usb = sdi->conn;
43125c69
JH
369
370 /*
f60fdf6e
UH
371 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
372 * milliseconds for the FX2 to renumerate.
43125c69 373 */
3b6c1930 374 ret = SR_ERR;
dc9dbe94 375 if (devc->fw_updated > 0) {
f427daef 376 sr_info("Waiting for device to reset.");
b99457f0 377 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
43125c69 378 g_usleep(300 * 1000);
e8bd58ff 379 timediff_ms = 0;
f60fdf6e 380 while (timediff_ms < MAX_RENUM_DELAY_MS) {
2f937611 381 if ((ret = fx2lafw_dev_open(sdi, di)) == SR_OK)
43125c69
JH
382 break;
383 g_usleep(100 * 1000);
e8bd58ff 384
dc9dbe94 385 timediff_us = g_get_monotonic_time() - devc->fw_updated;
3b6c1930 386 timediff_ms = timediff_us / 1000;
b99457f0 387 sr_spew("Waited %" PRIi64 "ms.", timediff_ms);
43125c69 388 }
443a14d8
AG
389 if (ret != SR_OK) {
390 sr_err("Device failed to renumerate.");
391 return SR_ERR;
392 }
c0bf69c2 393 sr_info("Device came back after %" PRIi64 "ms.", timediff_ms);
43125c69 394 } else {
443a14d8 395 sr_info("Firmware upload was not needed.");
2f937611 396 ret = fx2lafw_dev_open(sdi, di);
43125c69
JH
397 }
398
ebc34738 399 if (ret != SR_OK) {
f427daef 400 sr_err("Unable to open device.");
43125c69
JH
401 return SR_ERR;
402 }
378abfea 403
250a78c7 404 ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
ebc34738 405 if (ret != 0) {
87b545fb 406 switch (ret) {
0c156e06 407 case LIBUSB_ERROR_BUSY:
f427daef 408 sr_err("Unable to claim USB interface. Another "
b99457f0 409 "program or driver has already claimed it.");
0c156e06 410 break;
0c156e06 411 case LIBUSB_ERROR_NO_DEVICE:
f427daef 412 sr_err("Device has been disconnected.");
0c156e06 413 break;
0c156e06 414 default:
f427daef 415 sr_err("Unable to claim interface: %s.",
d4928d71 416 libusb_error_name(ret));
0c156e06
JH
417 break;
418 }
419
43125c69
JH
420 return SR_ERR;
421 }
422
a7d7f93c 423 if (devc->dslogic) {
b7c53d48
DG
424 if (!strcmp(devc->profile->model, "DSLogic")) {
425 fpga_firmware = DSLOGIC_FPGA_FIRMWARE;
426 } else if (!strcmp(devc->profile->model, "DSLogic Pro")) {
427 fpga_firmware = DSLOGIC_PRO_FPGA_FIRMWARE;
428 } else if (!strcmp(devc->profile->model, "DSCope")) {
429 fpga_firmware = DSCOPE_FPGA_FIRMWARE;
430 }
431
b9d53092 432 if ((ret = dslogic_fpga_firmware_upload(sdi,
b7c53d48 433 fpga_firmware)) != SR_OK)
a7d7f93c
BV
434 return ret;
435 }
436
dc9dbe94 437 if (devc->cur_samplerate == 0) {
f92994fd 438 /* Samplerate hasn't been set; default to the slowest one. */
a7d7f93c 439 devc->cur_samplerate = devc->samplerates[0];
f92994fd
JH
440 }
441
f302a082
JH
442 return SR_OK;
443}
444
6078d2c9 445static int dev_close(struct sr_dev_inst *sdi)
f302a082 446{
250a78c7 447 struct sr_usb_dev_inst *usb;
961009b0 448
250a78c7 449 usb = sdi->conn;
98fec29e 450 if (!usb->devhdl)
25a0f108 451 return SR_ERR;
f1898235 452
5e2c86eb
SA
453 sr_info("fx2lafw: Closing device on %d.%d (logical) / %s (physical) interface %d.",
454 usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
250a78c7
BV
455 libusb_release_interface(usb->devhdl, USB_INTERFACE);
456 libusb_close(usb->devhdl);
457 usb->devhdl = NULL;
25a0f108 458 sdi->status = SR_ST_INACTIVE;
f1898235 459
f302a082
JH
460 return SR_OK;
461}
462
4f840ce9 463static int cleanup(const struct sr_dev_driver *di)
f302a082 464{
f69b47f0 465 int ret;
3b412e3a 466 struct drv_context *drvc;
187b3582 467
41812aca 468 if (!(drvc = di->context))
dc9dbe94
BV
469 return SR_OK;
470
a6630742 471 ret = std_dev_clear(di, NULL);
187b3582 472
dc9dbe94 473 g_free(drvc);
187b3582 474
62bc70e4 475 return ret;
f302a082
JH
476}
477
584560f1 478static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 479 const struct sr_channel_group *cg)
f302a082 480{
dc9dbe94 481 struct dev_context *devc;
89befd46
BV
482 struct sr_usb_dev_inst *usb;
483 char str[128];
8b35f474 484
53b4680f 485 (void)cg;
8f996b89 486
a920a7d8
ML
487 if (!sdi)
488 return SR_ERR_ARG;
489
490 devc = sdi->priv;
491
584560f1 492 switch (key) {
89befd46 493 case SR_CONF_CONN:
a920a7d8 494 if (!sdi->conn)
38ab8dbe 495 return SR_ERR_ARG;
89befd46
BV
496 usb = sdi->conn;
497 if (usb->address == 255)
498 /* Device still needs to re-enumerate after firmware
499 * upload, so we don't know its (future) address. */
500 return SR_ERR;
501 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
502 *data = g_variant_new_string(str);
503 break;
a920a7d8
ML
504 case SR_CONF_LIMIT_SAMPLES:
505 *data = g_variant_new_uint64(devc->limit_samples);
506 break;
123e1313 507 case SR_CONF_SAMPLERATE:
89befd46 508 *data = g_variant_new_uint64(devc->cur_samplerate);
6e9339aa 509 break;
7bfcb25c
AJ
510 case SR_CONF_CAPTURE_RATIO:
511 *data = g_variant_new_uint64(devc->capture_ratio);
512 break;
6e9339aa 513 default:
bd6fbf62 514 return SR_ERR_NA;
8b35f474
JH
515 }
516
6e9339aa 517 return SR_OK;
f302a082
JH
518}
519
584560f1 520static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 521 const struct sr_channel_group *cg)
f302a082 522{
dc9dbe94 523 struct dev_context *devc;
4d7b36a0 524 uint64_t arg;
65e00366 525 int i, ret;
7cb621d4 526
53b4680f 527 (void)cg;
8f996b89 528
1c48000d
ML
529 if (!sdi)
530 return SR_ERR_ARG;
531
e73ffd42
BV
532 if (sdi->status != SR_ST_ACTIVE)
533 return SR_ERR;
534
dc9dbe94 535 devc = sdi->priv;
7cb621d4 536
1c48000d
ML
537 ret = SR_OK;
538
584560f1 539 switch (key) {
93b118da
UH
540 case SR_CONF_SAMPLERATE:
541 arg = g_variant_get_uint64(data);
65e00366
CFS
542 for (i = 0; i < devc->num_samplerates; i++) {
543 if (devc->samplerates[i] == arg) {
93b118da
UH
544 devc->cur_samplerate = arg;
545 break;
4d7b36a0 546 }
93b118da 547 }
65e00366 548 if (i == devc->num_samplerates)
93b118da
UH
549 ret = SR_ERR_ARG;
550 break;
551 case SR_CONF_LIMIT_SAMPLES:
552 devc->limit_samples = g_variant_get_uint64(data);
553 break;
554 case SR_CONF_CAPTURE_RATIO:
555 devc->capture_ratio = g_variant_get_uint64(data);
556 if (devc->capture_ratio > 100) {
557 devc->capture_ratio = 0;
558 ret = SR_ERR;
559 } else
560 ret = SR_OK;
561 break;
562 default:
563 ret = SR_ERR_NA;
7cb621d4
JH
564 }
565
566 return ret;
f302a082
JH
567}
568
584560f1 569static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 570 const struct sr_channel_group *cg)
a1c743fc 571{
a7d7f93c 572 struct dev_context *devc;
d6836bf1
BV
573 GVariant *gvar;
574 GVariantBuilder gvb;
a1c743fc 575
53b4680f 576 (void)cg;
a1c743fc
BV
577
578 switch (key) {
89befd46 579 case SR_CONF_SCAN_OPTIONS:
584560f1 580 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 581 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
89befd46 582 break;
9a6517d1 583 case SR_CONF_DEVICE_OPTIONS:
ff6b76a1
BV
584 if (!sdi)
585 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
586 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
587 else
588 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
589 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 590 break;
a1c743fc 591 case SR_CONF_SAMPLERATE:
a7d7f93c
BV
592 if (!sdi->priv)
593 return SR_ERR_ARG;
594 devc = sdi->priv;
d6836bf1 595 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
a7d7f93c
BV
596 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), devc->samplerates,
597 devc->num_samplerates, sizeof(uint64_t));
d6836bf1
BV
598 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
599 *data = g_variant_builder_end(&gvb);
a1c743fc 600 break;
9615eeb5
BV
601 case SR_CONF_TRIGGER_MATCH:
602 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
603 soft_trigger_matches, ARRAY_SIZE(soft_trigger_matches),
604 sizeof(int32_t));
c50277a6 605 break;
a1c743fc 606 default:
bd6fbf62 607 return SR_ERR_NA;
a1c743fc
BV
608 }
609
610 return SR_OK;
611}
612
1f9813eb 613static int receive_data(int fd, int revents, void *cb_data)
610dbb70
JH
614{
615 struct timeval tv;
b99457f0 616 struct drv_context *drvc;
610dbb70 617
610dbb70
JH
618 (void)fd;
619 (void)revents;
610dbb70 620
1a863916 621 drvc = (struct drv_context *)cb_data;
b99457f0 622
610dbb70 623 tv.tv_sec = tv.tv_usec = 0;
d4abb463 624 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
610dbb70
JH
625
626 return TRUE;
627}
628
b9d53092 629static int start_transfers(const struct sr_dev_inst *sdi)
f302a082 630{
dc9dbe94 631 struct dev_context *devc;
250a78c7 632 struct sr_usb_dev_inst *usb;
335122f0 633 struct sr_trigger *trigger;
610dbb70 634 struct libusb_transfer *transfer;
b9d53092
BV
635 unsigned int i, num_transfers;
636 int endpoint, timeout, ret;
610dbb70 637 unsigned char *buf;
b99457f0 638 size_t size;
610dbb70 639
dc9dbe94 640 devc = sdi->priv;
250a78c7 641 usb = sdi->conn;
b99457f0 642
b0ccd64d
BV
643 devc->sent_samples = 0;
644 devc->acq_aborted = FALSE;
dc9dbe94 645 devc->empty_transfer_count = 0;
610dbb70 646
0812c40e 647 if ((trigger = sr_session_trigger_get(sdi->session))) {
7bfcb25c
AJ
648 int pre_trigger_samples = 0;
649 if (devc->limit_samples > 0)
650 pre_trigger_samples = devc->capture_ratio * devc->limit_samples/100;
651 devc->stl = soft_trigger_logic_new(sdi, trigger, pre_trigger_samples);
98fec29e 652 if (!devc->stl)
7bfcb25c 653 return SR_ERR_MALLOC;
9615eeb5 654 devc->trigger_fired = FALSE;
9615eeb5
BV
655 } else
656 devc->trigger_fired = TRUE;
657
2f937611
UH
658 num_transfers = fx2lafw_get_number_of_transfers(devc);
659 size = fx2lafw_get_buffer_size(devc);
2a67abfe 660 devc->submitted_transfers = 0;
5af666a9 661
dc9dbe94 662 devc->transfers = g_try_malloc0(sizeof(*devc->transfers) * num_transfers);
886a52b6 663 if (!devc->transfers) {
f427daef 664 sr_err("USB transfers malloc failed.");
886a52b6
UH
665 return SR_ERR_MALLOC;
666 }
0caa1ef0 667
b9d53092
BV
668 timeout = fx2lafw_get_timeout(devc);
669 endpoint = devc->dslogic ? 6 : 2;
dc9dbe94 670 devc->num_transfers = num_transfers;
5af666a9 671 for (i = 0; i < num_transfers; i++) {
610dbb70 672 if (!(buf = g_try_malloc(size))) {
b99457f0 673 sr_err("USB transfer buffer malloc failed.");
610dbb70
JH
674 return SR_ERR_MALLOC;
675 }
676 transfer = libusb_alloc_transfer(0);
250a78c7 677 libusb_fill_bulk_transfer(transfer, usb->devhdl,
b9d53092 678 endpoint | LIBUSB_ENDPOINT_IN, buf, size,
9615eeb5 679 fx2lafw_receive_transfer, (void *)sdi, timeout);
d4928d71 680 if ((ret = libusb_submit_transfer(transfer)) != 0) {
b99457f0
UH
681 sr_err("Failed to submit transfer: %s.",
682 libusb_error_name(ret));
610dbb70
JH
683 libusb_free_transfer(transfer);
684 g_free(buf);
2f937611 685 fx2lafw_abort_acquisition(devc);
610dbb70
JH
686 return SR_ERR;
687 }
dc9dbe94
BV
688 devc->transfers[i] = transfer;
689 devc->submitted_transfers++;
610dbb70
JH
690 }
691
b9d53092 692 /* Send header packet to the session bus. */
6fcf3f0a 693 std_session_send_df_header(sdi, LOG_PREFIX);
610dbb70 694
b9d53092
BV
695 return SR_OK;
696}
697
55462b8b 698static void LIBUSB_CALL dslogic_trigger_receive(struct libusb_transfer *transfer)
b9d53092
BV
699{
700 const struct sr_dev_inst *sdi;
701 struct dslogic_trigger_pos *tpos;
702
703 sdi = transfer->user_data;
704
705 if (transfer->status == LIBUSB_TRANSFER_COMPLETED
706 && transfer->actual_length == sizeof(struct dslogic_trigger_pos)) {
707 tpos = (struct dslogic_trigger_pos *)transfer->buffer;
708 sr_dbg("tpos real_pos %.8x ram_saddr %.8x", tpos->real_pos, tpos->ram_saddr);
709 g_free(tpos);
710 start_transfers(sdi);
711 }
712
713 libusb_free_transfer(transfer);
714
715}
716
717static int dslogic_trigger_request(const struct sr_dev_inst *sdi)
718{
719 struct sr_usb_dev_inst *usb;
720 struct libusb_transfer *transfer;
721 struct dslogic_trigger_pos *tpos;
722 int ret;
723
724 usb = sdi->conn;
725
726 if ((ret = dslogic_stop_acquisition(sdi)) != SR_OK)
727 return ret;
728
729 if ((ret = dslogic_fpga_configure(sdi)) != SR_OK)
730 return ret;
f366e86c 731
b9d53092 732 if ((ret = dslogic_start_acquisition(sdi)) != SR_OK)
ebc34738 733 return ret;
b9d53092
BV
734
735 sr_dbg("Getting trigger.");
736 tpos = g_malloc(sizeof(struct dslogic_trigger_pos));
737 transfer = libusb_alloc_transfer(0);
738 libusb_fill_bulk_transfer(transfer, usb->devhdl, 6 | LIBUSB_ENDPOINT_IN,
739 (unsigned char *)tpos, sizeof(struct dslogic_trigger_pos),
740 dslogic_trigger_receive, (void *)sdi, 0);
741 if ((ret = libusb_submit_transfer(transfer)) < 0) {
742 sr_err("Failed to request trigger: %s.", libusb_error_name(ret));
743 libusb_free_transfer(transfer);
744 g_free(tpos);
745 return SR_ERR;
746 }
747
748 return ret;
749}
750
751static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
752{
4f840ce9 753 struct sr_dev_driver *di;
b9d53092
BV
754 struct drv_context *drvc;
755 struct dev_context *devc;
756 int timeout, ret;
757
758 if (sdi->status != SR_ST_ACTIVE)
759 return SR_ERR_DEV_CLOSED;
760
4f840ce9 761 di = sdi->driver;
41812aca 762 drvc = di->context;
b9d53092
BV
763 devc = sdi->priv;
764
b9d53092
BV
765 devc->ctx = drvc->sr_ctx;
766 devc->cb_data = cb_data;
767 devc->sent_samples = 0;
768 devc->empty_transfer_count = 0;
769 devc->acq_aborted = FALSE;
770
771 timeout = fx2lafw_get_timeout(devc);
4f840ce9 772 usb_source_add(sdi->session, devc->ctx, timeout, receive_data, drvc);
b9d53092
BV
773
774 if (devc->dslogic) {
775 dslogic_trigger_request(sdi);
c442ffda 776 } else {
b9d53092 777 start_transfers(sdi);
815e3cb8
SA
778 if ((ret = fx2lafw_command_start_acquisition(sdi)) != SR_OK) {
779 fx2lafw_abort_acquisition(devc);
780 return ret;
781 }
017375d1
JH
782 }
783
f302a082
JH
784 return SR_OK;
785}
786
6078d2c9 787static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
f302a082 788{
2e526f4a 789 (void)cb_data;
5da93902 790
2f937611 791 fx2lafw_abort_acquisition(sdi->priv);
5da93902 792
f302a082
JH
793 return SR_OK;
794}
795
c09f0b57 796SR_PRIV struct sr_dev_driver fx2lafw_driver_info = {
f302a082 797 .name = "fx2lafw",
2e7cb004 798 .longname = "fx2lafw (generic driver for FX2 based LAs)",
f302a082 799 .api_version = 1,
6078d2c9
UH
800 .init = init,
801 .cleanup = cleanup,
802 .scan = scan,
803 .dev_list = dev_list,
a6630742 804 .dev_clear = NULL,
035a1078
BV
805 .config_get = config_get,
806 .config_set = config_set,
a1c743fc 807 .config_list = config_list,
6078d2c9
UH
808 .dev_open = dev_open,
809 .dev_close = dev_close,
810 .dev_acquisition_start = dev_acquisition_start,
811 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 812 .context = NULL,
f302a082 813};