2012-12-23 19:41:27 +00:00
|
|
|
/*
|
2013-04-23 20:24:30 +00:00
|
|
|
* This file is part of the libsigrok project.
|
2012-12-23 19:41:27 +00:00
|
|
|
*
|
2013-03-24 10:21:00 +00:00
|
|
|
* Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
|
2012-12-23 19:41:27 +00:00
|
|
|
*
|
|
|
|
* 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 "protocol.h"
|
2013-12-07 19:35:13 +00:00
|
|
|
#include <libserialport.h>
|
2012-12-23 19:41:27 +00:00
|
|
|
|
|
|
|
#define SERIALCOMM "115200/8n1"
|
|
|
|
|
2013-03-25 19:40:15 +00:00
|
|
|
static const int32_t hwopts[] = {
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CONN,
|
|
|
|
SR_CONF_SERIALCOMM,
|
2013-01-03 01:15:27 +00:00
|
|
|
};
|
|
|
|
|
2013-03-25 19:40:15 +00:00
|
|
|
static const int32_t hwcaps[] = {
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_LOGIC_ANALYZER,
|
|
|
|
SR_CONF_SAMPLERATE,
|
2013-04-13 22:36:05 +00:00
|
|
|
SR_CONF_TRIGGER_TYPE,
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_CAPTURE_RATIO,
|
|
|
|
SR_CONF_LIMIT_SAMPLES,
|
2013-08-25 05:01:15 +00:00
|
|
|
SR_CONF_EXTERNAL_CLOCK,
|
2013-08-25 05:00:52 +00:00
|
|
|
SR_CONF_PATTERN_MODE,
|
2013-08-28 04:19:56 +00:00
|
|
|
SR_CONF_SWAP,
|
2013-01-21 22:22:47 +00:00
|
|
|
SR_CONF_RLE,
|
2012-12-23 19:41:27 +00:00
|
|
|
};
|
|
|
|
|
2014-01-20 17:16:25 +00:00
|
|
|
#define STR_PATTERN_NONE "None"
|
|
|
|
#define STR_PATTERN_EXTERNAL "External"
|
|
|
|
#define STR_PATTERN_INTERNAL "Internal"
|
2013-08-25 05:00:52 +00:00
|
|
|
|
|
|
|
/* Supported methods of test pattern outputs */
|
|
|
|
enum {
|
|
|
|
/**
|
|
|
|
* Capture pins 31:16 (unbuffered wing) output a test pattern
|
|
|
|
* that can captured on pins 0:15.
|
|
|
|
*/
|
|
|
|
PATTERN_EXTERNAL,
|
|
|
|
|
|
|
|
/** Route test pattern internally to capture buffer. */
|
|
|
|
PATTERN_INTERNAL,
|
|
|
|
};
|
|
|
|
|
2013-11-22 18:56:20 +00:00
|
|
|
static const char *patterns[] = {
|
2014-01-20 17:16:25 +00:00
|
|
|
STR_PATTERN_NONE,
|
2013-11-22 18:56:20 +00:00
|
|
|
STR_PATTERN_EXTERNAL,
|
|
|
|
STR_PATTERN_INTERNAL,
|
|
|
|
};
|
|
|
|
|
2012-12-23 19:41:27 +00:00
|
|
|
/* Probes are numbered 0-31 (on the PCB silkscreen). */
|
|
|
|
SR_PRIV const char *ols_probe_names[NUM_PROBES + 1] = {
|
2012-12-25 23:12:52 +00:00
|
|
|
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12",
|
|
|
|
"13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23",
|
|
|
|
"24", "25", "26", "27", "28", "29", "30", "31",
|
2012-12-23 19:41:27 +00:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2013-01-29 11:55:00 +00:00
|
|
|
/* Default supported samplerates, can be overridden by device metadata. */
|
2013-03-25 19:40:15 +00:00
|
|
|
static const uint64_t samplerates[] = {
|
|
|
|
SR_HZ(10),
|
|
|
|
SR_MHZ(200),
|
|
|
|
SR_HZ(1),
|
2012-12-23 19:41:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SR_PRIV struct sr_dev_driver ols_driver_info;
|
|
|
|
static struct sr_dev_driver *di = &ols_driver_info;
|
|
|
|
|
2013-06-02 14:54:31 +00:00
|
|
|
static int dev_clear(void)
|
|
|
|
{
|
|
|
|
return std_dev_clear(di, NULL);
|
|
|
|
}
|
|
|
|
|
2013-05-05 22:42:18 +00:00
|
|
|
static int init(struct sr_context *sr_ctx)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
2013-05-31 13:46:57 +00:00
|
|
|
return std_init(sr_ctx, di, LOG_PREFIX);
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2013-05-05 22:42:18 +00:00
|
|
|
static GSList *scan(GSList *options)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
2013-01-06 16:41:30 +00:00
|
|
|
struct sr_config *src;
|
2012-12-23 19:41:27 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
|
|
|
struct sr_probe *probe;
|
|
|
|
struct sr_serial_dev_inst *serial;
|
|
|
|
GPollFD probefd;
|
|
|
|
GSList *l, *devices;
|
|
|
|
int ret, i;
|
|
|
|
const char *conn, *serialcomm;
|
|
|
|
char buf[8];
|
|
|
|
|
|
|
|
drvc = di->priv;
|
2013-01-28 19:00:54 +00:00
|
|
|
|
2012-12-23 19:41:27 +00:00
|
|
|
devices = NULL;
|
|
|
|
|
|
|
|
conn = serialcomm = NULL;
|
|
|
|
for (l = options; l; l = l->next) {
|
2013-01-06 16:41:30 +00:00
|
|
|
src = l->data;
|
|
|
|
switch (src->key) {
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_CONN:
|
2013-03-25 19:40:15 +00:00
|
|
|
conn = g_variant_get_string(src->data, NULL);
|
2012-12-23 19:41:27 +00:00
|
|
|
break;
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_SERIALCOMM:
|
2013-03-25 19:40:15 +00:00
|
|
|
serialcomm = g_variant_get_string(src->data, NULL);
|
2012-12-23 19:41:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!conn)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (serialcomm == NULL)
|
|
|
|
serialcomm = SERIALCOMM;
|
|
|
|
|
|
|
|
if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* The discovery procedure is like this: first send the Reset
|
|
|
|
* command (0x00) 5 times, since the device could be anywhere
|
|
|
|
* in a 5-byte command. Then send the ID command (0x02).
|
|
|
|
* If the device responds with 4 bytes ("OLS1" or "SLA1"), we
|
|
|
|
* have a match.
|
|
|
|
*/
|
|
|
|
sr_info("Probing %s.", conn);
|
|
|
|
if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = SR_OK;
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
if ((ret = send_shortcommand(serial, CMD_RESET)) != SR_OK) {
|
|
|
|
sr_err("Port %s is not writable.", conn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret != SR_OK) {
|
|
|
|
serial_close(serial);
|
|
|
|
sr_err("Could not use port %s. Quitting.", conn);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
send_shortcommand(serial, CMD_ID);
|
|
|
|
|
|
|
|
/* Wait 10ms for a response. */
|
|
|
|
g_usleep(10000);
|
|
|
|
|
2013-12-07 19:35:13 +00:00
|
|
|
sp_get_port_handle(serial->data, &probefd.fd);
|
2012-12-23 19:41:27 +00:00
|
|
|
probefd.events = G_IO_IN;
|
|
|
|
g_poll(&probefd, 1, 1);
|
|
|
|
|
|
|
|
if (probefd.revents != G_IO_IN)
|
|
|
|
return NULL;
|
2013-12-30 02:54:55 +00:00
|
|
|
if (serial_read_blocking(serial, buf, 4) != 4)
|
2012-12-23 19:41:27 +00:00
|
|
|
return NULL;
|
|
|
|
if (strncmp(buf, "1SLO", 4) && strncmp(buf, "1ALS", 4))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Definitely using the OLS protocol, check if it supports
|
|
|
|
* the metadata command.
|
|
|
|
*/
|
|
|
|
send_shortcommand(serial, CMD_METADATA);
|
|
|
|
if (g_poll(&probefd, 1, 10) > 0) {
|
|
|
|
/* Got metadata. */
|
|
|
|
sdi = get_metadata(serial);
|
|
|
|
sdi->index = 0;
|
|
|
|
devc = sdi->priv;
|
|
|
|
} else {
|
|
|
|
/* Not an OLS -- some other board that uses the sump protocol. */
|
2013-04-15 22:23:34 +00:00
|
|
|
sr_info("Device does not support metadata.");
|
2012-12-23 19:41:27 +00:00
|
|
|
sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
|
|
|
|
"Sump", "Logic Analyzer", "v1.0");
|
|
|
|
sdi->driver = di;
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
|
|
|
|
ols_probe_names[i])))
|
|
|
|
return 0;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
|
|
|
}
|
2013-04-15 16:28:16 +00:00
|
|
|
devc = ols_dev_new();
|
2012-12-23 19:41:27 +00:00
|
|
|
sdi->priv = devc;
|
|
|
|
}
|
2013-04-15 16:28:16 +00:00
|
|
|
/* Configure samplerate and divider. */
|
|
|
|
if (ols_set_samplerate(sdi, DEFAULT_SAMPLERATE) != SR_OK)
|
|
|
|
sr_dbg("Failed to set default samplerate (%"PRIu64").",
|
|
|
|
DEFAULT_SAMPLERATE);
|
|
|
|
/* Clear trigger masks, values and stages. */
|
|
|
|
ols_configure_probes(sdi);
|
2013-04-22 11:40:40 +00:00
|
|
|
sdi->inst_type = SR_INST_SERIAL;
|
|
|
|
sdi->conn = serial;
|
2013-04-15 16:28:16 +00:00
|
|
|
|
2012-12-23 19:41:27 +00:00
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
|
|
|
devices = g_slist_append(devices, sdi);
|
|
|
|
|
|
|
|
serial_close(serial);
|
|
|
|
|
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
2013-05-05 22:42:18 +00:00
|
|
|
static GSList *dev_list(void)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
2013-02-02 18:52:26 +00:00
|
|
|
return ((struct drv_context *)(di->priv))->instances;
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:54:31 +00:00
|
|
|
static int cleanup(void)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
2013-06-02 14:54:31 +00:00
|
|
|
return dev_clear();
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_probe_group *probe_group)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
|
|
|
struct dev_context *devc;
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
(void)probe_group;
|
|
|
|
|
2013-04-13 22:36:05 +00:00
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
|
|
|
|
devc = sdi->priv;
|
2013-01-24 18:19:09 +00:00
|
|
|
switch (id) {
|
2013-01-25 02:17:36 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-04-13 22:36:05 +00:00
|
|
|
*data = g_variant_new_uint64(devc->cur_samplerate);
|
|
|
|
break;
|
|
|
|
case SR_CONF_CAPTURE_RATIO:
|
|
|
|
*data = g_variant_new_uint64(devc->capture_ratio);
|
|
|
|
break;
|
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
|
|
|
*data = g_variant_new_uint64(devc->limit_samples);
|
|
|
|
break;
|
2013-08-25 05:00:52 +00:00
|
|
|
case SR_CONF_PATTERN_MODE:
|
|
|
|
if (devc->flag_reg & FLAG_EXTERNAL_TEST_MODE)
|
|
|
|
*data = g_variant_new_string(STR_PATTERN_EXTERNAL);
|
|
|
|
else if (devc->flag_reg & FLAG_INTERNAL_TEST_MODE)
|
|
|
|
*data = g_variant_new_string(STR_PATTERN_INTERNAL);
|
2014-01-20 17:16:25 +00:00
|
|
|
else
|
|
|
|
*data = g_variant_new_string(STR_PATTERN_NONE);
|
2013-08-25 05:00:52 +00:00
|
|
|
break;
|
2013-04-13 22:36:05 +00:00
|
|
|
case SR_CONF_RLE:
|
|
|
|
*data = g_variant_new_boolean(devc->flag_reg & FLAG_RLE ? TRUE : FALSE);
|
2014-01-09 12:08:32 +00:00
|
|
|
break;
|
2012-12-23 19:41:27 +00:00
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_probe_group *probe_group)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
|
|
|
struct dev_context *devc;
|
2014-01-20 17:16:25 +00:00
|
|
|
uint16_t flag;
|
2013-03-25 19:40:15 +00:00
|
|
|
uint64_t tmp_u64;
|
2014-01-20 17:16:25 +00:00
|
|
|
int ret;
|
2013-08-25 05:00:52 +00:00
|
|
|
const char *stropt;
|
2012-12-23 19:41:27 +00:00
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
(void)probe_group;
|
|
|
|
|
2013-04-23 13:14:42 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
2012-12-23 19:41:27 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
|
2013-01-24 18:19:09 +00:00
|
|
|
switch (id) {
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-03-25 19:40:15 +00:00
|
|
|
tmp_u64 = g_variant_get_uint64(data);
|
|
|
|
if (tmp_u64 < samplerates[0] || tmp_u64 > samplerates[1])
|
|
|
|
return SR_ERR_SAMPLERATE;
|
|
|
|
ret = ols_set_samplerate(sdi, g_variant_get_uint64(data));
|
2012-12-23 19:41:27 +00:00
|
|
|
break;
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
2013-03-25 19:40:15 +00:00
|
|
|
tmp_u64 = g_variant_get_uint64(data);
|
|
|
|
if (tmp_u64 < MIN_NUM_SAMPLES)
|
2012-12-23 19:41:27 +00:00
|
|
|
return SR_ERR;
|
2013-03-25 19:40:15 +00:00
|
|
|
devc->limit_samples = tmp_u64;
|
2012-12-23 19:41:27 +00:00
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_CAPTURE_RATIO:
|
2013-03-25 19:40:15 +00:00
|
|
|
devc->capture_ratio = g_variant_get_uint64(data);
|
2012-12-23 19:41:27 +00:00
|
|
|
if (devc->capture_ratio < 0 || devc->capture_ratio > 100) {
|
|
|
|
devc->capture_ratio = 0;
|
|
|
|
ret = SR_ERR;
|
|
|
|
} else
|
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
2013-08-25 05:01:15 +00:00
|
|
|
case SR_CONF_EXTERNAL_CLOCK:
|
|
|
|
if (g_variant_get_boolean(data)) {
|
|
|
|
sr_info("Enabling external clock.");
|
|
|
|
devc->flag_reg |= FLAG_CLOCK_EXTERNAL;
|
|
|
|
} else {
|
|
|
|
sr_info("Disabled external clock.");
|
|
|
|
devc->flag_reg &= ~FLAG_CLOCK_EXTERNAL;
|
|
|
|
}
|
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
2013-08-25 05:00:52 +00:00
|
|
|
case SR_CONF_PATTERN_MODE:
|
|
|
|
stropt = g_variant_get_string(data, NULL);
|
|
|
|
ret = SR_OK;
|
2014-01-20 17:16:25 +00:00
|
|
|
flag = 0xffff;
|
|
|
|
if (!strcmp(stropt, STR_PATTERN_NONE)) {
|
|
|
|
sr_info("Disabling test modes.");
|
|
|
|
flag = 0x0000;
|
|
|
|
}else if (!strcmp(stropt, STR_PATTERN_INTERNAL)) {
|
2013-08-25 05:00:52 +00:00
|
|
|
sr_info("Enabling internal test mode.");
|
2014-01-20 17:16:25 +00:00
|
|
|
flag = FLAG_INTERNAL_TEST_MODE;
|
2013-08-25 05:00:52 +00:00
|
|
|
} else if (!strcmp(stropt, STR_PATTERN_EXTERNAL)) {
|
|
|
|
sr_info("Enabling external test mode.");
|
2014-01-20 17:16:25 +00:00
|
|
|
flag = FLAG_EXTERNAL_TEST_MODE;
|
2013-08-25 05:00:52 +00:00
|
|
|
} else {
|
|
|
|
ret = SR_ERR;
|
|
|
|
}
|
2014-01-20 17:16:25 +00:00
|
|
|
if (flag != 0xffff) {
|
|
|
|
devc->flag_reg &= ~(FLAG_INTERNAL_TEST_MODE | FLAG_EXTERNAL_TEST_MODE);
|
|
|
|
devc->flag_reg |= flag;
|
|
|
|
}
|
2013-08-25 05:00:52 +00:00
|
|
|
break;
|
2013-08-28 04:19:56 +00:00
|
|
|
case SR_CONF_SWAP:
|
|
|
|
if (g_variant_get_boolean(data)) {
|
|
|
|
sr_info("Enabling channel swapping.");
|
|
|
|
devc->flag_reg |= FLAG_SWAP_PROBES;
|
|
|
|
} else {
|
|
|
|
sr_info("Disabling channel swapping.");
|
|
|
|
devc->flag_reg &= ~FLAG_SWAP_PROBES;
|
|
|
|
}
|
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
|
|
|
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_RLE:
|
2013-03-25 19:40:15 +00:00
|
|
|
if (g_variant_get_boolean(data)) {
|
2012-12-23 19:41:27 +00:00
|
|
|
sr_info("Enabling RLE.");
|
|
|
|
devc->flag_reg |= FLAG_RLE;
|
2013-03-25 19:40:40 +00:00
|
|
|
} else {
|
|
|
|
sr_info("Disabling RLE.");
|
|
|
|
devc->flag_reg &= ~FLAG_RLE;
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
ret = SR_ERR_NA;
|
2012-12-23 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
|
|
|
|
const struct sr_probe_group *probe_group)
|
2013-01-25 01:32:05 +00:00
|
|
|
{
|
2014-01-19 16:18:59 +00:00
|
|
|
struct dev_context *devc;
|
|
|
|
GVariant *gvar, *grange[2];
|
2013-03-25 19:40:15 +00:00
|
|
|
GVariantBuilder gvb;
|
2014-01-19 16:18:59 +00:00
|
|
|
int num_channels, i;
|
2013-01-25 01:32:05 +00:00
|
|
|
|
2013-04-20 00:00:49 +00:00
|
|
|
(void)probe_group;
|
2013-01-25 01:32:05 +00:00
|
|
|
|
|
|
|
switch (key) {
|
2013-01-25 14:09:20 +00:00
|
|
|
case SR_CONF_SCAN_OPTIONS:
|
2013-03-25 19:40:15 +00:00
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
|
2013-01-25 14:09:20 +00:00
|
|
|
break;
|
2013-01-25 14:01:49 +00:00
|
|
|
case SR_CONF_DEVICE_OPTIONS:
|
2013-03-25 19:40:15 +00:00
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
|
2013-01-25 14:01:49 +00:00
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-03-25 19:40:15 +00:00
|
|
|
g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
|
|
|
|
gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
|
|
|
|
ARRAY_SIZE(samplerates), sizeof(uint64_t));
|
|
|
|
g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
|
|
|
|
*data = g_variant_builder_end(&gvb);
|
2013-01-25 01:32:05 +00:00
|
|
|
break;
|
2013-01-25 10:52:27 +00:00
|
|
|
case SR_CONF_TRIGGER_TYPE:
|
2013-03-25 19:40:15 +00:00
|
|
|
*data = g_variant_new_string(TRIGGER_TYPE);
|
2013-01-25 10:52:27 +00:00
|
|
|
break;
|
2013-11-22 18:56:20 +00:00
|
|
|
case SR_CONF_PATTERN_MODE:
|
|
|
|
*data = g_variant_new_strv(patterns, ARRAY_SIZE(patterns));
|
|
|
|
break;
|
2014-01-19 16:18:59 +00:00
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
|
|
|
if (!sdi)
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
devc = sdi->priv;
|
|
|
|
if (devc->flag_reg & FLAG_RLE)
|
|
|
|
return SR_ERR_NA;
|
|
|
|
if (devc->max_samples == 0)
|
|
|
|
/* Device didn't specify sample memory size in metadata. */
|
|
|
|
return SR_ERR_NA;
|
|
|
|
/*
|
|
|
|
* Channel groups are turned off if no probes in that group are
|
|
|
|
* enabled, making more room for samples for the enabled group.
|
|
|
|
*/
|
|
|
|
ols_configure_probes(sdi);
|
|
|
|
num_channels = 0;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (devc->probe_mask & (0xff << (i * 8)))
|
|
|
|
num_channels++;
|
|
|
|
}
|
|
|
|
grange[0] = g_variant_new_uint64(MIN_NUM_SAMPLES);
|
|
|
|
grange[1] = g_variant_new_uint64(devc->max_samples / num_channels);
|
|
|
|
*data = g_variant_new_tuple(grange, 2);
|
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2013-01-25 01:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2014-01-29 07:22:02 +00:00
|
|
|
static int set_trigger(const struct sr_dev_inst *sdi, int stage)
|
|
|
|
{
|
|
|
|
struct dev_context *devc;
|
|
|
|
struct sr_serial_dev_inst *serial;
|
|
|
|
uint8_t cmd, arg[4];
|
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
serial = sdi->conn;
|
|
|
|
|
|
|
|
cmd = CMD_SET_TRIGGER_MASK + stage * 4;
|
|
|
|
arg[0] = devc->trigger_mask[stage] & 0xff;
|
|
|
|
arg[1] = (devc->trigger_mask[stage] >> 8) & 0xff;
|
|
|
|
arg[2] = (devc->trigger_mask[stage] >> 16) & 0xff;
|
|
|
|
arg[3] = (devc->trigger_mask[stage] >> 24) & 0xff;
|
|
|
|
if (send_longcommand(serial, cmd, arg) != SR_OK)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
cmd = CMD_SET_TRIGGER_VALUE + stage * 4;
|
|
|
|
arg[0] = devc->trigger_value[stage] & 0xff;
|
|
|
|
arg[1] = (devc->trigger_value[stage] >> 8) & 0xff;
|
|
|
|
arg[2] = (devc->trigger_value[stage] >> 16) & 0xff;
|
|
|
|
arg[3] = (devc->trigger_value[stage] >> 24) & 0xff;
|
|
|
|
if (send_longcommand(serial, cmd, arg) != SR_OK)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
cmd = CMD_SET_TRIGGER_CONFIG + stage * 4;
|
|
|
|
arg[0] = arg[1] = arg[3] = 0x00;
|
|
|
|
arg[2] = stage;
|
|
|
|
if (stage == devc->num_stages)
|
|
|
|
/* Last stage, fire when this one matches. */
|
|
|
|
arg[3] |= TRIGGER_START;
|
|
|
|
if (send_longcommand(serial, cmd, arg) != SR_OK)
|
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-05 22:42:18 +00:00
|
|
|
static int dev_acquisition_start(const struct sr_dev_inst *sdi,
|
2012-12-23 19:41:27 +00:00
|
|
|
void *cb_data)
|
|
|
|
{
|
|
|
|
struct dev_context *devc;
|
2013-04-22 11:40:40 +00:00
|
|
|
struct sr_serial_dev_inst *serial;
|
2014-01-23 00:09:16 +00:00
|
|
|
uint16_t samplecount, readcount, delaycount;
|
2014-01-29 07:22:02 +00:00
|
|
|
uint8_t changrp_mask, arg[4];
|
2012-12-23 19:41:27 +00:00
|
|
|
int num_channels;
|
2014-01-29 07:22:02 +00:00
|
|
|
int ret, i;
|
2012-12-23 19:41:27 +00:00
|
|
|
|
2013-04-23 13:14:42 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
2012-12-23 19:41:27 +00:00
|
|
|
devc = sdi->priv;
|
2013-04-22 11:40:40 +00:00
|
|
|
serial = sdi->conn;
|
2012-12-23 19:41:27 +00:00
|
|
|
|
|
|
|
if (ols_configure_probes(sdi) != SR_OK) {
|
|
|
|
sr_err("Failed to configure probes.");
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable/disable channel groups in the flag register according to the
|
|
|
|
* probe mask. Calculate this here, because num_channels is needed
|
|
|
|
* to limit readcount.
|
|
|
|
*/
|
|
|
|
changrp_mask = 0;
|
|
|
|
num_channels = 0;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (devc->probe_mask & (0xff << (i * 8))) {
|
|
|
|
changrp_mask |= (1 << i);
|
|
|
|
num_channels++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Limit readcount to prevent reading past the end of the hardware
|
|
|
|
* buffer.
|
|
|
|
*/
|
2014-01-23 00:09:16 +00:00
|
|
|
samplecount = MIN(devc->max_samples / num_channels, devc->limit_samples);
|
|
|
|
readcount = samplecount / 4;
|
2014-01-29 07:22:02 +00:00
|
|
|
|
|
|
|
/* Rather read too many samples than too few. */
|
|
|
|
if (samplecount % 4 != 0)
|
2014-01-23 00:09:16 +00:00
|
|
|
readcount++;
|
2012-12-23 19:41:27 +00:00
|
|
|
|
2014-01-29 07:22:02 +00:00
|
|
|
/* Basic triggers. */
|
|
|
|
if (devc->trigger_mask[0] != 0x00000000) {
|
|
|
|
/* At least one probe has a trigger on it. */
|
2012-12-23 19:41:27 +00:00
|
|
|
delaycount = readcount * (1 - devc->capture_ratio / 100.0);
|
|
|
|
devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
|
2014-01-29 07:22:02 +00:00
|
|
|
for (i = 0; i <= devc->num_stages; i++) {
|
|
|
|
sr_dbg("Setting stage %d trigger.", i);
|
|
|
|
if ((ret = set_trigger(sdi, i)) != SR_OK)
|
|
|
|
return ret;
|
|
|
|
}
|
2012-12-23 19:41:27 +00:00
|
|
|
} else {
|
2014-01-29 07:22:02 +00:00
|
|
|
/* No triggers configured, force trigger on first stage. */
|
|
|
|
sr_dbg("Forcing trigger at stage 0.");
|
|
|
|
if ((ret = set_trigger(sdi, 0)) != SR_OK)
|
|
|
|
return ret;
|
2012-12-23 19:41:27 +00:00
|
|
|
delaycount = readcount;
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:16:25 +00:00
|
|
|
/* Samplerate. */
|
2014-01-29 07:22:02 +00:00
|
|
|
sr_dbg("Setting samplerate to %" PRIu64 "Hz (divider %u)",
|
2014-01-20 17:16:25 +00:00
|
|
|
devc->cur_samplerate, devc->cur_samplerate_divider);
|
2014-01-29 07:22:02 +00:00
|
|
|
arg[0] = devc->cur_samplerate_divider & 0xff;
|
|
|
|
arg[1] = (devc->cur_samplerate_divider & 0xff00) >> 8;
|
|
|
|
arg[2] = (devc->cur_samplerate_divider & 0xff0000) >> 16;
|
|
|
|
arg[3] = 0x00;
|
|
|
|
if (send_longcommand(serial, CMD_SET_DIVIDER, arg) != SR_OK)
|
2012-12-23 19:41:27 +00:00
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
/* Send sample limit and pre/post-trigger capture ratio. */
|
2014-01-29 07:22:02 +00:00
|
|
|
sr_dbg("Setting sample limit %d, trigger point at %d",
|
2014-01-20 17:16:25 +00:00
|
|
|
(readcount - 1) * 4, (delaycount - 1) * 4);
|
2014-01-29 07:22:02 +00:00
|
|
|
arg[0] = ((readcount - 1) & 0xff);
|
|
|
|
arg[1] = ((readcount - 1) & 0xff00) >> 8;
|
|
|
|
arg[2] = ((delaycount - 1) & 0xff);
|
|
|
|
arg[3] = ((delaycount - 1) & 0xff00) >> 8;
|
|
|
|
if (send_longcommand(serial, CMD_CAPTURE_SIZE, arg) != SR_OK)
|
2012-12-23 19:41:27 +00:00
|
|
|
return SR_ERR;
|
|
|
|
|
2014-01-20 17:16:25 +00:00
|
|
|
/* Flag register. */
|
2014-01-30 10:58:07 +00:00
|
|
|
sr_dbg("Setting intpat %s, extpat %s, RLE %s, noise_filter %s, demux %s",
|
|
|
|
devc->flag_reg & FLAG_INTERNAL_TEST_MODE ? "on": "off",
|
2014-01-20 17:16:25 +00:00
|
|
|
devc->flag_reg & FLAG_EXTERNAL_TEST_MODE ? "on": "off",
|
2014-01-30 10:58:07 +00:00
|
|
|
devc->flag_reg & FLAG_RLE ? "on" : "off",
|
|
|
|
devc->flag_reg & FLAG_FILTER ? "on": "off",
|
|
|
|
devc->flag_reg & FLAG_DEMUX ? "on" : "off");
|
2014-01-20 17:16:25 +00:00
|
|
|
/* 1 means "disable channel". */
|
2012-12-23 19:41:27 +00:00
|
|
|
devc->flag_reg |= ~(changrp_mask << 2) & 0x3c;
|
2014-01-29 07:22:02 +00:00
|
|
|
arg[0] = devc->flag_reg & 0xff;
|
|
|
|
arg[1] = devc->flag_reg >> 8;
|
|
|
|
arg[2] = arg[3] = 0x00;
|
|
|
|
if (send_longcommand(serial, CMD_SET_FLAGS, arg) != SR_OK)
|
2012-12-23 19:41:27 +00:00
|
|
|
return SR_ERR;
|
|
|
|
|
|
|
|
/* Start acquisition on the device. */
|
2013-04-22 11:40:40 +00:00
|
|
|
if (send_shortcommand(serial, CMD_RUN) != SR_OK)
|
2012-12-23 19:41:27 +00:00
|
|
|
return SR_ERR;
|
|
|
|
|
2013-04-15 16:28:16 +00:00
|
|
|
/* Reset all operational states. */
|
2014-01-20 17:16:25 +00:00
|
|
|
devc->rle_count = devc->num_transfers = 0;
|
|
|
|
devc->num_samples = devc->num_bytes = 0;
|
2014-01-30 10:58:07 +00:00
|
|
|
devc->cnt_bytes = devc->cnt_samples = devc->cnt_samples_rle = 0;
|
2013-08-26 21:42:09 +00:00
|
|
|
memset(devc->sample, 0, 4);
|
2013-04-15 16:28:16 +00:00
|
|
|
|
2013-02-06 18:57:32 +00:00
|
|
|
/* Send header packet to the session bus. */
|
2013-05-03 19:59:32 +00:00
|
|
|
std_session_send_df_header(cb_data, LOG_PREFIX);
|
2013-02-06 18:57:32 +00:00
|
|
|
|
2013-11-30 12:54:02 +00:00
|
|
|
serial_source_add(serial, G_IO_IN, -1, ols_receive_data, cb_data);
|
2012-12-23 19:41:27 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-05 22:42:18 +00:00
|
|
|
static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
|
2012-12-23 19:41:27 +00:00
|
|
|
{
|
|
|
|
(void)cb_data;
|
|
|
|
|
|
|
|
abort_acquisition(sdi);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
SR_PRIV struct sr_dev_driver ols_driver_info = {
|
|
|
|
.name = "ols",
|
|
|
|
.longname = "Openbench Logic Sniffer",
|
|
|
|
.api_version = 1,
|
2013-05-05 22:42:18 +00:00
|
|
|
.init = init,
|
2013-06-02 14:54:31 +00:00
|
|
|
.cleanup = cleanup,
|
2013-05-05 22:42:18 +00:00
|
|
|
.scan = scan,
|
|
|
|
.dev_list = dev_list,
|
|
|
|
.dev_clear = dev_clear,
|
2013-01-24 18:19:09 +00:00
|
|
|
.config_get = config_get,
|
|
|
|
.config_set = config_set,
|
2013-01-25 01:32:05 +00:00
|
|
|
.config_list = config_list,
|
2013-12-07 20:36:27 +00:00
|
|
|
.dev_open = std_serial_dev_open,
|
2013-12-07 18:47:43 +00:00
|
|
|
.dev_close = std_serial_dev_close,
|
2013-05-05 22:42:18 +00:00
|
|
|
.dev_acquisition_start = dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = dev_acquisition_stop,
|
2012-12-23 19:41:27 +00:00
|
|
|
.priv = NULL,
|
|
|
|
};
|