2014-06-29 19:27:43 +08:00
|
|
|
/*
|
|
|
|
* This file is part of the libsigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
|
|
|
|
* Copyright (C) 2013 DreamSourceLab <dreamsourcelab@dreamsourcelab.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
#include <sys/stat.h>
|
2014-06-29 19:27:43 +08:00
|
|
|
#include <inttypes.h>
|
2015-04-17 00:21:14 +08:00
|
|
|
//#include <libusb.h>
|
|
|
|
#include "dsl.h"
|
2014-06-29 19:27:43 +08:00
|
|
|
#include "command.h"
|
|
|
|
|
|
|
|
#undef min
|
|
|
|
#define min(a,b) ((a)<(b)?(a):(b))
|
2017-05-20 03:20:06 +08:00
|
|
|
#undef max
|
|
|
|
#define max(a,b) ((a)>(b)?(a):(b))
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static const unsigned int single_buffer_time = 20;
|
2017-05-31 11:49:20 +08:00
|
|
|
static const unsigned int total_buffer_time = 100;
|
2017-05-23 22:39:00 +08:00
|
|
|
static const unsigned int instant_buffer_size = 1024 * 1024;
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
static struct sr_dev_mode mode_list[] = {
|
|
|
|
{"LA", LOGIC},
|
|
|
|
{"DAQ", ANALOG},
|
|
|
|
{"OSC", DSO},
|
|
|
|
};
|
|
|
|
|
2015-06-19 18:16:54 +08:00
|
|
|
static struct sr_dev_mode pro_mode_list[] = {
|
|
|
|
{"LA", LOGIC},
|
|
|
|
};
|
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
static const char *opmodes[] = {
|
2015-09-26 21:59:40 +08:00
|
|
|
"Buffer Mode",
|
|
|
|
"Stream Mode",
|
2014-09-24 18:43:42 +08:00
|
|
|
"Internal Test",
|
2015-10-08 18:16:44 +08:00
|
|
|
"External Test",
|
|
|
|
"DRAM Loopback Test",
|
2015-09-26 21:59:40 +08:00
|
|
|
};
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
static const char *bufoptions[] = {
|
|
|
|
"Stop immediately",
|
|
|
|
"Upload captured data",
|
|
|
|
};
|
2015-10-08 18:16:44 +08:00
|
|
|
|
2015-09-26 21:59:40 +08:00
|
|
|
static const char *stream_ch_modes[] = {
|
2017-05-20 03:20:06 +08:00
|
|
|
"Use 16 Channels (Max 20MHz)",
|
|
|
|
"Use 12 Channels (Max 25MHz)",
|
|
|
|
"Use 6 Channels (Max 50MHz)",
|
|
|
|
"Use 3 Channels (Max 100MHz)",
|
2015-09-26 21:59:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const uint16_t stream_ch_num[] = {
|
|
|
|
16,
|
2017-05-20 03:20:06 +08:00
|
|
|
12,
|
|
|
|
6,
|
|
|
|
3,
|
2015-09-26 21:59:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *buffer_ch_modes[] = {
|
|
|
|
"Use Channels 0~15 (Max 100MHz)",
|
|
|
|
"Use Channels 0~7 (Max 200MHz)",
|
|
|
|
"Use Channels 0~3 (Max 400MHz)",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint16_t buffer_ch_num[] = {
|
2017-05-20 03:20:06 +08:00
|
|
|
MAX_LOGIC_PROBES,
|
|
|
|
MAX_LOGIC_PROBES / 2,
|
|
|
|
MAX_LOGIC_PROBES / 4,
|
2014-09-24 18:43:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *thresholds[] = {
|
|
|
|
"1.8/2.5/3.3V Level",
|
|
|
|
"5.0V Level",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *filters[] = {
|
|
|
|
"None",
|
|
|
|
"1 Sample Clock",
|
|
|
|
};
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-09-28 16:31:19 +08:00
|
|
|
static const char *maxHeights[] = {
|
|
|
|
"1X",
|
|
|
|
"2X",
|
|
|
|
"3X",
|
|
|
|
"4X",
|
|
|
|
"5X",
|
|
|
|
};
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
static const int32_t hwopts[] = {
|
|
|
|
SR_CONF_CONN,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int32_t hwcaps[] = {
|
|
|
|
SR_CONF_LOGIC_ANALYZER,
|
|
|
|
SR_CONF_TRIGGER_TYPE,
|
|
|
|
SR_CONF_SAMPLERATE,
|
|
|
|
|
|
|
|
/* These are really implemented in the driver, not the hardware. */
|
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
|
|
|
SR_CONF_CONTINUOUS,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int32_t hwoptions[] = {
|
|
|
|
SR_CONF_OPERATION_MODE,
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_BUFFER_OPTIONS,
|
2014-09-24 18:43:42 +08:00
|
|
|
SR_CONF_THRESHOLD,
|
|
|
|
SR_CONF_FILTER,
|
2015-09-28 16:31:19 +08:00
|
|
|
SR_CONF_MAX_HEIGHT,
|
2014-09-24 18:43:42 +08:00
|
|
|
SR_CONF_CLOCK_TYPE,
|
|
|
|
SR_CONF_CLOCK_EDGE,
|
2014-06-29 19:27:43 +08:00
|
|
|
};
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static const int32_t hwoptions_pro[] = {
|
|
|
|
SR_CONF_OPERATION_MODE,
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_BUFFER_OPTIONS,
|
2015-04-17 00:21:14 +08:00
|
|
|
SR_CONF_VTH,
|
|
|
|
SR_CONF_FILTER,
|
2015-09-28 16:31:19 +08:00
|
|
|
SR_CONF_MAX_HEIGHT,
|
2015-04-17 00:21:14 +08:00
|
|
|
SR_CONF_CLOCK_TYPE,
|
|
|
|
SR_CONF_CLOCK_EDGE,
|
|
|
|
};
|
|
|
|
|
2015-06-06 22:24:00 +08:00
|
|
|
static const int32_t sessions[] = {
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_MAX_HEIGHT,
|
2016-08-10 15:12:13 +08:00
|
|
|
SR_CONF_OPERATION_MODE,
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_BUFFER_OPTIONS,
|
2016-08-10 15:12:13 +08:00
|
|
|
SR_CONF_CHANNEL_MODE,
|
2015-06-06 22:24:00 +08:00
|
|
|
SR_CONF_SAMPLERATE,
|
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
|
|
|
SR_CONF_CLOCK_TYPE,
|
|
|
|
SR_CONF_CLOCK_EDGE,
|
|
|
|
SR_CONF_THRESHOLD,
|
|
|
|
SR_CONF_FILTER,
|
|
|
|
SR_CONF_TRIGGER_SLOPE,
|
|
|
|
SR_CONF_TRIGGER_SOURCE,
|
|
|
|
SR_CONF_HORIZ_TRIGGERPOS,
|
2015-06-17 21:46:37 +08:00
|
|
|
SR_CONF_TRIGGER_HOLDOFF,
|
2016-06-25 09:58:07 +08:00
|
|
|
SR_CONF_TRIGGER_MARGIN,
|
2015-06-06 22:24:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const int32_t sessions_pro[] = {
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_MAX_HEIGHT,
|
2016-08-10 15:12:13 +08:00
|
|
|
SR_CONF_OPERATION_MODE,
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_CONF_BUFFER_OPTIONS,
|
2016-08-10 15:12:13 +08:00
|
|
|
SR_CONF_CHANNEL_MODE,
|
2015-06-06 22:24:00 +08:00
|
|
|
SR_CONF_SAMPLERATE,
|
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
|
|
|
SR_CONF_CLOCK_TYPE,
|
|
|
|
SR_CONF_CLOCK_EDGE,
|
|
|
|
SR_CONF_VTH,
|
|
|
|
SR_CONF_FILTER,
|
|
|
|
SR_CONF_TRIGGER_SLOPE,
|
|
|
|
SR_CONF_TRIGGER_SOURCE,
|
2016-07-20 08:59:39 +08:00
|
|
|
SR_CONF_TRIGGER_CHANNEL,
|
2015-06-06 22:24:00 +08:00
|
|
|
SR_CONF_HORIZ_TRIGGERPOS,
|
2015-06-17 21:46:37 +08:00
|
|
|
SR_CONF_TRIGGER_HOLDOFF,
|
2016-06-25 09:58:07 +08:00
|
|
|
SR_CONF_TRIGGER_MARGIN,
|
2015-06-06 22:24:00 +08:00
|
|
|
};
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
static const char *probe_names[] = {
|
|
|
|
"0", "1", "2", "3", "4", "5", "6", "7",
|
|
|
|
"8", "9", "10", "11", "12", "13", "14", "15",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint16_t test_sample_value;
|
|
|
|
static uint16_t test_init = 1;
|
|
|
|
|
|
|
|
static const uint64_t samplerates[] = {
|
|
|
|
SR_KHZ(10),
|
|
|
|
SR_KHZ(20),
|
|
|
|
SR_KHZ(50),
|
|
|
|
SR_KHZ(100),
|
|
|
|
SR_KHZ(200),
|
|
|
|
SR_KHZ(500),
|
|
|
|
SR_MHZ(1),
|
|
|
|
SR_MHZ(2),
|
|
|
|
SR_MHZ(5),
|
|
|
|
SR_MHZ(10),
|
|
|
|
SR_MHZ(20),
|
|
|
|
SR_MHZ(25),
|
|
|
|
SR_MHZ(50),
|
|
|
|
SR_MHZ(100),
|
|
|
|
SR_MHZ(200),
|
|
|
|
SR_MHZ(400),
|
|
|
|
};
|
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
//static const uint64_t samplecounts[] = {
|
|
|
|
// SR_KB(1),
|
|
|
|
// SR_KB(2),
|
|
|
|
// SR_KB(5),
|
|
|
|
// SR_KB(10),
|
|
|
|
// SR_KB(20),
|
|
|
|
// SR_KB(50),
|
|
|
|
// SR_KB(100),
|
|
|
|
// SR_KB(200),
|
|
|
|
// SR_KB(500),
|
|
|
|
// SR_MB(1),
|
|
|
|
// SR_MB(2),
|
|
|
|
// SR_MB(5),
|
|
|
|
// SR_MB(10),
|
|
|
|
// SR_MB(16),
|
|
|
|
//};
|
|
|
|
|
|
|
|
static const uint64_t samplecounts[] = {
|
|
|
|
SR_KB(1),
|
|
|
|
SR_KB(2),
|
2015-04-17 00:21:14 +08:00
|
|
|
SR_KB(4),
|
2014-09-24 18:43:42 +08:00
|
|
|
SR_KB(8),
|
|
|
|
SR_KB(16),
|
|
|
|
SR_KB(32),
|
|
|
|
SR_KB(64),
|
|
|
|
SR_KB(128),
|
|
|
|
SR_KB(256),
|
|
|
|
SR_KB(512),
|
|
|
|
SR_MB(1),
|
|
|
|
SR_MB(2),
|
|
|
|
SR_MB(4),
|
|
|
|
SR_MB(8),
|
|
|
|
SR_MB(16),
|
2015-04-17 00:21:14 +08:00
|
|
|
SR_MB(32),
|
|
|
|
SR_MB(64),
|
|
|
|
SR_MB(128),
|
|
|
|
SR_MB(256),
|
|
|
|
SR_MB(512),
|
2017-05-20 03:20:06 +08:00
|
|
|
SR_GB(1),
|
|
|
|
SR_GB(2),
|
|
|
|
SR_GB(4),
|
|
|
|
SR_GB(8),
|
|
|
|
SR_GB(16),
|
2014-09-24 18:43:42 +08:00
|
|
|
};
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
static uint16_t opmodes_show_count = 3;
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
SR_PRIV struct sr_dev_driver DSLogic_driver_info;
|
|
|
|
static struct sr_dev_driver *di = &DSLogic_driver_info;
|
|
|
|
|
|
|
|
extern struct ds_trigger *trigger;
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
struct sr_status mstatus;
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
/**
|
|
|
|
* Check the USB configuration to determine if this is an DSLogic device.
|
|
|
|
*
|
|
|
|
* @return TRUE if the device's configuration profile match DSLogic
|
|
|
|
* configuration, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
static gboolean check_conf_profile(libusb_device *dev)
|
|
|
|
{
|
|
|
|
struct libusb_device_descriptor des;
|
|
|
|
struct libusb_device_handle *hdl;
|
|
|
|
gboolean ret;
|
|
|
|
unsigned char strdesc[64];
|
|
|
|
|
|
|
|
hdl = NULL;
|
|
|
|
ret = FALSE;
|
|
|
|
while (!ret) {
|
|
|
|
/* Assume the FW has not been loaded, unless proven wrong. */
|
|
|
|
if (libusb_get_device_descriptor(dev, &des) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (libusb_open(dev, &hdl) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (libusb_get_string_descriptor_ascii(hdl,
|
|
|
|
des.iManufacturer, strdesc, sizeof(strdesc)) < 0)
|
|
|
|
break;
|
|
|
|
if (strncmp((const char *)strdesc, "DreamSourceLab", 14))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (libusb_get_string_descriptor_ascii(hdl,
|
|
|
|
des.iProduct, strdesc, sizeof(strdesc)) < 0)
|
|
|
|
break;
|
2016-06-08 12:18:50 +08:00
|
|
|
if (strncmp((const char *)strdesc, "USB-based Instrument", 20))
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* If we made it here, it must be an DSLogic. */
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
if (hdl)
|
|
|
|
libusb_close(hdl);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
static int en_ch_num(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
int channel_en_cnt = 0;
|
|
|
|
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
channel_en_cnt += probe->enabled;
|
|
|
|
}
|
|
|
|
channel_en_cnt += (channel_en_cnt == 0);
|
|
|
|
|
|
|
|
return channel_en_cnt;
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
static int counts_size(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
struct DSL_context *devc = sdi->priv;
|
|
|
|
if (strcmp(sdi->model, "DSLogic Basic") == 0)
|
|
|
|
if (sdi->mode == ANALOG)
|
|
|
|
return 5;
|
|
|
|
else if (!devc || devc->op_mode == SR_OP_STREAM)
|
|
|
|
return ARRAY_SIZE(samplecounts);
|
|
|
|
else
|
|
|
|
return 15;
|
|
|
|
else
|
|
|
|
if (sdi->mode == ANALOG)
|
|
|
|
return 15;
|
|
|
|
else
|
|
|
|
return ARRAY_SIZE(samplecounts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t channel_depth(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
int ch_num = en_ch_num(sdi);
|
|
|
|
if (strcmp(sdi->model, "DSLogic Basic") == 0)
|
|
|
|
return DSLOGIC_BASIC_MEM_DEPTH / (ch_num ? ch_num : 1);
|
|
|
|
else
|
|
|
|
return DSLOGIC_MEM_DEPTH / (ch_num ? ch_num : 1);
|
|
|
|
}
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
static int fpga_setting(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
struct libusb_device_handle *hdl;
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_setting setting;
|
2014-06-29 19:27:43 +08:00
|
|
|
int ret;
|
|
|
|
int transferred;
|
|
|
|
int result;
|
|
|
|
int i;
|
2015-04-17 00:21:14 +08:00
|
|
|
GSList *l;
|
2017-05-20 03:20:06 +08:00
|
|
|
uint32_t tmp_u32;
|
|
|
|
uint64_t tmp_u64;
|
|
|
|
const int ch_num = en_ch_num(sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
hdl = usb->devhdl;
|
|
|
|
|
|
|
|
setting.sync = 0xf5a5f5a5;
|
|
|
|
setting.mode_header = 0x0001;
|
2017-05-20 03:20:06 +08:00
|
|
|
setting.divider_header = 0x0102;
|
|
|
|
setting.count_header = 0x0302;
|
|
|
|
setting.trig_pos_header = 0x0502;
|
2014-06-29 19:27:43 +08:00
|
|
|
setting.trig_glb_header = 0x0701;
|
2017-05-20 03:20:06 +08:00
|
|
|
setting.ch_en_header = 0x0801;
|
|
|
|
setting.trig_header = 0x40a0;
|
2014-06-29 19:27:43 +08:00
|
|
|
setting.end_sync = 0xfa5afa5a;
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
// basic configuration
|
|
|
|
setting.mode = (trigger->trigger_en << TRIG_EN_BIT) +
|
|
|
|
(devc->clock_type << CLK_TYPE_BIT) +
|
|
|
|
(devc->clock_edge << CLK_EDGE_BIT) +
|
|
|
|
(devc->rle_mode << RLE_MODE_BIT) +
|
|
|
|
((sdi->mode == DSO) << DSO_MODE_BIT) +
|
|
|
|
((((devc->cur_samplerate == (2 * DSLOGIC_MAX_LOGIC_SAMPLERATE)) && sdi->mode != DSO) || (sdi->mode == ANALOG)) << HALF_MODE_BIT) +
|
|
|
|
((devc->cur_samplerate == (4 * DSLOGIC_MAX_LOGIC_SAMPLERATE)) << QUAR_MODE_BIT) +
|
|
|
|
((sdi->mode == ANALOG) << ANALOG_MODE_BIT) +
|
|
|
|
((devc->filter == SR_FILTER_1T) << FILTER_BIT) +
|
|
|
|
(devc->instant << INSTANT_BIT) +
|
|
|
|
((trigger->trigger_mode == SERIAL_TRIGGER) << STRIG_MODE_BIT) +
|
|
|
|
((devc->stream) << STREAM_MODE_BIT) +
|
|
|
|
((devc->op_mode == SR_OP_LOOPBACK_TEST) << LPB_TEST_BIT) +
|
|
|
|
((devc->op_mode == SR_OP_EXTERNAL_TEST) << EXT_TEST_BIT) +
|
|
|
|
((devc->op_mode == SR_OP_INTERNAL_TEST) << INT_TEST_BIT);
|
|
|
|
|
|
|
|
// sample rate divider
|
|
|
|
tmp_u32 = (sdi->mode == DSO) ? (uint32_t)ceil(DSLOGIC_MAX_DSO_SAMPLERATE * 1.0 / devc->cur_samplerate / ch_num) :
|
|
|
|
(uint32_t)ceil(DSLOGIC_MAX_LOGIC_SAMPLERATE * 1.0 / devc->cur_samplerate);
|
|
|
|
setting.div_l = tmp_u32 & 0x0000ffff;
|
|
|
|
setting.div_h = tmp_u32 >> 16;
|
|
|
|
|
|
|
|
// capture counter
|
2016-07-20 08:59:39 +08:00
|
|
|
// analog: 16bits, but sample with half mode(0-7 valid only)
|
2017-05-20 03:20:06 +08:00
|
|
|
tmp_u64 = (sdi->mode == DSO) ? (devc->limit_samples / (g_slist_length(sdi->channels) / ch_num)) :
|
|
|
|
(sdi->mode == ANALOG) ? (devc->limit_samples * g_slist_length(sdi->channels) * 4) :
|
|
|
|
(devc->limit_samples);
|
|
|
|
tmp_u64 >>= 4; // hardware minimum unit 64
|
|
|
|
setting.cnt_l = tmp_u64 & 0x0000ffff;
|
|
|
|
setting.cnt_h = tmp_u64 >> 16;
|
|
|
|
|
|
|
|
// trigger position
|
|
|
|
// must be align to minimum parallel bits
|
|
|
|
tmp_u32 = max((uint32_t)(trigger->trigger_pos / 100.0 * devc->limit_samples), DSLOGIC_ATOMIC_SAMPLES);
|
|
|
|
if (devc->stream)
|
|
|
|
tmp_u32 = min(tmp_u32, channel_depth(sdi) * 10 / 100);
|
|
|
|
else
|
|
|
|
tmp_u32 = min(tmp_u32, channel_depth(sdi) * DS_MAX_TRIG_PERCENT / 100);
|
|
|
|
setting.tpos_l = tmp_u32 & DSLOGIC_ATOMIC_MASK;
|
|
|
|
setting.tpos_h = tmp_u32 >> 16;
|
|
|
|
|
|
|
|
// trigger global settings
|
|
|
|
setting.trig_glb = ((ch_num & 0xf) << 4) +
|
|
|
|
trigger->trigger_stages;
|
|
|
|
|
|
|
|
// channel enable mapping
|
|
|
|
setting.ch_en = 0;
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
setting.ch_en += probe->enabled << probe->index;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trigger advanced configuration
|
2014-06-29 19:27:43 +08:00
|
|
|
if (trigger->trigger_mode == SIMPLE_TRIGGER) {
|
|
|
|
setting.trig_mask0[0] = ds_trigger_get_mask0(TriggerStages);
|
|
|
|
setting.trig_mask1[0] = ds_trigger_get_mask1(TriggerStages);
|
|
|
|
|
|
|
|
setting.trig_value0[0] = ds_trigger_get_value0(TriggerStages);
|
|
|
|
setting.trig_value1[0] = ds_trigger_get_value1(TriggerStages);
|
|
|
|
|
|
|
|
setting.trig_edge0[0] = ds_trigger_get_edge0(TriggerStages);
|
|
|
|
setting.trig_edge1[0] = ds_trigger_get_edge1(TriggerStages);
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if (setting.mode & (1 << QUAR_MODE_BIT)) {
|
|
|
|
setting.trig_mask0[0] = ((setting.trig_mask0[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_mask0[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_mask0[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_mask0[0] & 0x0f) << 0);
|
|
|
|
setting.trig_mask1[0] = ((setting.trig_mask1[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_mask1[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_mask1[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_mask1[0] & 0x0f) << 0);
|
|
|
|
setting.trig_value0[0] = ((setting.trig_value0[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_value0[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_value0[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_value0[0] & 0x0f) << 0);
|
|
|
|
setting.trig_value1[0] = ((setting.trig_value1[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_value1[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_value1[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_value1[0] & 0x0f) << 0);
|
|
|
|
setting.trig_edge0[0] = ((setting.trig_edge0[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_edge0[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_edge0[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_edge0[0] & 0x0f) << 0);
|
|
|
|
setting.trig_edge1[0] = ((setting.trig_edge1[0] & 0x0f) << 12) +
|
|
|
|
((setting.trig_edge1[0] & 0x0f) << 8) +
|
|
|
|
((setting.trig_edge1[0] & 0x0f) << 4) +
|
|
|
|
((setting.trig_edge1[0] & 0x0f) << 0);
|
|
|
|
} else if (setting.mode & (1 << HALF_MODE_BIT)) {
|
|
|
|
setting.trig_mask0[0] = ((setting.trig_mask0[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_mask0[0] & 0xff) << 0);
|
|
|
|
setting.trig_mask1[0] = ((setting.trig_mask1[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_mask1[0] & 0xff) << 0);
|
|
|
|
setting.trig_value0[0] = ((setting.trig_value0[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_value0[0] & 0xff) << 0);
|
|
|
|
setting.trig_value1[0] = ((setting.trig_value1[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_value1[0] & 0xff) << 0);
|
|
|
|
setting.trig_edge0[0] = ((setting.trig_edge0[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_edge0[0] & 0xff) << 0);
|
|
|
|
setting.trig_edge1[0] = ((setting.trig_edge1[0] & 0xff) << 8) +
|
|
|
|
((setting.trig_edge1[0] & 0xff) << 0);
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
setting.trig_logic0[0] = (trigger->trigger_logic[TriggerStages] << 1) + trigger->trigger0_inv[TriggerStages];
|
|
|
|
setting.trig_logic1[0] = (trigger->trigger_logic[TriggerStages] << 1) + trigger->trigger1_inv[TriggerStages];
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
setting.trig_count[0] = trigger->trigger0_count[TriggerStages];
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
for (i = 1; i < NUM_TRIGGER_STAGES; i++) {
|
2016-05-15 22:51:18 +08:00
|
|
|
setting.trig_mask0[i] = 0xffff;
|
|
|
|
setting.trig_mask1[i] = 0xffff;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
setting.trig_value0[i] = 0;
|
|
|
|
setting.trig_value1[i] = 0;
|
|
|
|
|
|
|
|
setting.trig_edge0[i] = 0;
|
|
|
|
setting.trig_edge1[i] = 0;
|
|
|
|
|
|
|
|
setting.trig_logic0[i] = 2;
|
|
|
|
setting.trig_logic1[i] = 2;
|
2017-05-20 03:20:06 +08:00
|
|
|
|
|
|
|
setting.trig_count[i] = 0;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
|
|
|
|
setting.trig_mask0[i] = ds_trigger_get_mask0(i);
|
|
|
|
setting.trig_mask1[i] = ds_trigger_get_mask1(i);
|
|
|
|
|
|
|
|
setting.trig_value0[i] = ds_trigger_get_value0(i);
|
|
|
|
setting.trig_value1[i] = ds_trigger_get_value1(i);
|
|
|
|
|
|
|
|
setting.trig_edge0[i] = ds_trigger_get_edge0(i);
|
|
|
|
setting.trig_edge1[i] = ds_trigger_get_edge1(i);
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if (setting.mode & (1 << STRIG_MODE_BIT) && i == STriggerDataStage) {
|
|
|
|
// serial trigger, data mask/value should not be duplicated
|
|
|
|
} else {
|
|
|
|
if (setting.mode & (1 << QUAR_MODE_BIT)) {
|
|
|
|
setting.trig_mask0[i] = ((setting.trig_mask0[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_mask0[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_mask0[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_mask0[i] & 0x0f) << 0);
|
|
|
|
setting.trig_mask1[i] = ((setting.trig_mask1[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_mask1[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_mask1[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_mask1[i] & 0x0f) << 0);
|
|
|
|
setting.trig_value0[i] = ((setting.trig_value0[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_value0[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_value0[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_value0[i] & 0x0f) << 0);
|
|
|
|
setting.trig_value1[i] = ((setting.trig_value1[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_value1[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_value1[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_value1[i] & 0x0f) << 0);
|
|
|
|
setting.trig_edge0[i] = ((setting.trig_edge0[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_edge0[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_edge0[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_edge0[i] & 0x0f) << 0);
|
|
|
|
setting.trig_edge1[i] = ((setting.trig_edge1[i] & 0x0f) << 12) +
|
|
|
|
((setting.trig_edge1[i] & 0x0f) << 8) +
|
|
|
|
((setting.trig_edge1[i] & 0x0f) << 4) +
|
|
|
|
((setting.trig_edge1[i] & 0x0f) << 0);
|
|
|
|
} else if (setting.mode & (1 << HALF_MODE_BIT)) {
|
|
|
|
setting.trig_mask0[i] = ((setting.trig_mask0[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_mask0[i] & 0xff) << 0);
|
|
|
|
setting.trig_mask1[i] = ((setting.trig_mask1[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_mask1[i] & 0xff) << 0);
|
|
|
|
setting.trig_value0[i] = ((setting.trig_value0[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_value0[i] & 0xff) << 0);
|
|
|
|
setting.trig_value1[i] = ((setting.trig_value1[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_value1[i] & 0xff) << 0);
|
|
|
|
setting.trig_edge0[i] = ((setting.trig_edge0[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_edge0[i] & 0xff) << 0);
|
|
|
|
setting.trig_edge1[i] = ((setting.trig_edge1[i] & 0xff) << 8) +
|
|
|
|
((setting.trig_edge1[i] & 0xff) << 0);
|
|
|
|
}
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
setting.trig_logic0[i] = (trigger->trigger_logic[i] << 1) + trigger->trigger0_inv[i];
|
|
|
|
setting.trig_logic1[i] = (trigger->trigger_logic[i] << 1) + trigger->trigger1_inv[i];
|
2017-05-20 03:20:06 +08:00
|
|
|
|
|
|
|
setting.trig_count[i] = trigger->trigger0_count[i];
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = SR_OK;
|
|
|
|
ret = libusb_bulk_transfer(hdl, 2 | LIBUSB_ENDPOINT_OUT,
|
2017-05-23 22:39:00 +08:00
|
|
|
(unsigned char *)&setting,
|
|
|
|
sizeof(struct DSL_setting),
|
2016-07-20 08:59:39 +08:00
|
|
|
&transferred, 1000);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
sr_err("Unable to setting FPGA of DSLogic: %s.",
|
|
|
|
libusb_error_name(ret));
|
|
|
|
result = SR_ERR;
|
2015-04-17 00:21:14 +08:00
|
|
|
} else if (transferred != sizeof(struct DSL_setting)) {
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_err("Setting FPGA error: expacted transfer size %d; actually %d",
|
2015-04-17 00:21:14 +08:00
|
|
|
sizeof(struct DSL_setting), transferred);
|
2014-06-29 19:27:43 +08:00
|
|
|
result = SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result == SR_OK)
|
|
|
|
sr_info("FPGA setting done");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fpga_config(struct libusb_device_handle *hdl, const char *filename)
|
|
|
|
{
|
|
|
|
FILE *fw;
|
|
|
|
int offset, chunksize, ret, result;
|
|
|
|
unsigned char *buf;
|
|
|
|
int transferred;
|
2014-09-24 18:43:42 +08:00
|
|
|
uint64_t filesize;
|
2015-04-17 00:21:14 +08:00
|
|
|
struct stat f_stat;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
sr_info("Configure FPGA using %s", filename);
|
2016-06-25 09:58:07 +08:00
|
|
|
if ((fw = fopen(filename, "rb")) == NULL) {
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_err("Unable to open FPGA bit file %s for reading: %s",
|
|
|
|
filename, strerror(errno));
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
if (stat(filename, &f_stat) == -1)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
filesize = (uint64_t)f_stat.st_size;
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
if (!(buf = g_try_malloc(filesize))) {
|
|
|
|
sr_err("FPGA configure bit malloc failed.");
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
result = SR_OK;
|
|
|
|
offset = 0;
|
|
|
|
while (1) {
|
2014-09-24 18:43:42 +08:00
|
|
|
chunksize = fread(buf, 1, filesize, fw);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (chunksize == 0)
|
|
|
|
break;
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
ret = libusb_bulk_transfer(hdl, 2 | LIBUSB_ENDPOINT_OUT,
|
|
|
|
buf, chunksize,
|
|
|
|
&transferred, 1000);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
sr_err("Unable to configure FPGA of DSLogic: %s.",
|
|
|
|
libusb_error_name(ret));
|
|
|
|
result = SR_ERR;
|
|
|
|
break;
|
|
|
|
} else if (transferred != chunksize) {
|
|
|
|
sr_err("Configure FPGA error: expacted transfer size %d; actually %d",
|
|
|
|
chunksize, transferred);
|
|
|
|
result = SR_ERR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sr_info("Configure %d bytes", chunksize);
|
|
|
|
offset += chunksize;
|
|
|
|
}
|
|
|
|
fclose(fw);
|
2015-09-26 21:59:40 +08:00
|
|
|
g_free(buf);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (result == SR_OK)
|
|
|
|
sr_info("FPGA configure done");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int DSLogic_dev_open(struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
libusb_device **devlist;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
struct libusb_device_descriptor des;
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct version_info vi;
|
|
|
|
int ret, skip, i, device_count;
|
|
|
|
uint8_t revid;
|
|
|
|
|
|
|
|
drvc = di->priv;
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
|
2017-05-31 11:49:20 +08:00
|
|
|
if (sdi->status == SR_ST_ACTIVE) {
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Device is already in use. */
|
|
|
|
return SR_ERR;
|
2017-05-31 11:49:20 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
skip = 0;
|
|
|
|
device_count = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
|
|
|
|
if (device_count < 0) {
|
|
|
|
sr_err("Failed to get device list: %s.",
|
|
|
|
libusb_error_name(device_count));
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < device_count; i++) {
|
|
|
|
if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
|
|
|
|
sr_err("Failed to get device descriptor: %s.",
|
|
|
|
libusb_error_name(ret));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (des.idVendor != devc->profile->vid
|
|
|
|
|| des.idProduct != devc->profile->pid)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (sdi->status == SR_ST_INITIALIZING) {
|
|
|
|
if (skip != sdi->index) {
|
|
|
|
/* Skip devices of this type that aren't the one we want. */
|
|
|
|
skip += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if (sdi->status == SR_ST_INACTIVE) {
|
|
|
|
/*
|
|
|
|
* This device is fully enumerated, so we need to find
|
|
|
|
* this device by vendor, product, bus and address.
|
|
|
|
*/
|
|
|
|
if (libusb_get_bus_number(devlist[i]) != usb->bus
|
|
|
|
|| libusb_get_device_address(devlist[i]) != usb->address)
|
|
|
|
/* This is not the one. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(ret = libusb_open(devlist[i], &usb->devhdl))) {
|
|
|
|
if (usb->address == 0xff)
|
|
|
|
/*
|
|
|
|
* First time we touch this device after FW
|
|
|
|
* upload, so we don't know the address yet.
|
|
|
|
*/
|
|
|
|
usb->address = libusb_get_device_address(devlist[i]);
|
|
|
|
} else {
|
|
|
|
sr_err("Failed to open device: %s.",
|
|
|
|
libusb_error_name(ret));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = command_get_fw_version(usb->devhdl, &vi);
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Failed to get firmware version.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = command_get_revid_version(usb->devhdl, &revid);
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Failed to get REVID.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-05-20 03:20:06 +08:00
|
|
|
* Different versions may have incompatible issue,
|
|
|
|
* Mark for up level process
|
2014-06-29 19:27:43 +08:00
|
|
|
*/
|
2017-05-20 03:20:06 +08:00
|
|
|
if (vi.major != DSL_REQUIRED_VERSION_MAJOR ||
|
|
|
|
vi.minor != DSL_REQUIRED_VERSION_MINOR) {
|
|
|
|
sr_err("Expected firmware version %d.%d, "
|
|
|
|
"got %d.%d.", DSL_REQUIRED_VERSION_MAJOR, DSL_REQUIRED_VERSION_MINOR,
|
2014-06-29 19:27:43 +08:00
|
|
|
vi.major, vi.minor);
|
2017-05-20 03:20:06 +08:00
|
|
|
sdi->status = SR_ST_INCOMPATIBLE;
|
|
|
|
} else {
|
|
|
|
sdi->status = SR_ST_ACTIVE;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sr_info("Opened device %d on %d.%d, "
|
|
|
|
"interface %d, firmware %d.%d.",
|
|
|
|
sdi->index, usb->bus, usb->address,
|
|
|
|
USB_INTERFACE, vi.major, vi.minor);
|
|
|
|
|
|
|
|
sr_info("Detected REVID=%d, it's a Cypress CY7C68013%s.",
|
|
|
|
revid, (revid != 1) ? " (FX2)" : "A (FX2LP)");
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
libusb_free_device_list(devlist, 1);
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if ((sdi->status != SR_ST_ACTIVE) &&
|
|
|
|
(sdi->status != SR_ST_INCOMPATIBLE))
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int configure_probes(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-09-24 18:43:42 +08:00
|
|
|
struct sr_channel *probe;
|
2014-06-29 19:27:43 +08:00
|
|
|
GSList *l;
|
|
|
|
int probe_bit, stage, i;
|
|
|
|
char *tc;
|
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
|
|
|
|
devc->trigger_mask[i] = 0;
|
|
|
|
devc->trigger_value[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
stage = -1;
|
2014-09-24 18:43:42 +08:00
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
probe = (struct sr_channel *)l->data;
|
2014-06-29 19:27:43 +08:00
|
|
|
if (probe->enabled == FALSE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
probe_bit = 1 << (probe->index);
|
|
|
|
if (!(probe->trigger))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
stage = 0;
|
|
|
|
for (tc = probe->trigger; *tc; tc++) {
|
|
|
|
devc->trigger_mask[stage] |= probe_bit;
|
|
|
|
if (*tc == '1')
|
|
|
|
devc->trigger_value[stage] |= probe_bit;
|
|
|
|
stage++;
|
|
|
|
if (stage > NUM_TRIGGER_STAGES)
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
static struct DSL_context *DSLogic_dev_new(const struct sr_dev_inst *sdi)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
if (!(devc = g_try_malloc(sizeof(struct DSL_context)))) {
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_err("Device context malloc failed.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
devc->profile = NULL;
|
|
|
|
devc->fw_updated = 0;
|
2014-09-24 18:43:42 +08:00
|
|
|
devc->cur_samplerate = DEFAULT_SAMPLERATE;
|
|
|
|
devc->limit_samples = DEFAULT_SAMPLELIMIT;
|
2015-09-26 21:59:40 +08:00
|
|
|
devc->sample_wide = TRUE;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->clock_type = FALSE;
|
2014-09-24 18:43:42 +08:00
|
|
|
devc->clock_edge = FALSE;
|
2015-09-26 21:59:40 +08:00
|
|
|
devc->rle_mode = FALSE;
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->instant = FALSE;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->op_mode = SR_OP_STREAM;
|
|
|
|
devc->buf_options = SR_BUF_UPLOAD;
|
2015-09-26 21:59:40 +08:00
|
|
|
devc->ch_mode = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->samplerates_size = 11;
|
|
|
|
devc->samplecounts_size = counts_size(sdi);
|
2014-09-24 18:43:42 +08:00
|
|
|
devc->th_level = SR_TH_3V3;
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->vth = 1.0;
|
2014-09-24 18:43:42 +08:00
|
|
|
devc->filter = SR_FILTER_NONE;
|
|
|
|
devc->timebase = 10000;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->trigger_slope = DSO_TRIGGER_RISING;
|
|
|
|
devc->trigger_source = DSO_TRIGGER_AUTO;
|
2014-09-24 18:43:42 +08:00
|
|
|
devc->trigger_hpos = 0x0;
|
2015-06-06 22:24:00 +08:00
|
|
|
devc->trigger_hrate = 0;
|
2015-06-17 21:46:37 +08:00
|
|
|
devc->trigger_holdoff = 0;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->zero = FALSE;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->stream = (devc->op_mode == SR_OP_STREAM);
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->mstatus_valid = FALSE;
|
2015-06-24 22:18:18 +08:00
|
|
|
devc->data_lock = FALSE;
|
2016-06-14 22:52:27 +08:00
|
|
|
devc->max_height = 0;
|
2016-06-25 09:58:07 +08:00
|
|
|
devc->dso_bits = 8;
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->trigger_margin = 8;
|
|
|
|
devc->trigger_channel = 0;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
return devc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dev_clear(void)
|
|
|
|
{
|
|
|
|
return std_dev_clear(di, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int init(struct sr_context *sr_ctx)
|
|
|
|
{
|
|
|
|
return std_hw_init(sr_ctx, di, LOG_PREFIX);
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static void probe_init(struct sr_dev_inst *sdi)
|
2016-07-20 08:59:39 +08:00
|
|
|
{
|
|
|
|
int i;
|
2017-05-23 22:39:00 +08:00
|
|
|
GSList *l;
|
2016-07-20 08:59:39 +08:00
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
if (sdi->mode == DSO) {
|
|
|
|
probe->vdiv = 1000;
|
|
|
|
probe->vfactor = 1;
|
|
|
|
probe->vpos = 0;
|
|
|
|
probe->coupling = SR_DC_COUPLING;
|
|
|
|
probe->trig_value = 0x80;
|
|
|
|
probe->ms_show = TRUE;
|
|
|
|
for (i = DSO_MS_BEGIN; i < DSO_MS_END; i++)
|
|
|
|
probe->ms_en[i] = default_ms_en[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
static int set_probes(struct sr_dev_inst *sdi, int num_probes)
|
|
|
|
{
|
2015-07-17 16:23:42 +08:00
|
|
|
uint16_t j;
|
2014-09-24 18:43:42 +08:00
|
|
|
struct sr_channel *probe;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
for (j = 0; j < num_probes; j++) {
|
2014-09-24 18:43:42 +08:00
|
|
|
if (!(probe = sr_channel_new(j, (sdi->mode == LOGIC) ? SR_CHANNEL_LOGIC : ((sdi->mode == DSO) ? SR_CHANNEL_DSO : SR_CHANNEL_ANALOG),
|
2014-06-29 19:27:43 +08:00
|
|
|
TRUE, probe_names[j])))
|
|
|
|
return SR_ERR;
|
2014-09-24 18:43:42 +08:00
|
|
|
sdi->channels = g_slist_append(sdi->channels, probe);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
probe_init(sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int adjust_probes(struct sr_dev_inst *sdi, int num_probes)
|
|
|
|
{
|
2015-07-17 16:23:42 +08:00
|
|
|
uint16_t j;
|
2014-09-24 18:43:42 +08:00
|
|
|
struct sr_channel *probe;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
assert(num_probes > 0);
|
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
j = g_slist_length(sdi->channels);
|
2014-06-29 19:27:43 +08:00
|
|
|
while(j < num_probes) {
|
2014-09-24 18:43:42 +08:00
|
|
|
if (!(probe = sr_channel_new(j, (sdi->mode == LOGIC) ? SR_CHANNEL_LOGIC : ((sdi->mode == DSO) ? SR_CHANNEL_DSO : SR_CHANNEL_ANALOG),
|
2014-06-29 19:27:43 +08:00
|
|
|
TRUE, probe_names[j])))
|
|
|
|
return SR_ERR;
|
2014-09-24 18:43:42 +08:00
|
|
|
sdi->channels = g_slist_append(sdi->channels, probe);
|
2014-06-29 19:27:43 +08:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(j > num_probes) {
|
2017-05-23 22:39:00 +08:00
|
|
|
sdi->channels = g_slist_delete_link(sdi->channels, g_slist_last(sdi->channels));
|
2014-06-29 19:27:43 +08:00
|
|
|
j--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *scan(GSList *options)
|
|
|
|
{
|
|
|
|
struct drv_context *drvc;
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct sr_dev_inst *sdi;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
struct sr_config *src;
|
2015-04-17 00:21:14 +08:00
|
|
|
const struct DSL_profile *prof;
|
2014-06-29 19:27:43 +08:00
|
|
|
GSList *l, *devices, *conn_devices;
|
|
|
|
struct libusb_device_descriptor des;
|
|
|
|
libusb_device **devlist;
|
|
|
|
int devcnt, num_logic_probes, ret, i, j;
|
|
|
|
const char *conn;
|
|
|
|
|
|
|
|
drvc = di->priv;
|
|
|
|
|
|
|
|
conn = NULL;
|
|
|
|
for (l = options; l; l = l->next) {
|
|
|
|
src = l->data;
|
|
|
|
switch (src->key) {
|
|
|
|
case SR_CONF_CONN:
|
2015-06-24 22:07:09 +08:00
|
|
|
conn = g_variant_get_string(src->data, NULL);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (conn)
|
|
|
|
conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
|
|
|
|
else
|
|
|
|
conn_devices = NULL;
|
|
|
|
|
|
|
|
/* Find all DSLogic compatible devices and upload firmware to them. */
|
|
|
|
devices = NULL;
|
|
|
|
libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
|
|
|
|
for (i = 0; devlist[i]; i++) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ret = libusb_get_device_descriptor( devlist[i], &des)) != 0) {
|
|
|
|
sr_warn("Failed to get device descriptor: %s.",
|
|
|
|
libusb_error_name(ret));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
prof = NULL;
|
2015-04-17 00:21:14 +08:00
|
|
|
for (j = 0; supported_DSLogic[j].vid; j++) {
|
|
|
|
if (des.idVendor == supported_DSLogic[j].vid &&
|
|
|
|
des.idProduct == supported_DSLogic[j].pid) {
|
|
|
|
prof = &supported_DSLogic[j];
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip if the device was not found. */
|
|
|
|
if (!prof)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
devcnt = g_slist_length(drvc->instances);
|
|
|
|
sdi = sr_dev_inst_new(LOGIC, devcnt, SR_ST_INITIALIZING,
|
|
|
|
prof->vendor, prof->model, prof->model_version);
|
|
|
|
if (!sdi)
|
|
|
|
return NULL;
|
|
|
|
sdi->driver = di;
|
|
|
|
|
|
|
|
/* Fill in probelist according to this device's profile. */
|
|
|
|
num_logic_probes = prof->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
|
|
|
|
if (set_probes(sdi, num_logic_probes) != SR_OK)
|
|
|
|
return NULL;
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
devc = DSLogic_dev_new(sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->profile = prof;
|
|
|
|
sdi->priv = devc;
|
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
2016-07-20 08:59:39 +08:00
|
|
|
//devices = g_slist_append(devices, sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
if (check_conf_profile(devlist[i])) {
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Already has the firmware, so fix the new address. */
|
|
|
|
sr_dbg("Found an DSLogic device.");
|
|
|
|
sdi->status = SR_ST_INACTIVE;
|
|
|
|
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);
|
2016-07-20 08:59:39 +08:00
|
|
|
/* only report device after firmware is ready */
|
|
|
|
devices = g_slist_append(devices, sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
} else {
|
2015-09-26 21:59:40 +08:00
|
|
|
char *firmware;
|
2016-06-14 22:52:27 +08:00
|
|
|
if (!(firmware = g_try_malloc(strlen(DS_RES_PATH)+strlen(prof->firmware)+1))) {
|
2015-09-26 21:59:40 +08:00
|
|
|
sr_err("Firmware path malloc error!");
|
2015-06-24 22:07:09 +08:00
|
|
|
return NULL;
|
2015-09-26 21:59:40 +08:00
|
|
|
}
|
2016-06-14 22:52:27 +08:00
|
|
|
strcpy(firmware, DS_RES_PATH);
|
2015-06-24 22:07:09 +08:00
|
|
|
strcat(firmware, prof->firmware);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (ezusb_upload_firmware(devlist[i], USB_CONFIGURATION,
|
|
|
|
firmware) == SR_OK)
|
|
|
|
/* Store when this device's FW was updated. */
|
|
|
|
devc->fw_updated = g_get_monotonic_time();
|
|
|
|
else
|
|
|
|
sr_err("Firmware upload failed for "
|
|
|
|
"device %d.", devcnt);
|
2015-09-26 21:59:40 +08:00
|
|
|
g_free(firmware);
|
2014-06-29 19:27:43 +08:00
|
|
|
sdi->inst_type = SR_INST_USB;
|
|
|
|
sdi->conn = sr_usb_dev_inst_new (libusb_get_bus_number(devlist[i]),
|
|
|
|
0xff, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
libusb_free_device_list(devlist, 1);
|
|
|
|
g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
|
|
|
|
|
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *dev_list(void)
|
|
|
|
{
|
|
|
|
return ((struct drv_context *)(di->priv))->instances;
|
|
|
|
}
|
|
|
|
|
2015-06-19 18:16:54 +08:00
|
|
|
static GSList *dev_mode_list(const struct sr_dev_inst *sdi)
|
2014-09-24 18:43:42 +08:00
|
|
|
{
|
|
|
|
GSList *l = NULL;
|
2017-05-23 22:39:00 +08:00
|
|
|
unsigned int i;
|
2014-09-24 18:43:42 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if (strcmp(sdi->model, "DSLogic") == 0) {
|
2015-06-19 18:16:54 +08:00
|
|
|
for(i = 0; i < ARRAY_SIZE(mode_list); i++) {
|
|
|
|
l = g_slist_append(l, &mode_list[i]);
|
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
} else {
|
|
|
|
for(i = 0; i < ARRAY_SIZE(pro_mode_list); i++) {
|
|
|
|
l = g_slist_append(l, &pro_mode_list[i]);
|
|
|
|
}
|
2014-09-24 18:43:42 +08:00
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
static uint64_t dso_cmd_gen(const struct sr_dev_inst *sdi, struct sr_channel* ch, int id)
|
2015-04-17 00:21:14 +08:00
|
|
|
{
|
|
|
|
struct DSL_context *devc;
|
|
|
|
uint64_t cmd = 0;
|
|
|
|
int channel_cnt = 0;
|
|
|
|
GSList *l;
|
2016-08-10 15:12:13 +08:00
|
|
|
struct sr_channel *en_probe;
|
2015-04-17 00:21:14 +08:00
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case SR_CONF_VDIV:
|
|
|
|
case SR_CONF_EN_CH:
|
|
|
|
case SR_CONF_TIMEBASE:
|
|
|
|
case SR_CONF_COUPLING:
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
2016-08-10 15:12:13 +08:00
|
|
|
if (probe->enabled) {
|
2015-04-17 00:21:14 +08:00
|
|
|
channel_cnt += probe->index + 0x1;
|
2016-08-10 15:12:13 +08:00
|
|
|
en_probe = probe;
|
|
|
|
}
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
|
|
|
if (channel_cnt == 0)
|
|
|
|
return 0x0;
|
|
|
|
|
|
|
|
// --VDBS
|
2016-08-10 15:12:13 +08:00
|
|
|
if (channel_cnt != 1)
|
|
|
|
en_probe = ch;
|
|
|
|
switch(en_probe->vdiv){
|
2015-04-17 00:21:14 +08:00
|
|
|
case 5: cmd += 0x247000; break;
|
|
|
|
case 10: cmd += 0x23D000; break;
|
|
|
|
case 20: cmd += 0x22F000; break;
|
|
|
|
case 50: cmd += 0x21C800; break;
|
|
|
|
case 100: cmd += 0x20E800; break;
|
|
|
|
case 200: cmd += 0x200800; break;
|
|
|
|
case 500: cmd += 0x2F000; break;
|
|
|
|
case 1000: cmd += 0x21100; break;
|
|
|
|
case 2000: cmd += 0x13000; break;
|
|
|
|
case 5000: cmd += 0x00800; break;
|
|
|
|
default: cmd += 0x21100; break;
|
|
|
|
}
|
|
|
|
// --DC/AC
|
|
|
|
if (channel_cnt == 1) {
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
if (probe->coupling == SR_AC_COUPLING)
|
|
|
|
cmd += 0x100000;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(ch->coupling == SR_AC_COUPLING)
|
|
|
|
cmd += 0x100000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --Channel
|
|
|
|
if(channel_cnt == 1)
|
|
|
|
cmd += 0xC00000;
|
|
|
|
else if(ch->index == 0)
|
|
|
|
cmd += 0x400000;
|
|
|
|
else if(ch->index == 1)
|
|
|
|
cmd += 0x800000;
|
|
|
|
else
|
|
|
|
cmd += 0x000000;
|
|
|
|
// if(ch->index == 0)
|
|
|
|
// cmd += 0x400000;
|
|
|
|
// else if(ch->index == 1)
|
|
|
|
// cmd += 0x800000;
|
|
|
|
// else
|
|
|
|
// cmd += 0x000000;
|
|
|
|
|
|
|
|
// --Header
|
|
|
|
cmd += 0x55000000;
|
|
|
|
break;
|
|
|
|
case SR_CONF_SAMPLERATE:
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
channel_cnt += probe->enabled;
|
|
|
|
}
|
|
|
|
cmd += 0x18;
|
2016-07-20 08:59:39 +08:00
|
|
|
uint32_t divider = (uint32_t)ceil(DSLOGIC_MAX_DSO_SAMPLERATE * 1.0 / devc->cur_samplerate / channel_cnt);
|
2015-04-17 00:21:14 +08:00
|
|
|
cmd += divider << 8;
|
|
|
|
break;
|
|
|
|
case SR_CONF_HORIZ_TRIGGERPOS:
|
|
|
|
cmd += 0x20;
|
|
|
|
cmd += devc->trigger_hpos << 8;
|
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_SLOPE:
|
|
|
|
cmd += 0x28;
|
|
|
|
cmd += devc->trigger_slope << 8;
|
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_SOURCE:
|
|
|
|
cmd += 0x30;
|
|
|
|
cmd += devc->trigger_source << 8;
|
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_VALUE:
|
|
|
|
cmd += 0x38;
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
cmd += probe->trig_value << (8 * (probe->index + 1));
|
|
|
|
}
|
|
|
|
break;
|
2016-06-25 09:58:07 +08:00
|
|
|
case SR_CONF_TRIGGER_MARGIN:
|
|
|
|
cmd += 0x40;
|
|
|
|
cmd += ((uint64_t)devc->trigger_margin << 8);
|
|
|
|
break;
|
2015-06-17 21:46:37 +08:00
|
|
|
case SR_CONF_TRIGGER_HOLDOFF:
|
|
|
|
cmd += 0x58;
|
|
|
|
cmd += devc->trigger_holdoff << 8;
|
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_DSO_SYNC:
|
|
|
|
cmd = 0xa5a5a500;
|
|
|
|
break;
|
|
|
|
default:
|
2016-07-20 08:59:39 +08:00
|
|
|
cmd = 0xFFFFFFFF;
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static int dso_init(const struct sr_dev_inst *sdi)
|
2016-06-25 09:58:07 +08:00
|
|
|
{
|
2017-05-23 22:39:00 +08:00
|
|
|
int ret;
|
2016-06-25 09:58:07 +08:00
|
|
|
GSList *l;
|
|
|
|
struct sr_usb_dev_inst *usb = sdi->conn;
|
|
|
|
|
|
|
|
for(l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, probe, SR_CONF_COUPLING));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("DSO set coupling of channel %d command failed!", probe->index);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, probe, SR_CONF_VDIV));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set VDIV of channel %d command failed!", probe->index);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, 0, SR_CONF_SAMPLERATE));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Sample Rate command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_HORIZ_TRIGGERPOS));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Horiz Trigger Position command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_HOLDOFF));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Trigger Holdoff Time command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_SLOPE));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Trigger Slope command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_SOURCE));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Trigger Source command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_VALUE));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Trigger Value command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_MARGIN));
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Set Trigger Margin command failed!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_channel *ch,
|
|
|
|
const struct sr_channel_group *cg)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
char str[128];
|
2017-05-20 03:20:06 +08:00
|
|
|
uint8_t tmp_u8;
|
|
|
|
int ret;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
(void)cg;
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
switch (id) {
|
|
|
|
case SR_CONF_CONN:
|
|
|
|
if (!sdi || !sdi->conn)
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
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);
|
2015-06-24 22:07:09 +08:00
|
|
|
*data = g_variant_new_string(str);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(devc->limit_samples);
|
|
|
|
break;
|
2015-10-08 21:20:38 +08:00
|
|
|
case SR_CONF_ACTUAL_SAMPLES:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(devc->actual_samples);
|
|
|
|
break;
|
2014-06-29 19:27:43 +08:00
|
|
|
case SR_CONF_SAMPLERATE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(devc->cur_samplerate);
|
|
|
|
break;
|
|
|
|
case SR_CONF_CLOCK_TYPE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->clock_type);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_CLOCK_EDGE:
|
2014-06-29 19:27:43 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_boolean(devc->clock_edge);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-09-26 21:59:40 +08:00
|
|
|
case SR_CONF_RLE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->rle_mode);
|
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_WAIT_UPLOAD:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
if (devc->buf_options == SR_BUF_UPLOAD &&
|
|
|
|
devc->status == DSL_START) {
|
|
|
|
devc->status = DSL_ABORT;
|
|
|
|
command_wr_reg(usb->devhdl, bmFORCE_STOP, EEWP_ADDR);
|
|
|
|
*data = g_variant_new_boolean(TRUE);
|
|
|
|
} else {
|
|
|
|
*data = g_variant_new_boolean(FALSE);
|
|
|
|
}
|
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_INSTANT:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->instant);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_OPERATION_MODE:
|
2014-06-29 19:27:43 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_string(opmodes[devc->op_mode]);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_BUFFER_OPTIONS:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_string(bufoptions[devc->buf_options]);
|
|
|
|
break;
|
2015-09-26 21:59:40 +08:00
|
|
|
case SR_CONF_CHANNEL_MODE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2015-10-08 18:16:44 +08:00
|
|
|
if (devc->stream)
|
|
|
|
*data = g_variant_new_string(stream_ch_modes[devc->ch_mode]);
|
|
|
|
else
|
|
|
|
*data = g_variant_new_string(buffer_ch_modes[devc->ch_mode]);
|
2015-09-26 21:59:40 +08:00
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_TEST:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2015-09-26 21:59:40 +08:00
|
|
|
*data = g_variant_new_boolean((devc->op_mode != SR_OP_BUFFER) &&
|
|
|
|
(devc->op_mode != SR_OP_STREAM));
|
2015-04-17 00:21:14 +08:00
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_FILTER:
|
2014-06-29 19:27:43 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_string(filters[devc->filter]);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-09-28 16:31:19 +08:00
|
|
|
case SR_CONF_MAX_HEIGHT:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_string(maxHeights[devc->max_height]);
|
|
|
|
break;
|
|
|
|
case SR_CONF_MAX_HEIGHT_VALUE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_byte(devc->max_height);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_THRESHOLD:
|
2014-06-29 19:27:43 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_string(thresholds[devc->th_level]);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_VTH:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_double(devc->vth);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_VDIV:
|
|
|
|
if (!ch)
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_uint64(ch->vdiv);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-05-03 18:35:54 +08:00
|
|
|
case SR_CONF_FACTOR:
|
|
|
|
if (!ch)
|
|
|
|
return SR_ERR;
|
|
|
|
*data = g_variant_new_uint64(ch->vfactor);
|
|
|
|
break;
|
2015-11-04 00:27:42 +08:00
|
|
|
case SR_CONF_VPOS:
|
|
|
|
if (!ch)
|
|
|
|
return SR_ERR;
|
|
|
|
*data = g_variant_new_double(ch->vpos);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_TIMEBASE:
|
2014-06-29 19:27:43 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_uint64(devc->timebase);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_COUPLING:
|
|
|
|
if (!ch)
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
2015-04-17 00:21:14 +08:00
|
|
|
*data = g_variant_new_byte(ch->coupling);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_EN_CH:
|
|
|
|
if (!ch)
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
2014-09-24 18:43:42 +08:00
|
|
|
*data = g_variant_new_boolean(ch->enabled);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-06-24 22:18:18 +08:00
|
|
|
case SR_CONF_DATALOCK:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->data_lock);
|
|
|
|
break;
|
2014-06-29 19:27:43 +08:00
|
|
|
case SR_CONF_TRIGGER_SLOPE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_byte(devc->trigger_slope);
|
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_SOURCE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2016-07-20 08:59:39 +08:00
|
|
|
*data = g_variant_new_byte(devc->trigger_source&0x0f);
|
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_CHANNEL:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_byte(devc->trigger_source>>4);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
case SR_CONF_TRIGGER_VALUE:
|
2014-09-24 18:43:42 +08:00
|
|
|
if (!ch)
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
2015-06-06 22:24:00 +08:00
|
|
|
*data = g_variant_new_byte(ch->trig_value);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
case SR_CONF_HORIZ_TRIGGERPOS:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2015-04-17 00:21:14 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2015-06-06 22:24:00 +08:00
|
|
|
*data = g_variant_new_byte(devc->trigger_hrate);
|
2015-04-17 00:21:14 +08:00
|
|
|
} else {
|
2015-06-06 22:24:00 +08:00
|
|
|
*data = g_variant_new_byte(devc->trigger_hpos);
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-06-17 21:46:37 +08:00
|
|
|
case SR_CONF_TRIGGER_HOLDOFF:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(devc->trigger_holdoff);
|
|
|
|
break;
|
2016-06-25 09:58:07 +08:00
|
|
|
case SR_CONF_TRIGGER_MARGIN:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_byte(devc->trigger_margin);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_ZERO:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2015-04-17 00:21:14 +08:00
|
|
|
if (sdi->mode == DSO)
|
|
|
|
*data = g_variant_new_boolean(devc->zero);
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
2015-04-17 00:21:14 +08:00
|
|
|
*data = g_variant_new_boolean(FALSE);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_STREAM:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->stream);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2016-08-10 15:12:13 +08:00
|
|
|
case SR_CONF_ROLL:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_boolean(devc->roll);
|
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_MAX_DSO_SAMPLERATE:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
*data = g_variant_new_uint64(DSLOGIC_MAX_DSO_SAMPLERATE);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-04-17 00:21:14 +08:00
|
|
|
case SR_CONF_MAX_DSO_SAMPLELIMITS:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
*data = g_variant_new_uint64(DSLOGIC_MAX_DSO_DEPTH);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_HW_DEPTH:
|
2015-04-17 00:21:14 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc = sdi->priv;
|
|
|
|
*data = g_variant_new_uint64(channel_depth(sdi));
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_DSO_BITS:
|
2015-04-17 00:21:14 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
2015-10-08 18:16:44 +08:00
|
|
|
devc = sdi->priv;
|
2017-05-20 03:20:06 +08:00
|
|
|
*data = g_variant_new_byte(devc->dso_bits);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_HW_STATUS:
|
2015-12-07 23:07:11 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2017-05-20 03:20:06 +08:00
|
|
|
usb = sdi->conn;
|
|
|
|
ret = command_get_hw_info(usb->devhdl, &tmp_u8);
|
|
|
|
if (ret == SR_OK) {
|
|
|
|
devc->overflow = tmp_u8 & 0x10;
|
|
|
|
*data = g_variant_new_byte(tmp_u8);
|
|
|
|
} else {
|
|
|
|
*data = g_variant_new_byte(0);
|
|
|
|
}
|
2015-12-07 23:07:11 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_VLD_CH_NUM:
|
2016-06-25 09:58:07 +08:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR;
|
|
|
|
devc = sdi->priv;
|
2017-05-20 03:20:06 +08:00
|
|
|
if (devc->stream)
|
|
|
|
*data = g_variant_new_int16(stream_ch_num[devc->ch_mode]);
|
|
|
|
else
|
|
|
|
*data = g_variant_new_int16(buffer_ch_num[devc->ch_mode]);
|
2016-06-25 09:58:07 +08:00
|
|
|
break;
|
2014-06-29 19:27:43 +08:00
|
|
|
default:
|
2015-04-17 00:21:14 +08:00
|
|
|
return SR_ERR_NA;
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
return SR_OK;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
static int config_set(int id, GVariant *data, struct sr_dev_inst *sdi,
|
|
|
|
struct sr_channel *ch,
|
2017-05-23 22:39:00 +08:00
|
|
|
struct sr_channel_group *cg )
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
const char *stropt;
|
|
|
|
int ret, num_probes;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
2017-05-23 22:39:00 +08:00
|
|
|
unsigned int i;
|
2016-07-20 08:59:39 +08:00
|
|
|
struct drv_context *drvc;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
(void)cg;
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR;
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
drvc = di->priv;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
ret = SR_OK;
|
2014-06-29 19:27:43 +08:00
|
|
|
if (id == SR_CONF_SAMPLERATE) {
|
2017-05-20 03:20:06 +08:00
|
|
|
if ((devc->op_mode != SR_OP_INTERNAL_TEST) &&
|
|
|
|
(devc->op_mode != SR_OP_EXTERNAL_TEST)) {
|
|
|
|
devc->cur_samplerate = g_variant_get_uint64(data);
|
|
|
|
if(sdi->mode == DSO) {
|
|
|
|
devc->sample_wide = (devc->cur_samplerate <= DSLOGIC_MAX_DSO_SAMPLERATE);
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, 0, SR_CONF_SAMPLERATE));
|
|
|
|
} else {
|
|
|
|
devc->sample_wide = (devc->cur_samplerate <= DSLOGIC_MAX_LOGIC_SAMPLERATE);
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
} else if (id == SR_CONF_CLOCK_TYPE) {
|
|
|
|
devc->clock_type = g_variant_get_boolean(data);
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (id == SR_CONF_CLOCK_EDGE) {
|
|
|
|
devc->clock_edge = g_variant_get_boolean(data);
|
2015-09-26 21:59:40 +08:00
|
|
|
} else if (id == SR_CONF_RLE) {
|
|
|
|
devc->rle_mode = g_variant_get_boolean(data);
|
2015-04-17 00:21:14 +08:00
|
|
|
} else if (id == SR_CONF_INSTANT) {
|
|
|
|
if (sdi->mode == DSO) {
|
|
|
|
devc->instant = g_variant_get_boolean(data);
|
2016-07-20 08:59:39 +08:00
|
|
|
if (en_ch_num(sdi) != 0) {
|
2015-04-17 00:21:14 +08:00
|
|
|
if (devc->instant)
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->limit_samples = DSLOGIC_INSTANT_DEPTH / en_ch_num(sdi);
|
2015-04-17 00:21:14 +08:00
|
|
|
else
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->limit_samples = DSLOGIC_MAX_DSO_DEPTH / en_ch_num(sdi);
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (id == SR_CONF_LIMIT_SAMPLES) {
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->limit_samples = g_variant_get_uint64(data);
|
|
|
|
} else if (id == SR_CONF_DEVICE_MODE) {
|
2014-09-24 18:43:42 +08:00
|
|
|
sdi->mode = g_variant_get_int16(data);
|
|
|
|
if (sdi->mode == LOGIC) {
|
2017-05-20 03:20:06 +08:00
|
|
|
command_wr_reg(usb->devhdl, bmSCOPE_CLR, EEWP_ADDR);
|
2014-06-29 19:27:43 +08:00
|
|
|
num_probes = devc->profile->dev_caps & DEV_CAPS_16BIT ? 16 : 8;
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (sdi->mode == DSO) {
|
2017-05-20 03:20:06 +08:00
|
|
|
command_wr_reg(usb->devhdl, bmSCOPE_SET, EEWP_ADDR);
|
2014-06-29 19:27:43 +08:00
|
|
|
num_probes = devc->profile->dev_caps & DEV_CAPS_16BIT ? MAX_DSO_PROBES_NUM : 1;
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_DSO_SYNC));
|
2014-06-29 19:27:43 +08:00
|
|
|
if (ret != SR_OK)
|
|
|
|
sr_dbg("%s: DSO configuration sync failed", __func__);
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->cur_samplerate = DSLOGIC_MAX_DSO_SAMPLERATE / num_probes;
|
|
|
|
devc->limit_samples = DSLOGIC_MAX_DSO_DEPTH / num_probes;
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->samplerates_size = 15;
|
2017-05-23 22:39:00 +08:00
|
|
|
} else {
|
2017-05-20 03:20:06 +08:00
|
|
|
command_wr_reg(usb->devhdl, bmSCOPE_CLR, EEWP_ADDR);
|
2014-06-29 19:27:43 +08:00
|
|
|
num_probes = devc->profile->dev_caps & DEV_CAPS_16BIT ? MAX_ANALOG_PROBES_NUM : 1;
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->op_mode = SR_OP_STREAM;
|
|
|
|
devc->stream = TRUE;
|
|
|
|
devc->samplerates_size = 10;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->samplecounts_size = counts_size(sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_dev_probes_free(sdi);
|
|
|
|
set_probes(sdi, num_probes);
|
|
|
|
sr_dbg("%s: setting mode to %d", __func__, sdi->mode);
|
2015-04-17 00:21:14 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2017-05-23 22:39:00 +08:00
|
|
|
dso_init(sdi);
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
} else if (id == SR_CONF_OPERATION_MODE) {
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
2015-11-04 00:27:42 +08:00
|
|
|
if (sdi->mode == LOGIC) {
|
|
|
|
if (!strcmp(stropt, opmodes[SR_OP_BUFFER]) && (devc->op_mode != SR_OP_BUFFER)) {
|
|
|
|
devc->op_mode = SR_OP_BUFFER;
|
|
|
|
devc->stream = FALSE;
|
|
|
|
devc->ch_mode = 0;
|
|
|
|
devc->samplerates_size = 14;
|
2017-05-20 03:20:06 +08:00
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
} else if (!strcmp(stropt, opmodes[SR_OP_STREAM]) && (devc->op_mode != SR_OP_STREAM)) {
|
|
|
|
devc->op_mode = SR_OP_STREAM;
|
|
|
|
devc->stream = TRUE;
|
|
|
|
devc->ch_mode = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->samplerates_size = 11;
|
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
} else if (!strcmp(stropt, opmodes[SR_OP_INTERNAL_TEST]) && (devc->op_mode != SR_OP_INTERNAL_TEST)) {
|
|
|
|
devc->op_mode = SR_OP_INTERNAL_TEST;
|
2017-05-20 03:20:06 +08:00
|
|
|
if (strcmp(sdi->model, "DSLogic Basic") == 0) {
|
|
|
|
devc->stream = TRUE;
|
|
|
|
devc->samplerates_size = 11;
|
|
|
|
} else {
|
|
|
|
devc->stream = FALSE;
|
|
|
|
devc->samplerates_size = 14;
|
|
|
|
}
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->ch_mode = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->limit_samples = DSLOGIC_MAX_LOGIC_DEPTH;
|
|
|
|
devc->cur_samplerate = DSLOGIC_MAX_LOGIC_SAMPLERATE;
|
2015-12-02 20:31:38 +08:00
|
|
|
devc->sample_wide = TRUE;
|
2015-11-04 00:27:42 +08:00
|
|
|
} else if (!strcmp(stropt, opmodes[SR_OP_EXTERNAL_TEST]) && (devc->op_mode != SR_OP_EXTERNAL_TEST)) {
|
|
|
|
devc->op_mode = SR_OP_EXTERNAL_TEST;
|
2017-05-20 03:20:06 +08:00
|
|
|
if (strcmp(sdi->model, "DSLogic Basic") == 0) {
|
|
|
|
devc->stream = TRUE;
|
|
|
|
devc->samplerates_size = 11;
|
|
|
|
} else {
|
|
|
|
devc->stream = FALSE;
|
|
|
|
devc->samplerates_size = 14;
|
|
|
|
}
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->ch_mode = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->limit_samples = DSLOGIC_MAX_LOGIC_DEPTH;
|
|
|
|
devc->cur_samplerate = DSLOGIC_MAX_LOGIC_SAMPLERATE;
|
2015-12-02 20:31:38 +08:00
|
|
|
devc->sample_wide = TRUE;
|
2015-11-04 00:27:42 +08:00
|
|
|
} else if (!strcmp(stropt, opmodes[SR_OP_LOOPBACK_TEST]) && (devc->op_mode != SR_OP_LOOPBACK_TEST)) {
|
|
|
|
devc->op_mode = SR_OP_LOOPBACK_TEST;
|
|
|
|
devc->stream = FALSE;
|
|
|
|
devc->ch_mode = 0;
|
|
|
|
devc->samplerates_size = 14;
|
2017-05-20 03:20:06 +08:00
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->limit_samples = DSLOGIC_MAX_LOGIC_DEPTH;
|
|
|
|
devc->cur_samplerate = DSLOGIC_MAX_LOGIC_SAMPLERATE;
|
2015-12-02 20:31:38 +08:00
|
|
|
devc->sample_wide = TRUE;
|
2015-11-04 00:27:42 +08:00
|
|
|
} else {
|
|
|
|
ret = SR_ERR;
|
|
|
|
}
|
2015-12-02 20:31:38 +08:00
|
|
|
if (devc->cur_samplerate > samplerates[devc->samplerates_size-1]) {
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->cur_samplerate = samplerates[devc->samplerates_size-1];
|
2015-12-02 20:31:38 +08:00
|
|
|
devc->sample_wide = (devc->cur_samplerate <= DSLOGIC_MAX_DSO_SAMPLERATE);
|
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
} else if (sdi->mode == ANALOG) {
|
|
|
|
devc->op_mode = SR_OP_STREAM;
|
|
|
|
devc->stream = TRUE;
|
|
|
|
devc->samplerates_size = 10;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->samplecounts_size = counts_size(sdi);
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_dbg("%s: setting pattern to %d",
|
|
|
|
__func__, devc->op_mode);
|
2017-05-20 03:20:06 +08:00
|
|
|
} else if (id == SR_CONF_BUFFER_OPTIONS) {
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
|
|
|
if (sdi->mode == LOGIC) {
|
|
|
|
if (!strcmp(stropt, bufoptions[SR_BUF_STOP]))
|
|
|
|
devc->buf_options = SR_BUF_STOP;
|
|
|
|
else if (!strcmp(stropt, bufoptions[SR_BUF_UPLOAD]))
|
|
|
|
devc->buf_options = SR_BUF_UPLOAD;
|
|
|
|
}
|
2015-09-26 21:59:40 +08:00
|
|
|
} else if (id == SR_CONF_CHANNEL_MODE) {
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
2015-11-04 00:27:42 +08:00
|
|
|
if (sdi->mode == LOGIC) {
|
|
|
|
if (devc->stream) {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(stream_ch_modes); i++)
|
|
|
|
if (!strcmp(stropt, stream_ch_modes[i])) {
|
|
|
|
devc->ch_mode = i;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->samplerates_size = 11 + i;
|
|
|
|
adjust_probes(sdi, MAX_LOGIC_PROBES);
|
2015-11-04 00:27:42 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(buffer_ch_modes); i++)
|
|
|
|
if (!strcmp(stropt, buffer_ch_modes[i])) {
|
|
|
|
devc->ch_mode = i;
|
|
|
|
devc->samplerates_size = 14 + i;
|
|
|
|
adjust_probes(sdi, buffer_ch_num[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 20:31:38 +08:00
|
|
|
if (devc->cur_samplerate > samplerates[devc->samplerates_size-1]) {
|
2015-11-04 00:27:42 +08:00
|
|
|
devc->cur_samplerate = samplerates[devc->samplerates_size-1];
|
2015-12-02 20:31:38 +08:00
|
|
|
devc->sample_wide = (devc->cur_samplerate <= DSLOGIC_MAX_DSO_SAMPLERATE);
|
|
|
|
}
|
2015-09-26 21:59:40 +08:00
|
|
|
}
|
|
|
|
sr_dbg("%s: setting channel mode to %d",
|
|
|
|
__func__, devc->ch_mode);
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (id == SR_CONF_THRESHOLD) {
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
|
|
|
if (!strcmp(stropt, thresholds[SR_TH_3V3])) {
|
|
|
|
devc->th_level = SR_TH_3V3;
|
|
|
|
} else if (!strcmp(stropt, thresholds[SR_TH_5V0])) {
|
|
|
|
devc->th_level = SR_TH_5V0;
|
|
|
|
} else {
|
|
|
|
ret = SR_ERR;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2015-11-04 00:27:42 +08:00
|
|
|
if (sdi->mode == LOGIC) {
|
|
|
|
if ((ret = command_fpga_config(usb->devhdl)) != SR_OK) {
|
|
|
|
sr_err("Send FPGA configure command failed!");
|
|
|
|
} else {
|
|
|
|
/* Takes >= 10ms for the FX2 to be ready for FPGA configure. */
|
|
|
|
g_usleep(10 * 1000);
|
|
|
|
char *fpga_bit;
|
2016-06-14 22:52:27 +08:00
|
|
|
if (!(fpga_bit = g_try_malloc(strlen(DS_RES_PATH)+strlen(devc->profile->fpga_bit33)+1))) {
|
2015-11-04 00:27:42 +08:00
|
|
|
sr_err("fpag_bit path malloc error!");
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
2016-06-14 22:52:27 +08:00
|
|
|
strcpy(fpga_bit, DS_RES_PATH);
|
2015-11-04 00:27:42 +08:00
|
|
|
switch(devc->th_level) {
|
|
|
|
case SR_TH_3V3:
|
|
|
|
strcat(fpga_bit, devc->profile->fpga_bit33);;
|
|
|
|
break;
|
|
|
|
case SR_TH_5V0:
|
|
|
|
strcat(fpga_bit, devc->profile->fpga_bit50);;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
ret = fpga_config(usb->devhdl, fpga_bit);
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
sr_err("Configure FPGA failed!");
|
|
|
|
}
|
|
|
|
g_free(fpga_bit);
|
2014-09-24 18:43:42 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting threshold to %d",
|
|
|
|
__func__, devc->th_level);
|
2015-04-17 00:21:14 +08:00
|
|
|
} else if (id == SR_CONF_VTH) {
|
|
|
|
devc->vth = g_variant_get_double(data);
|
2016-08-10 15:12:13 +08:00
|
|
|
if ((ret = command_wr_reg(usb->devhdl, (uint8_t)(devc->vth/5.0*255), VTH_ADDR)) == SR_OK) {
|
|
|
|
sr_err("%s: setting threshold voltage to %f",
|
|
|
|
__func__, devc->vth);
|
|
|
|
} else {
|
|
|
|
sr_info("%s: setting threshold voltage to %f failed",
|
|
|
|
__func__, devc->vth);
|
|
|
|
}
|
2015-06-24 22:07:09 +08:00
|
|
|
} else if (id == SR_CONF_FILTER) {
|
2014-09-24 18:43:42 +08:00
|
|
|
stropt = g_variant_get_string(data, NULL);
|
|
|
|
if (!strcmp(stropt, filters[SR_FILTER_NONE])) {
|
|
|
|
devc->filter = SR_FILTER_NONE;
|
|
|
|
} else if (!strcmp(stropt, filters[SR_FILTER_1T])) {
|
|
|
|
devc->filter = SR_FILTER_1T;
|
|
|
|
} else {
|
|
|
|
ret = SR_ERR;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_dbg("%s: setting filter to %d",
|
|
|
|
__func__, devc->filter);
|
2015-09-28 16:31:19 +08:00
|
|
|
} else if (id == SR_CONF_MAX_HEIGHT) {
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(maxHeights); i++) {
|
|
|
|
if (!strcmp(stropt, maxHeights[i])) {
|
|
|
|
devc->max_height = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sr_dbg("%s: setting Signal Max Height to %d",
|
|
|
|
__func__, devc->max_height);
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (id == SR_CONF_EN_CH) {
|
|
|
|
ch->enabled = g_variant_get_boolean(data);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, ch, SR_CONF_EN_CH));
|
2015-06-17 23:24:17 +08:00
|
|
|
uint16_t channel_cnt = 0;
|
|
|
|
GSList *l;
|
|
|
|
for (l = sdi->channels; l; l = l->next) {
|
|
|
|
struct sr_channel *probe = (struct sr_channel *)l->data;
|
|
|
|
channel_cnt += probe->enabled;
|
|
|
|
}
|
|
|
|
if (channel_cnt != 0)
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, 0, SR_CONF_SAMPLERATE));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting ENABLE of channel %d to %d",
|
|
|
|
__func__, ch->index, ch->enabled);
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting ENABLE of channel %d to %d",
|
|
|
|
__func__, ch->index, ch->enabled);
|
2015-06-24 22:18:18 +08:00
|
|
|
} else if (id == SR_CONF_DATALOCK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
while(libusb_try_lock_events(drvc->sr_ctx->libusb_ctx));
|
2015-06-24 22:18:18 +08:00
|
|
|
devc->data_lock = g_variant_get_boolean(data);
|
2016-07-20 08:59:39 +08:00
|
|
|
libusb_unlock_events(drvc->sr_ctx->libusb_ctx);
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (id == SR_CONF_VDIV) {
|
|
|
|
ch->vdiv = g_variant_get_uint64(data);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, ch, SR_CONF_VDIV));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting VDIV of channel %d to %d mv",
|
|
|
|
__func__, ch->index, ch->vdiv);
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting VDIV of channel %d to %d mv failed",
|
|
|
|
__func__, ch->index, ch->vdiv);
|
2015-05-03 18:35:54 +08:00
|
|
|
} else if (id == SR_CONF_FACTOR) {
|
|
|
|
ch->vfactor = g_variant_get_uint64(data);
|
2016-06-25 09:58:07 +08:00
|
|
|
sr_dbg("%s: setting Factor of channel %d to %d", __func__,
|
|
|
|
ch->index, ch->vfactor);
|
|
|
|
} else if (id == SR_CONF_VPOS) {
|
|
|
|
ch->vpos = g_variant_get_double(data);
|
|
|
|
sr_dbg("%s: setting VPOS of channel %d to %lf", __func__,
|
|
|
|
ch->index, ch->vpos);
|
2014-09-24 18:43:42 +08:00
|
|
|
} else if (id == SR_CONF_TIMEBASE) {
|
|
|
|
devc->timebase = g_variant_get_uint64(data);
|
|
|
|
} else if (id == SR_CONF_COUPLING) {
|
2015-04-17 00:21:14 +08:00
|
|
|
ch->coupling = g_variant_get_byte(data);
|
|
|
|
if (ch->coupling == SR_GND_COUPLING)
|
|
|
|
ch->coupling = SR_DC_COUPLING;
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, ch, SR_CONF_COUPLING));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting AC COUPLING of channel %d to %d",
|
|
|
|
__func__, ch->index, ch->coupling);
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting AC COUPLING of channel %d to %d failed",
|
|
|
|
__func__, ch->index, ch->coupling);
|
|
|
|
} else if (id == SR_CONF_TRIGGER_SLOPE) {
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->trigger_slope = g_variant_get_byte(data);
|
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_SLOPE));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
|
|
|
sr_dbg("%s: setting DSO Trigger Slope to %d",
|
|
|
|
__func__, devc->trigger_slope);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting DSO Trigger Slope to %d failed",
|
|
|
|
__func__, devc->trigger_slope);
|
|
|
|
} else if (id == SR_CONF_TRIGGER_SOURCE) {
|
|
|
|
devc->trigger_source = g_variant_get_byte(data);
|
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_SOURCE));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
|
|
|
sr_dbg("%s: setting DSO Trigger Source to %d",
|
|
|
|
__func__, devc->trigger_source);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting DSO Trigger Source to %d failed",
|
|
|
|
__func__, devc->trigger_source);
|
|
|
|
} else if (id == SR_CONF_TRIGGER_VALUE) {
|
2015-06-06 22:24:00 +08:00
|
|
|
ch->trig_value = g_variant_get_byte(data);
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2014-09-24 18:43:42 +08:00
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, ch, SR_CONF_TRIGGER_VALUE));
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
2014-09-24 18:43:42 +08:00
|
|
|
sr_dbg("%s: setting channel %d Trigger Value to %d",
|
|
|
|
__func__, ch->index, ch->trig_value);
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
|
|
|
sr_dbg("%s: setting DSO Trigger Value to %d failed",
|
2014-09-24 18:43:42 +08:00
|
|
|
__func__, ch->index, ch->trig_value);
|
2014-06-29 19:27:43 +08:00
|
|
|
} else if (id == SR_CONF_HORIZ_TRIGGERPOS) {
|
2015-04-17 00:21:14 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2015-06-06 22:24:00 +08:00
|
|
|
devc->trigger_hrate = g_variant_get_byte(data);
|
2016-07-20 08:59:39 +08:00
|
|
|
//devc->trigger_hpos = devc->trigger_hrate * en_ch_num(sdi) * devc->limit_samples / 200.0;
|
|
|
|
/*
|
|
|
|
* devc->trigger_hpos should be updated before each acquisition
|
|
|
|
* because the samplelimits may changed
|
|
|
|
*/
|
|
|
|
devc->trigger_hpos = devc->trigger_hrate * en_ch_num(sdi) * devc->limit_samples / 200.0;
|
2017-05-23 22:39:00 +08:00
|
|
|
if ((ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_HORIZ_TRIGGERPOS))) == SR_OK)
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_dbg("%s: setting DSO Horiz Trigger Position to %d",
|
|
|
|
__func__, devc->trigger_hpos);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting DSO Horiz Trigger Position to %d failed",
|
|
|
|
__func__, devc->trigger_hpos);
|
2015-04-17 00:21:14 +08:00
|
|
|
} else {
|
2015-06-06 22:24:00 +08:00
|
|
|
devc->trigger_hpos = g_variant_get_byte(data) * devc->limit_samples / 100.0;
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
2015-06-17 21:46:37 +08:00
|
|
|
} else if (id == SR_CONF_TRIGGER_HOLDOFF) {
|
|
|
|
devc->trigger_holdoff = g_variant_get_uint64(data);
|
|
|
|
if (sdi->mode == DSO) {
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_HOLDOFF));
|
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
|
|
|
sr_dbg("%s: setting Trigger Holdoff Time to %d",
|
|
|
|
__func__, devc->trigger_holdoff);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting Trigger Holdoff Time to %d failed",
|
|
|
|
__func__, devc->trigger_holdoff);
|
2016-06-25 09:58:07 +08:00
|
|
|
} else if (id == SR_CONF_TRIGGER_MARGIN) {
|
|
|
|
devc->trigger_margin = g_variant_get_byte(data);
|
|
|
|
if (sdi->mode == DSO) {
|
|
|
|
ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_TRIGGER_MARGIN));
|
|
|
|
}
|
|
|
|
if (ret == SR_OK)
|
|
|
|
sr_dbg("%s: setting Trigger Margin to %d",
|
|
|
|
__func__, devc->trigger_margin);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting Trigger Margin to %d failed",
|
|
|
|
__func__, devc->trigger_margin);
|
2015-04-17 00:21:14 +08:00
|
|
|
} else if (id == SR_CONF_STREAM) {
|
|
|
|
devc->stream = g_variant_get_boolean(data);
|
2014-06-29 19:27:43 +08:00
|
|
|
} else {
|
|
|
|
ret = SR_ERR_NA;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-09-24 18:43:42 +08:00
|
|
|
static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_channel_group *cg)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-09-26 21:59:40 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
GVariant *gvar;
|
|
|
|
GVariantBuilder gvb;
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
//(void)sdi;
|
2014-09-24 18:43:42 +08:00
|
|
|
(void)cg;
|
2015-09-26 21:59:40 +08:00
|
|
|
devc = sdi->priv;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case SR_CONF_SCAN_OPTIONS:
|
|
|
|
// *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
// hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
|
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
|
|
|
hwopts, ARRAY_SIZE(hwopts)*sizeof(int32_t), TRUE, NULL, NULL);
|
|
|
|
break;
|
|
|
|
case SR_CONF_DEVICE_OPTIONS:
|
|
|
|
// *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
// hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
|
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
|
|
|
hwcaps, ARRAY_SIZE(hwcaps)*sizeof(int32_t), TRUE, NULL, NULL);
|
|
|
|
break;
|
|
|
|
case SR_CONF_DEVICE_CONFIGS:
|
|
|
|
// *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
// hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
|
2017-05-20 03:20:06 +08:00
|
|
|
if (strcmp(sdi->model, "DSLogic") == 0)
|
2015-04-17 00:21:14 +08:00
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
2017-05-20 03:20:06 +08:00
|
|
|
hwoptions, ARRAY_SIZE(hwoptions)*sizeof(int32_t), TRUE, NULL, NULL);
|
2015-04-17 00:21:14 +08:00
|
|
|
else
|
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
2017-05-20 03:20:06 +08:00
|
|
|
hwoptions_pro, ARRAY_SIZE(hwoptions_pro)*sizeof(int32_t), TRUE, NULL, NULL);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2015-06-06 22:24:00 +08:00
|
|
|
case SR_CONF_DEVICE_SESSIONS:
|
2017-05-20 03:20:06 +08:00
|
|
|
if (strcmp(sdi->model, "DSLogic") == 0)
|
2015-06-06 22:24:00 +08:00
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
2017-05-20 03:20:06 +08:00
|
|
|
sessions, ARRAY_SIZE(sessions)*sizeof(int32_t), TRUE, NULL, NULL);
|
2015-06-06 22:24:00 +08:00
|
|
|
else
|
|
|
|
*data = g_variant_new_from_data(G_VARIANT_TYPE("ai"),
|
2017-05-20 03:20:06 +08:00
|
|
|
sessions_pro, ARRAY_SIZE(sessions_pro)*sizeof(int32_t), TRUE, NULL, NULL);
|
2015-06-06 22:24:00 +08:00
|
|
|
break;
|
2014-06-29 19:27:43 +08:00
|
|
|
case SR_CONF_SAMPLERATE:
|
|
|
|
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));
|
|
|
|
gvar = g_variant_new_from_data(G_VARIANT_TYPE("at"),
|
2015-09-26 21:59:40 +08:00
|
|
|
samplerates, devc->samplerates_size*sizeof(uint64_t), TRUE, NULL, NULL);
|
2014-06-29 19:27:43 +08:00
|
|
|
g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
|
|
|
|
*data = g_variant_builder_end(&gvb);
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
|
|
|
g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
|
|
|
|
gvar = g_variant_new_from_data(G_VARIANT_TYPE("at"),
|
2016-07-20 08:59:39 +08:00
|
|
|
samplecounts, devc->samplecounts_size*sizeof(uint64_t), TRUE, NULL, NULL);
|
2014-09-24 18:43:42 +08:00
|
|
|
g_variant_builder_add(&gvb, "{sv}", "samplecounts", gvar);
|
|
|
|
*data = g_variant_builder_end(&gvb);
|
|
|
|
break;
|
2014-06-29 19:27:43 +08:00
|
|
|
case SR_CONF_TRIGGER_TYPE:
|
2015-06-24 22:07:09 +08:00
|
|
|
*data = g_variant_new_string(TRIGGER_TYPE);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
case SR_CONF_OPERATION_MODE:
|
2015-10-08 18:16:44 +08:00
|
|
|
*data = g_variant_new_strv(opmodes, opmodes_show_count);
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
2017-05-20 03:20:06 +08:00
|
|
|
case SR_CONF_BUFFER_OPTIONS:
|
|
|
|
*data = g_variant_new_strv(bufoptions, ARRAY_SIZE(bufoptions));
|
|
|
|
break;
|
2015-09-26 21:59:40 +08:00
|
|
|
case SR_CONF_CHANNEL_MODE:
|
|
|
|
if (devc->stream)
|
|
|
|
*data = g_variant_new_strv(stream_ch_modes, ARRAY_SIZE(stream_ch_modes));
|
|
|
|
else if (devc->op_mode != SR_OP_BUFFER)
|
|
|
|
*data = g_variant_new_strv(buffer_ch_modes, 1);
|
|
|
|
else
|
|
|
|
*data = g_variant_new_strv(buffer_ch_modes, ARRAY_SIZE(buffer_ch_modes));
|
|
|
|
break;
|
2014-09-24 18:43:42 +08:00
|
|
|
case SR_CONF_THRESHOLD:
|
|
|
|
*data = g_variant_new_strv(thresholds, ARRAY_SIZE(thresholds));
|
|
|
|
break;
|
|
|
|
case SR_CONF_FILTER:
|
|
|
|
*data = g_variant_new_strv(filters, ARRAY_SIZE(filters));
|
|
|
|
break;
|
2015-09-28 16:31:19 +08:00
|
|
|
case SR_CONF_MAX_HEIGHT:
|
|
|
|
*data = g_variant_new_strv(maxHeights, ARRAY_SIZE(maxHeights));
|
|
|
|
break;
|
2016-06-10 10:02:08 +08:00
|
|
|
default:
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR_NA;
|
2016-06-10 10:02:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dev_open(struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
struct DSL_context *devc;
|
|
|
|
int ret;
|
2017-05-20 03:20:06 +08:00
|
|
|
uint8_t hw_info;
|
|
|
|
gboolean fpga_done;
|
2016-06-10 10:02:08 +08:00
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
|
|
|
|
/*
|
2016-07-20 08:59:39 +08:00
|
|
|
* If the firmware was recently uploaded, no dev_open operation should be called.
|
|
|
|
* Just wait for renumerate -> detach -> attach
|
2016-06-10 10:02:08 +08:00
|
|
|
*/
|
|
|
|
ret = SR_ERR;
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->fw_updated > 0) {
|
|
|
|
return SR_ERR;
|
2016-06-10 10:02:08 +08:00
|
|
|
} else {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_info("%s: Firmware upload was not needed.", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
ret = DSLogic_dev_open(sdi);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Unable to open device.", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
|
|
|
|
if (ret != 0) {
|
|
|
|
switch(ret) {
|
|
|
|
case LIBUSB_ERROR_BUSY:
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Unable to claim USB interface. Another "
|
|
|
|
"program or driver has already claimed it.", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
break;
|
|
|
|
case LIBUSB_ERROR_NO_DEVICE:
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Device has been disconnected.", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
break;
|
|
|
|
default:
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Unable to claim interface: %s.",
|
|
|
|
__func__, libusb_error_name(ret));
|
2016-06-10 10:02:08 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_ERR;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
ret = command_get_hw_info(usb->devhdl, &hw_info);
|
2016-07-20 08:59:39 +08:00
|
|
|
if (ret != SR_OK) {
|
2017-05-20 03:20:06 +08:00
|
|
|
sr_err("Failed to get hardware infos.");
|
2016-07-20 08:59:39 +08:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
fpga_done = (hw_info & 0x80) != 0;
|
2016-07-20 08:59:39 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if (sdi->status == SR_ST_ACTIVE && !fpga_done) {
|
2016-06-10 10:02:08 +08:00
|
|
|
if ((ret = command_fpga_config(usb->devhdl)) != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Send FPGA configure command failed!", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
} else {
|
|
|
|
/* Takes >= 10ms for the FX2 to be ready for FPGA configure. */
|
|
|
|
g_usleep(10 * 1000);
|
|
|
|
char *fpga_bit;
|
2016-06-14 22:52:27 +08:00
|
|
|
if (!(fpga_bit = g_try_malloc(strlen(DS_RES_PATH)+strlen(devc->profile->fpga_bit33)+1))) {
|
2016-06-10 10:02:08 +08:00
|
|
|
sr_err("fpag_bit path malloc error!");
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
2016-06-14 22:52:27 +08:00
|
|
|
strcpy(fpga_bit, DS_RES_PATH);
|
2016-06-10 10:02:08 +08:00
|
|
|
switch(devc->th_level) {
|
|
|
|
case SR_TH_3V3:
|
|
|
|
strcat(fpga_bit, devc->profile->fpga_bit33);;
|
|
|
|
break;
|
|
|
|
case SR_TH_5V0:
|
|
|
|
strcat(fpga_bit, devc->profile->fpga_bit50);;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
ret = fpga_config(usb->devhdl, fpga_bit);
|
|
|
|
if (ret != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Configure FPGA failed!", __func__);
|
2016-06-10 10:02:08 +08:00
|
|
|
}
|
|
|
|
g_free(fpga_bit);
|
2016-08-10 15:12:13 +08:00
|
|
|
|
|
|
|
if ((ret = command_wr_reg(usb->devhdl, (uint8_t)(devc->vth/5.0*255), VTH_ADDR)) == SR_OK) {
|
|
|
|
sr_err("%s: setting threshold voltage to %f",
|
|
|
|
__func__, devc->vth);
|
|
|
|
} else {
|
|
|
|
sr_info("%s: setting threshold voltage to %f failed",
|
|
|
|
__func__, devc->vth);
|
|
|
|
}
|
2016-06-10 10:02:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dev_close(struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
|
|
|
|
usb = sdi->conn;
|
|
|
|
if (usb->devhdl == NULL)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
sr_info("DSLogic: 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;
|
|
|
|
sdi->status = SR_ST_INACTIVE;
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2016-06-10 10:02:08 +08:00
|
|
|
static int cleanup(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct drv_context *drvc;
|
|
|
|
|
|
|
|
if (!(drvc = di->priv))
|
|
|
|
return SR_OK;
|
|
|
|
|
|
|
|
ret = dev_clear();
|
|
|
|
|
|
|
|
g_free(drvc);
|
|
|
|
di->priv = NULL;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
static void remove_sources(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
int i;
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: remove fds from polling", __func__);
|
|
|
|
/* Remove fds from polling. */
|
|
|
|
for (i = 0; devc->usbfd[i] != -1; i++)
|
|
|
|
sr_source_remove(devc->usbfd[i]);
|
|
|
|
g_free(devc->usbfd);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static void finish_acquisition(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
|
|
|
struct sr_datafeed_packet packet;
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: send SR_DF_END packet", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Terminate session. */
|
|
|
|
packet.type = SR_DF_END;
|
2017-05-20 03:20:06 +08:00
|
|
|
packet.status = SR_PKT_OK;
|
2014-06-29 19:27:43 +08:00
|
|
|
sr_session_send(devc->cb_data, &packet);
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
if (devc->num_transfers != 0) {
|
|
|
|
devc->num_transfers = 0;
|
|
|
|
g_free(devc->transfers);
|
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
|
|
|
|
devc->status = DSL_FINISH;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_transfer(struct libusb_transfer *transfer)
|
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2017-05-20 03:20:06 +08:00
|
|
|
unsigned int i;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
devc = transfer->user_data;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
g_free(transfer->buffer);
|
|
|
|
transfer->buffer = NULL;
|
|
|
|
libusb_free_transfer(transfer);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
for (i = 0; i < devc->num_transfers; i++) {
|
|
|
|
if (devc->transfers[i] == transfer) {
|
|
|
|
devc->transfers[i] = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->submitted_transfers--;
|
|
|
|
if (devc->submitted_transfers == 0)
|
2014-06-29 19:27:43 +08:00
|
|
|
finish_acquisition(devc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void resubmit_transfer(struct libusb_transfer *transfer)
|
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
int ret;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
if ((ret = libusb_submit_transfer(transfer)) == LIBUSB_SUCCESS)
|
|
|
|
return;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
free_transfer(transfer);
|
|
|
|
/* TODO: Stop session? */
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
sr_err("%s: %s", __func__, libusb_error_name(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void receive_transfer(struct libusb_transfer *transfer)
|
|
|
|
{
|
|
|
|
struct sr_datafeed_packet packet;
|
|
|
|
struct sr_datafeed_logic logic;
|
|
|
|
struct sr_datafeed_dso dso;
|
|
|
|
struct sr_datafeed_analog analog;
|
2017-05-23 22:39:00 +08:00
|
|
|
uint64_t cur_sample_count = 0;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
uint8_t *cur_buf = transfer->buffer;
|
2016-07-20 08:59:39 +08:00
|
|
|
struct DSL_context *devc = transfer->user_data;
|
|
|
|
struct sr_dev_inst *sdi = devc->cb_data;
|
|
|
|
const int sample_width = (devc->sample_wide) ? 2 : 1;
|
2017-05-20 03:20:06 +08:00
|
|
|
|
|
|
|
if (devc->status == DSL_START)
|
|
|
|
devc->status = DSL_DATA;
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->data_lock) {
|
|
|
|
resubmit_transfer(transfer);
|
2014-06-29 19:27:43 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->abort)
|
|
|
|
devc->status = DSL_STOP;
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
sr_info("%" PRIu64 ": receive_transfer(): status %d; timeout %d; received %d bytes.",
|
|
|
|
g_get_monotonic_time(), transfer->status, transfer->timeout, transfer->actual_length);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
switch (transfer->status) {
|
|
|
|
case LIBUSB_TRANSFER_COMPLETED:
|
|
|
|
case LIBUSB_TRANSFER_TIMED_OUT: /* We may have received some data though. */
|
|
|
|
break;
|
|
|
|
default:
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->status = DSL_ERROR;
|
2014-06-29 19:27:43 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
packet.status = SR_PKT_OK;
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->status == DSL_DATA &&
|
2017-05-20 03:20:06 +08:00
|
|
|
transfer->actual_length != 0) {
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Send the incoming transfer to the session bus. */
|
2016-07-20 08:59:39 +08:00
|
|
|
// check packet type
|
|
|
|
if (sdi->mode == LOGIC) {
|
2014-06-29 19:27:43 +08:00
|
|
|
packet.type = SR_DF_LOGIC;
|
|
|
|
packet.payload = &logic;
|
2017-05-20 03:20:06 +08:00
|
|
|
cur_sample_count = transfer->actual_length * 8 / en_ch_num(sdi) ;
|
|
|
|
logic.length = transfer->actual_length;
|
|
|
|
logic.format = LA_CROSS_DATA;
|
2014-06-29 19:27:43 +08:00
|
|
|
logic.data_error = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
logic.data = cur_buf;
|
2016-07-20 08:59:39 +08:00
|
|
|
} else if (sdi->mode == DSO) {
|
2015-04-17 00:21:14 +08:00
|
|
|
if (!devc->instant) {
|
2016-07-20 08:59:39 +08:00
|
|
|
const uint32_t mstatus_offset = devc->limit_samples / (g_slist_length(sdi->channels)/en_ch_num(sdi));
|
|
|
|
mstatus.pkt_id = *((const uint16_t*)cur_buf + mstatus_offset);
|
2015-04-17 00:21:14 +08:00
|
|
|
mstatus.ch0_max = *((const uint8_t*)cur_buf + mstatus_offset*2 + 1*2);
|
|
|
|
mstatus.ch0_min = *((const uint8_t*)cur_buf + mstatus_offset*2 + 3);
|
|
|
|
mstatus.ch0_period = *((const uint32_t*)cur_buf + mstatus_offset/2 + 2/2);
|
2016-07-20 08:59:39 +08:00
|
|
|
mstatus.ch0_period += ((uint64_t)*((const uint32_t*)cur_buf + mstatus_offset/2 + 4/2)) << 32;
|
2015-05-03 18:35:54 +08:00
|
|
|
mstatus.ch0_pcnt = *((const uint32_t*)cur_buf + mstatus_offset/2 + 6/2);
|
|
|
|
mstatus.ch1_max = *((const uint8_t*)cur_buf + mstatus_offset*2 + 9*2);
|
|
|
|
mstatus.ch1_min = *((const uint8_t*)cur_buf + mstatus_offset*2 + 19);
|
|
|
|
mstatus.ch1_period = *((const uint32_t*)cur_buf + mstatus_offset/2 + 10/2);
|
2016-07-20 08:59:39 +08:00
|
|
|
mstatus.ch1_period += ((uint64_t)*((const uint32_t*)cur_buf + mstatus_offset/2 + 12/2)) << 32;
|
2015-05-03 18:35:54 +08:00
|
|
|
mstatus.ch1_pcnt = *((const uint32_t*)cur_buf + mstatus_offset/2 + 14/2);
|
2015-04-17 00:21:14 +08:00
|
|
|
mstatus.vlen = *((const uint32_t*)cur_buf + mstatus_offset/2 + 16/2) & 0x7fffffff;
|
|
|
|
mstatus.stream_mode = *((const uint32_t*)cur_buf + mstatus_offset/2 + 16/2) & 0x80000000;
|
2016-07-20 08:59:39 +08:00
|
|
|
mstatus.sample_divider = *((const uint32_t*)cur_buf + mstatus_offset/2 + 18/2) & 0x0fffffff;
|
2015-11-11 21:22:03 +08:00
|
|
|
mstatus.sample_divider_tog = *((const uint32_t*)cur_buf + mstatus_offset/2 + 18/2) & 0x80000000;
|
2016-07-20 08:59:39 +08:00
|
|
|
mstatus.trig_flag = *((const uint32_t*)cur_buf + mstatus_offset/2 + 18/2) & 0x40000000;
|
2015-04-17 00:21:14 +08:00
|
|
|
} else {
|
|
|
|
mstatus.vlen = instant_buffer_size;
|
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
|
|
|
|
const uint32_t divider = devc->zero ? 0x1 : (uint32_t)ceil(DSCOPE_MAX_SAMPLERATE * 1.0 / devc->cur_samplerate / en_ch_num(sdi));
|
|
|
|
if ((mstatus.pkt_id == DSO_PKTID &&
|
|
|
|
mstatus.sample_divider == divider &&
|
|
|
|
mstatus.vlen != 0 &&
|
|
|
|
mstatus.vlen <= (transfer->actual_length - 512) / sample_width) ||
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->instant) {
|
2016-08-10 15:12:13 +08:00
|
|
|
devc->roll = (mstatus.stream_mode != 0);
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->mstatus_valid = TRUE;
|
2015-04-17 00:21:14 +08:00
|
|
|
packet.type = SR_DF_DSO;
|
|
|
|
packet.payload = &dso;
|
2016-07-20 08:59:39 +08:00
|
|
|
dso.probes = sdi->channels;
|
2015-04-17 00:21:14 +08:00
|
|
|
//dso.num_samples = (transfer->actual_length - 512) / sample_width;
|
2016-07-20 08:59:39 +08:00
|
|
|
cur_sample_count = 2 * mstatus.vlen / en_ch_num(sdi) ;
|
2015-04-17 00:21:14 +08:00
|
|
|
dso.num_samples = cur_sample_count;
|
|
|
|
dso.mq = SR_MQ_VOLTAGE;
|
|
|
|
dso.unit = SR_UNIT_VOLT;
|
|
|
|
dso.mqflags = SR_MQFLAG_AC;
|
2016-07-20 08:59:39 +08:00
|
|
|
dso.samplerate_tog = (mstatus.sample_divider_tog != 0);
|
|
|
|
dso.trig_flag = (mstatus.trig_flag != 0);
|
2017-05-20 03:20:06 +08:00
|
|
|
dso.data = cur_buf;
|
2015-04-17 00:21:14 +08:00
|
|
|
} else {
|
2017-05-20 03:20:06 +08:00
|
|
|
packet.type = SR_DF_DSO;
|
|
|
|
packet.status = SR_PKT_DATA_ERROR;
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->mstatus_valid = FALSE;
|
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
} else {
|
|
|
|
packet.type = SR_DF_ANALOG;
|
|
|
|
packet.payload = &analog;
|
2016-07-20 08:59:39 +08:00
|
|
|
analog.probes = sdi->channels;
|
|
|
|
cur_sample_count = transfer->actual_length / (sample_width * g_slist_length(analog.probes));
|
|
|
|
analog.num_samples = cur_sample_count;
|
2014-06-29 19:27:43 +08:00
|
|
|
analog.mq = SR_MQ_VOLTAGE;
|
|
|
|
analog.unit = SR_UNIT_VOLT;
|
|
|
|
analog.mqflags = SR_MQFLAG_AC;
|
2017-05-23 22:39:00 +08:00
|
|
|
analog.data = (float *)cur_buf;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
if ((devc->limit_samples && devc->num_bytes < devc->actual_bytes) ||
|
|
|
|
sdi->mode != LOGIC ) {
|
|
|
|
const uint64_t remain_length= devc->actual_bytes - devc->num_bytes;
|
2014-06-29 19:27:43 +08:00
|
|
|
logic.length = min(logic.length, remain_length);
|
|
|
|
|
|
|
|
/* send data to session bus */
|
2017-05-20 03:20:06 +08:00
|
|
|
if (!devc->overflow)
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_session_send(sdi, &packet);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
devc->num_samples += cur_sample_count;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->num_bytes += logic.length;
|
|
|
|
if (sdi->mode == LOGIC &&
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->limit_samples &&
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->num_bytes >= devc->actual_bytes) {
|
|
|
|
devc->status = DSL_STOP;
|
|
|
|
} else if ((sdi->mode != DSO || devc->instant) &&
|
|
|
|
devc->limit_samples &&
|
|
|
|
devc->num_samples >= devc->actual_samples) {
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->status = DSL_STOP;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->status == DSL_DATA)
|
|
|
|
resubmit_transfer(transfer);
|
|
|
|
else
|
|
|
|
free_transfer(transfer);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static unsigned int to_bytes_per_ms(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2017-05-20 03:20:06 +08:00
|
|
|
struct sr_dev_inst *sdi = devc->cb_data;
|
2014-06-29 19:27:43 +08:00
|
|
|
if (devc->cur_samplerate > SR_MHZ(100))
|
2017-05-20 03:20:06 +08:00
|
|
|
return SR_MHZ(100) / 1000 * en_ch_num(sdi) / 8;
|
2014-06-29 19:27:43 +08:00
|
|
|
else
|
2017-05-20 03:20:06 +08:00
|
|
|
return devc->cur_samplerate / 1000 * en_ch_num(sdi) / 8;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static size_t get_buffer_size(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
|
|
|
size_t s;
|
|
|
|
|
|
|
|
/*
|
2015-04-17 00:21:14 +08:00
|
|
|
* The buffer should be large enough to hold 10ms of data and
|
2014-06-29 19:27:43 +08:00
|
|
|
* a multiple of 512.
|
|
|
|
*/
|
2015-04-17 00:21:14 +08:00
|
|
|
s = single_buffer_time * to_bytes_per_ms(devc);
|
|
|
|
//s = to_bytes_per_ms(devc->cur_samplerate);
|
2014-06-29 19:27:43 +08:00
|
|
|
return (s + 511) & ~511;
|
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static unsigned int get_number_of_transfers(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
unsigned int n;
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Total buffer size should be able to hold about 100ms of data. */
|
2017-06-01 13:31:35 +08:00
|
|
|
n = ceil(total_buffer_time * 1.0f * to_bytes_per_ms(devc) / get_buffer_size(devc));
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
if (n > NUM_SIMUL_TRANSFERS)
|
2015-04-17 00:21:14 +08:00
|
|
|
return NUM_SIMUL_TRANSFERS;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static unsigned int get_timeout(struct DSL_context *devc)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
size_t total_size;
|
|
|
|
unsigned int timeout;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
total_size = get_buffer_size(devc) * get_number_of_transfers(devc);
|
|
|
|
timeout = total_size / to_bytes_per_ms(devc);
|
|
|
|
//return timeout + timeout / 4; /* Leave a headroom of 25% percent. */
|
2017-05-20 03:20:06 +08:00
|
|
|
if (devc->op_mode == SR_OP_STREAM)
|
|
|
|
return timeout + timeout / 4; /* Leave a headroom of 25% percent. */
|
2015-04-17 00:21:14 +08:00
|
|
|
else
|
2017-05-20 03:20:06 +08:00
|
|
|
return 1000;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
static int receive_data(int fd, int revents, const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
int completed = 0;
|
|
|
|
struct timeval tv;
|
|
|
|
struct drv_context *drvc;
|
|
|
|
struct DSL_context *devc;
|
|
|
|
|
|
|
|
(void)fd;
|
|
|
|
(void)revents;
|
|
|
|
|
|
|
|
drvc = di->priv;
|
|
|
|
devc = sdi->priv;
|
|
|
|
|
|
|
|
tv.tv_sec = tv.tv_usec = 0;
|
|
|
|
libusb_handle_events_timeout_completed(drvc->sr_ctx->libusb_ctx, &tv, &completed);
|
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->status == DSL_FINISH) {
|
2017-05-30 17:41:55 +08:00
|
|
|
/* Remove polling */
|
|
|
|
remove_sources(devc);
|
2016-07-20 08:59:39 +08:00
|
|
|
}
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
static void receive_trigger_pos(struct libusb_transfer *transfer)
|
|
|
|
{
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct sr_datafeed_packet packet;
|
|
|
|
struct ds_trigger_pos *trigger_pos;
|
2016-06-14 22:52:27 +08:00
|
|
|
const struct sr_dev_inst *sdi;
|
2017-05-20 03:20:06 +08:00
|
|
|
uint64_t remain_cnt;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
packet.status = SR_PKT_OK;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc = transfer->user_data;
|
2016-07-20 08:59:39 +08:00
|
|
|
sdi = devc->cb_data;
|
2015-04-17 00:21:14 +08:00
|
|
|
trigger_pos = (struct ds_trigger_pos *)transfer->buffer;
|
2017-05-20 03:20:06 +08:00
|
|
|
if (devc->status != DSL_ABORT)
|
|
|
|
devc->status = DSL_ERROR;
|
|
|
|
if (!devc->abort && transfer->status == LIBUSB_TRANSFER_COMPLETED &&
|
2016-07-20 08:59:39 +08:00
|
|
|
trigger_pos->check_id == TRIG_CHECKID) {
|
2017-05-20 03:20:06 +08:00
|
|
|
sr_info("%" PRIu64 ": receive_trigger_pos(): status %d; timeout %d; received %d bytes.",
|
|
|
|
g_get_monotonic_time(), transfer->status, transfer->timeout, transfer->actual_length);
|
|
|
|
remain_cnt = trigger_pos->remain_cnt_h;
|
|
|
|
remain_cnt = (remain_cnt << 32) + trigger_pos->remain_cnt_l;
|
2015-04-17 00:21:14 +08:00
|
|
|
if (transfer->actual_length == sizeof(struct ds_trigger_pos)) {
|
2017-05-20 03:20:06 +08:00
|
|
|
if (sdi->mode != LOGIC ||
|
|
|
|
devc->stream ||
|
|
|
|
remain_cnt < devc->limit_samples) {
|
|
|
|
if (sdi->mode == LOGIC && (!devc->stream || (devc->status == DSL_ABORT))) {
|
|
|
|
devc->actual_samples = devc->limit_samples - remain_cnt;
|
|
|
|
devc->actual_bytes = devc->actual_samples / DSLOGIC_ATOMIC_SAMPLES * en_ch_num(sdi) * DSLOGIC_ATOMIC_SIZE;
|
|
|
|
devc->actual_samples = devc->actual_bytes / en_ch_num(sdi) * 8;
|
|
|
|
}
|
|
|
|
|
2015-09-26 21:59:40 +08:00
|
|
|
packet.type = SR_DF_TRIGGER;
|
|
|
|
packet.payload = trigger_pos;
|
2016-06-14 22:52:27 +08:00
|
|
|
sr_session_send(sdi, &packet);
|
2015-09-26 21:59:40 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->status = DSL_DATA;
|
2015-09-26 21:59:40 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
} else if (!devc->abort) {
|
|
|
|
sr_err("%s: trigger packet data error.", __func__);
|
|
|
|
packet.type = SR_DF_TRIGGER;
|
|
|
|
packet.payload = trigger_pos;
|
|
|
|
packet.status = SR_PKT_DATA_ERROR;
|
|
|
|
sr_session_send(sdi, &packet);
|
2015-04-17 00:21:14 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
free_transfer(transfer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int start_transfers(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
struct DSL_context *devc;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
struct libusb_transfer *transfer;
|
|
|
|
unsigned int i, num_transfers;
|
|
|
|
int ret;
|
|
|
|
unsigned char *buf;
|
|
|
|
size_t size;
|
2017-05-23 22:39:00 +08:00
|
|
|
unsigned int dso_buffer_size;
|
2017-05-20 03:20:06 +08:00
|
|
|
struct ds_trigger_pos *trigger_pos;
|
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
|
|
|
|
if (devc->instant)
|
|
|
|
dso_buffer_size = instant_buffer_size * g_slist_length(sdi->channels);
|
|
|
|
else
|
|
|
|
dso_buffer_size = devc->limit_samples * en_ch_num(sdi) + 512;
|
|
|
|
|
|
|
|
num_transfers = (devc->stream) ? get_number_of_transfers(devc) : 1;
|
|
|
|
size = (sdi->mode == DSO) ? dso_buffer_size :
|
|
|
|
(devc->stream) ? get_buffer_size(devc) : instant_buffer_size;
|
|
|
|
|
|
|
|
|
|
|
|
/* trigger packet transfer */
|
|
|
|
if (!(trigger_pos = g_try_malloc0(sizeof(struct ds_trigger_pos)))) {
|
|
|
|
sr_err("%s: USB trigger_pos buffer malloc failed.", __func__);
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
devc->transfers = g_try_malloc0(sizeof(*devc->transfers) * (num_transfers + 1));
|
|
|
|
if (!devc->transfers) {
|
|
|
|
sr_err("%s: USB transfer malloc failed.", __func__);
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
transfer = libusb_alloc_transfer(0);
|
|
|
|
libusb_fill_bulk_transfer(transfer, usb->devhdl,
|
2017-05-23 22:39:00 +08:00
|
|
|
6 | LIBUSB_ENDPOINT_IN, (unsigned char *)trigger_pos, sizeof(struct ds_trigger_pos),
|
2017-05-20 03:20:06 +08:00
|
|
|
receive_trigger_pos, devc, 0);
|
|
|
|
if ((ret = libusb_submit_transfer(transfer)) != 0) {
|
|
|
|
sr_err("%s: Failed to submit trigger_pos transfer: %s.",
|
|
|
|
__func__, libusb_error_name(ret));
|
|
|
|
libusb_free_transfer(transfer);
|
|
|
|
g_free(trigger_pos);
|
|
|
|
devc->status = DSL_ERROR;
|
|
|
|
return SR_ERR;
|
2016-07-20 08:59:39 +08:00
|
|
|
} else {
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->num_transfers++;
|
|
|
|
devc->transfers[0] = transfer;
|
|
|
|
devc->submitted_transfers++;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
|
|
|
|
/* data packet transfer */
|
|
|
|
for (i = 1; i <= num_transfers; i++) {
|
|
|
|
if (!(buf = g_try_malloc(size))) {
|
|
|
|
sr_err("%s: USB transfer buffer malloc failed.", __func__);
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
transfer = libusb_alloc_transfer(0);
|
|
|
|
libusb_fill_bulk_transfer(transfer, usb->devhdl,
|
|
|
|
6 | LIBUSB_ENDPOINT_IN, buf, size,
|
|
|
|
receive_transfer, devc, 0);
|
|
|
|
if ((ret = libusb_submit_transfer(transfer)) != 0) {
|
|
|
|
sr_err("%s: Failed to submit transfer: %s.",
|
|
|
|
__func__, libusb_error_name(ret));
|
|
|
|
libusb_free_transfer(transfer);
|
|
|
|
g_free(buf);
|
|
|
|
devc->status = DSL_ERROR;
|
|
|
|
devc->abort = TRUE;
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
devc->transfers[i] = transfer;
|
|
|
|
devc->submitted_transfers++;
|
|
|
|
devc->num_transfers++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static int dev_acquisition_start(struct sr_dev_inst *sdi, void *cb_data)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
2017-05-23 22:39:00 +08:00
|
|
|
(void)cb_data;
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2014-06-29 19:27:43 +08:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct sr_usb_dev_inst *usb;
|
|
|
|
const struct libusb_pollfd **lupfd;
|
2015-04-17 00:21:14 +08:00
|
|
|
unsigned int i;
|
2014-06-29 19:27:43 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
test_init = 1;
|
|
|
|
|
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
|
|
|
drvc = di->priv;
|
|
|
|
devc = sdi->priv;
|
|
|
|
usb = sdi->conn;
|
|
|
|
|
|
|
|
//devc->cb_data = cb_data;
|
|
|
|
devc->cb_data = sdi;
|
|
|
|
devc->num_samples = 0;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->num_bytes = 0;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->empty_transfer_count = 0;
|
2015-04-17 00:21:14 +08:00
|
|
|
devc->status = DSL_INIT;
|
2014-06-29 19:27:43 +08:00
|
|
|
devc->num_transfers = 0;
|
|
|
|
devc->submitted_transfers = 0;
|
2015-10-08 21:20:38 +08:00
|
|
|
devc->actual_samples = devc->limit_samples;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->actual_bytes = devc->actual_samples / DSLOGIC_ATOMIC_SAMPLES * en_ch_num(sdi) * DSLOGIC_ATOMIC_SIZE;
|
2016-07-20 08:59:39 +08:00
|
|
|
test_sample_value = 0;
|
|
|
|
devc->abort = FALSE;
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->mstatus_valid = FALSE;
|
|
|
|
devc->overflow = FALSE;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
/* Configures devc->trigger_* and devc->sample_wide */
|
|
|
|
if (configure_probes(sdi) != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Failed to configure probes.", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop Previous GPIF acquisition */
|
|
|
|
if ((ret = command_stop_acquisition (usb->devhdl)) != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Stop DSLogic acquisition failed!", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
return ret;
|
|
|
|
} else {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_info("%s: Stop Previous DSLogic acquisition!", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Setting FPGA before acquisition start*/
|
2015-04-17 00:21:14 +08:00
|
|
|
if ((ret = command_fpga_setting(usb->devhdl, sizeof(struct DSL_setting) / sizeof(uint16_t))) != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Send FPGA setting command failed!", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
} else {
|
|
|
|
if ((ret = fpga_setting(sdi)) != SR_OK) {
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_err("%s: Configure FPGA failed!", __func__);
|
2014-06-29 19:27:43 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
2015-04-17 00:21:14 +08:00
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
/*
|
|
|
|
* settings must be updated before acquisition
|
|
|
|
*/
|
2014-06-29 19:27:43 +08:00
|
|
|
if (sdi->mode == DSO) {
|
2016-07-20 08:59:39 +08:00
|
|
|
devc->trigger_hpos = devc->trigger_hrate * en_ch_num(sdi) * devc->limit_samples / 200.0;
|
2017-05-23 22:39:00 +08:00
|
|
|
if ((ret = command_dso_ctrl(usb->devhdl, dso_cmd_gen(sdi, NULL, SR_CONF_HORIZ_TRIGGERPOS))) == SR_OK)
|
2016-07-20 08:59:39 +08:00
|
|
|
sr_dbg("%s: setting DSO Horiz Trigger Position to %d",
|
|
|
|
__func__, devc->trigger_hpos);
|
|
|
|
else
|
|
|
|
sr_dbg("%s: setting DSO Horiz Trigger Position to %d failed",
|
|
|
|
__func__, devc->trigger_hpos);
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
|
|
|
|
2017-05-20 03:20:06 +08:00
|
|
|
/* setup and submit usb transfer */
|
|
|
|
if ((ret = start_transfers(devc->cb_data)) != SR_OK) {
|
|
|
|
sr_err("%s: Could not submit usb transfer"
|
|
|
|
"(%d)%d", __func__, ret, errno);
|
|
|
|
return ret;
|
2014-06-29 19:27:43 +08:00
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
|
|
|
|
/* setup callback function for data transfer */
|
|
|
|
lupfd = libusb_get_pollfds(drvc->sr_ctx->libusb_ctx);
|
|
|
|
for (i = 0; lupfd[i]; i++);
|
|
|
|
if (!(devc->usbfd = g_try_malloc(sizeof(struct libusb_pollfd) * (i + 1))))
|
2017-05-20 03:20:06 +08:00
|
|
|
return SR_ERR;
|
2016-07-20 08:59:39 +08:00
|
|
|
for (i = 0; lupfd[i]; i++) {
|
|
|
|
sr_source_add(lupfd[i]->fd, lupfd[i]->events,
|
|
|
|
get_timeout(devc), receive_data, sdi);
|
|
|
|
devc->usbfd[i] = lupfd[i]->fd;
|
|
|
|
}
|
|
|
|
devc->usbfd[i] = -1;
|
|
|
|
free(lupfd);
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
if ((ret = command_start_acquisition (usb->devhdl,
|
|
|
|
devc->cur_samplerate, devc->sample_wide, (sdi->mode == LOGIC))) != SR_OK) {
|
|
|
|
devc->status = DSL_ERROR;
|
|
|
|
devc->abort = TRUE;
|
|
|
|
return ret;
|
|
|
|
}
|
2017-05-20 03:20:06 +08:00
|
|
|
devc->status = DSL_START;
|
2016-07-20 08:59:39 +08:00
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
/* Send header packet to the session bus. */
|
|
|
|
//std_session_send_df_header(cb_data, LOG_PREFIX);
|
|
|
|
std_session_send_df_header(sdi, LOG_PREFIX);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static int dev_acquisition_stop(const struct sr_dev_inst *sdi, void *cb_data)
|
2014-06-29 19:27:43 +08:00
|
|
|
{
|
|
|
|
(void)cb_data;
|
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2016-07-20 08:59:39 +08:00
|
|
|
struct sr_usb_dev_inst *usb;
|
2017-05-30 17:41:55 +08:00
|
|
|
int ret;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
devc = sdi->priv;
|
2016-07-20 08:59:39 +08:00
|
|
|
usb = sdi->conn;
|
2014-06-29 19:27:43 +08:00
|
|
|
|
2016-07-20 08:59:39 +08:00
|
|
|
if (!devc->abort) {
|
|
|
|
devc->abort = TRUE;
|
2017-05-20 03:20:06 +08:00
|
|
|
command_wr_reg(usb->devhdl, bmFORCE_RDY, EEWP_ADDR);
|
2017-05-30 17:41:55 +08:00
|
|
|
} else if (devc->status == DSL_FINISH) {
|
|
|
|
/* Stop GPIF acquisition */
|
|
|
|
if ((ret = command_stop_acquisition (usb->devhdl)) != SR_OK)
|
|
|
|
sr_err("%s: Sent acquisition stop command failed!", __func__);
|
|
|
|
else
|
|
|
|
sr_info("%s: Sent acquisition stop command!", __func__);
|
2016-07-20 08:59:39 +08:00
|
|
|
}
|
2014-06-29 19:27:43 +08:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:39:00 +08:00
|
|
|
static int dev_status_get(const struct sr_dev_inst *sdi, struct sr_status *status, int begin, int end)
|
2014-09-24 18:43:42 +08:00
|
|
|
{
|
2016-07-20 08:59:39 +08:00
|
|
|
int ret = SR_ERR;
|
2014-09-24 18:43:42 +08:00
|
|
|
if (sdi) {
|
2015-04-17 00:21:14 +08:00
|
|
|
struct DSL_context *devc;
|
2016-07-20 08:59:39 +08:00
|
|
|
struct sr_usb_dev_inst *usb;
|
2014-09-24 18:43:42 +08:00
|
|
|
|
2015-04-17 00:21:14 +08:00
|
|
|
devc = sdi->priv;
|
2014-09-24 18:43:42 +08:00
|
|
|
usb = sdi->conn;
|
2016-07-20 08:59:39 +08:00
|
|
|
if (devc->status == DSL_START) {
|
|
|
|
ret = command_get_status(usb->devhdl, (unsigned char*)status, begin, end);
|
|
|
|
} else if (devc->mstatus_valid) {
|
|
|
|
*status = mstatus;
|
|
|
|
ret = SR_OK;
|
2014-09-24 18:43:42 +08:00
|
|
|
}
|
|
|
|
}
|
2016-07-20 08:59:39 +08:00
|
|
|
|
|
|
|
return ret;
|
2014-09-24 18:43:42 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 19:27:43 +08:00
|
|
|
SR_PRIV struct sr_dev_driver DSLogic_driver_info = {
|
|
|
|
.name = "DSLogic",
|
|
|
|
.longname = "DSLogic (generic driver for DSLogic LA)",
|
|
|
|
.api_version = 1,
|
|
|
|
.init = init,
|
|
|
|
.cleanup = cleanup,
|
|
|
|
.scan = scan,
|
|
|
|
.dev_list = dev_list,
|
2014-09-24 18:43:42 +08:00
|
|
|
.dev_mode_list = dev_mode_list,
|
2014-06-29 19:27:43 +08:00
|
|
|
.dev_clear = dev_clear,
|
|
|
|
.config_get = config_get,
|
|
|
|
.config_set = config_set,
|
|
|
|
.config_list = config_list,
|
|
|
|
.dev_open = dev_open,
|
|
|
|
.dev_close = dev_close,
|
2014-09-24 18:43:42 +08:00
|
|
|
.dev_status_get = dev_status_get,
|
2014-06-29 19:27:43 +08:00
|
|
|
.dev_acquisition_start = dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = dev_acquisition_stop,
|
|
|
|
.priv = NULL,
|
|
|
|
};
|