2012-06-21 20:36:13 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ftdi.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <string.h>
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2012-10-27 20:21:07 +00:00
|
|
|
#include "protocol.h"
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-07-13 12:15:54 +00:00
|
|
|
SR_PRIV struct sr_dev_driver chronovu_la8_driver_info;
|
2012-10-27 19:27:15 +00:00
|
|
|
static struct sr_dev_driver *di = &chronovu_la8_driver_info;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2013-04-16 13:42:45 +00:00
|
|
|
/*
|
|
|
|
* This will be initialized via config_list()/SR_CONF_SAMPLERATE.
|
2013-03-31 19:31:49 +00:00
|
|
|
*
|
|
|
|
* Min: 1 sample per 0.01us -> sample time is 0.084s, samplerate 100MHz
|
|
|
|
* Max: 1 sample per 2.55us -> sample time is 21.391s, samplerate 392.15kHz
|
|
|
|
*/
|
2013-04-16 13:42:45 +00:00
|
|
|
SR_PRIV uint64_t chronovu_la8_samplerates[255] = { 0 };
|
2013-03-31 19:31:49 +00:00
|
|
|
|
|
|
|
/* Note: Continuous sampling is not supported by the hardware. */
|
|
|
|
SR_PRIV const int32_t chronovu_la8_hwcaps[] = {
|
|
|
|
SR_CONF_LOGIC_ANALYZER,
|
|
|
|
SR_CONF_SAMPLERATE,
|
|
|
|
SR_CONF_LIMIT_MSEC, /* TODO: Not yet implemented. */
|
|
|
|
SR_CONF_LIMIT_SAMPLES, /* TODO: Not yet implemented. */
|
|
|
|
};
|
|
|
|
|
2012-07-14 22:34:27 +00:00
|
|
|
/*
|
|
|
|
* The ChronoVu LA8 can have multiple PIDs. Older versions shipped with
|
|
|
|
* a standard FTDI USB VID/PID of 0403:6001, newer ones have 0403:8867.
|
|
|
|
*/
|
|
|
|
static const uint16_t usb_pids[] = {
|
|
|
|
0x6001,
|
|
|
|
0x8867,
|
|
|
|
};
|
|
|
|
|
2012-06-21 20:36:13 +00:00
|
|
|
/* Function prototypes. */
|
2012-11-06 14:02:37 +00:00
|
|
|
static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-08-05 22:59:25 +00:00
|
|
|
static int clear_instances(void)
|
2012-07-14 10:27:02 +00:00
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 19:35:25 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
|
|
|
|
2012-10-27 19:27:15 +00:00
|
|
|
drvc = di->priv;
|
2012-07-14 10:27:02 +00:00
|
|
|
|
|
|
|
/* Properly close all devices. */
|
2012-08-02 19:35:25 +00:00
|
|
|
for (l = drvc->instances; l; l = l->next) {
|
2012-07-14 10:27:02 +00:00
|
|
|
if (!(sdi = l->data)) {
|
|
|
|
/* Log error, but continue cleaning up the rest. */
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sdi was NULL, continuing.", __func__);
|
2012-07-14 10:27:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sdi->priv) {
|
2012-08-02 19:35:25 +00:00
|
|
|
devc = sdi->priv;
|
|
|
|
ftdi_free(devc->ftdic);
|
2012-07-14 10:27:02 +00:00
|
|
|
}
|
|
|
|
sr_dev_inst_free(sdi);
|
|
|
|
}
|
2012-08-02 19:35:25 +00:00
|
|
|
g_slist_free(drvc->instances);
|
|
|
|
drvc->instances = NULL;
|
2012-07-14 10:27:02 +00:00
|
|
|
|
2012-08-05 22:59:25 +00:00
|
|
|
return SR_OK;
|
2012-07-14 10:27:02 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 01:47:55 +00:00
|
|
|
static int hw_init(struct sr_context *sr_ctx)
|
2012-07-05 09:27:48 +00:00
|
|
|
{
|
2013-01-29 11:55:00 +00:00
|
|
|
return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
|
2012-07-05 09:27:48 +00:00
|
|
|
}
|
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
static GSList *hw_scan(GSList *options)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
|
|
|
struct sr_dev_inst *sdi;
|
2012-07-24 17:10:09 +00:00
|
|
|
struct sr_probe *probe;
|
2012-08-02 19:35:25 +00:00
|
|
|
struct drv_context *drvc;
|
|
|
|
struct dev_context *devc;
|
2012-07-14 10:27:02 +00:00
|
|
|
GSList *devices;
|
2012-07-15 17:24:10 +00:00
|
|
|
unsigned int i;
|
|
|
|
int ret;
|
2012-07-14 10:27:02 +00:00
|
|
|
|
|
|
|
(void)options;
|
2012-10-27 19:27:15 +00:00
|
|
|
|
|
|
|
drvc = di->priv;
|
2013-01-28 19:00:54 +00:00
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
devices = NULL;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
/* Allocate memory for our private device context. */
|
|
|
|
if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("Device context malloc failed.");
|
2012-06-21 20:36:13 +00:00
|
|
|
goto err_free_nothing;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set some sane defaults. */
|
2012-08-02 19:35:25 +00:00
|
|
|
devc->ftdic = NULL;
|
|
|
|
devc->cur_samplerate = SR_MHZ(100); /* 100MHz == max. samplerate */
|
|
|
|
devc->limit_msec = 0;
|
|
|
|
devc->limit_samples = 0;
|
2013-02-07 08:11:26 +00:00
|
|
|
devc->cb_data = NULL;
|
2012-08-02 19:35:25 +00:00
|
|
|
memset(devc->mangled_buf, 0, BS);
|
|
|
|
devc->final_buf = NULL;
|
|
|
|
devc->trigger_pattern = 0x00; /* Value irrelevant, see trigger_mask. */
|
|
|
|
devc->trigger_mask = 0x00; /* All probes are "don't care". */
|
|
|
|
devc->trigger_timeout = 10; /* Default to 10s trigger timeout. */
|
|
|
|
devc->trigger_found = 0;
|
|
|
|
devc->done = 0;
|
|
|
|
devc->block_counter = 0;
|
|
|
|
devc->divcount = 0; /* 10ns sample period == 100MHz samplerate */
|
|
|
|
devc->usb_pid = 0;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Allocate memory where we'll store the de-mangled data. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc->final_buf = g_try_malloc(SDRAM_SIZE))) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("final_buf malloc failed.");
|
2012-08-02 19:35:25 +00:00
|
|
|
goto err_free_devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate memory for the FTDI context (ftdic) and initialize it. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc->ftdic = ftdi_new())) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: ftdi_new failed.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
goto err_free_final_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the device and temporarily open it. */
|
2012-07-14 22:34:27 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(usb_pids); i++) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Probing for VID/PID %04x:%04x.", USB_VENDOR_ID,
|
2012-07-14 22:34:27 +00:00
|
|
|
usb_pids[i]);
|
2012-08-02 19:35:25 +00:00
|
|
|
ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID,
|
2012-07-14 22:34:27 +00:00
|
|
|
usb_pids[i], USB_DESCRIPTION, NULL);
|
|
|
|
if (ret == 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Found LA8 device (%04x:%04x).",
|
2012-07-14 22:34:27 +00:00
|
|
|
USB_VENDOR_ID, usb_pids[i]);
|
2012-08-02 19:35:25 +00:00
|
|
|
devc->usb_pid = usb_pids[i];
|
2012-07-14 22:34:27 +00:00
|
|
|
}
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
2012-07-14 22:34:27 +00:00
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (devc->usb_pid == 0)
|
2012-07-14 22:34:27 +00:00
|
|
|
goto err_free_ftdic;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Register the device with libsigrok. */
|
|
|
|
sdi = sr_dev_inst_new(0, SR_ST_INITIALIZING,
|
|
|
|
USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
|
|
|
|
if (!sdi) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sr_dev_inst_new failed.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
goto err_close_ftdic;
|
|
|
|
}
|
2012-10-27 19:27:15 +00:00
|
|
|
sdi->driver = di;
|
2012-08-02 19:35:25 +00:00
|
|
|
sdi->priv = devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2013-03-31 19:31:49 +00:00
|
|
|
for (i = 0; chronovu_la8_probe_names[i]; i++) {
|
2012-11-11 18:40:14 +00:00
|
|
|
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
|
2013-03-31 19:31:49 +00:00
|
|
|
chronovu_la8_probe_names[i])))
|
2012-07-24 17:10:09 +00:00
|
|
|
return NULL;
|
|
|
|
sdi->probes = g_slist_append(sdi->probes, probe);
|
|
|
|
}
|
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
devices = g_slist_append(devices, sdi);
|
2012-08-02 19:35:25 +00:00
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Close device. We'll reopen it again when we need it. */
|
2012-08-02 19:35:25 +00:00
|
|
|
(void) la8_close(devc); /* Log, but ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
return devices;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
err_close_ftdic:
|
2012-08-02 19:35:25 +00:00
|
|
|
(void) la8_close(devc); /* Log, but ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
err_free_ftdic:
|
2012-12-17 08:04:35 +00:00
|
|
|
ftdi_free(devc->ftdic); /* NOT free() or g_free()! */
|
2012-06-21 20:36:13 +00:00
|
|
|
err_free_final_buf:
|
2012-08-02 19:35:25 +00:00
|
|
|
g_free(devc->final_buf);
|
|
|
|
err_free_devc:
|
|
|
|
g_free(devc);
|
2012-06-21 20:36:13 +00:00
|
|
|
err_free_nothing:
|
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
return NULL;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
2012-08-05 22:59:25 +00:00
|
|
|
static GSList *hw_dev_list(void)
|
|
|
|
{
|
2013-02-02 18:52:26 +00:00
|
|
|
return ((struct drv_context *)(di->priv))->instances;
|
2012-08-05 22:59:25 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 20:04:47 +00:00
|
|
|
static int hw_dev_open(struct sr_dev_inst *sdi)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-07-21 20:04:47 +00:00
|
|
|
int ret;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc = sdi->priv)) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sdi->priv was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR_BUG;
|
|
|
|
}
|
|
|
|
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Opening LA8 device (%04x:%04x).", USB_VENDOR_ID,
|
2012-08-02 19:35:25 +00:00
|
|
|
devc->usb_pid);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Open the device. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if ((ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID,
|
|
|
|
devc->usb_pid, USB_DESCRIPTION, NULL)) < 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: ftdi_usb_open_desc: (%d) %s",
|
2012-08-02 19:35:25 +00:00
|
|
|
__func__, ret, ftdi_get_error_string(devc->ftdic));
|
|
|
|
(void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Device opened successfully.");
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Purge RX/TX buffers in the FTDI chip. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: ftdi_usb_purge_buffers: (%d) %s",
|
2012-08-02 19:35:25 +00:00
|
|
|
__func__, ret, ftdi_get_error_string(devc->ftdic));
|
|
|
|
(void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
goto err_dev_open_close_ftdic;
|
|
|
|
}
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("FTDI buffers purged successfully.");
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Enable flow control in the FTDI chip. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if ((ret = ftdi_setflowctrl(devc->ftdic, SIO_RTS_CTS_HS)) < 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: ftdi_setflowcontrol: (%d) %s",
|
2012-08-02 19:35:25 +00:00
|
|
|
__func__, ret, ftdi_get_error_string(devc->ftdic));
|
|
|
|
(void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
goto err_dev_open_close_ftdic;
|
|
|
|
}
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("FTDI flow control enabled successfully.");
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Wait 100ms. */
|
|
|
|
g_usleep(100 * 1000);
|
|
|
|
|
|
|
|
sdi->status = SR_ST_ACTIVE;
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
|
|
|
|
err_dev_open_close_ftdic:
|
2012-08-02 19:35:25 +00:00
|
|
|
(void) la8_close(devc); /* Log, but ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-07-21 20:04:47 +00:00
|
|
|
static int hw_dev_close(struct sr_dev_inst *sdi)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2013-02-01 21:58:54 +00:00
|
|
|
devc = sdi->priv;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
if (sdi->status == SR_ST_ACTIVE) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Status ACTIVE, closing device.");
|
2012-08-02 19:35:25 +00:00
|
|
|
(void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
|
2012-06-21 20:36:13 +00:00
|
|
|
} else {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_spew("Status not ACTIVE, nothing to do.");
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sdi->status = SR_ST_INACTIVE;
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
g_free(devc->final_buf);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hw_cleanup(void)
|
|
|
|
{
|
2012-11-06 23:39:46 +00:00
|
|
|
if (!di->priv)
|
|
|
|
/* Can get called on an unused driver, doesn't matter. */
|
|
|
|
return SR_OK;
|
2012-08-02 19:54:21 +00:00
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
clear_instances();
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-07-14 10:27:02 +00:00
|
|
|
return SR_OK;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
2013-03-31 19:31:49 +00:00
|
|
|
static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2013-01-24 18:19:09 +00:00
|
|
|
switch (id) {
|
2013-01-25 02:17:36 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2012-07-15 01:52:22 +00:00
|
|
|
if (sdi) {
|
2012-08-02 19:35:25 +00:00
|
|
|
devc = sdi->priv;
|
2013-03-31 19:31:49 +00:00
|
|
|
*data = g_variant_new_uint64(devc->cur_samplerate);
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_spew("%s: Returning samplerate: %" PRIu64 "Hz.",
|
2012-08-02 19:35:25 +00:00
|
|
|
__func__, devc->cur_samplerate);
|
2012-07-15 01:52:22 +00:00
|
|
|
} else
|
|
|
|
return SR_ERR;
|
2012-06-21 20:36:13 +00:00
|
|
|
break;
|
2012-07-15 02:07:34 +00:00
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
2012-07-15 01:52:22 +00:00
|
|
|
return SR_OK;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
2013-03-31 19:31:49 +00:00
|
|
|
static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc = sdi->priv)) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sdi->priv was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR_BUG;
|
|
|
|
}
|
|
|
|
|
2013-01-24 18:19:09 +00:00
|
|
|
switch (id) {
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
2013-03-31 19:31:49 +00:00
|
|
|
if (set_samplerate(sdi, g_variant_get_uint64(data)) == SR_ERR) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: setting samplerate failed.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("SAMPLERATE = %" PRIu64, devc->cur_samplerate);
|
2012-06-21 20:36:13 +00:00
|
|
|
break;
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_LIMIT_MSEC:
|
2013-03-31 19:31:49 +00:00
|
|
|
if (g_variant_get_uint64(data) == 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: LIMIT_MSEC can't be 0.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2013-03-31 19:31:49 +00:00
|
|
|
devc->limit_msec = g_variant_get_uint64(data);
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("LIMIT_MSEC = %" PRIu64, devc->limit_msec);
|
2012-06-21 20:36:13 +00:00
|
|
|
break;
|
2013-01-21 22:22:47 +00:00
|
|
|
case SR_CONF_LIMIT_SAMPLES:
|
2013-03-31 19:31:49 +00:00
|
|
|
if (g_variant_get_uint64(data) < MIN_NUM_SAMPLES) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: LIMIT_SAMPLES too small.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2013-03-31 19:31:49 +00:00
|
|
|
devc->limit_samples = g_variant_get_uint64(data);
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("LIMIT_SAMPLES = %" PRIu64, devc->limit_samples);
|
2012-06-21 20:36:13 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-31 19:31:49 +00:00
|
|
|
static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
|
2013-01-25 01:32:05 +00:00
|
|
|
{
|
2013-03-31 19:31:49 +00:00
|
|
|
GVariant *gvar;
|
|
|
|
GVariantBuilder gvb;
|
2013-01-25 01:32:05 +00:00
|
|
|
|
|
|
|
(void)sdi;
|
|
|
|
|
|
|
|
switch (key) {
|
2013-01-25 14:01:49 +00:00
|
|
|
case SR_CONF_DEVICE_OPTIONS:
|
2013-03-31 19:31:49 +00:00
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
2013-04-16 13:42:45 +00:00
|
|
|
chronovu_la8_hwcaps,
|
|
|
|
ARRAY_SIZE(chronovu_la8_hwcaps),
|
2013-03-31 19:31:49 +00:00
|
|
|
sizeof(int32_t));
|
2013-01-25 14:01:49 +00:00
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
case SR_CONF_SAMPLERATE:
|
|
|
|
fill_supported_samplerates_if_needed();
|
2013-03-31 19:31:49 +00:00
|
|
|
g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
|
|
|
|
gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
|
2013-04-16 13:42:45 +00:00
|
|
|
chronovu_la8_samplerates,
|
|
|
|
ARRAY_SIZE(chronovu_la8_samplerates),
|
2013-03-31 19:31:49 +00:00
|
|
|
sizeof(uint64_t));
|
|
|
|
g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
|
|
|
|
*data = g_variant_builder_end(&gvb);
|
2013-01-25 01:32:05 +00:00
|
|
|
break;
|
2013-01-25 10:52:27 +00:00
|
|
|
case SR_CONF_TRIGGER_TYPE:
|
2013-03-31 19:31:49 +00:00
|
|
|
*data = g_variant_new_string(TRIGGER_TYPE);
|
2013-01-25 10:52:27 +00:00
|
|
|
break;
|
2013-01-25 01:32:05 +00:00
|
|
|
default:
|
2013-04-16 00:33:03 +00:00
|
|
|
return SR_ERR_NA;
|
2013-01-25 01:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:36:13 +00:00
|
|
|
static int receive_data(int fd, int revents, void *cb_data)
|
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
struct sr_dev_inst *sdi;
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
(void)fd;
|
|
|
|
(void)revents;
|
|
|
|
|
|
|
|
if (!(sdi = cb_data)) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: cb_data was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc = sdi->priv)) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sdi->priv was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!devc->ftdic) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: devc->ftdic was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get one block of data. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if ((ret = la8_read_block(devc)) < 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: la8_read_block error: %d.", __func__, ret);
|
2012-07-21 20:41:58 +00:00
|
|
|
hw_dev_acquisition_stop(sdi, sdi);
|
2012-06-21 20:36:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need to get exactly NUM_BLOCKS blocks (i.e. 8MB) of data. */
|
2012-08-02 19:35:25 +00:00
|
|
|
if (devc->block_counter != (NUM_BLOCKS - 1)) {
|
|
|
|
devc->block_counter++;
|
2012-06-21 20:36:13 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Sampling finished, sending data to session bus now.");
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* All data was received and demangled, send it to the session bus. */
|
|
|
|
for (i = 0; i < NUM_BLOCKS; i++)
|
2012-08-02 19:35:25 +00:00
|
|
|
send_block_to_session_bus(devc, i);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-07-21 20:41:58 +00:00
|
|
|
hw_dev_acquisition_stop(sdi, sdi);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-21 20:41:58 +00:00
|
|
|
static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
2012-10-27 19:27:15 +00:00
|
|
|
void *cb_data)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
2012-08-02 19:35:25 +00:00
|
|
|
struct dev_context *devc;
|
2012-06-21 20:36:13 +00:00
|
|
|
uint8_t buf[4];
|
|
|
|
int bytes_written;
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!(devc = sdi->priv)) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: sdi->priv was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR_BUG;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
if (!devc->ftdic) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: devc->ftdic was NULL.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR_BUG;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:35:25 +00:00
|
|
|
devc->divcount = samplerate_to_divcount(devc->cur_samplerate);
|
|
|
|
if (devc->divcount == 0xff) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("%s: Invalid divcount/samplerate.", __func__);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-08-05 16:56:12 +00:00
|
|
|
if (configure_probes(sdi) != SR_OK) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("Failed to configure probes.");
|
2012-08-05 16:56:12 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:36:13 +00:00
|
|
|
/* Fill acquisition parameters into buf[]. */
|
2012-08-02 19:35:25 +00:00
|
|
|
buf[0] = devc->divcount;
|
2012-06-21 20:36:13 +00:00
|
|
|
buf[1] = 0xff; /* This byte must always be 0xff. */
|
2012-08-02 19:35:25 +00:00
|
|
|
buf[2] = devc->trigger_pattern;
|
|
|
|
buf[3] = devc->trigger_mask;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Start acquisition. */
|
2012-08-02 19:35:25 +00:00
|
|
|
bytes_written = la8_write(devc, buf, 4);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
if (bytes_written < 0) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("Acquisition failed to start: %d.", bytes_written);
|
2012-06-21 20:36:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
} else if (bytes_written != 4) {
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_err("Acquisition failed to start: %d.", bytes_written);
|
2012-08-03 11:50:31 +00:00
|
|
|
return SR_ERR;
|
2012-06-21 20:36:13 +00:00
|
|
|
}
|
|
|
|
|
2013-02-06 18:57:32 +00:00
|
|
|
sr_dbg("Hardware acquisition started successfully.");
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2013-02-07 08:11:26 +00:00
|
|
|
devc->cb_data = cb_data;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Send header packet to the session bus. */
|
2013-02-06 18:57:32 +00:00
|
|
|
std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Time when we should be done (for detecting trigger timeouts). */
|
2012-08-02 19:35:25 +00:00
|
|
|
devc->done = (devc->divcount + 1) * 0.08388608 + time(NULL)
|
|
|
|
+ devc->trigger_timeout;
|
|
|
|
devc->block_counter = 0;
|
|
|
|
devc->trigger_found = 0;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
/* Hook up a dummy handler to receive data from the LA8. */
|
2012-07-21 20:41:58 +00:00
|
|
|
sr_source_add(-1, G_IO_IN, 0, receive_data, (void *)sdi);
|
2012-06-21 20:36:13 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-11-06 14:02:37 +00:00
|
|
|
static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
|
2012-06-21 20:36:13 +00:00
|
|
|
{
|
|
|
|
struct sr_datafeed_packet packet;
|
|
|
|
|
2012-08-03 11:50:31 +00:00
|
|
|
(void)sdi;
|
2012-06-21 20:36:13 +00:00
|
|
|
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Stopping acquisition.");
|
2012-08-03 08:17:31 +00:00
|
|
|
sr_source_remove(-1);
|
|
|
|
|
2012-06-21 20:36:13 +00:00
|
|
|
/* Send end packet to the session bus. */
|
2012-10-27 19:27:15 +00:00
|
|
|
sr_dbg("Sending SR_DF_END.");
|
2012-06-21 20:36:13 +00:00
|
|
|
packet.type = SR_DF_END;
|
|
|
|
sr_session_send(cb_data, &packet);
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
SR_PRIV struct sr_dev_driver chronovu_la8_driver_info = {
|
|
|
|
.name = "chronovu-la8",
|
|
|
|
.longname = "ChronoVu LA8",
|
|
|
|
.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 = clear_instances,
|
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,
|
2012-06-21 20:36:13 +00:00
|
|
|
.dev_open = hw_dev_open,
|
|
|
|
.dev_close = hw_dev_close,
|
|
|
|
.dev_acquisition_start = hw_dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = hw_dev_acquisition_stop,
|
2012-08-02 19:35:25 +00:00
|
|
|
.priv = NULL,
|
2012-06-21 20:36:13 +00:00
|
|
|
};
|