]> sigrok.org Git - libsigrok.git/blame - src/hardware/saleae-logic16/api.c
resource.c: Fix firmware loading bug (#1140)
[libsigrok.git] / src / hardware / saleae-logic16 / api.c
CommitLineData
c463dcf0
MC
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Marcus Comstedt <marcus@mc.pp.se>
fec7aa6a
MC
5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
6 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
c463dcf0
MC
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
6ec6c43b 22#include <config.h>
f6a21fa5
MC
23#include <glib.h>
24#include <libusb.h>
25#include <stdlib.h>
26#include <string.h>
db11d7d2 27#include <math.h>
c1aae900 28#include <libsigrok/libsigrok.h>
f6a21fa5 29#include "libsigrok-internal.h"
c463dcf0
MC
30#include "protocol.h"
31
96484e22
UH
32#define LOGIC16_VID 0x21a9
33#define LOGIC16_PID 0x1001
f6a21fa5 34
5eea4305
MC
35#define USB_INTERFACE 0
36#define USB_CONFIGURATION 1
8e2d6c9d 37#define FX2_FIRMWARE "saleae-logic16-fx2.fw"
5eea4305
MC
38
39#define MAX_RENUM_DELAY_MS 3000
7b5daad4 40#define NUM_SIMUL_TRANSFERS 32
5eea4305 41
a0e0bb41 42static const uint32_t scanopts[] = {
b117363a
MC
43 SR_CONF_CONN,
44};
45
05199c0a 46static const uint32_t drvopts[] = {
b117363a 47 SR_CONF_LOGIC_ANALYZER,
05199c0a
UH
48};
49
50static const uint32_t devopts[] = {
b117363a 51 SR_CONF_CONTINUOUS,
5827f61b
BV
52 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
53 SR_CONF_CONN | SR_CONF_GET,
54 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
55 SR_CONF_VOLTAGE_THRESHOLD | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
56 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
5a971f66 57 SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
b117363a
MC
58};
59
76d10d13 60static const int32_t trigger_matches[] = {
863357fb
BV
61 SR_TRIGGER_ZERO,
62 SR_TRIGGER_ONE,
63 SR_TRIGGER_RISING,
64 SR_TRIGGER_FALLING,
65 SR_TRIGGER_EDGE,
66};
67
ba7dd8bb 68static const char *channel_names[] = {
f6a21fa5
MC
69 "0", "1", "2", "3", "4", "5", "6", "7", "8",
70 "9", "10", "11", "12", "13", "14", "15",
f6a21fa5 71};
c463dcf0 72
db11d7d2
MC
73static const struct {
74 enum voltage_range range;
21fe5dba 75} thresholds_ranges[] = {
9fb9afb5
UH
76 { VOLTAGE_RANGE_18_33_V, },
77 { VOLTAGE_RANGE_5_V, },
78};
79
21fe5dba 80static const double thresholds[][2] = {
9fb9afb5
UH
81 { 0.7, 1.4 },
82 { 1.4, 3.6 },
db11d7d2
MC
83};
84
7b5daad4
MC
85static const uint64_t samplerates[] = {
86 SR_KHZ(500),
87 SR_MHZ(1),
88 SR_MHZ(2),
89 SR_MHZ(4),
90 SR_MHZ(5),
91 SR_MHZ(8),
92 SR_MHZ(10),
93 SR_KHZ(12500),
94 SR_MHZ(16),
41dab43e 95 SR_MHZ(20),
7b5daad4
MC
96 SR_MHZ(25),
97 SR_MHZ(32),
98 SR_MHZ(40),
41dab43e 99 SR_MHZ(50),
7b5daad4
MC
100 SR_MHZ(80),
101 SR_MHZ(100),
102};
103
5eea4305
MC
104static gboolean check_conf_profile(libusb_device *dev)
105{
106 struct libusb_device_descriptor des;
107 struct libusb_device_handle *hdl;
108 gboolean ret;
109 unsigned char strdesc[64];
110
111 hdl = NULL;
112 ret = FALSE;
113 while (!ret) {
114 /* Assume the FW has not been loaded, unless proven wrong. */
2a8f2d41 115 libusb_get_device_descriptor(dev, &des);
5eea4305
MC
116
117 if (libusb_open(dev, &hdl) != 0)
118 break;
119
120 if (libusb_get_string_descriptor_ascii(hdl,
121 des.iManufacturer, strdesc, sizeof(strdesc)) < 0)
122 break;
123 if (strcmp((const char *)strdesc, "Saleae LLC"))
124 break;
125
126 if (libusb_get_string_descriptor_ascii(hdl,
96484e22 127 des.iProduct, strdesc, sizeof(strdesc)) < 0)
5eea4305
MC
128 break;
129 if (strcmp((const char *)strdesc, "Logic S/16"))
130 break;
131
132 /* If we made it here, it must be a configured Logic16. */
133 ret = TRUE;
134 }
135 if (hdl)
136 libusb_close(hdl);
137
138 return ret;
139}
140
4f840ce9 141static GSList *scan(struct sr_dev_driver *di, GSList *options)
c463dcf0
MC
142{
143 struct drv_context *drvc;
f6a21fa5
MC
144 struct dev_context *devc;
145 struct sr_dev_inst *sdi;
5eea4305 146 struct sr_usb_dev_inst *usb;
5eea4305
MC
147 struct sr_config *src;
148 GSList *l, *devices, *conn_devices;
f6a21fa5
MC
149 struct libusb_device_descriptor des;
150 libusb_device **devlist;
2cca921d 151 unsigned int i, j;
5eea4305 152 const char *conn;
ce7d3578 153 char connection_id[64];
c463dcf0 154
41812aca 155 drvc = di->context;
c463dcf0 156
5eea4305
MC
157 conn = NULL;
158 for (l = options; l; l = l->next) {
159 src = l->data;
160 switch (src->key) {
161 case SR_CONF_CONN:
162 conn = g_variant_get_string(src->data, NULL);
163 break;
164 }
165 }
166 if (conn)
167 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
168 else
169 conn_devices = NULL;
170
171 /* Find all Logic16 devices and upload firmware to them. */
f6a21fa5
MC
172 devices = NULL;
173 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
174 for (i = 0; devlist[i]; i++) {
5eea4305
MC
175 if (conn) {
176 usb = NULL;
177 for (l = conn_devices; l; l = l->next) {
178 usb = l->data;
179 if (usb->bus == libusb_get_bus_number(devlist[i])
180 && usb->address == libusb_get_device_address(devlist[i]))
181 break;
182 }
183 if (!l)
184 /* This device matched none of the ones that
185 * matched the conn specification. */
186 continue;
187 }
188
2a8f2d41 189 libusb_get_device_descriptor(devlist[i], &des);
f6a21fa5 190
6c1a76d1
RT
191 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
192 continue;
ce7d3578 193
f6a21fa5
MC
194 if (des.idVendor != LOGIC16_VID || des.idProduct != LOGIC16_PID)
195 continue;
196
aac29cc1 197 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
198 sdi->status = SR_ST_INITIALIZING;
199 sdi->vendor = g_strdup("Saleae");
200 sdi->model = g_strdup("Logic16");
ce7d3578 201 sdi->connection_id = g_strdup(connection_id);
f6a21fa5 202
2cca921d 203 for (j = 0; j < ARRAY_SIZE(channel_names); j++)
5e23fcab 204 sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
d9251a2c 205 channel_names[j]);
f6a21fa5 206
f57d8ffe 207 devc = g_malloc0(sizeof(struct dev_context));
db11d7d2 208 devc->selected_voltage_range = VOLTAGE_RANGE_18_33_V;
5eea4305 209 sdi->priv = devc;
f6a21fa5 210 devices = g_slist_append(devices, sdi);
5eea4305
MC
211
212 if (check_conf_profile(devlist[i])) {
213 /* Already has the firmware, so fix the new address. */
214 sr_dbg("Found a Logic16 device.");
215 sdi->status = SR_ST_INACTIVE;
216 sdi->inst_type = SR_INST_USB;
96484e22
UH
217 sdi->conn = sr_usb_dev_inst_new(
218 libusb_get_bus_number(devlist[i]),
219 libusb_get_device_address(devlist[i]), NULL);
5eea4305 220 } else {
8e2d6c9d
DE
221 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
222 USB_CONFIGURATION, FX2_FIRMWARE) == SR_OK)
5eea4305
MC
223 /* Store when this device's FW was updated. */
224 devc->fw_updated = g_get_monotonic_time();
225 else
ce7d3578 226 sr_err("Firmware upload failed.");
5eea4305 227 sdi->inst_type = SR_INST_USB;
96484e22
UH
228 sdi->conn = sr_usb_dev_inst_new(
229 libusb_get_bus_number(devlist[i]), 0xff, NULL);
5eea4305 230 }
f6a21fa5
MC
231 }
232 libusb_free_device_list(devlist, 1);
5eea4305 233 g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
c463dcf0 234
15a5bfe4 235 return std_scan_complete(di, devices);
c463dcf0
MC
236}
237
5eea4305
MC
238static int logic16_dev_open(struct sr_dev_inst *sdi)
239{
4f840ce9 240 struct sr_dev_driver *di;
5eea4305
MC
241 libusb_device **devlist;
242 struct sr_usb_dev_inst *usb;
243 struct libusb_device_descriptor des;
5eea4305 244 struct drv_context *drvc;
7e463623 245 int ret = SR_ERR, i, device_count;
ce7d3578 246 char connection_id[64];
5eea4305 247
4f840ce9 248 di = sdi->driver;
41812aca 249 drvc = di->context;
5eea4305
MC
250 usb = sdi->conn;
251
5eea4305
MC
252 device_count = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
253 if (device_count < 0) {
254 sr_err("Failed to get device list: %s.",
255 libusb_error_name(device_count));
256 return SR_ERR;
257 }
258
259 for (i = 0; i < device_count; i++) {
2a8f2d41 260 libusb_get_device_descriptor(devlist[i], &des);
5eea4305 261
96484e22 262 if (des.idVendor != LOGIC16_VID || des.idProduct != LOGIC16_PID)
5eea4305
MC
263 continue;
264
ce7d3578
SA
265 if ((sdi->status == SR_ST_INITIALIZING) ||
266 (sdi->status == SR_ST_INACTIVE)) {
5eea4305 267 /*
ce7d3578 268 * Check device by its physical USB bus/port address.
5eea4305 269 */
6c1a76d1
RT
270 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
271 continue;
272
ce7d3578 273 if (strcmp(sdi->connection_id, connection_id))
5eea4305
MC
274 /* This is not the one. */
275 continue;
276 }
277
278 if (!(ret = libusb_open(devlist[i], &usb->devhdl))) {
279 if (usb->address == 0xff)
280 /*
281 * First time we touch this device after FW
282 * upload, so we don't know the address yet.
283 */
284 usb->address = libusb_get_device_address(devlist[i]);
285 } else {
286 sr_err("Failed to open device: %s.",
287 libusb_error_name(ret));
7e463623 288 ret = SR_ERR;
5eea4305
MC
289 break;
290 }
291
0c30b35f
SY
292 ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
293 if (ret == LIBUSB_ERROR_BUSY) {
294 sr_err("Unable to claim USB interface. Another "
295 "program or driver has already claimed it.");
7e463623 296 ret = SR_ERR;
0c30b35f
SY
297 break;
298 } else if (ret == LIBUSB_ERROR_NO_DEVICE) {
299 sr_err("Device has been disconnected.");
7e463623 300 ret = SR_ERR;
0c30b35f
SY
301 break;
302 } else if (ret != 0) {
303 sr_err("Unable to claim interface: %s.",
304 libusb_error_name(ret));
7e463623 305 ret = SR_ERR;
0c30b35f
SY
306 break;
307 }
308
96484e22 309 if ((ret = logic16_init_device(sdi)) != SR_OK) {
15abcf0f
MC
310 sr_err("Failed to init device.");
311 break;
312 }
313
ce7d3578
SA
314 sr_info("Opened device on %d.%d (logical) / %s (physical), interface %d.",
315 usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
5eea4305 316
7e463623
UH
317 ret = SR_OK;
318
5eea4305
MC
319 break;
320 }
7e463623 321
5eea4305
MC
322 libusb_free_device_list(devlist, 1);
323
7e463623 324 if (ret != SR_OK) {
0c30b35f
SY
325 if (usb->devhdl) {
326 libusb_release_interface(usb->devhdl, USB_INTERFACE);
327 libusb_close(usb->devhdl);
328 usb->devhdl = NULL;
329 }
5eea4305 330 return SR_ERR;
0c30b35f 331 }
5eea4305
MC
332
333 return SR_OK;
334}
335
c463dcf0
MC
336static int dev_open(struct sr_dev_inst *sdi)
337{
5eea4305
MC
338 struct dev_context *devc;
339 int ret;
340 int64_t timediff_us, timediff_ms;
341
342 devc = sdi->priv;
5eea4305
MC
343
344 /*
345 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
346 * milliseconds for the FX2 to renumerate.
347 */
348 ret = SR_ERR;
349 if (devc->fw_updated > 0) {
350 sr_info("Waiting for device to reset.");
351 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
352 g_usleep(300 * 1000);
353 timediff_ms = 0;
354 while (timediff_ms < MAX_RENUM_DELAY_MS) {
355 if ((ret = logic16_dev_open(sdi)) == SR_OK)
356 break;
357 g_usleep(100 * 1000);
358
359 timediff_us = g_get_monotonic_time() - devc->fw_updated;
360 timediff_ms = timediff_us / 1000;
361 sr_spew("Waited %" PRIi64 "ms.", timediff_ms);
362 }
363 if (ret != SR_OK) {
364 sr_err("Device failed to renumerate.");
365 return SR_ERR;
366 }
367 sr_info("Device came back after %" PRIi64 "ms.", timediff_ms);
368 } else {
369 sr_info("Firmware upload was not needed.");
370 ret = logic16_dev_open(sdi);
371 }
372
373 if (ret != SR_OK) {
374 sr_err("Unable to open device.");
375 return SR_ERR;
376 }
377
5eea4305
MC
378 if (devc->cur_samplerate == 0) {
379 /* Samplerate hasn't been set; default to the slowest one. */
7b5daad4 380 devc->cur_samplerate = samplerates[0];
5eea4305 381 }
c463dcf0
MC
382
383 return SR_OK;
384}
385
386static int dev_close(struct sr_dev_inst *sdi)
387{
5eea4305 388 struct sr_usb_dev_inst *usb;
c463dcf0 389
5eea4305 390 usb = sdi->conn;
f1ba6b4b 391
98fec29e 392 if (!usb->devhdl)
f1ba6b4b 393 return SR_ERR_BUG;
c463dcf0 394
ce7d3578
SA
395 sr_info("Closing device on %d.%d (logical) / %s (physical) interface %d.",
396 usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
5eea4305
MC
397 libusb_release_interface(usb->devhdl, USB_INTERFACE);
398 libusb_close(usb->devhdl);
399 usb->devhdl = NULL;
c463dcf0
MC
400
401 return SR_OK;
402}
403
dd7a72ea
UH
404static int config_get(uint32_t key, GVariant **data,
405 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
c463dcf0 406{
7b5daad4 407 struct dev_context *devc;
b117363a 408 struct sr_usb_dev_inst *usb;
96484e22 409 unsigned int i;
c463dcf0 410
53b4680f 411 (void)cg;
d3c74a6f 412
c463dcf0 413 switch (key) {
b117363a
MC
414 case SR_CONF_CONN:
415 if (!sdi || !sdi->conn)
416 return SR_ERR_ARG;
417 usb = sdi->conn;
418 if (usb->address == 255)
419 /* Device still needs to re-enumerate after firmware
420 * upload, so we don't know its (future) address. */
421 return SR_ERR;
95c1fe62 422 *data = g_variant_new_printf("%d.%d", usb->bus, usb->address);
b117363a 423 break;
7b5daad4
MC
424 case SR_CONF_SAMPLERATE:
425 if (!sdi)
426 return SR_ERR;
427 devc = sdi->priv;
428 *data = g_variant_new_uint64(devc->cur_samplerate);
429 break;
5a971f66
AJ
430 case SR_CONF_CAPTURE_RATIO:
431 if (!sdi)
432 return SR_ERR;
433 devc = sdi->priv;
434 *data = g_variant_new_uint64(devc->capture_ratio);
435 break;
db11d7d2
MC
436 case SR_CONF_VOLTAGE_THRESHOLD:
437 if (!sdi)
438 return SR_ERR;
439 devc = sdi->priv;
21fe5dba
UH
440 for (i = 0; i < ARRAY_SIZE(thresholds); i++) {
441 if (devc->selected_voltage_range != thresholds_ranges[i].range)
96484e22 442 continue;
21fe5dba 443 *data = std_gvar_tuple_double(thresholds[i][0], thresholds[i][1]);
758906aa 444 return SR_OK;
96484e22 445 }
758906aa 446 return SR_ERR;
c463dcf0
MC
447 default:
448 return SR_ERR_NA;
449 }
450
758906aa 451 return SR_OK;
c463dcf0
MC
452}
453
dd7a72ea
UH
454static int config_set(uint32_t key, GVariant *data,
455 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
c463dcf0 456{
7b5daad4 457 struct dev_context *devc;
758906aa 458 int idx;
c463dcf0 459
53b4680f 460 (void)cg;
d3c74a6f 461
7b5daad4
MC
462 devc = sdi->priv;
463
c463dcf0 464 switch (key) {
7b5daad4
MC
465 case SR_CONF_SAMPLERATE:
466 devc->cur_samplerate = g_variant_get_uint64(data);
467 break;
468 case SR_CONF_LIMIT_SAMPLES:
469 devc->limit_samples = g_variant_get_uint64(data);
470 break;
5a971f66
AJ
471 case SR_CONF_CAPTURE_RATIO:
472 devc->capture_ratio = g_variant_get_uint64(data);
efad7ccc 473 break;
db11d7d2 474 case SR_CONF_VOLTAGE_THRESHOLD:
21fe5dba 475 if ((idx = std_double_tuple_idx(data, ARRAY_AND_SIZE(thresholds))) < 0)
697fb6dd 476 return SR_ERR_ARG;
21fe5dba 477 devc->selected_voltage_range = thresholds_ranges[idx].range;
db11d7d2 478 break;
c463dcf0 479 default:
758906aa 480 return SR_ERR_NA;
c463dcf0
MC
481 }
482
758906aa 483 return SR_OK;
c463dcf0
MC
484}
485
dd7a72ea
UH
486static int config_list(uint32_t key, GVariant **data,
487 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
c463dcf0 488{
c463dcf0 489 switch (key) {
b117363a 490 case SR_CONF_SCAN_OPTIONS:
b117363a 491 case SR_CONF_DEVICE_OPTIONS:
05199c0a 492 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
7b5daad4 493 case SR_CONF_SAMPLERATE:
53012da6 494 *data = std_gvar_samplerates(ARRAY_AND_SIZE(samplerates));
db11d7d2
MC
495 break;
496 case SR_CONF_VOLTAGE_THRESHOLD:
21fe5dba 497 *data = std_gvar_thresholds(ARRAY_AND_SIZE(thresholds));
7b5daad4 498 break;
863357fb 499 case SR_CONF_TRIGGER_MATCH:
76d10d13 500 *data = std_gvar_array_i32(ARRAY_AND_SIZE(trigger_matches));
863357fb 501 break;
c463dcf0
MC
502 default:
503 return SR_ERR_NA;
504 }
505
a9010323 506 return SR_OK;
c463dcf0
MC
507}
508
7b5daad4
MC
509static void abort_acquisition(struct dev_context *devc)
510{
511 int i;
512
863357fb 513 devc->sent_samples = -1;
7b5daad4
MC
514
515 for (i = devc->num_transfers - 1; i >= 0; i--) {
516 if (devc->transfers[i])
517 libusb_cancel_transfer(devc->transfers[i]);
518 }
519}
520
521static unsigned int bytes_per_ms(struct dev_context *devc)
522{
523 return devc->cur_samplerate * devc->num_channels / 8000;
524}
525
526static size_t get_buffer_size(struct dev_context *devc)
527{
528 size_t s;
529
530 /*
531 * The buffer should be large enough to hold 10ms of data and
532 * a multiple of 512.
533 */
534 s = 10 * bytes_per_ms(devc);
535 return (s + 511) & ~511;
536}
537
538static unsigned int get_number_of_transfers(struct dev_context *devc)
539{
540 unsigned int n;
541
542 /* Total buffer size should be able to hold about 500ms of data. */
543 n = 500 * bytes_per_ms(devc) / get_buffer_size(devc);
544
545 if (n > NUM_SIMUL_TRANSFERS)
546 return NUM_SIMUL_TRANSFERS;
547
548 return n;
549}
550
551static unsigned int get_timeout(struct dev_context *devc)
552{
553 size_t total_size;
554 unsigned int timeout;
555
556 total_size = get_buffer_size(devc) * get_number_of_transfers(devc);
557 timeout = total_size / bytes_per_ms(devc);
558 return timeout + timeout / 4; /* Leave a headroom of 25% percent. */
559}
560
ba7dd8bb 561static int configure_channels(const struct sr_dev_inst *sdi)
7b5daad4
MC
562{
563 struct dev_context *devc;
ba7dd8bb 564 struct sr_channel *ch;
7b5daad4 565 GSList *l;
ba7dd8bb 566 uint16_t channel_bit;
7b5daad4
MC
567
568 devc = sdi->priv;
569
570 devc->cur_channels = 0;
571 devc->num_channels = 0;
ba7dd8bb
UH
572 for (l = sdi->channels; l; l = l->next) {
573 ch = (struct sr_channel *)l->data;
574 if (ch->enabled == FALSE)
7b5daad4
MC
575 continue;
576
ba7dd8bb 577 channel_bit = 1 << (ch->index);
7b5daad4 578
ba7dd8bb 579 devc->cur_channels |= channel_bit;
7b5daad4
MC
580
581#ifdef WORDS_BIGENDIAN
96484e22
UH
582 /*
583 * Output logic data should be stored in little endian format.
584 * To speed things up during conversion, do the switcharoo
585 * here instead.
586 */
ba7dd8bb 587 channel_bit = 1 << (ch->index ^ 8);
7b5daad4
MC
588#endif
589
ba7dd8bb 590 devc->channel_masks[devc->num_channels++] = channel_bit;
7b5daad4
MC
591 }
592
593 return SR_OK;
594}
595
596static int receive_data(int fd, int revents, void *cb_data)
597{
598 struct timeval tv;
599 struct dev_context *devc;
600 struct drv_context *drvc;
601 const struct sr_dev_inst *sdi;
4f840ce9 602 struct sr_dev_driver *di;
7b5daad4
MC
603
604 (void)fd;
605 (void)revents;
606
607 sdi = cb_data;
4f840ce9 608 di = sdi->driver;
41812aca 609 drvc = di->context;
7b5daad4
MC
610 devc = sdi->priv;
611
612 tv.tv_sec = tv.tv_usec = 0;
613 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
614
863357fb 615 if (devc->sent_samples == -2) {
96484e22 616 logic16_abort_acquisition(sdi);
7b5daad4
MC
617 abort_acquisition(devc);
618 }
619
620 return TRUE;
621}
622
695dc859 623static int dev_acquisition_start(const struct sr_dev_inst *sdi)
c463dcf0 624{
4f840ce9 625 struct sr_dev_driver *di = sdi->driver;
7b5daad4
MC
626 struct dev_context *devc;
627 struct drv_context *drvc;
628 struct sr_usb_dev_inst *usb;
863357fb 629 struct sr_trigger *trigger;
7b5daad4 630 struct libusb_transfer *transfer;
7b5daad4
MC
631 unsigned int i, timeout, num_transfers;
632 int ret;
633 unsigned char *buf;
634 size_t size, convsize;
c463dcf0 635
41812aca 636 drvc = di->context;
7b5daad4
MC
637 devc = sdi->priv;
638 usb = sdi->conn;
639
96484e22 640 /* Configures devc->cur_channels. */
ba7dd8bb
UH
641 if (configure_channels(sdi) != SR_OK) {
642 sr_err("Failed to configure channels.");
7b5daad4
MC
643 return SR_ERR;
644 }
645
863357fb 646 devc->sent_samples = 0;
7b5daad4
MC
647 devc->empty_transfer_count = 0;
648 devc->cur_channel = 0;
649 memset(devc->channel_data, 0, sizeof(devc->channel_data));
650
0812c40e 651 if ((trigger = sr_session_trigger_get(sdi->session))) {
5a971f66
AJ
652 int pre_trigger_samples = 0;
653 if (devc->limit_samples > 0)
efad7ccc 654 pre_trigger_samples = (devc->capture_ratio * devc->limit_samples) / 100;
5a971f66 655 devc->stl = soft_trigger_logic_new(sdi, trigger, pre_trigger_samples);
98fec29e 656 if (!devc->stl)
5a971f66 657 return SR_ERR_MALLOC;
863357fb
BV
658 devc->trigger_fired = FALSE;
659 } else
660 devc->trigger_fired = TRUE;
661
7b5daad4
MC
662 timeout = get_timeout(devc);
663 num_transfers = get_number_of_transfers(devc);
664 size = get_buffer_size(devc);
665 convsize = (size / devc->num_channels + 2) * 16;
666 devc->submitted_transfers = 0;
7b5daad4
MC
667
668 devc->convbuffer_size = convsize;
669 if (!(devc->convbuffer = g_try_malloc(convsize))) {
670 sr_err("Conversion buffer malloc failed.");
671 return SR_ERR_MALLOC;
672 }
673
674 devc->transfers = g_try_malloc0(sizeof(*devc->transfers) * num_transfers);
675 if (!devc->transfers) {
676 sr_err("USB transfers malloc failed.");
677 g_free(devc->convbuffer);
678 return SR_ERR_MALLOC;
679 }
680
96484e22
UH
681 if ((ret = logic16_setup_acquisition(sdi, devc->cur_samplerate,
682 devc->cur_channels)) != SR_OK) {
7b5daad4
MC
683 g_free(devc->transfers);
684 g_free(devc->convbuffer);
685 return ret;
686 }
687
688 devc->num_transfers = num_transfers;
689 for (i = 0; i < num_transfers; i++) {
690 if (!(buf = g_try_malloc(size))) {
691 sr_err("USB transfer buffer malloc failed.");
692 if (devc->submitted_transfers)
693 abort_acquisition(devc);
694 else {
695 g_free(devc->transfers);
696 g_free(devc->convbuffer);
697 }
698 return SR_ERR_MALLOC;
699 }
700 transfer = libusb_alloc_transfer(0);
701 libusb_fill_bulk_transfer(transfer, usb->devhdl,
702 2 | LIBUSB_ENDPOINT_IN, buf, size,
102f1239 703 logic16_receive_transfer, (void *)sdi, timeout);
7b5daad4
MC
704 if ((ret = libusb_submit_transfer(transfer)) != 0) {
705 sr_err("Failed to submit transfer: %s.",
706 libusb_error_name(ret));
707 libusb_free_transfer(transfer);
708 g_free(buf);
709 abort_acquisition(devc);
710 return SR_ERR;
711 }
712 devc->transfers[i] = transfer;
713 devc->submitted_transfers++;
714 }
715
6c60facc
ML
716 devc->ctx = drvc->sr_ctx;
717
102f1239 718 usb_source_add(sdi->session, devc->ctx, timeout, receive_data, (void *)sdi);
7b5daad4 719
bee2b016 720 std_session_send_df_header(sdi);
7b5daad4 721
96484e22 722 if ((ret = logic16_start_acquisition(sdi)) != SR_OK) {
7b5daad4
MC
723 abort_acquisition(devc);
724 return ret;
725 }
c463dcf0
MC
726
727 return SR_OK;
728}
729
695dc859 730static int dev_acquisition_stop(struct sr_dev_inst *sdi)
c463dcf0 731{
7b5daad4
MC
732 int ret;
733
96484e22 734 ret = logic16_abort_acquisition(sdi);
c463dcf0 735
7b5daad4
MC
736 abort_acquisition(sdi->priv);
737
738 return ret;
c463dcf0
MC
739}
740
dd5c48a6 741static struct sr_dev_driver saleae_logic16_driver_info = {
c463dcf0
MC
742 .name = "saleae-logic16",
743 .longname = "Saleae Logic16",
744 .api_version = 1,
c2fdcc25 745 .init = std_init,
700d6b64 746 .cleanup = std_cleanup,
c463dcf0 747 .scan = scan,
c01bf34c 748 .dev_list = std_dev_list,
f778bf02 749 .dev_clear = std_dev_clear,
c463dcf0
MC
750 .config_get = config_get,
751 .config_set = config_set,
752 .config_list = config_list,
753 .dev_open = dev_open,
754 .dev_close = dev_close,
755 .dev_acquisition_start = dev_acquisition_start,
756 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 757 .context = NULL,
c463dcf0 758};
dd5c48a6 759SR_REGISTER_DEV_DRIVER(saleae_logic16_driver_info);