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