2012-02-11 12:08:49 +00:00
|
|
|
/*
|
2013-04-23 20:24:30 +00:00
|
|
|
* This file is part of the libsigrok project.
|
2012-02-11 12:08:49 +00:00
|
|
|
*
|
2013-03-24 10:21:00 +00:00
|
|
|
* Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
|
2012-02-11 12:08:49 +00:00
|
|
|
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-09-07 12:48:38 +00:00
|
|
|
#include "protocol.h"
|
2012-02-11 12:08:49 +00:00
|
|
|
|
2012-03-12 21:06:45 +00:00
|
|
|
static const struct fx2lafw_profile supported_fx2[] = {
|
2012-03-25 20:02:19 +00:00
|
|
|
/*
|
|
|
|
* CWAV USBee AX
|
2012-03-12 21:03:13 +00:00
|
|
|
* EE Electronics ESLA201A
|
2012-05-28 21:40:12 +00:00
|
|
|
* ARMFLY AX-Pro
|
2012-03-12 21:03:13 +00:00
|
|
|
*/
|
2012-03-12 21:31:43 +00:00
|
|
|
{ 0x08a9, 0x0014, "CWAV", "USBee AX", NULL,
|
2012-05-07 15:01:10 +00:00
|
|
|
FIRMWARE_DIR "/fx2lafw-cwav-usbeeax.fw",
|
|
|
|
0 },
|
2012-08-02 19:49:00 +00:00
|
|
|
/*
|
|
|
|
* CWAV USBee DX
|
|
|
|
* XZL-Studio DX
|
|
|
|
*/
|
|
|
|
{ 0x08a9, 0x0015, "CWAV", "USBee DX", NULL,
|
|
|
|
FIRMWARE_DIR "/fx2lafw-cwav-usbeedx.fw",
|
|
|
|
DEV_CAPS_16BIT },
|
2012-03-12 21:36:17 +00:00
|
|
|
|
2012-03-25 20:02:19 +00:00
|
|
|
/*
|
|
|
|
* CWAV USBee SX
|
2012-03-12 21:49:34 +00:00
|
|
|
*/
|
|
|
|
{ 0x08a9, 0x0009, "CWAV", "USBee SX", NULL,
|
2012-05-07 15:01:10 +00:00
|
|
|
FIRMWARE_DIR "/fx2lafw-cwav-usbeesx.fw",
|
|
|
|
0 },
|
2012-03-12 21:49:34 +00:00
|
|
|
|
2012-03-25 20:02:19 +00:00
|
|
|
/*
|
|
|
|
* Saleae Logic
|
2012-03-12 21:36:17 +00:00
|
|
|
* EE Electronics ESLA100
|
|
|
|
* Robomotic MiniLogic
|
2012-05-06 15:13:49 +00:00
|
|
|
* Robomotic BugLogic 3
|
2012-03-12 21:36:17 +00:00
|
|
|
*/
|
|
|
|
{ 0x0925, 0x3881, "Saleae", "Logic", NULL,
|
2012-05-07 15:01:10 +00:00
|
|
|
FIRMWARE_DIR "/fx2lafw-saleae-logic.fw",
|
|
|
|
0 },
|
2012-03-12 21:36:17 +00:00
|
|
|
|
2012-04-18 21:28:52 +00:00
|
|
|
/*
|
2012-05-06 15:13:49 +00:00
|
|
|
* Default Cypress FX2 without EEPROM, e.g.:
|
|
|
|
* Lcsoft Mini Board
|
|
|
|
* Braintechnology USB Interface V2.x
|
2012-04-18 21:28:52 +00:00
|
|
|
*/
|
|
|
|
{ 0x04B4, 0x8613, "Cypress", "FX2", NULL,
|
2012-05-07 15:01:10 +00:00
|
|
|
FIRMWARE_DIR "/fx2lafw-cypress-fx2.fw",
|
|
|
|
DEV_CAPS_16BIT },
|
2012-04-18 21:28:52 +00:00
|
|
|
|
2012-05-06 15:13:49 +00:00
|
|
|
/*
|
|
|
|
* Braintechnology USB-LPS
|
|
|
|
*/
|
|
|
|
{ 0x16d0, 0x0498, "Braintechnology", "USB-LPS", NULL,
|
2012-05-07 15:01:10 +00:00
|
|
|
FIRMWARE_DIR "/fx2lafw-braintechnology-usb-lps.fw",
|
|
|
|
DEV_CAPS_16BIT },
|
2012-05-06 15:13:49 +00:00
|
|
|
|
2012-03-12 21:31:43 +00:00
|
|
|
{ 0, 0, 0, 0, 0, 0, 0 }
|
2012-02-11 16:08:47 +00:00
|
|
|
};
|
|
|
|
|
2013-04-17 23:15:37 +00:00
|
|
|
static const int32_t hwopts[] = {
|
|
|
|
SR_CONF_CONN,
|
|
|
|
};
|
|
|
|
|
2013-03-25 19:30:56 +00:00
|
|
|
static const int32_t hwcaps[] = {
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LOGIC_ANALYZER,
|
2013-03-25 19:30:56 +00:00
|
|
|
SR_CONF_TRIGGER_TYPE,
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_SAMPLERATE,
|
2012-02-11 17:39:39 +00:00
|
|
|
|
|
|
|
/* These are really implemented in the driver, not the hardware. */
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
|
|
|
SR_CONF_CONTINUOUS,
|
2012-02-11 17:39:39 +00:00
|
|
|
};
|
|
|
|
|
2014-03-24 20:34:20 +00:00
|
|
|
static const char *channel_names[] = {
|
2012-12-11 20:51:53 +00:00
|
|
|
"0", "1", "2", "3", "4", "5", "6", "7",
|
2012-12-25 23:12:52 +00:00
|
|
|
"8", "9", "10", "11", "12", "13", "14", "15",
|
|
|
|
NULL,
|
2012-02-11 17:39:39 +00:00
|
|
|
};
|
|
|
|
|
2013-03-25 19:30:56 +00:00
|
|
|
static const uint64_t samplerates[] = {
|
2012-05-07 15:42:50 +00:00
|
|
|
SR_KHZ(20),
|
|
|
|
SR_KHZ(25),
|
2012-05-07 11:40:52 +00:00
|
|
|
SR_KHZ(50),
|
|
|
|
SR_KHZ(100),
|
2012-04-18 18:07:30 +00:00
|
|
|
SR_KHZ(200),
|
|
|
|
SR_KHZ(250),
|
|
|
|
SR_KHZ(500),
|
2012-02-11 17:39:39 +00:00
|
|
|
SR_MHZ(1),
|
|
|
|
SR_MHZ(2),
|
|
|
|
SR_MHZ(3),
|
|
|
|
SR_MHZ(4),
|
|
|
|
SR_MHZ(6),
|
|
|
|
SR_MHZ(8),
|
|
|
|
SR_MHZ(12),
|
|
|
|
SR_MHZ(16),
|
2012-02-27 22:40:38 +00:00
|
|
|
SR_MHZ(24),
|
2012-02-11 17:39:39 +00:00
|
|
|
};
|
|
|
|
|
2012-07-08 17:07:38 +00:00
|
|
|
SR_PRIV struct sr_dev_driver fx2lafw_driver_info;
|
2012-12-17 23:52:39 +00:00
|
|
|
static struct sr_dev_driver *di = &fx2lafw_driver_info;
|
2012-02-27 19:32:58 +00:00
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int init(struct sr_context *sr_ctx)
|
2012-07-05 09:27:48 +00:00
|
|
|
{
|
2013-05-31 13:46:57 +00:00
|
|
|
return std_init(sr_ctx, di, LOG_PREFIX);
|
2012-07-05 09:27:48 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static GSList *scan(GSList *options)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-07-31 22:42:19 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
2013-04-15 21:50:16 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
2014-03-24 20:34:20 +00:00
|
|
|
struct sr_channel *ch;
|
2013-04-15 21:50:16 +00:00
|
|
|
struct sr_config *src;
|
|
|
|
const struct fx2lafw_profile *prof;
|
|
|
|
GSList *l, *devices, *conn_devices;
|
|
|
|
struct libusb_device_descriptor des;
|
2012-02-11 16:08:47 +00:00
|
|
|
libusb_device **devlist;
|
2014-03-24 20:34:20 +00:00
|
|
|
int devcnt, num_logic_channels, ret, i, j;
|
2013-04-15 21:50:16 +00:00
|
|
|
const char *conn;
|
2012-07-08 17:03:36 +00:00
|
|
|
|
2012-12-17 23:52:39 +00:00
|
|
|
drvc = di->priv;
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2013-04-15 21:50:16 +00:00
|
|
|
conn = NULL;
|
|
|
|
for (l = options; l; l = l->next) {
|
|
|
|
src = l->data;
|
|
|
|
switch (src->key) {
|
|
|
|
case SR_CONF_CONN:
|
|
|
|
conn = g_variant_get_string(src->data, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (conn)
|
|
|
|
conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
|
|
|
|
else
|
|
|
|
conn_devices = NULL;
|
|
|
|
|
2012-05-30 20:42:19 +00:00
|
|
|
/* Find all fx2lafw compatible devices and upload firmware to them. */
|
2012-07-08 17:03:36 +00:00
|
|
|
devices = NULL;
|
2012-12-03 02:33:24 +00:00
|
|
|
libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
|
2012-02-11 16:08:47 +00:00
|
|
|
for (i = 0; devlist[i]; i++) {
|
2013-04-15 21:50:16 +00:00
|
|
|
if (conn) {
|
|
|
|
usb = NULL;
|
|
|
|
for (l = conn_devices; l; l = l->next) {
|
|
|
|
usb = l->data;
|
|
|
|
if (usb->bus == libusb_get_bus_number(devlist[i])
|
|
|
|
&& usb->address == libusb_get_device_address(devlist[i]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!l)
|
|
|
|
/* This device matched none of the ones that
|
|
|
|
* matched the conn specification. */
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2013-04-15 21:50:16 +00:00
|
|
|
if ((ret = libusb_get_device_descriptor( devlist[i], &des)) != 0) {
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_warn("Failed to get device descriptor: %s.",
|
2012-12-04 20:11:25 +00:00
|
|
|
libusb_error_name(ret));
|
2012-02-11 16:08:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-03-29 06:55:12 +00:00
|
|
|
prof = NULL;
|
2012-02-11 16:08:47 +00:00
|
|
|
for (j = 0; supported_fx2[j].vid; j++) {
|
|
|
|
if (des.idVendor == supported_fx2[j].vid &&
|
|
|
|
des.idProduct == supported_fx2[j].pid) {
|
2012-03-29 06:55:12 +00:00
|
|
|
prof = &supported_fx2[j];
|
2012-02-11 16:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-18 00:26:58 +00:00
|
|
|
/* Skip if the device was not found. */
|
2012-03-29 06:55:12 +00:00
|
|
|
if (!prof)
|
2012-02-11 16:08:47 +00:00
|
|
|
continue;
|
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devcnt = g_slist_length(drvc->instances);
|
2012-02-11 16:08:47 +00:00
|
|
|
sdi = sr_dev_inst_new(devcnt, SR_ST_INITIALIZING,
|
2012-03-29 06:55:12 +00:00
|
|
|
prof->vendor, prof->model, prof->model_version);
|
2012-03-25 13:20:55 +00:00
|
|
|
if (!sdi)
|
2012-07-21 20:04:47 +00:00
|
|
|
return NULL;
|
2012-12-17 23:52:39 +00:00
|
|
|
sdi->driver = di;
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2014-03-24 20:34:20 +00:00
|
|
|
/* Fill in channellist according to this device's profile. */
|
|
|
|
num_logic_channels = prof->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
|
|
|
|
for (j = 0; j < num_logic_channels; j++) {
|
2014-03-24 21:39:42 +00:00
|
|
|
if (!(ch = sr_channel_new(j, SR_CHANNEL_LOGIC, TRUE,
|
2014-03-24 20:34:20 +00:00
|
|
|
channel_names[j])))
|
2012-07-21 20:04:47 +00:00
|
|
|
return NULL;
|
2014-03-24 20:34:20 +00:00
|
|
|
sdi->channels = g_slist_append(sdi->channels, ch);
|
2012-07-08 17:06:23 +00:00
|
|
|
}
|
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devc = fx2lafw_dev_new();
|
|
|
|
devc->profile = prof;
|
|
|
|
sdi->priv = devc;
|
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
2012-07-08 17:07:38 +00:00
|
|
|
devices = g_slist_append(devices, sdi);
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2013-09-07 12:48:38 +00:00
|
|
|
if (fx2lafw_check_conf_profile(devlist[i])) {
|
2012-02-25 11:58:55 +00:00
|
|
|
/* Already has the firmware, so fix the new address. */
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_dbg("Found an fx2lafw device.");
|
2012-02-25 11:58:55 +00:00
|
|
|
sdi->status = SR_ST_INACTIVE;
|
2013-04-16 15:55:56 +00:00
|
|
|
sdi->inst_type = SR_INST_USB;
|
|
|
|
sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
|
|
|
|
libusb_get_device_address(devlist[i]), NULL);
|
2012-02-25 11:58:55 +00:00
|
|
|
} else {
|
2012-03-12 21:31:43 +00:00
|
|
|
if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION,
|
2012-03-29 06:55:12 +00:00
|
|
|
prof->firmware) == SR_OK)
|
2012-12-18 00:26:58 +00:00
|
|
|
/* Store when this device's FW was updated. */
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->fw_updated = g_get_monotonic_time();
|
2012-02-25 11:58:55 +00:00
|
|
|
else
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("Firmware upload failed for "
|
2012-03-25 20:02:19 +00:00
|
|
|
"device %d.", devcnt);
|
2013-04-16 15:55:56 +00:00
|
|
|
sdi->inst_type = SR_INST_USB;
|
2013-12-29 13:09:34 +00:00
|
|
|
sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
|
2013-04-16 15:55:56 +00:00
|
|
|
0xff, NULL);
|
2012-02-25 11:58:55 +00:00
|
|
|
}
|
2012-02-11 16:08:47 +00:00
|
|
|
}
|
|
|
|
libusb_free_device_list(devlist, 1);
|
2013-05-06 18:44:26 +00:00
|
|
|
g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2012-07-08 17:03:36 +00:00
|
|
|
return devices;
|
2012-02-11 12:08:49 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static GSList *dev_list(void)
|
2012-08-05 22:59:25 +00:00
|
|
|
{
|
2013-02-02 18:52:26 +00:00
|
|
|
return ((struct drv_context *)(di->priv))->instances;
|
2012-08-05 22:59:25 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int dev_open(struct sr_dev_inst *sdi)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2013-04-16 15:55:56 +00:00
|
|
|
struct sr_usb_dev_inst *usb;
|
2012-07-31 22:42:19 +00:00
|
|
|
struct dev_context *devc;
|
2012-05-30 07:10:41 +00:00
|
|
|
int ret;
|
|
|
|
int64_t timediff_us, timediff_ms;
|
2012-02-26 12:39:40 +00:00
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devc = sdi->priv;
|
2013-04-16 15:55:56 +00:00
|
|
|
usb = sdi->conn;
|
2012-02-26 12:39:40 +00:00
|
|
|
|
|
|
|
/*
|
2012-05-30 07:24:01 +00:00
|
|
|
* If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
|
|
|
|
* milliseconds for the FX2 to renumerate.
|
2012-02-26 12:39:40 +00:00
|
|
|
*/
|
2012-06-26 23:02:39 +00:00
|
|
|
ret = SR_ERR;
|
2012-07-31 22:42:19 +00:00
|
|
|
if (devc->fw_updated > 0) {
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_info("Waiting for device to reset.");
|
2012-12-18 00:26:58 +00:00
|
|
|
/* Takes >= 300ms for the FX2 to be gone from the USB bus. */
|
2012-02-26 12:39:40 +00:00
|
|
|
g_usleep(300 * 1000);
|
2012-05-30 07:10:41 +00:00
|
|
|
timediff_ms = 0;
|
2012-05-30 07:24:01 +00:00
|
|
|
while (timediff_ms < MAX_RENUM_DELAY_MS) {
|
2013-09-07 12:48:38 +00:00
|
|
|
if ((ret = fx2lafw_dev_open(sdi, di)) == SR_OK)
|
2012-02-26 12:39:40 +00:00
|
|
|
break;
|
|
|
|
g_usleep(100 * 1000);
|
2012-05-30 07:10:41 +00:00
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
timediff_us = g_get_monotonic_time() - devc->fw_updated;
|
2012-06-26 23:02:39 +00:00
|
|
|
timediff_ms = timediff_us / 1000;
|
2012-12-18 00:26:58 +00:00
|
|
|
sr_spew("Waited %" PRIi64 "ms.", timediff_ms);
|
2012-02-26 12:39:40 +00:00
|
|
|
}
|
2012-12-06 21:55:14 +00:00
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Device failed to renumerate.");
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-12-18 00:30:34 +00:00
|
|
|
sr_info("Device came back after %" PRIi64 "ms.", timediff_ms);
|
2012-02-26 12:39:40 +00:00
|
|
|
} else {
|
2012-12-06 21:55:14 +00:00
|
|
|
sr_info("Firmware upload was not needed.");
|
2013-09-07 12:48:38 +00:00
|
|
|
ret = fx2lafw_dev_open(sdi, di);
|
2012-02-26 12:39:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-20 16:51:18 +00:00
|
|
|
if (ret != SR_OK) {
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("Unable to open device.");
|
2012-02-26 12:39:40 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-12-06 21:31:37 +00:00
|
|
|
|
2013-04-16 15:55:56 +00:00
|
|
|
ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
|
2012-03-20 16:51:18 +00:00
|
|
|
if (ret != 0) {
|
2013-12-29 13:09:34 +00:00
|
|
|
switch (ret) {
|
2012-06-27 20:39:26 +00:00
|
|
|
case LIBUSB_ERROR_BUSY:
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("Unable to claim USB interface. Another "
|
2012-12-18 00:26:58 +00:00
|
|
|
"program or driver has already claimed it.");
|
2012-06-27 20:39:26 +00:00
|
|
|
break;
|
|
|
|
case LIBUSB_ERROR_NO_DEVICE:
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("Device has been disconnected.");
|
2012-06-27 20:39:26 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("Unable to claim interface: %s.",
|
2012-12-04 20:11:25 +00:00
|
|
|
libusb_error_name(ret));
|
2012-06-27 20:39:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-02-26 12:39:40 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
if (devc->cur_samplerate == 0) {
|
2012-03-04 14:10:05 +00:00
|
|
|
/* Samplerate hasn't been set; default to the slowest one. */
|
2013-03-25 19:30:56 +00:00
|
|
|
devc->cur_samplerate = samplerates[0];
|
2012-03-04 14:10:05 +00:00
|
|
|
}
|
|
|
|
|
2012-02-11 12:08:49 +00:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int dev_close(struct sr_dev_inst *sdi)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2013-04-16 15:55:56 +00:00
|
|
|
struct sr_usb_dev_inst *usb;
|
2013-02-01 21:58:54 +00:00
|
|
|
|
2013-04-16 15:55:56 +00:00
|
|
|
usb = sdi->conn;
|
|
|
|
if (usb->devhdl == NULL)
|
2012-07-21 20:04:47 +00:00
|
|
|
return SR_ERR;
|
2012-02-27 19:00:22 +00:00
|
|
|
|
2013-04-16 15:55:56 +00:00
|
|
|
sr_info("fx2lafw: Closing device %d on %d.%d interface %d.",
|
|
|
|
sdi->index, usb->bus, usb->address, USB_INTERFACE);
|
|
|
|
libusb_release_interface(usb->devhdl, USB_INTERFACE);
|
|
|
|
libusb_close(usb->devhdl);
|
|
|
|
usb->devhdl = NULL;
|
2012-07-21 20:04:47 +00:00
|
|
|
sdi->status = SR_ST_INACTIVE;
|
2012-02-27 19:00:22 +00:00
|
|
|
|
2012-02-11 12:08:49 +00:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int cleanup(void)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-07-13 00:30:09 +00:00
|
|
|
int ret;
|
2013-05-31 14:09:57 +00:00
|
|
|
struct drv_context *drvc;
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2012-12-17 23:52:39 +00:00
|
|
|
if (!(drvc = di->priv))
|
2012-07-31 22:42:19 +00:00
|
|
|
return SR_OK;
|
|
|
|
|
2014-02-26 20:37:18 +00:00
|
|
|
|
|
|
|
ret = std_dev_clear(di, NULL);
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
g_free(drvc);
|
2012-12-17 23:52:39 +00:00
|
|
|
di->priv = NULL;
|
2012-02-11 16:08:47 +00:00
|
|
|
|
2012-02-27 19:02:52 +00:00
|
|
|
return ret;
|
2012-02-11 12:08:49 +00:00
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
|
2014-03-20 20:58:01 +00:00
|
|
|
const struct sr_channel_group *cg)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-07-31 22:42:19 +00:00
|
|
|
struct dev_context *devc;
|
2013-04-17 23:15:37 +00:00
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
char str[128];
|
2012-02-11 17:39:39 +00:00
|
|
|
|
2014-03-20 20:58:01 +00:00
|
|
|
(void)cg;
|
2013-04-20 00:00:49 +00:00
|
|
|
|
2013-01-24 18:19:09 +00:00
|
|
|
switch (id) {
|
2013-04-17 23:15:37 +00:00
|
|
|
case SR_CONF_CONN:
|
|
|
|
if (!sdi || !sdi->conn)
|
2013-04-18 19:36:25 +00:00
|
|
|
return SR_ERR_ARG;
|
2013-04-17 23:15:37 +00:00
|
|
|
usb = sdi->conn;
|
|
|
|
if (usb->address == 255)
|
|
|
|
/* Device still needs to re-enumerate after firmware
|
|
|
|
* upload, so we don't know its (future) address. */
|
|
|
|
return SR_ERR;
|
|
|
|
snprintf(str, 128, "%d.%d", usb->bus, usb->address);
|
|
|
|
*data = g_variant_new_string(str);
|
|
|
|
break;
|
2013-01-25 02:17:36 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-04-17 23:15:37 +00:00
|
|
|
if (!sdi)
|
2012-07-13 00:28:07 +00:00
|
|
|
return SR_ERR;
|
2013-04-17 23:15:37 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(devc->cur_samplerate);
|
2012-07-13 00:28:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2012-02-11 17:39:39 +00:00
|
|
|
}
|
|
|
|
|
2012-07-13 00:28:07 +00:00
|
|
|
return SR_OK;
|
2012-02-11 12:08:49 +00:00
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
|
2014-03-20 20:58:01 +00:00
|
|
|
const struct sr_channel_group *cg)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-07-31 22:42:19 +00:00
|
|
|
struct dev_context *devc;
|
2012-02-27 19:21:08 +00:00
|
|
|
int ret;
|
|
|
|
|
2014-03-20 20:58:01 +00:00
|
|
|
(void)cg;
|
2013-04-20 00:00:49 +00:00
|
|
|
|
2013-04-23 13:14:42 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR;
|
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devc = sdi->priv;
|
2012-02-27 19:21:08 +00:00
|
|
|
|
2013-01-24 18:19:09 +00:00
|
|
|
if (id == SR_CONF_SAMPLERATE) {
|
2013-03-25 19:30:56 +00:00
|
|
|
devc->cur_samplerate = g_variant_get_uint64(data);
|
2012-02-29 22:47:05 +00:00
|
|
|
ret = SR_OK;
|
2013-01-24 18:19:09 +00:00
|
|
|
} else if (id == SR_CONF_LIMIT_SAMPLES) {
|
2013-03-25 19:30:56 +00:00
|
|
|
devc->limit_samples = g_variant_get_uint64(data);
|
2012-02-27 19:21:08 +00:00
|
|
|
ret = SR_OK;
|
|
|
|
} else {
|
2013-04-16 00:33:03 +00:00
|
|
|
ret = SR_ERR_NA;
|
2012-02-27 19:21:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2012-02-11 12:08:49 +00:00
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
|
2014-03-20 20:58:01 +00:00
|
|
|
const struct sr_channel_group *cg)
|
2013-01-25 01:32:05 +00:00
|
|
|
{
|
2013-03-25 19:30:56 +00:00
|
|
|
GVariant *gvar;
|
|
|
|
GVariantBuilder gvb;
|
2013-01-25 01:32:05 +00:00
|
|
|
|
|
|
|
(void)sdi;
|
2014-03-20 20:58:01 +00:00
|
|
|
(void)cg;
|
2013-01-25 01:32:05 +00:00
|
|
|
|
|
|
|
switch (key) {
|
2013-04-17 23:15:37 +00:00
|
|
|
case SR_CONF_SCAN_OPTIONS:
|
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
|
|
|
|
break;
|
2013-01-25 14:01:49 +00:00
|
|
|
case SR_CONF_DEVICE_OPTIONS:
|
2013-03-25 19:30:56 +00:00
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
|
2013-01-25 14:01:49 +00:00
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-03-25 19:30:56 +00:00
|
|
|
g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
|
|
|
|
gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
|
|
|
|
ARRAY_SIZE(samplerates), sizeof(uint64_t));
|
|
|
|
g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
|
|
|
|
*data = g_variant_builder_end(&gvb);
|
2013-01-25 01:32:05 +00:00
|
|
|
break;
|
2013-01-25 10:52:27 +00:00
|
|
|
case SR_CONF_TRIGGER_TYPE:
|
2013-03-25 19:30:56 +00:00
|
|
|
*data = g_variant_new_string(TRIGGER_TYPE);
|
2013-01-25 10:52:27 +00:00
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2013-01-25 01:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-29 21:32:34 +00:00
|
|
|
static int receive_data(int fd, int revents, void *cb_data)
|
2012-02-27 19:32:58 +00:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
2012-12-18 00:26:58 +00:00
|
|
|
struct drv_context *drvc;
|
2012-02-27 19:32:58 +00:00
|
|
|
|
|
|
|
(void)fd;
|
|
|
|
(void)revents;
|
2012-02-29 21:32:34 +00:00
|
|
|
(void)cb_data;
|
2012-02-27 19:32:58 +00:00
|
|
|
|
2012-12-18 00:26:58 +00:00
|
|
|
drvc = di->priv;
|
|
|
|
|
2012-02-27 19:32:58 +00:00
|
|
|
tv.tv_sec = tv.tv_usec = 0;
|
2012-12-03 02:33:24 +00:00
|
|
|
libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
|
2012-02-27 19:32:58 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-07-31 22:42:19 +00:00
|
|
|
struct dev_context *devc;
|
2012-12-18 00:26:58 +00:00
|
|
|
struct drv_context *drvc;
|
2013-04-16 15:55:56 +00:00
|
|
|
struct sr_usb_dev_inst *usb;
|
2012-02-27 19:32:58 +00:00
|
|
|
struct libusb_transfer *transfer;
|
2012-12-18 00:26:58 +00:00
|
|
|
unsigned int i, timeout, num_transfers;
|
2012-06-25 20:15:59 +00:00
|
|
|
int ret;
|
2012-02-27 19:32:58 +00:00
|
|
|
unsigned char *buf;
|
2012-12-18 00:26:58 +00:00
|
|
|
size_t size;
|
2012-02-27 19:32:58 +00:00
|
|
|
|
2013-04-23 13:14:42 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
2012-12-18 00:26:58 +00:00
|
|
|
drvc = di->priv;
|
2012-07-31 22:42:19 +00:00
|
|
|
devc = sdi->priv;
|
2013-04-16 15:55:56 +00:00
|
|
|
usb = sdi->conn;
|
2012-12-18 00:26:58 +00:00
|
|
|
|
2013-04-29 17:02:26 +00:00
|
|
|
/* Configures devc->trigger_* and devc->sample_wide */
|
2014-03-24 20:34:20 +00:00
|
|
|
if (fx2lafw_configure_channels(sdi) != SR_OK) {
|
|
|
|
sr_err("Failed to configure channels.");
|
2012-08-05 16:56:12 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2013-02-07 08:11:26 +00:00
|
|
|
devc->cb_data = cb_data;
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->num_samples = 0;
|
|
|
|
devc->empty_transfer_count = 0;
|
2012-02-27 19:32:58 +00:00
|
|
|
|
2013-09-07 12:48:38 +00:00
|
|
|
timeout = fx2lafw_get_timeout(devc);
|
|
|
|
num_transfers = fx2lafw_get_number_of_transfers(devc);
|
|
|
|
size = fx2lafw_get_buffer_size(devc);
|
2013-04-29 17:02:26 +00:00
|
|
|
devc->submitted_transfers = 0;
|
2012-06-25 20:15:59 +00:00
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->transfers = g_try_malloc0(sizeof(*devc->transfers) * num_transfers);
|
2012-10-30 19:20:22 +00:00
|
|
|
if (!devc->transfers) {
|
2012-12-13 21:08:05 +00:00
|
|
|
sr_err("USB transfers malloc failed.");
|
2012-10-30 19:20:22 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
2012-07-03 21:58:38 +00:00
|
|
|
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->num_transfers = num_transfers;
|
2012-06-25 20:15:59 +00:00
|
|
|
for (i = 0; i < num_transfers; i++) {
|
2012-02-27 19:32:58 +00:00
|
|
|
if (!(buf = g_try_malloc(size))) {
|
2012-12-18 00:26:58 +00:00
|
|
|
sr_err("USB transfer buffer malloc failed.");
|
2012-02-27 19:32:58 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
transfer = libusb_alloc_transfer(0);
|
2013-04-16 15:55:56 +00:00
|
|
|
libusb_fill_bulk_transfer(transfer, usb->devhdl,
|
2012-02-27 19:32:58 +00:00
|
|
|
2 | LIBUSB_ENDPOINT_IN, buf, size,
|
2013-09-07 12:48:38 +00:00
|
|
|
fx2lafw_receive_transfer, devc, timeout);
|
2012-12-04 20:11:25 +00:00
|
|
|
if ((ret = libusb_submit_transfer(transfer)) != 0) {
|
2012-12-18 00:26:58 +00:00
|
|
|
sr_err("Failed to submit transfer: %s.",
|
|
|
|
libusb_error_name(ret));
|
2012-02-27 19:32:58 +00:00
|
|
|
libusb_free_transfer(transfer);
|
|
|
|
g_free(buf);
|
2013-09-07 12:48:38 +00:00
|
|
|
fx2lafw_abort_acquisition(devc);
|
2012-02-27 19:32:58 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->transfers[i] = transfer;
|
|
|
|
devc->submitted_transfers++;
|
2012-02-27 19:32:58 +00:00
|
|
|
}
|
|
|
|
|
2013-12-21 23:03:24 +00:00
|
|
|
devc->ctx = drvc->sr_ctx;
|
|
|
|
|
|
|
|
usb_source_add(devc->ctx, timeout, receive_data, NULL);
|
2012-02-27 19:32:58 +00:00
|
|
|
|
2013-02-06 18:57:32 +00:00
|
|
|
/* Send header packet to the session bus. */
|
2013-05-03 19:59:32 +00:00
|
|
|
std_session_send_df_header(cb_data, LOG_PREFIX);
|
2012-04-22 18:06:19 +00:00
|
|
|
|
2013-09-07 12:48:38 +00:00
|
|
|
if ((ret = fx2lafw_command_start_acquisition(usb->devhdl,
|
2012-07-31 22:42:19 +00:00
|
|
|
devc->cur_samplerate, devc->sample_wide)) != SR_OK) {
|
2013-09-07 12:48:38 +00:00
|
|
|
fx2lafw_abort_acquisition(devc);
|
2012-03-20 16:51:18 +00:00
|
|
|
return ret;
|
2012-03-11 19:00:52 +00:00
|
|
|
}
|
|
|
|
|
2012-02-11 12:08:49 +00:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-10 17:37:54 +00:00
|
|
|
static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
|
2012-02-11 12:08:49 +00:00
|
|
|
{
|
2012-03-03 15:22:51 +00:00
|
|
|
(void)cb_data;
|
2012-02-27 19:34:24 +00:00
|
|
|
|
2013-09-07 12:48:38 +00:00
|
|
|
fx2lafw_abort_acquisition(sdi->priv);
|
2012-02-27 19:34:24 +00:00
|
|
|
|
2012-02-11 12:08:49 +00:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
SR_PRIV struct sr_dev_driver fx2lafw_driver_info = {
|
2012-02-11 12:08:49 +00:00
|
|
|
.name = "fx2lafw",
|
2012-03-21 18:58:56 +00:00
|
|
|
.longname = "fx2lafw (generic driver for FX2 based LAs)",
|
2012-02-11 12:08:49 +00:00
|
|
|
.api_version = 1,
|
2013-05-10 17:37:54 +00:00
|
|
|
.init = init,
|
|
|
|
.cleanup = cleanup,
|
|
|
|
.scan = scan,
|
|
|
|
.dev_list = dev_list,
|
2014-02-26 20:37:18 +00:00
|
|
|
.dev_clear = NULL,
|
2013-01-24 18:19:09 +00:00
|
|
|
.config_get = config_get,
|
|
|
|
.config_set = config_set,
|
2013-01-25 01:32:05 +00:00
|
|
|
.config_list = config_list,
|
2013-05-10 17:37:54 +00:00
|
|
|
.dev_open = dev_open,
|
|
|
|
.dev_close = dev_close,
|
|
|
|
.dev_acquisition_start = dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = dev_acquisition_stop,
|
2012-07-31 22:42:19 +00:00
|
|
|
.priv = NULL,
|
2012-02-11 12:08:49 +00:00
|
|
|
};
|