]> sigrok.org Git - libsigrok.git/blame - hardware/saleae-logic/saleae-logic.c
new datafeed packet format
[libsigrok.git] / hardware / saleae-logic / saleae-logic.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
22b02383 20#include "config.h"
a1bb33af
UH
21#include <stdio.h>
22#include <stdlib.h>
23#include <sys/time.h>
24#include <inttypes.h>
25#include <glib.h>
26#include <libusb.h>
408e7199 27#include <sigrok.h>
058b7035 28#include <sigrok-internal.h>
6d754b6d 29#include "saleae-logic.h"
a1bb33af 30
6d754b6d 31static struct fx2_profile supported_fx2[] = {
e10d6e32
BV
32 /* Saleae Logic */
33 { 0x0925, 0x3881, 0x0925, 0x3881, "Saleae", "Logic", NULL, 8 },
34 /* default Cypress FX2 without EEPROM */
35 { 0x04b4, 0x8613, 0x0925, 0x3881, "Cypress", "FX2", NULL, 16 },
6d754b6d 36 { 0, 0, 0, 0, 0, 0, 0, 0 }
e10d6e32
BV
37};
38
a1bb33af 39static int capabilities[] = {
5a2326a7
UH
40 SR_HWCAP_LOGIC_ANALYZER,
41 SR_HWCAP_SAMPLERATE,
a1bb33af 42
6f5f21f9 43 /* These are really implemented in the driver, not the hardware. */
5a2326a7
UH
44 SR_HWCAP_LIMIT_SAMPLES,
45 SR_HWCAP_CONTINUOUS,
6f5f21f9 46 0,
a1bb33af
UH
47};
48
a1bb33af 49static uint64_t supported_samplerates[] = {
59df0c77
UH
50 SR_KHZ(200),
51 SR_KHZ(250),
52 SR_KHZ(500),
53 SR_MHZ(1),
54 SR_MHZ(2),
55 SR_MHZ(4),
56 SR_MHZ(8),
57 SR_MHZ(12),
58 SR_MHZ(16),
59 SR_MHZ(24),
6f5f21f9 60 0,
a1bb33af
UH
61};
62
60679b18 63static struct sr_samplerates samplerates = {
59df0c77
UH
64 SR_KHZ(200),
65 SR_MHZ(24),
c9140419 66 SR_HZ(0),
6f5f21f9 67 supported_samplerates,
a1bb33af
UH
68};
69
6d754b6d
BV
70/* List of struct sr_device_instance, maintained by opendev()/closedev(). */
71static GSList *device_instances = NULL;
72static libusb_context *usb_context = NULL;
a1bb33af 73
a1bb33af 74static int hw_set_configuration(int device_index, int capability, void *value);
9c48090a 75static void hw_stop_acquisition(int device_index, gpointer session_device_id);
a1bb33af 76
28fc6de0
UH
77/**
78 * Check the USB configuration to determine if this is a Saleae Logic.
79 *
80 * @return 1 if the device's configuration profile match the Logic firmware's
81 * configuration, 0 otherwise.
a1bb33af 82 */
e5d1717e 83static int check_conf_profile(libusb_device *dev)
a1bb33af
UH
84{
85 struct libusb_device_descriptor des;
6f5f21f9 86 struct libusb_config_descriptor *conf_dsc = NULL;
a1bb33af 87 const struct libusb_interface_descriptor *intf_dsc;
6f5f21f9 88 int ret = -1;
a1bb33af 89
6f5f21f9
UH
90 while (ret == -1) {
91 /* Assume it's not a Saleae Logic unless proven wrong. */
a1bb33af
UH
92 ret = 0;
93
6f5f21f9 94 if (libusb_get_device_descriptor(dev, &des) != 0)
a1bb33af
UH
95 break;
96
6f5f21f9
UH
97 if (des.bNumConfigurations != 1)
98 /* Need exactly 1 configuration. */
a1bb33af
UH
99 break;
100
6f5f21f9 101 if (libusb_get_config_descriptor(dev, 0, &conf_dsc) != 0)
a1bb33af
UH
102 break;
103
6f5f21f9
UH
104 if (conf_dsc->bNumInterfaces != 1)
105 /* Need exactly 1 interface. */
a1bb33af
UH
106 break;
107
6f5f21f9
UH
108 if (conf_dsc->interface[0].num_altsetting != 1)
109 /* Need just one alternate setting. */
a1bb33af
UH
110 break;
111
112 intf_dsc = &(conf_dsc->interface[0].altsetting[0]);
6f5f21f9
UH
113 if (intf_dsc->bNumEndpoints != 2)
114 /* Need 2 endpoints. */
a1bb33af
UH
115 break;
116
6f5f21f9
UH
117 if ((intf_dsc->endpoint[0].bEndpointAddress & 0x8f) !=
118 (1 | LIBUSB_ENDPOINT_OUT))
119 /* First endpoint should be 1 (outbound). */
a1bb33af
UH
120 break;
121
6f5f21f9
UH
122 if ((intf_dsc->endpoint[1].bEndpointAddress & 0x8f) !=
123 (2 | LIBUSB_ENDPOINT_IN))
124 /* First endpoint should be 2 (inbound). */
a1bb33af
UH
125 break;
126
6f5f21f9 127 /* If we made it here, it must be a Saleae Logic. */
a1bb33af
UH
128 ret = 1;
129 }
6f5f21f9
UH
130
131 if (conf_dsc)
a1bb33af
UH
132 libusb_free_config_descriptor(conf_dsc);
133
134 return ret;
135}
136
6d754b6d 137static int sl_open_device(int device_index)
a1bb33af 138{
a1bb33af
UH
139 libusb_device **devlist;
140 struct libusb_device_descriptor des;
e10d6e32 141 struct sr_device_instance *sdi;
6d754b6d 142 struct fx2_device *fx2;
a1bb33af
UH
143 int err, skip, i;
144
d32d961d 145 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
6d754b6d
BV
146 return SR_ERR;
147 fx2 = sdi->priv;
a1bb33af 148
e10d6e32
BV
149 if (sdi->status == SR_ST_ACTIVE)
150 /* already in use */
6d754b6d 151 return SR_ERR;
e10d6e32
BV
152
153 skip = 0;
a1bb33af 154 libusb_get_device_list(usb_context, &devlist);
e10d6e32
BV
155 for (i = 0; devlist[i]; i++) {
156 if ((err = libusb_get_device_descriptor(devlist[i], &des))) {
e53c830f 157 sr_warn("failed to get device descriptor: %d", err);
e10d6e32 158 continue;
a1bb33af 159 }
e10d6e32 160
6d754b6d 161 if (des.idVendor != fx2->profile->fw_vid || des.idProduct != fx2->profile->fw_pid)
e10d6e32
BV
162 continue;
163
164 if (sdi->status == SR_ST_INITIALIZING) {
165 if (skip != device_index) {
166 /* Skip devices of this type that aren't the one we want. */
167 skip += 1;
168 continue;
169 }
170 } else if (sdi->status == SR_ST_INACTIVE) {
171 /*
172 * This device is fully enumerated, so we need to find this
173 * device by vendor, product, bus and address.
174 */
175 if (libusb_get_bus_number(devlist[i]) != sdi->usb->bus
176 || libusb_get_device_address(devlist[i]) != sdi->usb->address)
177 /* this is not the one */
178 continue;
179 }
180
181 if (!(err = libusb_open(devlist[i], &sdi->usb->devhdl))) {
182 if (sdi->usb->address == 0xff)
183 /*
184 * first time we touch this device after firmware upload,
185 * so we don't know the address yet.
186 */
187 sdi->usb->address = libusb_get_device_address(devlist[i]);
188
189 sdi->status = SR_ST_ACTIVE;
e53c830f 190 sr_info("saleae: opened device %d on %d.%d interface %d",
e10d6e32
BV
191 sdi->index, sdi->usb->bus,
192 sdi->usb->address, USB_INTERFACE);
193 } else {
e53c830f 194 sr_warn("failed to open device: %d", err);
a1bb33af 195 }
6d754b6d
BV
196
197 /* if we made it here, we handled the device one way or another */
198 break;
a1bb33af
UH
199 }
200 libusb_free_device_list(devlist, 1);
201
6d754b6d
BV
202 if (sdi->status != SR_ST_ACTIVE)
203 return SR_ERR;
a1bb33af 204
6d754b6d 205 return SR_OK;
a1bb33af
UH
206}
207
a00ba012 208static void close_device(struct sr_device_instance *sdi)
a1bb33af 209{
f6958dab
UH
210 if (sdi->usb->devhdl == NULL)
211 return;
212
b08024a8
UH
213 sr_info("saleae: closing device %d on %d.%d interface %d", sdi->index,
214 sdi->usb->bus, sdi->usb->address, USB_INTERFACE);
f6958dab
UH
215 libusb_release_interface(sdi->usb->devhdl, USB_INTERFACE);
216 libusb_close(sdi->usb->devhdl);
217 sdi->usb->devhdl = NULL;
5a2326a7 218 sdi->status = SR_ST_INACTIVE;
a1bb33af
UH
219}
220
6d754b6d 221static int configure_probes(struct fx2_device *fx2, GSList *probes)
a1bb33af 222{
1afe8989 223 struct sr_probe *probe;
a1bb33af
UH
224 GSList *l;
225 int probe_bit, stage, i;
226 char *tc;
227
6d754b6d 228 fx2->probe_mask = 0;
6f5f21f9 229 for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
6d754b6d
BV
230 fx2->trigger_mask[i] = 0;
231 fx2->trigger_value[i] = 0;
a1bb33af
UH
232 }
233
234 stage = -1;
6f5f21f9 235 for (l = probes; l; l = l->next) {
1afe8989 236 probe = (struct sr_probe *)l->data;
6f5f21f9 237 if (probe->enabled == FALSE)
a1bb33af
UH
238 continue;
239 probe_bit = 1 << (probe->index - 1);
6d754b6d 240 fx2->probe_mask |= probe_bit;
989938f6
UH
241 if (!(probe->trigger))
242 continue;
243
244 stage = 0;
245 for (tc = probe->trigger; *tc; tc++) {
6d754b6d 246 fx2->trigger_mask[stage] |= probe_bit;
989938f6 247 if (*tc == '1')
6d754b6d 248 fx2->trigger_value[stage] |= probe_bit;
989938f6
UH
249 stage++;
250 if (stage > NUM_TRIGGER_STAGES)
e46b8fb1 251 return SR_ERR;
a1bb33af
UH
252 }
253 }
254
6f5f21f9
UH
255 if (stage == -1)
256 /*
257 * We didn't configure any triggers, make sure acquisition
258 * doesn't wait for any.
259 */
6d754b6d 260 fx2->trigger_stage = TRIGGER_FIRED;
a1bb33af 261 else
6d754b6d 262 fx2->trigger_stage = 0;
a1bb33af 263
e46b8fb1 264 return SR_OK;
a1bb33af
UH
265}
266
6d754b6d
BV
267static struct fx2_device *fx2_device_new(void)
268{
269 struct fx2_device *fx2;
270
271 if (!(fx2 = g_try_malloc0(sizeof(struct fx2_device)))) {
272 sr_err("saleae: %s: saleae malloc failed", __func__);
273 return NULL;
274 }
275 fx2->trigger_stage = TRIGGER_FIRED;
276
277 return fx2;
278}
279
280
a1bb33af
UH
281/*
282 * API callbacks
283 */
284
54ac5277 285static int hw_init(const char *deviceinfo)
a1bb33af 286{
a00ba012 287 struct sr_device_instance *sdi;
a1bb33af 288 struct libusb_device_descriptor des;
6d754b6d
BV
289 struct fx2_profile *fx2_prof;
290 struct fx2_device *fx2;
a1bb33af 291 libusb_device **devlist;
e10d6e32 292 int err, devcnt, i, j;
a1bb33af 293
17e1afcb 294 /* Avoid compiler warnings. */
afc8e4de
UH
295 deviceinfo = deviceinfo;
296
6f5f21f9 297 if (libusb_init(&usb_context) != 0) {
b08024a8 298 sr_warn("Failed to initialize USB.");
a1bb33af
UH
299 return 0;
300 }
a1bb33af 301
6f5f21f9 302 /* Find all Saleae Logic devices and upload firmware to all of them. */
a1bb33af
UH
303 devcnt = 0;
304 libusb_get_device_list(usb_context, &devlist);
6f5f21f9 305 for (i = 0; devlist[i]; i++) {
6d754b6d 306 fx2_prof = NULL;
a1bb33af 307 err = libusb_get_device_descriptor(devlist[i], &des);
6f5f21f9 308 if (err != 0) {
b08024a8 309 sr_warn("failed to get device descriptor: %d", err);
a1bb33af
UH
310 continue;
311 }
312
e10d6e32
BV
313 for (j = 0; supported_fx2[j].orig_vid; j++) {
314 if (des.idVendor == supported_fx2[j].orig_vid
315 && des.idProduct == supported_fx2[j].orig_pid) {
6d754b6d 316 fx2_prof = &supported_fx2[j];
e10d6e32
BV
317 break;
318 }
319 }
6d754b6d 320 if (!fx2_prof)
e10d6e32
BV
321 /* not a supported VID/PID */
322 continue;
a1bb33af 323
5a2326a7 324 sdi = sr_device_instance_new(devcnt, SR_ST_INITIALIZING,
6d754b6d 325 fx2_prof->vendor, fx2_prof->model, fx2_prof->model_version);
f6958dab
UH
326 if (!sdi)
327 return 0;
6d754b6d
BV
328 fx2 = fx2_device_new();
329 fx2->profile = fx2_prof;
330 sdi->priv = fx2;
f6958dab 331 device_instances = g_slist_append(device_instances, sdi);
6f5f21f9 332
6d754b6d 333 if (check_conf_profile(devlist[i])) {
f6958dab 334 /* Already has the firmware, so fix the new address. */
e10d6e32 335 sdi->status = SR_ST_INACTIVE;
6c290072 336 sdi->usb = sr_usb_device_instance_new
f6958dab 337 (libusb_get_bus_number(devlist[i]),
fed16f06 338 libusb_get_device_address(devlist[i]), NULL);
6d754b6d
BV
339 } else {
340 if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION, FIRMWARE) == SR_OK)
341 /* Remember when the firmware on this device was updated */
342 g_get_current_time(&fx2->fw_updated);
343 else
344 sr_warn("firmware upload failed for device %d", devcnt);
345 sdi->usb = sr_usb_device_instance_new
346 (libusb_get_bus_number(devlist[i]), 0xff, NULL);
a1bb33af 347 }
f6958dab 348 devcnt++;
a1bb33af
UH
349 }
350 libusb_free_device_list(devlist, 1);
351
352 return devcnt;
353}
354
a1bb33af
UH
355static int hw_opendev(int device_index)
356{
357 GTimeVal cur_time;
a00ba012 358 struct sr_device_instance *sdi;
6d754b6d 359 struct fx2_device *fx2;
a1bb33af 360 int timediff, err;
e10d6e32 361
6d754b6d
BV
362 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
363 return SR_ERR;
364 fx2 = sdi->priv;
365
e10d6e32
BV
366 /*
367 * if the firmware was recently uploaded, wait up to MAX_RENUM_DELAY ms
368 * for the FX2 to renumerate
369 */
6d754b6d
BV
370 err = 0;
371 if (GTV_TO_MSEC(fx2->fw_updated) > 0) {
e53c830f 372 sr_info("saleae: waiting for device to reset");
e10d6e32
BV
373 /* takes at least 300ms for the FX2 to be gone from the USB bus */
374 g_usleep(300*1000);
375 timediff = 0;
376 while (timediff < MAX_RENUM_DELAY) {
6d754b6d 377 if ((err = sl_open_device(device_index)) == SR_OK)
e10d6e32
BV
378 break;
379 g_usleep(100*1000);
380 g_get_current_time(&cur_time);
6d754b6d 381 timediff = GTV_TO_MSEC(cur_time) - GTV_TO_MSEC(fx2->fw_updated);
a1bb33af 382 }
e53c830f 383 sr_info("saleae: device came back after %d ms", timediff);
e10d6e32 384 } else {
6d754b6d 385 err = sl_open_device(device_index);
a1bb33af
UH
386 }
387
6d754b6d 388 if (err != SR_OK) {
b08024a8 389 sr_warn("unable to open device");
e46b8fb1 390 return SR_ERR;
a1bb33af 391 }
6d754b6d 392 fx2 = sdi->priv;
a1bb33af
UH
393
394 err = libusb_claim_interface(sdi->usb->devhdl, USB_INTERFACE);
6f5f21f9 395 if (err != 0) {
b08024a8 396 sr_warn("Unable to claim interface: %d", err);
e46b8fb1 397 return SR_ERR;
a1bb33af
UH
398 }
399
6d754b6d 400 if (fx2->cur_samplerate == 0) {
6f5f21f9 401 /* Samplerate hasn't been set; default to the slowest one. */
5a2326a7 402 if (hw_set_configuration(device_index, SR_HWCAP_SAMPLERATE,
e46b8fb1
UH
403 &supported_samplerates[0]) == SR_ERR)
404 return SR_ERR;
a1bb33af
UH
405 }
406
e46b8fb1 407 return SR_OK;
a1bb33af
UH
408}
409
697785d1 410static int hw_closedev(int device_index)
a1bb33af 411{
a00ba012 412 struct sr_device_instance *sdi;
a1bb33af 413
697785d1
UH
414 if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
415 sr_err("logic: %s: sdi was NULL", __func__);
416 return SR_ERR; /* TODO: SR_ERR_ARG? */
417 }
418
419 /* TODO */
420 close_device(sdi);
421
422 return SR_OK;
a1bb33af
UH
423}
424
a1bb33af
UH
425static void hw_cleanup(void)
426{
427 GSList *l;
428
6f5f21f9
UH
429 /* Properly close all devices... */
430 for (l = device_instances; l; l = l->next)
a00ba012 431 close_device((struct sr_device_instance *)l->data);
a1bb33af 432
6f5f21f9
UH
433 /* ...and free all their memory. */
434 for (l = device_instances; l; l = l->next)
a1bb33af
UH
435 g_free(l->data);
436 g_slist_free(device_instances);
437 device_instances = NULL;
438
6f5f21f9 439 if (usb_context)
a1bb33af
UH
440 libusb_exit(usb_context);
441 usb_context = NULL;
a1bb33af
UH
442}
443
a1bb33af
UH
444static void *hw_get_device_info(int device_index, int device_info_id)
445{
a00ba012 446 struct sr_device_instance *sdi;
6d754b6d 447 struct fx2_device *fx2;
6f5f21f9 448 void *info = NULL;
a1bb33af 449
d32d961d 450 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
a1bb33af 451 return NULL;
6d754b6d 452 fx2 = sdi->priv;
a1bb33af 453
6f5f21f9 454 switch (device_info_id) {
5a2326a7 455 case SR_DI_INSTANCE:
a1bb33af
UH
456 info = sdi;
457 break;
5a2326a7 458 case SR_DI_NUM_PROBES:
6d754b6d 459 info = GINT_TO_POINTER(fx2->profile->num_probes);
a1bb33af 460 break;
5a2326a7 461 case SR_DI_SAMPLERATES:
a1bb33af
UH
462 info = &samplerates;
463 break;
5a2326a7 464 case SR_DI_TRIGGER_TYPES:
a1bb33af
UH
465 info = TRIGGER_TYPES;
466 break;
5a2326a7 467 case SR_DI_CUR_SAMPLERATE:
6d754b6d 468 info = &fx2->cur_samplerate;
a1bb33af
UH
469 break;
470 }
471
472 return info;
473}
474
a1bb33af
UH
475static int hw_get_status(int device_index)
476{
a00ba012 477 struct sr_device_instance *sdi;
a1bb33af 478
d32d961d 479 sdi = sr_get_device_instance(device_instances, device_index);
6f5f21f9 480 if (sdi)
a1bb33af
UH
481 return sdi->status;
482 else
5a2326a7 483 return SR_ST_NOT_FOUND;
a1bb33af
UH
484}
485
a1bb33af
UH
486static int *hw_get_capabilities(void)
487{
a1bb33af
UH
488 return capabilities;
489}
490
a00ba012 491static int set_configuration_samplerate(struct sr_device_instance *sdi,
6f5f21f9 492 uint64_t samplerate)
a1bb33af 493{
6d754b6d 494 struct fx2_device *fx2;
a1bb33af
UH
495 uint8_t divider;
496 int ret, result, i;
497 unsigned char buf[2];
498
6d754b6d 499 fx2 = sdi->priv;
6f5f21f9
UH
500 for (i = 0; supported_samplerates[i]; i++) {
501 if (supported_samplerates[i] == samplerate)
a1bb33af
UH
502 break;
503 }
6f5f21f9 504 if (supported_samplerates[i] == 0)
e46b8fb1 505 return SR_ERR_SAMPLERATE;
a1bb33af 506
eee4890f 507 divider = (uint8_t) (48 / (samplerate / 1000000.0)) - 1;
a1bb33af 508
b08024a8
UH
509 sr_info("saleae: setting samplerate to %" PRIu64 " Hz (divider %d)",
510 samplerate, divider);
a1bb33af
UH
511 buf[0] = 0x01;
512 buf[1] = divider;
6f5f21f9
UH
513 ret = libusb_bulk_transfer(sdi->usb->devhdl, 1 | LIBUSB_ENDPOINT_OUT,
514 buf, 2, &result, 500);
515 if (ret != 0) {
b08024a8 516 sr_warn("failed to set samplerate: %d", ret);
e46b8fb1 517 return SR_ERR;
a1bb33af 518 }
6d754b6d 519 fx2->cur_samplerate = samplerate;
a1bb33af 520
e46b8fb1 521 return SR_OK;
a1bb33af
UH
522}
523
a1bb33af
UH
524static int hw_set_configuration(int device_index, int capability, void *value)
525{
a00ba012 526 struct sr_device_instance *sdi;
6d754b6d 527 struct fx2_device *fx2;
a1bb33af
UH
528 int ret;
529 uint64_t *tmp_u64;
530
d32d961d 531 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 532 return SR_ERR;
6d754b6d 533 fx2 = sdi->priv;
a1bb33af 534
5a2326a7 535 if (capability == SR_HWCAP_SAMPLERATE) {
a1bb33af
UH
536 tmp_u64 = value;
537 ret = set_configuration_samplerate(sdi, *tmp_u64);
5a2326a7 538 } else if (capability == SR_HWCAP_PROBECONFIG) {
6d754b6d 539 ret = configure_probes(fx2, (GSList *) value);
5a2326a7 540 } else if (capability == SR_HWCAP_LIMIT_SAMPLES) {
2458ea65 541 tmp_u64 = value;
6d754b6d 542 fx2->limit_samples = *tmp_u64;
e46b8fb1 543 ret = SR_OK;
6f5f21f9 544 } else {
e46b8fb1 545 ret = SR_ERR;
6f5f21f9 546 }
a1bb33af
UH
547
548 return ret;
549}
550
a1bb33af
UH
551static int receive_data(int fd, int revents, void *user_data)
552{
553 struct timeval tv;
554
17e1afcb 555 /* Avoid compiler warnings. */
afc8e4de
UH
556 fd = fd;
557 revents = revents;
558 user_data = user_data;
559
a1bb33af
UH
560 tv.tv_sec = tv.tv_usec = 0;
561 libusb_handle_events_timeout(usb_context, &tv);
562
563 return TRUE;
564}
565
a1bb33af
UH
566void receive_transfer(struct libusb_transfer *transfer)
567{
568 static int num_samples = 0;
569 static int empty_transfer_count = 0;
b9c735a2 570 struct sr_datafeed_packet packet;
6d754b6d 571 struct fx2_device *fx2;
a1bb33af
UH
572 int cur_buflen, trigger_offset, i;
573 unsigned char *cur_buf, *new_buf;
574
f6958dab
UH
575 /* hw_stop_acquisition() is telling us to stop. */
576 if (transfer == NULL)
a1bb33af 577 num_samples = -1;
a1bb33af 578
f6958dab
UH
579 /*
580 * If acquisition has already ended, just free any queued up
581 * transfer that come in.
582 */
6f5f21f9 583 if (num_samples == -1) {
9c48090a
BV
584 if (transfer)
585 libusb_free_transfer(transfer);
f6958dab
UH
586 return;
587 }
a1bb33af 588
b08024a8
UH
589 sr_info("saleae: receive_transfer(): status %d received %d bytes",
590 transfer->status, transfer->actual_length);
f6958dab
UH
591
592 /* Save incoming transfer before reusing the transfer struct. */
593 cur_buf = transfer->buffer;
594 cur_buflen = transfer->actual_length;
6d754b6d 595 fx2 = transfer->user_data;
f6958dab
UH
596
597 /* Fire off a new request. */
b53738ba
UH
598 if (!(new_buf = g_try_malloc(4096))) {
599 sr_err("saleae: %s: new_buf malloc failed", __func__);
600 // return SR_ERR_MALLOC;
601 return; /* FIXME */
602 }
603
f6958dab
UH
604 transfer->buffer = new_buf;
605 transfer->length = 4096;
606 if (libusb_submit_transfer(transfer) != 0) {
607 /* TODO: Stop session? */
b08024a8 608 sr_warn("eek");
f6958dab
UH
609 }
610
611 if (cur_buflen == 0) {
612 empty_transfer_count++;
613 if (empty_transfer_count > MAX_EMPTY_TRANSFERS) {
614 /*
615 * The FX2 gave up. End the acquisition, the frontend
616 * will work out that the samplecount is short.
617 */
6d754b6d 618 hw_stop_acquisition(-1, fx2->session_data);
6f5f21f9 619 }
f6958dab
UH
620 return;
621 } else {
622 empty_transfer_count = 0;
623 }
a1bb33af 624
f6958dab 625 trigger_offset = 0;
6d754b6d 626 if (fx2->trigger_stage >= 0) {
f6958dab 627 for (i = 0; i < cur_buflen; i++) {
b5698bd7 628
6d754b6d 629 if ((cur_buf[i] & fx2->trigger_mask[fx2->trigger_stage]) == fx2->trigger_value[fx2->trigger_stage]) {
b5698bd7 630 /* Match on this trigger stage. */
6d754b6d
BV
631 fx2->trigger_buffer[fx2->trigger_stage] = cur_buf[i];
632 fx2->trigger_stage++;
633 if (fx2->trigger_stage == NUM_TRIGGER_STAGES || fx2->trigger_mask[fx2->trigger_stage] == 0) {
b5698bd7
BV
634 /* Match on all trigger stages, we're done. */
635 trigger_offset = i + 1;
636
637 /*
638 * TODO: Send pre-trigger buffer to session bus.
639 * Tell the frontend we hit the trigger here.
640 */
5a2326a7 641 packet.type = SR_DF_TRIGGER;
b5698bd7 642 packet.length = 0;
6d754b6d 643 sr_session_bus(fx2->session_data, &packet);
b5698bd7
BV
644
645 /*
646 * Send the samples that triggered it, since we're
647 * skipping past them.
648 */
5a2326a7 649 packet.type = SR_DF_LOGIC;
6d754b6d 650 packet.length = fx2->trigger_stage;
4c046c6b 651 packet.unitsize = 1;
6d754b6d
BV
652 packet.payload = fx2->trigger_buffer;
653 sr_session_bus(fx2->session_data, &packet);
b5698bd7 654
6d754b6d 655 fx2->trigger_stage = TRIGGER_FIRED;
b5698bd7
BV
656 break;
657 }
658 return;
659 }
660
661 /*
662 * We had a match before, but not in the next sample. However, we may
663 * have a match on this stage in the next bit -- trigger on 0001 will
664 * fail on seeing 00001, so we need to go back to stage 0 -- but at
665 * the next sample from the one that matched originally, which the
666 * counter increment at the end of the loop takes care of.
667 */
6d754b6d
BV
668 if (fx2->trigger_stage > 0) {
669 i -= fx2->trigger_stage;
b5698bd7
BV
670 if (i < -1)
671 i = -1; /* Oops, went back past this buffer. */
672 /* Reset trigger stage. */
6d754b6d 673 fx2->trigger_stage = 0;
b5698bd7 674 }
a1bb33af 675 }
f6958dab 676 }
a1bb33af 677
6d754b6d 678 if (fx2->trigger_stage == TRIGGER_FIRED) {
f6958dab 679 /* Send the incoming transfer to the session bus. */
5a2326a7 680 packet.type = SR_DF_LOGIC;
f6958dab 681 packet.length = cur_buflen - trigger_offset;
4c046c6b 682 packet.unitsize = 1;
f6958dab 683 packet.payload = cur_buf + trigger_offset;
6d754b6d 684 sr_session_bus(fx2->session_data, &packet);
f6958dab
UH
685 g_free(cur_buf);
686
687 num_samples += cur_buflen;
6d754b6d
BV
688 if (fx2->limit_samples && (unsigned int) num_samples > fx2->limit_samples) {
689 hw_stop_acquisition(-1, fx2->session_data);
a1bb33af 690 }
f6958dab
UH
691 } else {
692 /*
693 * TODO: Buffer pre-trigger data in capture
694 * ratio-sized buffer.
695 */
a1bb33af 696 }
a1bb33af
UH
697}
698
6d754b6d 699static int hw_start_acquisition(int device_index, gpointer session_data)
a1bb33af 700{
a00ba012 701 struct sr_device_instance *sdi;
b9c735a2
UH
702 struct sr_datafeed_packet *packet;
703 struct sr_datafeed_header *header;
6d754b6d 704 struct fx2_device *fx2;
a1bb33af
UH
705 struct libusb_transfer *transfer;
706 const struct libusb_pollfd **lupfd;
707 int size, i;
708 unsigned char *buf;
709
d32d961d 710 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 711 return SR_ERR;
6d754b6d
BV
712 fx2 = sdi->priv;
713 fx2->session_data = session_data;
a1bb33af 714
b53738ba
UH
715 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
716 sr_err("saleae: %s: packet malloc failed", __func__);
717 return SR_ERR_MALLOC;
718 }
719
720 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
721 sr_err("saleae: %s: header malloc failed", __func__);
722 return SR_ERR_MALLOC;
723 }
a1bb33af 724
6f5f21f9 725 /* Start with 2K transfer, subsequently increased to 4K. */
a1bb33af 726 size = 2048;
6f5f21f9 727 for (i = 0; i < NUM_SIMUL_TRANSFERS; i++) {
b53738ba
UH
728 if (!(buf = g_try_malloc(size))) {
729 sr_err("saleae: %s: buf malloc failed", __func__);
730 return SR_ERR_MALLOC;
731 }
a1bb33af 732 transfer = libusb_alloc_transfer(0);
6f5f21f9
UH
733 libusb_fill_bulk_transfer(transfer, sdi->usb->devhdl,
734 2 | LIBUSB_ENDPOINT_IN, buf, size,
6d754b6d 735 receive_transfer, fx2, 40);
6f5f21f9
UH
736 if (libusb_submit_transfer(transfer) != 0) {
737 /* TODO: Free them all. */
a1bb33af
UH
738 libusb_free_transfer(transfer);
739 g_free(buf);
e46b8fb1 740 return SR_ERR;
a1bb33af
UH
741 }
742 size = 4096;
743 }
744
745 lupfd = libusb_get_pollfds(usb_context);
6f5f21f9 746 for (i = 0; lupfd[i]; i++)
6f1be0a2
UH
747 sr_source_add(lupfd[i]->fd, lupfd[i]->events, 40, receive_data,
748 NULL);
a1bb33af
UH
749 free(lupfd);
750
5a2326a7 751 packet->type = SR_DF_HEADER;
b9c735a2 752 packet->length = sizeof(struct sr_datafeed_header);
6f5f21f9 753 packet->payload = (unsigned char *)header;
a1bb33af
UH
754 header->feed_version = 1;
755 gettimeofday(&header->starttime, NULL);
6d754b6d 756 header->samplerate = fx2->cur_samplerate;
5a2326a7 757 header->protocol_id = SR_PROTO_RAW;
6d754b6d 758 header->num_logic_probes = fx2->profile->num_probes;
c2616fb9 759 header->num_analog_probes = 0;
6d754b6d 760 sr_session_bus(session_data, packet);
a1bb33af
UH
761 g_free(header);
762 g_free(packet);
763
e46b8fb1 764 return SR_OK;
a1bb33af
UH
765}
766
6f5f21f9 767/* This stops acquisition on ALL devices, ignoring device_index. */
6d754b6d 768static void hw_stop_acquisition(int device_index, gpointer session_data)
a1bb33af 769{
b9c735a2 770 struct sr_datafeed_packet packet;
a1bb33af 771
17e1afcb 772 /* Avoid compiler warnings. */
afc8e4de
UH
773 device_index = device_index;
774
5a2326a7 775 packet.type = SR_DF_END;
6d754b6d 776 sr_session_bus(session_data, &packet);
a1bb33af
UH
777
778 receive_transfer(NULL);
779
6f5f21f9 780 /* TODO: Need to cancel and free any queued up transfers. */
a1bb33af
UH
781}
782
5c2d46d1 783struct sr_device_plugin saleae_logic_plugin_info = {
e519ba86
UH
784 .name = "saleae-logic",
785 .longname = "Saleae Logic",
786 .api_version = 1,
787 .init = hw_init,
788 .cleanup = hw_cleanup,
86f5e3d8
UH
789 .opendev = hw_opendev,
790 .closedev = hw_closedev,
e519ba86
UH
791 .get_device_info = hw_get_device_info,
792 .get_status = hw_get_status,
793 .get_capabilities = hw_get_capabilities,
794 .set_configuration = hw_set_configuration,
795 .start_acquisition = hw_start_acquisition,
796 .stop_acquisition = hw_stop_acquisition,
a1bb33af 797};