2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
2012-02-13 13:31:51 +00:00
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
2010-04-02 18:18: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 <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2011-02-02 12:13:13 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#else
|
2010-04-02 18:18:27 +00:00
|
|
|
#include <termios.h>
|
2010-04-22 01:39:02 +00:00
|
|
|
#endif
|
2010-04-02 18:18:27 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <inttypes.h>
|
2010-04-22 01:39:02 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
/* TODO */
|
|
|
|
#else
|
2010-04-08 14:49:39 +00:00
|
|
|
#include <arpa/inet.h>
|
2010-04-22 01:39:02 +00:00
|
|
|
#endif
|
2010-04-02 18:18:27 +00:00
|
|
|
#include <glib.h>
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2011-04-03 04:15:45 +00:00
|
|
|
#include "ols.h"
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-11 00:25:10 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define O_NONBLOCK FIONBIO
|
|
|
|
#endif
|
|
|
|
|
2012-05-07 12:57:43 +00:00
|
|
|
static const int hwcaps[] = {
|
2011-01-30 16:58:41 +00:00
|
|
|
SR_HWCAP_LOGIC_ANALYZER,
|
|
|
|
SR_HWCAP_SAMPLERATE,
|
|
|
|
SR_HWCAP_CAPTURE_RATIO,
|
|
|
|
SR_HWCAP_LIMIT_SAMPLES,
|
2011-10-29 02:57:17 +00:00
|
|
|
SR_HWCAP_RLE,
|
2010-04-15 20:16:35 +00:00
|
|
|
0,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-02-28 00:09:29 +00:00
|
|
|
/* Probes are numbered 0-31 (on the PCB silkscreen). */
|
2011-12-29 18:50:14 +00:00
|
|
|
static const char *probe_names[NUM_PROBES + 1] = {
|
2011-12-29 16:04:31 +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",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2011-04-03 04:15:45 +00:00
|
|
|
/* default supported samplerates, can be overridden by device metadata */
|
2012-05-07 14:07:06 +00:00
|
|
|
static const struct sr_samplerates samplerates = {
|
2011-02-22 17:05:16 +00:00
|
|
|
SR_HZ(10),
|
2011-02-22 16:57:03 +00:00
|
|
|
SR_MHZ(200),
|
2011-02-22 17:05:16 +00:00
|
|
|
SR_HZ(1),
|
|
|
|
NULL,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-07-13 11:26:30 +00:00
|
|
|
SR_PRIV struct sr_dev_driver ols_driver_info;
|
|
|
|
static struct sr_dev_driver *odi = &ols_driver_info;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-08 14:49:39 +00:00
|
|
|
static int send_shortcommand(int fd, uint8_t command)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
char buf[1];
|
|
|
|
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: sending cmd 0x%.2x", command);
|
2010-04-02 18:18:27 +00:00
|
|
|
buf[0] = command;
|
2011-01-11 23:43:00 +00:00
|
|
|
if (serial_write(fd, buf, 1) != 1)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 14:49:39 +00:00
|
|
|
static int send_longcommand(int fd, uint8_t command, uint32_t data)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
char buf[5];
|
|
|
|
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: sending cmd 0x%.2x data 0x%.8x", command, data);
|
2010-04-02 18:18:27 +00:00
|
|
|
buf[0] = command;
|
2010-04-08 14:49:39 +00:00
|
|
|
buf[1] = (data & 0xff000000) >> 24;
|
|
|
|
buf[2] = (data & 0xff0000) >> 16;
|
|
|
|
buf[3] = (data & 0xff00) >> 8;
|
|
|
|
buf[4] = data & 0xff;
|
2011-01-11 23:43:00 +00:00
|
|
|
if (serial_write(fd, buf, 5) != 5)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-08-05 16:56:12 +00:00
|
|
|
static int configure_probes(const struct sr_dev_inst *sdi)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-05 16:56:12 +00:00
|
|
|
struct dev_context *devc;
|
2012-05-07 14:02:02 +00:00
|
|
|
const struct sr_probe *probe;
|
|
|
|
const GSList *l;
|
2010-04-08 14:49:39 +00:00
|
|
|
int probe_bit, stage, i;
|
2010-04-02 18:18:27 +00:00
|
|
|
char *tc;
|
|
|
|
|
2012-08-05 16:56:12 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->probe_mask = 0;
|
2010-04-15 20:16:35 +00:00
|
|
|
for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->trigger_mask[i] = 0;
|
|
|
|
devc->trigger_value[i] = 0;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->num_stages = 0;
|
2012-08-05 16:56:12 +00:00
|
|
|
for (l = sdi->probes; l; l = l->next) {
|
2012-05-07 14:02:02 +00:00
|
|
|
probe = (const struct sr_probe *)l->data;
|
2010-04-15 20:16:35 +00:00
|
|
|
if (!probe->enabled)
|
2010-04-08 14:49:39 +00:00
|
|
|
continue;
|
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/*
|
|
|
|
* Set up the probe mask for later configuration into the
|
|
|
|
* flag register.
|
|
|
|
*/
|
2012-07-24 15:13:25 +00:00
|
|
|
probe_bit = 1 << (probe->index);
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->probe_mask |= probe_bit;
|
2010-04-08 14:49:39 +00:00
|
|
|
|
2010-08-05 01:54:33 +00:00
|
|
|
if (!probe->trigger)
|
2010-04-08 14:49:39 +00:00
|
|
|
continue;
|
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Configure trigger mask and value. */
|
2010-04-08 14:49:39 +00:00
|
|
|
stage = 0;
|
2010-04-15 20:16:35 +00:00
|
|
|
for (tc = probe->trigger; tc && *tc; tc++) {
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->trigger_mask[stage] |= probe_bit;
|
2010-04-15 20:16:35 +00:00
|
|
|
if (*tc == '1')
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->trigger_value[stage] |= probe_bit;
|
2010-04-08 14:49:39 +00:00
|
|
|
stage++;
|
2010-04-15 20:16:35 +00:00
|
|
|
if (stage > 3)
|
|
|
|
/*
|
|
|
|
* TODO: Only supporting parallel mode, with
|
|
|
|
* up to 4 stages.
|
|
|
|
*/
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
if (stage > devc->num_stages)
|
|
|
|
devc->num_stages = stage;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 01:54:33 +00:00
|
|
|
static uint32_t reverse16(uint32_t in)
|
2010-04-08 14:49:39 +00:00
|
|
|
{
|
|
|
|
uint32_t out;
|
|
|
|
|
2010-08-05 01:54:33 +00:00
|
|
|
out = (in & 0xff) << 8;
|
|
|
|
out |= (in & 0xff00) >> 8;
|
|
|
|
out |= (in & 0xff0000) << 8;
|
|
|
|
out |= (in & 0xff000000) >> 8;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t reverse32(uint32_t in)
|
|
|
|
{
|
|
|
|
uint32_t out;
|
|
|
|
|
|
|
|
out = (in & 0xff) << 24;
|
|
|
|
out |= (in & 0xff00) << 8;
|
|
|
|
out |= (in & 0xff0000) >> 8;
|
|
|
|
out |= (in & 0xff000000) >> 24;
|
|
|
|
|
|
|
|
return out;
|
2010-04-08 14:49:39 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
static struct dev_context *ols_dev_new(void)
|
2011-04-03 04:15:45 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2011-04-03 04:15:45 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
/* TODO: Is 'devc' ever g_free()'d? */
|
|
|
|
if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
|
|
|
|
sr_err("ols: %s: devc malloc failed", __func__);
|
2011-04-16 12:17:51 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->trigger_at = -1;
|
|
|
|
devc->probe_mask = 0xffffffff;
|
|
|
|
devc->cur_samplerate = SR_KHZ(200);
|
|
|
|
devc->serial = NULL;
|
2011-04-03 04:15:45 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
return devc;
|
2011-04-03 04:15:45 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
static struct sr_dev_inst *get_metadata(int fd)
|
2011-04-03 04:15:45 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2012-07-13 20:16:37 +00:00
|
|
|
struct sr_probe *probe;
|
|
|
|
uint32_t tmp_int, ui;
|
2011-04-03 04:15:45 +00:00
|
|
|
uint8_t key, type, token;
|
2012-02-17 21:25:01 +00:00
|
|
|
GString *tmp_str, *devname, *version;
|
2012-07-13 20:16:37 +00:00
|
|
|
guchar tmp_c;
|
2011-04-03 04:15:45 +00:00
|
|
|
|
2012-02-13 14:31:59 +00:00
|
|
|
sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, NULL, NULL, NULL);
|
2012-07-15 02:08:49 +00:00
|
|
|
sdi->driver = odi;
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = ols_dev_new();
|
|
|
|
sdi->priv = devc;
|
2011-04-03 04:15:45 +00:00
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
devname = g_string_new("");
|
2011-04-03 04:15:45 +00:00
|
|
|
version = g_string_new("");
|
|
|
|
|
|
|
|
key = 0xff;
|
|
|
|
while (key) {
|
|
|
|
if (serial_read(fd, &key, 1) != 1 || key == 0x00)
|
|
|
|
break;
|
|
|
|
type = key >> 5;
|
|
|
|
token = key & 0x1f;
|
|
|
|
switch (type) {
|
|
|
|
case 0:
|
|
|
|
/* NULL-terminated string */
|
|
|
|
tmp_str = g_string_new("");
|
|
|
|
while (serial_read(fd, &tmp_c, 1) == 1 && tmp_c != '\0')
|
|
|
|
g_string_append_c(tmp_str, tmp_c);
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: got metadata key 0x%.2x value '%s'",
|
|
|
|
key, tmp_str->str);
|
2011-04-03 04:15:45 +00:00
|
|
|
switch (token) {
|
|
|
|
case 0x01:
|
|
|
|
/* Device name */
|
2012-02-17 21:25:01 +00:00
|
|
|
devname = g_string_append(devname, tmp_str->str);
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
case 0x02:
|
|
|
|
/* FPGA firmware version */
|
|
|
|
if (version->len)
|
|
|
|
g_string_append(version, ", ");
|
|
|
|
g_string_append(version, "FPGA version ");
|
|
|
|
g_string_append(version, tmp_str->str);
|
|
|
|
break;
|
|
|
|
case 0x03:
|
|
|
|
/* Ancillary version */
|
|
|
|
if (version->len)
|
|
|
|
g_string_append(version, ", ");
|
|
|
|
g_string_append(version, "Ancillary version ");
|
|
|
|
g_string_append(version, tmp_str->str);
|
|
|
|
break;
|
|
|
|
default:
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_info("ols: unknown token 0x%.2x: '%s'",
|
|
|
|
token, tmp_str->str);
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_string_free(tmp_str, TRUE);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* 32-bit unsigned integer */
|
|
|
|
if (serial_read(fd, &tmp_int, 4) != 4)
|
|
|
|
break;
|
|
|
|
tmp_int = reverse32(tmp_int);
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: got metadata key 0x%.2x value 0x%.8x",
|
|
|
|
key, tmp_int);
|
2011-04-03 04:15:45 +00:00
|
|
|
switch (token) {
|
|
|
|
case 0x00:
|
|
|
|
/* Number of usable probes */
|
2012-07-13 20:16:37 +00:00
|
|
|
for (ui = 0; ui < tmp_int; ui++) {
|
|
|
|
if (!(probe = sr_probe_new(ui, SR_PROBE_LOGIC, TRUE,
|
|
|
|
probe_names[ui])))
|
|
|
|
return 0;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
|
|
|
}
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
case 0x01:
|
|
|
|
/* Amount of sample memory available (bytes) */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->max_samples = tmp_int;
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
case 0x02:
|
|
|
|
/* Amount of dynamic memory available (bytes) */
|
|
|
|
/* what is this for? */
|
|
|
|
break;
|
|
|
|
case 0x03:
|
|
|
|
/* Maximum sample rate (hz) */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->max_samplerate = tmp_int;
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
case 0x04:
|
|
|
|
/* protocol version */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->protocol_version = tmp_int;
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_info("ols: unknown token 0x%.2x: 0x%.8x",
|
|
|
|
token, tmp_int);
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* 8-bit unsigned integer */
|
|
|
|
if (serial_read(fd, &tmp_c, 1) != 1)
|
|
|
|
break;
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: got metadata key 0x%.2x value 0x%.2x",
|
|
|
|
key, tmp_c);
|
2011-04-03 04:15:45 +00:00
|
|
|
switch (token) {
|
|
|
|
case 0x00:
|
|
|
|
/* Number of usable probes */
|
2012-07-13 20:16:37 +00:00
|
|
|
for (ui = 0; ui < tmp_c; ui++) {
|
|
|
|
if (!(probe = sr_probe_new(ui, SR_PROBE_LOGIC, TRUE,
|
|
|
|
probe_names[ui])))
|
|
|
|
return 0;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
|
|
|
}
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
case 0x01:
|
|
|
|
/* protocol version */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->protocol_version = tmp_c;
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_info("ols: unknown token 0x%.2x: 0x%.2x",
|
|
|
|
token, tmp_c);
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* unknown type */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
sdi->model = devname->str;
|
2011-04-03 04:15:45 +00:00
|
|
|
sdi->version = version->str;
|
2012-02-17 21:25:01 +00:00
|
|
|
g_string_free(devname, FALSE);
|
2011-04-03 04:15:45 +00:00
|
|
|
g_string_free(version, FALSE);
|
|
|
|
|
|
|
|
return sdi;
|
|
|
|
}
|
|
|
|
|
2012-07-03 10:55:46 +00:00
|
|
|
static int hw_init(void)
|
2012-07-05 09:27:48 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct drv_context *drvc;
|
2012-07-05 09:27:48 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
|
|
|
|
sr_err("ols: driver context malloc failed.");
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
odi->priv = drvc;
|
2012-07-05 09:27:48 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-07-13 20:16:37 +00:00
|
|
|
static GSList *hw_scan(GSList *options)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 22:09:33 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
2012-07-13 20:16:37 +00:00
|
|
|
struct sr_probe *probe;
|
|
|
|
GSList *devices, *ports, *l;
|
2011-04-03 04:15:45 +00:00
|
|
|
GPollFD *fds, probefd;
|
2012-07-13 20:16:37 +00:00
|
|
|
int devcnt, final_devcnt, num_ports, fd, ret, i, j;
|
2012-02-17 21:25:01 +00:00
|
|
|
char buf[8], **dev_names, **serial_params;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-07-13 20:16:37 +00:00
|
|
|
(void)options;
|
2012-08-02 22:09:33 +00:00
|
|
|
drvc = odi->priv;
|
2011-04-17 12:51:54 +00:00
|
|
|
final_devcnt = 0;
|
2012-07-13 20:16:37 +00:00
|
|
|
devices = NULL;
|
2011-04-17 12:51:54 +00:00
|
|
|
|
2012-07-03 10:55:46 +00:00
|
|
|
/* Scan all serial ports. */
|
|
|
|
ports = list_serial_ports();
|
2010-04-02 18:18:27 +00:00
|
|
|
num_ports = g_slist_length(ports);
|
2011-04-17 12:51:54 +00:00
|
|
|
|
|
|
|
if (!(fds = g_try_malloc0(num_ports * sizeof(GPollFD)))) {
|
|
|
|
sr_err("ols: %s: fds malloc failed", __func__);
|
|
|
|
goto hw_init_free_ports; /* TODO: SR_ERR_MALLOC. */
|
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
if (!(dev_names = g_try_malloc(num_ports * sizeof(char *)))) {
|
|
|
|
sr_err("ols: %s: dev_names malloc failed", __func__);
|
2011-04-17 12:51:54 +00:00
|
|
|
goto hw_init_free_fds; /* TODO: SR_ERR_MALLOC. */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(serial_params = g_try_malloc(num_ports * sizeof(char *)))) {
|
|
|
|
sr_err("ols: %s: serial_params malloc failed", __func__);
|
2012-02-17 21:25:01 +00:00
|
|
|
goto hw_init_free_dev_names; /* TODO: SR_ERR_MALLOC. */
|
2011-04-17 12:51:54 +00:00
|
|
|
}
|
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
devcnt = 0;
|
2010-04-15 20:16:35 +00:00
|
|
|
for (l = ports; l; l = l->next) {
|
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
* Since it may take the device a while to respond at 115Kb/s,
|
|
|
|
* we do all the sending first, then wait for all of them to
|
|
|
|
* respond with g_poll().
|
2010-04-02 18:18:27 +00:00
|
|
|
*/
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_info("ols: probing %s...", (char *)l->data);
|
2010-04-09 03:15:27 +00:00
|
|
|
fd = serial_open(l->data, O_RDWR | O_NONBLOCK);
|
2010-04-15 20:16:35 +00:00
|
|
|
if (fd != -1) {
|
2010-04-09 03:15:27 +00:00
|
|
|
serial_params[devcnt] = serial_backup_params(fd);
|
2012-07-01 20:31:31 +00:00
|
|
|
serial_set_params(fd, 115200, 8, SERIAL_PARITY_NONE, 1, 2);
|
2011-01-29 15:23:12 +00:00
|
|
|
ret = SR_OK;
|
2010-04-15 20:16:35 +00:00
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
if ((ret = send_shortcommand(fd,
|
2011-01-29 15:23:12 +00:00
|
|
|
CMD_RESET)) != SR_OK) {
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Serial port is not writable. */
|
2010-04-08 14:49:39 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2011-01-29 15:23:12 +00:00
|
|
|
if (ret != SR_OK) {
|
2010-04-15 20:16:35 +00:00
|
|
|
serial_restore_params(fd,
|
|
|
|
serial_params[devcnt]);
|
2010-04-09 03:15:27 +00:00
|
|
|
serial_close(fd);
|
2010-04-08 14:49:39 +00:00
|
|
|
continue;
|
2010-04-09 03:15:27 +00:00
|
|
|
}
|
2010-04-08 14:49:39 +00:00
|
|
|
send_shortcommand(fd, CMD_ID);
|
|
|
|
fds[devcnt].fd = fd;
|
|
|
|
fds[devcnt].events = G_IO_IN;
|
2012-02-17 21:25:01 +00:00
|
|
|
dev_names[devcnt] = g_strdup(l->data);
|
2010-04-08 14:49:39 +00:00
|
|
|
devcnt++;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2012-02-11 19:06:46 +00:00
|
|
|
g_free(l->data);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-05-09 21:11:08 +00:00
|
|
|
/* 2ms isn't enough for reliable transfer with pl2303, let's try 10 */
|
|
|
|
usleep(10000);
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
g_poll(fds, devcnt, 1);
|
2011-04-03 04:15:45 +00:00
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
for (i = 0; i < devcnt; i++) {
|
2011-04-03 04:15:45 +00:00
|
|
|
if (fds[i].revents != G_IO_IN)
|
|
|
|
continue;
|
|
|
|
if (serial_read(fds[i].fd, buf, 4) != 4)
|
|
|
|
continue;
|
|
|
|
if (strncmp(buf, "1SLO", 4) && strncmp(buf, "1ALS", 4))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* definitely using the OLS protocol, check if it supports
|
|
|
|
* the metadata command
|
|
|
|
*/
|
|
|
|
send_shortcommand(fds[i].fd, CMD_METADATA);
|
|
|
|
probefd.fd = fds[i].fd;
|
|
|
|
probefd.events = G_IO_IN;
|
|
|
|
if (g_poll(&probefd, 1, 10) > 0) {
|
|
|
|
/* got metadata */
|
|
|
|
sdi = get_metadata(fds[i].fd);
|
|
|
|
sdi->index = final_devcnt;
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
2011-04-03 04:15:45 +00:00
|
|
|
} else {
|
|
|
|
/* not an OLS -- some other board that uses the sump protocol */
|
2012-02-13 14:31:59 +00:00
|
|
|
sdi = sr_dev_inst_new(final_devcnt, SR_ST_INACTIVE,
|
2011-04-03 04:15:45 +00:00
|
|
|
"Sump", "Logic Analyzer", "v1.0");
|
2012-07-15 02:08:49 +00:00
|
|
|
sdi->driver = odi;
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = ols_dev_new();
|
2012-07-13 20:16:37 +00:00
|
|
|
for (j = 0; j < 32; j++) {
|
|
|
|
if (!(probe = sr_probe_new(j, SR_PROBE_LOGIC, TRUE,
|
|
|
|
probe_names[j])))
|
|
|
|
return 0;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
sdi->priv = devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->serial = sr_serial_dev_inst_new(dev_names[i], -1);
|
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
2012-07-13 11:26:30 +00:00
|
|
|
devices = g_slist_append(devices, sdi);
|
|
|
|
|
2011-04-03 04:15:45 +00:00
|
|
|
final_devcnt++;
|
|
|
|
serial_close(fds[i].fd);
|
|
|
|
fds[i].fd = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clean up after all the probing */
|
|
|
|
for (i = 0; i < devcnt; i++) {
|
2010-04-15 20:16:35 +00:00
|
|
|
if (fds[i].fd != 0) {
|
2010-04-09 03:15:27 +00:00
|
|
|
serial_restore_params(fds[i].fd, serial_params[i]);
|
|
|
|
serial_close(fds[i].fd);
|
2010-04-08 14:49:39 +00:00
|
|
|
}
|
2012-02-11 19:06:46 +00:00
|
|
|
g_free(serial_params[i]);
|
2012-02-17 21:25:01 +00:00
|
|
|
g_free(dev_names[i]);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-04-17 12:51:54 +00:00
|
|
|
g_free(serial_params);
|
2012-02-17 21:25:01 +00:00
|
|
|
hw_init_free_dev_names:
|
|
|
|
g_free(dev_names);
|
2011-04-17 12:51:54 +00:00
|
|
|
hw_init_free_fds:
|
|
|
|
g_free(fds);
|
|
|
|
hw_init_free_ports:
|
2010-04-02 18:18:27 +00:00
|
|
|
g_slist_free(ports);
|
|
|
|
|
2012-07-13 20:16:37 +00:00
|
|
|
return devices;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-08-05 22:59:25 +00:00
|
|
|
static GSList *hw_dev_list(void)
|
|
|
|
{
|
|
|
|
struct drv_context *drvc;
|
|
|
|
|
|
|
|
drvc = odi->priv;
|
|
|
|
|
|
|
|
return drvc->instances;
|
|
|
|
}
|
|
|
|
|
2012-07-21 20:04:47 +00:00
|
|
|
static int hw_dev_open(struct sr_dev_inst *sdi)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
2012-01-29 22:06:10 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->serial->fd = serial_open(devc->serial->port, O_RDWR);
|
|
|
|
if (devc->serial->fd == -1)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-30 16:58:41 +00:00
|
|
|
sdi->status = SR_ST_ACTIVE;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 20:04:47 +00:00
|
|
|
static int hw_dev_close(struct sr_dev_inst *sdi)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
2012-01-29 22:06:10 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->serial->fd != -1) {
|
|
|
|
serial_close(devc->serial->fd);
|
|
|
|
devc->serial->fd = -1;
|
2011-01-30 16:58:41 +00:00
|
|
|
sdi->status = SR_ST_INACTIVE;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2011-05-04 17:34:12 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-12 19:52:42 +00:00
|
|
|
static int hw_cleanup(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
GSList *l;
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 22:09:33 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
2012-02-12 19:52:42 +00:00
|
|
|
int ret = SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (!(drvc = odi->priv))
|
|
|
|
return SR_OK;
|
|
|
|
|
2011-04-04 03:13:29 +00:00
|
|
|
/* Properly close and free all devices. */
|
2012-08-02 22:09:33 +00:00
|
|
|
for (l = drvc->instances; l; l = l->next) {
|
2012-02-12 19:52:42 +00:00
|
|
|
if (!(sdi = l->data)) {
|
|
|
|
/* Log error, but continue cleaning up the rest. */
|
|
|
|
sr_err("ols: %s: sdi was NULL, continuing", __func__);
|
|
|
|
ret = SR_ERR_BUG;
|
|
|
|
continue;
|
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
if (!(devc = sdi->priv)) {
|
2012-02-12 19:52:42 +00:00
|
|
|
/* Log error, but continue cleaning up the rest. */
|
|
|
|
sr_err("ols: %s: sdi->priv was NULL, continuing",
|
|
|
|
__func__);
|
|
|
|
ret = SR_ERR_BUG;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* TODO: Check for serial != NULL. */
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->serial->fd != -1)
|
|
|
|
serial_close(devc->serial->fd);
|
|
|
|
sr_serial_dev_inst_free(devc->serial);
|
2012-02-13 14:31:59 +00:00
|
|
|
sr_dev_inst_free(sdi);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
g_slist_free(drvc->instances);
|
|
|
|
drvc->instances = NULL;
|
2012-02-12 19:52:42 +00:00
|
|
|
|
|
|
|
return ret;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-15 01:52:57 +00:00
|
|
|
static int hw_info_get(int info_id, const void **data,
|
|
|
|
const struct sr_dev_inst *sdi)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-07-15 01:52:57 +00:00
|
|
|
switch (info_id) {
|
2012-07-15 02:32:53 +00:00
|
|
|
case SR_DI_HWCAPS:
|
|
|
|
*data = hwcaps;
|
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_DI_NUM_PROBES:
|
2012-07-15 01:52:57 +00:00
|
|
|
*data = GINT_TO_POINTER(1);
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
2011-12-29 16:04:31 +00:00
|
|
|
case SR_DI_PROBE_NAMES:
|
2012-07-15 01:52:57 +00:00
|
|
|
*data = probe_names;
|
2011-12-29 16:04:31 +00:00
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_DI_SAMPLERATES:
|
2012-07-15 01:52:57 +00:00
|
|
|
*data = &samplerates;
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_DI_TRIGGER_TYPES:
|
2012-07-15 01:52:57 +00:00
|
|
|
*data = (char *)TRIGGER_TYPES;
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_DI_CUR_SAMPLERATE:
|
2012-07-15 01:52:57 +00:00
|
|
|
if (sdi) {
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
*data = &devc->cur_samplerate;
|
2012-07-15 01:52:57 +00:00
|
|
|
} else
|
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
2012-07-15 01:52:57 +00:00
|
|
|
default:
|
|
|
|
return SR_ERR_ARG;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-15 01:52:57 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-16 01:52:14 +00:00
|
|
|
static int set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
if (devc->max_samplerate) {
|
|
|
|
if (samplerate > devc->max_samplerate)
|
2011-04-03 04:15:45 +00:00
|
|
|
return SR_ERR_SAMPLERATE;
|
|
|
|
} else if (samplerate < samplerates.low || samplerate > samplerates.high)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR_SAMPLERATE;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
if (samplerate > CLOCK_RATE) {
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->flag_reg |= FLAG_DEMUX;
|
|
|
|
devc->cur_samplerate_divider = (CLOCK_RATE * 2 / samplerate) - 1;
|
2010-04-15 20:16:35 +00:00
|
|
|
} else {
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->flag_reg &= ~FLAG_DEMUX;
|
|
|
|
devc->cur_samplerate_divider = (CLOCK_RATE / samplerate) - 1;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-10-30 01:25:24 +00:00
|
|
|
/* Calculate actual samplerate used and complain if it is different
|
|
|
|
* from the requested.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->cur_samplerate = CLOCK_RATE / (devc->cur_samplerate_divider + 1);
|
|
|
|
if (devc->flag_reg & FLAG_DEMUX)
|
|
|
|
devc->cur_samplerate *= 2;
|
|
|
|
if (devc->cur_samplerate != samplerate)
|
2012-02-11 19:06:46 +00:00
|
|
|
sr_err("ols: can't match samplerate %" PRIu64 ", using %"
|
2012-08-02 22:09:33 +00:00
|
|
|
PRIu64, samplerate, devc->cur_samplerate);
|
2011-10-30 01:25:24 +00:00
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-16 01:52:14 +00:00
|
|
|
static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
|
|
|
|
const void *value)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-04-02 18:18:27 +00:00
|
|
|
int ret;
|
2012-05-07 14:02:02 +00:00
|
|
|
const uint64_t *tmp_u64;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-30 16:58:41 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-17 23:17:18 +00:00
|
|
|
switch (hwcap) {
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_HWCAP_SAMPLERATE:
|
2012-05-07 14:02:02 +00:00
|
|
|
ret = set_samplerate(sdi, *(const uint64_t *)value);
|
2010-08-05 01:54:33 +00:00
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_HWCAP_LIMIT_SAMPLES:
|
2010-05-15 21:30:17 +00:00
|
|
|
tmp_u64 = value;
|
2011-01-17 01:18:02 +00:00
|
|
|
if (*tmp_u64 < MIN_NUM_SAMPLES)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (*tmp_u64 > devc->max_samples)
|
2012-02-11 19:06:46 +00:00
|
|
|
sr_err("ols: sample limit exceeds hw max");
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->limit_samples = *tmp_u64;
|
|
|
|
sr_info("ols: sample limit %" PRIu64, devc->limit_samples);
|
2011-01-29 15:23:12 +00:00
|
|
|
ret = SR_OK;
|
2010-08-05 01:54:33 +00:00
|
|
|
break;
|
2011-01-30 16:58:41 +00:00
|
|
|
case SR_HWCAP_CAPTURE_RATIO:
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->capture_ratio = *(const uint64_t *)value;
|
|
|
|
if (devc->capture_ratio < 0 || devc->capture_ratio > 100) {
|
|
|
|
devc->capture_ratio = 0;
|
2011-01-29 15:23:12 +00:00
|
|
|
ret = SR_ERR;
|
2010-04-15 20:16:35 +00:00
|
|
|
} else
|
2011-01-29 15:23:12 +00:00
|
|
|
ret = SR_OK;
|
2010-08-05 01:54:33 +00:00
|
|
|
break;
|
2011-10-29 02:57:17 +00:00
|
|
|
case SR_HWCAP_RLE:
|
2011-11-19 00:41:41 +00:00
|
|
|
if (GPOINTER_TO_INT(value)) {
|
2011-10-29 02:57:17 +00:00
|
|
|
sr_info("ols: enabling RLE");
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->flag_reg |= FLAG_RLE;
|
2011-10-29 02:57:17 +00:00
|
|
|
}
|
|
|
|
ret = SR_OK;
|
|
|
|
break;
|
2010-08-05 01:54:33 +00:00
|
|
|
default:
|
2011-01-29 15:23:12 +00:00
|
|
|
ret = SR_ERR;
|
2010-04-15 20:16:35 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:05:01 +00:00
|
|
|
static void abort_acquisition(const struct sr_dev_inst *sdi)
|
|
|
|
{
|
|
|
|
struct sr_datafeed_packet packet;
|
|
|
|
struct dev_context *devc;
|
|
|
|
|
|
|
|
devc = sdi->priv;
|
|
|
|
sr_source_remove(devc->serial->fd);
|
|
|
|
|
|
|
|
/* Terminate session */
|
|
|
|
packet.type = SR_DF_END;
|
|
|
|
sr_session_send(sdi, &packet);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-29 21:32:34 +00:00
|
|
|
static int receive_data(int fd, int revents, void *cb_data)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_packet packet;
|
2011-06-19 12:28:50 +00:00
|
|
|
struct sr_datafeed_logic logic;
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 22:09:33 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
2011-04-03 04:15:45 +00:00
|
|
|
GSList *l;
|
2011-10-29 02:57:17 +00:00
|
|
|
int num_channels, offset, i, j;
|
|
|
|
unsigned char byte;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
drvc = odi->priv;
|
|
|
|
|
|
|
|
/* Find this device's devc struct by its fd. */
|
|
|
|
devc = NULL;
|
|
|
|
for (l = drvc->instances; l; l = l->next) {
|
2011-04-03 04:15:45 +00:00
|
|
|
sdi = l->data;
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
if (devc->serial->fd == fd) {
|
2011-04-03 04:15:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = NULL;
|
2011-04-03 04:15:45 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
if (!devc)
|
2012-02-18 17:07:42 +00:00
|
|
|
/* Shouldn't happen. */
|
2011-04-03 04:15:45 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->num_transfers++ == 0) {
|
2010-04-15 20:16:35 +00:00
|
|
|
/*
|
|
|
|
* First time round, means the device started sending data,
|
|
|
|
* and will not stop until done. If it stops sending for
|
|
|
|
* longer than it takes to send a byte, that means it's
|
|
|
|
* finished. We'll double that to 30ms to be sure...
|
2010-04-02 18:18:27 +00:00
|
|
|
*/
|
2011-02-20 12:19:27 +00:00
|
|
|
sr_source_remove(fd);
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_source_add(fd, G_IO_IN, 30, receive_data, cb_data);
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->raw_sample_buf = g_try_malloc(devc->limit_samples * 4);
|
|
|
|
if (!devc->raw_sample_buf) {
|
|
|
|
sr_err("ols: %s: devc->raw_sample_buf malloc failed",
|
2011-04-17 12:51:54 +00:00
|
|
|
__func__);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-08-05 01:54:33 +00:00
|
|
|
/* fill with 1010... for debugging */
|
2012-08-02 22:09:33 +00:00
|
|
|
memset(devc->raw_sample_buf, 0x82, devc->limit_samples * 4);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 14:49:39 +00:00
|
|
|
num_channels = 0;
|
2010-04-15 20:16:35 +00:00
|
|
|
for (i = 0x20; i > 0x02; i /= 2) {
|
2012-08-02 22:09:33 +00:00
|
|
|
if ((devc->flag_reg & i) == 0)
|
2010-04-08 14:49:39 +00:00
|
|
|
num_channels++;
|
2010-04-15 20:16:35 +00:00
|
|
|
}
|
2010-04-08 14:49:39 +00:00
|
|
|
|
2011-10-29 02:57:17 +00:00
|
|
|
if (revents == G_IO_IN) {
|
2011-01-11 23:43:00 +00:00
|
|
|
if (serial_read(fd, &byte, 1) != 1)
|
2010-04-02 18:18:27 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-10-30 00:10:32 +00:00
|
|
|
/* Ignore it if we've read enough. */
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->num_samples >= devc->limit_samples)
|
2011-10-30 00:10:32 +00:00
|
|
|
return TRUE;
|
2011-10-29 02:57:17 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->sample[devc->num_bytes++] = byte;
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: received byte 0x%.2x", byte);
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->num_bytes == num_channels) {
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Got a full sample. */
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_dbg("ols: received sample 0x%.*x",
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->num_bytes * 2, *(int *)devc->sample);
|
|
|
|
if (devc->flag_reg & FLAG_RLE) {
|
2010-04-15 20:16:35 +00:00
|
|
|
/*
|
|
|
|
* In RLE mode -1 should never come in as a
|
|
|
|
* sample, because bit 31 is the "count" flag.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->sample[devc->num_bytes - 1] & 0x80) {
|
|
|
|
devc->sample[devc->num_bytes - 1] &= 0x7f;
|
2011-10-30 00:10:32 +00:00
|
|
|
/*
|
|
|
|
* FIXME: This will only work on
|
|
|
|
* little-endian systems.
|
2010-04-02 18:18:27 +00:00
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->rle_count = *(int *)(devc->sample);
|
|
|
|
sr_dbg("ols: RLE count = %d", devc->rle_count);
|
|
|
|
devc->num_bytes = 0;
|
2011-10-29 02:57:17 +00:00
|
|
|
return TRUE;
|
2011-10-30 00:10:32 +00:00
|
|
|
}
|
2011-10-29 02:57:17 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->num_samples += devc->rle_count + 1;
|
|
|
|
if (devc->num_samples > devc->limit_samples) {
|
2011-10-30 00:10:32 +00:00
|
|
|
/* Save us from overrunning the buffer. */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->rle_count -= devc->num_samples - devc->limit_samples;
|
|
|
|
devc->num_samples = devc->limit_samples;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
if (num_channels < 4) {
|
|
|
|
/*
|
|
|
|
* Some channel groups may have been turned
|
|
|
|
* off, to speed up transfer between the
|
|
|
|
* hardware and the PC. Expand that here before
|
|
|
|
* submitting it over the session bus --
|
|
|
|
* whatever is listening on the bus will be
|
|
|
|
* expecting a full 32-bit sample, based on
|
|
|
|
* the number of probes.
|
2010-04-08 14:49:39 +00:00
|
|
|
*/
|
|
|
|
j = 0;
|
2012-08-02 22:09:33 +00:00
|
|
|
memset(devc->tmp_sample, 0, 4);
|
2010-04-15 20:16:35 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2012-08-02 22:09:33 +00:00
|
|
|
if (((devc->flag_reg >> 2) & (1 << i)) == 0) {
|
2010-04-15 20:16:35 +00:00
|
|
|
/*
|
|
|
|
* This channel group was
|
|
|
|
* enabled, copy from received
|
|
|
|
* sample.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->tmp_sample[i] = devc->sample[j++];
|
2010-04-08 14:49:39 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
memcpy(devc->sample, devc->tmp_sample, 4);
|
|
|
|
sr_dbg("ols: full sample 0x%.8x", *(int *)devc->sample);
|
2010-04-08 14:49:39 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 01:54:33 +00:00
|
|
|
/* the OLS sends its sample buffer backwards.
|
|
|
|
* store it in reverse order here, so we can dump
|
|
|
|
* this on the session bus later.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
offset = (devc->limit_samples - devc->num_samples) * 4;
|
|
|
|
for (i = 0; i <= devc->rle_count; i++) {
|
|
|
|
memcpy(devc->raw_sample_buf + offset + (i * 4),
|
|
|
|
devc->sample, 4);
|
2011-10-30 00:10:32 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
memset(devc->sample, 0, 4);
|
|
|
|
devc->num_bytes = 0;
|
|
|
|
devc->rle_count = 0;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
2010-04-15 20:16:35 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* This is the main loop telling us a timeout was reached, or
|
|
|
|
* we've acquired all the samples we asked for -- we're done.
|
2010-08-05 01:54:33 +00:00
|
|
|
* Send the (properly-ordered) buffer to the frontend.
|
2010-04-15 20:16:35 +00:00
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->trigger_at != -1) {
|
2010-08-05 01:54:33 +00:00
|
|
|
/* a trigger was set up, so we need to tell the frontend
|
|
|
|
* about it.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->trigger_at > 0) {
|
2010-08-05 01:54:33 +00:00
|
|
|
/* there are pre-trigger samples, send those first */
|
2011-01-30 16:58:41 +00:00
|
|
|
packet.type = SR_DF_LOGIC;
|
2011-06-19 12:28:50 +00:00
|
|
|
packet.payload = &logic;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.length = devc->trigger_at * 4;
|
2011-06-19 12:28:50 +00:00
|
|
|
logic.unitsize = 4;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.data = devc->raw_sample_buf +
|
|
|
|
(devc->limit_samples - devc->num_samples) * 4;
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2010-08-05 01:54:33 +00:00
|
|
|
}
|
|
|
|
|
2011-06-19 12:28:50 +00:00
|
|
|
/* send the trigger */
|
2011-01-30 16:58:41 +00:00
|
|
|
packet.type = SR_DF_TRIGGER;
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2010-08-05 01:54:33 +00:00
|
|
|
|
2011-06-19 12:28:50 +00:00
|
|
|
/* send post-trigger samples */
|
2011-01-30 16:58:41 +00:00
|
|
|
packet.type = SR_DF_LOGIC;
|
2011-06-19 12:28:50 +00:00
|
|
|
packet.payload = &logic;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.length = (devc->num_samples * 4) - (devc->trigger_at * 4);
|
2011-06-19 12:28:50 +00:00
|
|
|
logic.unitsize = 4;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.data = devc->raw_sample_buf + devc->trigger_at * 4 +
|
|
|
|
(devc->limit_samples - devc->num_samples) * 4;
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2010-08-05 01:54:33 +00:00
|
|
|
} else {
|
2011-06-19 12:28:50 +00:00
|
|
|
/* no trigger was used */
|
2011-01-30 16:58:41 +00:00
|
|
|
packet.type = SR_DF_LOGIC;
|
2011-06-19 12:28:50 +00:00
|
|
|
packet.payload = &logic;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.length = devc->num_samples * 4;
|
2011-06-19 12:28:50 +00:00
|
|
|
logic.unitsize = 4;
|
2012-08-02 22:09:33 +00:00
|
|
|
logic.data = devc->raw_sample_buf +
|
|
|
|
(devc->limit_samples - devc->num_samples) * 4;
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_session_send(cb_data, &packet);
|
2010-08-05 01:54:33 +00:00
|
|
|
}
|
2012-08-02 22:09:33 +00:00
|
|
|
g_free(devc->raw_sample_buf);
|
2010-08-05 01:54:33 +00:00
|
|
|
|
2010-08-12 04:02:25 +00:00
|
|
|
serial_flush(fd);
|
2010-04-09 03:15:27 +00:00
|
|
|
serial_close(fd);
|
2012-08-02 23:05:01 +00:00
|
|
|
|
|
|
|
abort_acquisition(sdi);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-22 10:35:57 +00:00
|
|
|
static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
|
|
|
void *cb_data)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-01-29 16:03:26 +00:00
|
|
|
struct sr_datafeed_packet *packet;
|
|
|
|
struct sr_datafeed_header *header;
|
2012-04-22 18:06:19 +00:00
|
|
|
struct sr_datafeed_meta_logic meta;
|
2012-08-02 22:09:33 +00:00
|
|
|
struct dev_context *devc;
|
2010-08-05 01:54:33 +00:00
|
|
|
uint32_t trigger_config[4];
|
2010-04-02 18:18:27 +00:00
|
|
|
uint32_t data;
|
2010-04-08 14:49:39 +00:00
|
|
|
uint16_t readcount, delaycount;
|
|
|
|
uint8_t changrp_mask;
|
2011-10-29 02:21:16 +00:00
|
|
|
int num_channels;
|
2011-04-03 04:15:45 +00:00
|
|
|
int i;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
devc = sdi->priv;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-30 16:58:41 +00:00
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-05 16:56:12 +00:00
|
|
|
if (configure_probes(sdi) != SR_OK) {
|
|
|
|
sr_err("ols: failed to configured probes");
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2011-10-29 02:21:16 +00:00
|
|
|
/*
|
|
|
|
* Enable/disable channel groups in the flag register according to the
|
2011-10-30 00:10:32 +00:00
|
|
|
* probe mask. Calculate this here, because num_channels is needed
|
2011-10-29 02:21:16 +00:00
|
|
|
* to limit readcount.
|
|
|
|
*/
|
|
|
|
changrp_mask = 0;
|
|
|
|
num_channels = 0;
|
|
|
|
for (i = 0; i < 4; i++) {
|
2012-08-02 22:09:33 +00:00
|
|
|
if (devc->probe_mask & (0xff << (i * 8))) {
|
2011-10-29 02:21:16 +00:00
|
|
|
changrp_mask |= (1 << i);
|
|
|
|
num_channels++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-30 00:10:32 +00:00
|
|
|
/*
|
|
|
|
* Limit readcount to prevent reading past the end of the hardware
|
2011-10-29 02:21:16 +00:00
|
|
|
* buffer.
|
|
|
|
*/
|
2012-08-02 22:09:33 +00:00
|
|
|
readcount = MIN(devc->max_samples / num_channels, devc->limit_samples) / 4;
|
2010-08-05 01:54:33 +00:00
|
|
|
|
|
|
|
memset(trigger_config, 0, 16);
|
2012-08-02 22:09:33 +00:00
|
|
|
trigger_config[devc->num_stages - 1] |= 0x08;
|
|
|
|
if (devc->trigger_mask[0]) {
|
|
|
|
delaycount = readcount * (1 - devc->capture_ratio / 100.0);
|
|
|
|
devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
|
2010-08-05 01:54:33 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_0,
|
|
|
|
reverse32(devc->trigger_mask[0])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_0,
|
|
|
|
reverse32(devc->trigger_value[0])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_0,
|
2011-01-29 15:23:12 +00:00
|
|
|
trigger_config[0]) != SR_OK)
|
|
|
|
return SR_ERR;
|
2010-04-08 14:49:39 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_1,
|
|
|
|
reverse32(devc->trigger_mask[1])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_1,
|
|
|
|
reverse32(devc->trigger_value[1])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_1,
|
2011-01-29 15:23:12 +00:00
|
|
|
trigger_config[1]) != SR_OK)
|
|
|
|
return SR_ERR;
|
2010-04-08 14:49:39 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_2,
|
|
|
|
reverse32(devc->trigger_mask[2])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_2,
|
|
|
|
reverse32(devc->trigger_value[2])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_2,
|
2011-01-29 15:23:12 +00:00
|
|
|
trigger_config[2]) != SR_OK)
|
|
|
|
return SR_ERR;
|
2010-08-05 01:54:33 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_3,
|
|
|
|
reverse32(devc->trigger_mask[3])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_3,
|
|
|
|
reverse32(devc->trigger_value[3])) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_3,
|
2011-01-29 15:23:12 +00:00
|
|
|
trigger_config[3]) != SR_OK)
|
|
|
|
return SR_ERR;
|
2010-04-08 14:49:39 +00:00
|
|
|
} else {
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_0,
|
|
|
|
devc->trigger_mask[0]) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_0,
|
|
|
|
devc->trigger_value[0]) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_0,
|
2011-01-29 15:23:12 +00:00
|
|
|
0x00000008) != SR_OK)
|
|
|
|
return SR_ERR;
|
2010-08-05 01:54:33 +00:00
|
|
|
delaycount = readcount;
|
2010-04-08 14:49:39 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-04-14 07:46:53 +00:00
|
|
|
sr_info("ols: setting samplerate to %" PRIu64 " Hz (divider %u, "
|
2012-08-02 22:09:33 +00:00
|
|
|
"demux %s)", devc->cur_samplerate, devc->cur_samplerate_divider,
|
|
|
|
devc->flag_reg & FLAG_DEMUX ? "on" : "off");
|
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_DIVIDER,
|
|
|
|
reverse32(devc->cur_samplerate_divider)) != SR_OK)
|
2011-04-03 04:15:45 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Send sample limit and pre/post-trigger capture ratio. */
|
2010-08-05 01:54:33 +00:00
|
|
|
data = ((readcount - 1) & 0xffff) << 16;
|
|
|
|
data |= (delaycount - 1) & 0xffff;
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_longcommand(devc->serial->fd, CMD_CAPTURE_SIZE, reverse16(data)) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/* The flag register wants them here, and 1 means "disable channel". */
|
2012-08-02 22:09:33 +00:00
|
|
|
devc->flag_reg |= ~(changrp_mask << 2) & 0x3c;
|
|
|
|
devc->flag_reg |= FLAG_FILTER;
|
|
|
|
devc->rle_count = 0;
|
|
|
|
data = (devc->flag_reg << 24) | ((devc->flag_reg << 8) & 0xff0000);
|
|
|
|
if (send_longcommand(devc->serial->fd, CMD_SET_FLAGS, data) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Start acquisition on the device. */
|
2012-08-02 22:09:33 +00:00
|
|
|
if (send_shortcommand(devc->serial->fd, CMD_RUN) != SR_OK)
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-08-02 22:09:33 +00:00
|
|
|
sr_source_add(devc->serial->fd, G_IO_IN, -1, receive_data,
|
2012-03-03 08:56:49 +00:00
|
|
|
cb_data);
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-04-16 12:17:51 +00:00
|
|
|
if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
|
|
|
|
sr_err("ols: %s: packet malloc failed", __func__);
|
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
|
|
|
|
sr_err("ols: %s: header malloc failed", __func__);
|
2011-04-17 12:51:54 +00:00
|
|
|
g_free(packet);
|
2011-04-16 12:17:51 +00:00
|
|
|
return SR_ERR_MALLOC;
|
|
|
|
}
|
|
|
|
|
2010-04-15 20:16:35 +00:00
|
|
|
/* Send header packet to the session bus. */
|
2011-01-30 16:58:41 +00:00
|
|
|
packet->type = SR_DF_HEADER;
|
2010-04-15 20:16:35 +00:00
|
|
|
packet->payload = (unsigned char *)header;
|
2010-04-02 18:18:27 +00:00
|
|
|
header->feed_version = 1;
|
|
|
|
gettimeofday(&header->starttime, NULL);
|
2012-04-22 18:06:19 +00:00
|
|
|
sr_session_send(cb_data, packet);
|
|
|
|
|
|
|
|
/* Send metadata about the SR_DF_LOGIC packets to come. */
|
|
|
|
packet->type = SR_DF_META_LOGIC;
|
|
|
|
packet->payload = &meta;
|
2012-08-02 22:09:33 +00:00
|
|
|
meta.samplerate = devc->cur_samplerate;
|
2012-04-22 18:06:19 +00:00
|
|
|
meta.num_probes = NUM_PROBES;
|
2012-03-03 08:56:49 +00:00
|
|
|
sr_session_send(cb_data, packet);
|
2011-04-17 12:51:54 +00:00
|
|
|
|
2010-04-02 18:18:27 +00:00
|
|
|
g_free(header);
|
|
|
|
g_free(packet);
|
|
|
|
|
2011-01-29 15:23:12 +00:00
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-03 08:56:49 +00:00
|
|
|
/* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
|
2012-07-22 10:35:57 +00:00
|
|
|
static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
|
|
|
|
void *cb_data)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
|
2011-01-13 22:50:34 +00:00
|
|
|
/* Avoid compiler warnings. */
|
2012-08-02 23:05:01 +00:00
|
|
|
(void)cb_data;
|
2010-04-09 20:18:46 +00:00
|
|
|
|
2012-08-02 23:05:01 +00:00
|
|
|
abort_acquisition(sdi);
|
2012-02-12 12:31:58 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
SR_PRIV struct sr_dev_driver ols_driver_info = {
|
2011-04-18 22:14:15 +00:00
|
|
|
.name = "ols",
|
|
|
|
.longname = "Openbench Logic Sniffer",
|
|
|
|
.api_version = 1,
|
|
|
|
.init = hw_init,
|
|
|
|
.cleanup = hw_cleanup,
|
2012-07-05 09:27:48 +00:00
|
|
|
.scan = hw_scan,
|
2012-08-05 22:59:25 +00:00
|
|
|
.dev_list = hw_dev_list,
|
|
|
|
.dev_clear = hw_cleanup,
|
2012-02-18 10:57:43 +00:00
|
|
|
.dev_open = hw_dev_open,
|
|
|
|
.dev_close = hw_dev_close,
|
2012-07-15 01:52:57 +00:00
|
|
|
.info_get = hw_info_get,
|
2012-02-18 11:11:15 +00:00
|
|
|
.dev_config_set = hw_dev_config_set,
|
2012-02-18 11:03:49 +00:00
|
|
|
.dev_acquisition_start = hw_dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = hw_dev_acquisition_stop,
|
2012-08-02 22:09:33 +00:00
|
|
|
.priv = NULL,
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|