libsigrok/hardware/genericdmm/api.c

709 lines
16 KiB
C
Raw Normal View History

2012-07-01 20:37:15 +00:00
/*
* This file is part of the sigrok project.
*
* Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
* Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 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 <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include "libsigrok.h"
#include "libsigrok-internal.h"
2012-07-01 20:37:15 +00:00
#include "genericdmm.h"
extern SR_PRIV struct dmmchip dmmchip_fs9922;
extern SR_PRIV struct dmmchip dmmchip_victor70c;
2012-07-01 20:37:15 +00:00
static struct sr_hwopt victor_70c_vidpid[] = {
{ SR_HWOPT_CONN, "1244.d237" },
{ 0, NULL }
};
2012-07-01 20:37:15 +00:00
static struct dev_profile dev_profiles[] = {
{ "victor-70c", "Victor", "70C", &dmmchip_victor70c,
DMM_TRANSPORT_USBHID, 1000, victor_70c_vidpid
},
2012-08-18 14:21:21 +00:00
{ "mastech-va18b", "Mastech", "VA18B", NULL, DMM_TRANSPORT_SERIAL, 0, NULL},
{ NULL, NULL, NULL, NULL, 0, 0, NULL }
2012-07-01 20:37:15 +00:00
};
static const int hwopts[] = {
SR_HWOPT_MODEL,
SR_HWOPT_CONN,
SR_HWOPT_SERIALCOMM,
0,
};
2012-07-01 20:37:15 +00:00
static const int hwcaps[] = {
SR_HWCAP_MULTIMETER,
SR_HWCAP_LIMIT_SAMPLES,
SR_HWCAP_LIMIT_MSEC,
SR_HWCAP_CONTINUOUS,
0,
};
static const char *probe_names[] = {
"Probe",
NULL,
};
SR_PRIV struct sr_dev_driver genericdmm_driver_info;
static struct sr_dev_driver *gdi = &genericdmm_driver_info;
/* TODO need a way to keep this local to the static library */
2012-08-18 14:21:21 +00:00
static libusb_context *genericdmm_usb_context = NULL;
static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
void *cb_data);
2012-07-01 20:37:15 +00:00
static GSList *connect_usb(const char *conn)
{
struct sr_dev_inst *sdi;
struct drv_context *drvc;
struct dev_context *devc;
2012-08-18 14:21:21 +00:00
struct sr_probe *probe;
libusb_device **devlist;
struct libusb_device_descriptor des;
GSList *devices;
GRegex *reg;
GMatchInfo *match;
int vid, pid, bus, addr, devcnt, err, i;
char *mstr;
drvc = gdi->priv;
vid = pid = bus = addr = 0;
reg = g_regex_new(DMM_CONN_USB_VIDPID, 0, 0, NULL);
if (g_regex_match(reg, conn, 0, &match)) {
/* Extract VID. */
if ((mstr = g_match_info_fetch(match, 1)))
vid = strtoul(mstr, NULL, 16);
g_free(mstr);
/* Extract PID. */
if ((mstr = g_match_info_fetch(match, 2)))
pid = strtoul(mstr, NULL, 16);
g_free(mstr);
} else {
g_match_info_unref(match);
g_regex_unref(reg);
reg = g_regex_new(DMM_CONN_USB_BUSADDR, 0, 0, NULL);
if (g_regex_match(reg, conn, 0, &match)) {
/* Extract bus. */
if ((mstr = g_match_info_fetch(match, 0)))
bus = strtoul(mstr, NULL, 16);
g_free(mstr);
/* Extract address. */
if ((mstr = g_match_info_fetch(match, 0)))
addr = strtoul(mstr, NULL, 16);
g_free(mstr);
}
}
g_match_info_unref(match);
g_regex_unref(reg);
if (vid + pid + bus + addr == 0)
return NULL;
if (bus > 64) {
sr_err("invalid bus");
return NULL;
}
if (addr > 127) {
sr_err("invalid address");
return NULL;
}
/* Looks like a valid USB device specification, but is it connected? */
devices = NULL;
libusb_get_device_list(genericdmm_usb_context, &devlist);
for (i = 0; devlist[i]; i++) {
if ((err = libusb_get_device_descriptor(devlist[i], &des))) {
sr_err("genericdmm: failed to get device descriptor: %d", err);
continue;
}
if (vid + pid && (des.idVendor != vid || des.idProduct != pid))
/* VID/PID specified, but no match. */
continue;
if (bus + addr && (
libusb_get_bus_number(devlist[i]) != bus
|| libusb_get_device_address(devlist[i]) != addr))
/* Bus/address specified, but no match. */
continue;
/* Found one. */
if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
sr_err("genericdmm: devc malloc failed.");
return 0;
}
devcnt = g_slist_length(drvc->instances);
2012-08-18 14:21:21 +00:00
if (!(sdi = sr_dev_inst_new(devcnt, SR_ST_INACTIVE,
2012-07-13 00:37:17 +00:00
NULL, NULL, NULL))) {
sr_err("genericdmm: sr_dev_inst_new returned NULL.");
return NULL;
}
sdi->priv = devc;
2012-08-18 14:21:21 +00:00
if (!(probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1")))
return NULL;
sdi->probes = g_slist_append(sdi->probes, probe);
devc->usb = sr_usb_dev_inst_new(
libusb_get_bus_number(devlist[i]),
libusb_get_device_address(devlist[i]), NULL);
devices = g_slist_append(devices, sdi);
}
libusb_free_device_list(devlist, 1);
return devices;
}
static GSList *connect_serial(const char *conn, const char *serialcomm)
{
GSList *devices;
devices = NULL;
/* TODO */
sr_dbg("not yet implemented");
return devices;
}
GSList *genericdmm_connect(const char *conn, const char *serialcomm)
{
GSList *devices;
if (serialcomm)
/* Must be a serial port. */
return connect_serial(conn, serialcomm);
if ((devices = connect_usb(conn)))
return devices;
return NULL;
}
2012-07-08 21:49:04 +00:00
static GSList *default_scan(GSList *options)
{
GSList *l, *devices;
struct sr_hwopt *opt;
const char *conn, *serialcomm;
devices = NULL;
conn = serialcomm = NULL;
for (l = options; l; l = l->next) {
opt = l->data;
switch (opt->hwopt) {
case SR_HWOPT_CONN:
conn = opt->value;
break;
case SR_HWOPT_SERIALCOMM:
serialcomm = opt->value;
break;
}
}
if (conn)
devices = genericdmm_connect(conn, serialcomm);
return devices;
}
2012-08-18 14:21:21 +00:00
static int open_usb(struct sr_dev_inst *sdi)
{
libusb_device **devlist;
struct libusb_device_descriptor des;
struct dev_context *devc;
int ret, tmp, cnt, i;
devc = sdi->priv;
if (sdi->status == SR_ST_ACTIVE)
/* already in use */
return SR_ERR;
cnt = libusb_get_device_list(genericdmm_usb_context, &devlist);
if (cnt < 0) {
sr_err("genericdmm: Failed to retrieve device list (%d)", cnt);
return SR_ERR;
}
ret = SR_ERR;
for (i = 0; i < cnt; i++) {
if ((tmp = libusb_get_device_descriptor(devlist[i], &des))) {
sr_err("genericdmm: Failed to get device descriptor: %d.", tmp);
continue;
}
if (libusb_get_bus_number(devlist[i]) != devc->usb->bus
|| libusb_get_device_address(devlist[i]) != devc->usb->address)
/* this is not the one */
continue;
if ((tmp = libusb_open(devlist[i], &devc->usb->devhdl))) {
sr_err("genericdmm: Failed to open device: %d.", tmp);
break;
}
sr_info("genericdmm: Opened device %s on %d.%d ", devc->profile->modelid,
devc->usb->bus, devc->usb->address);
ret = SR_OK;
break;
}
libusb_free_device_list(devlist, 1);
return ret;
}
static int clear_instances(void)
{
GSList *l;
struct sr_dev_inst *sdi;
struct dev_context *devc;
struct drv_context *drvc;
if (!(drvc = gdi->priv))
return SR_OK;
/* Properly close and free all devices. */
for (l = drvc->instances; l; l = l->next) {
if (!(sdi = l->data)) {
/* Log error, but continue cleaning up the rest. */
sr_err("genericdmm: sdi was NULL, continuing.");
continue;
}
if (!(devc = sdi->priv)) {
/* Log error, but continue cleaning up the rest. */
sr_err("genericdmm: sdi->priv was NULL, continuing.");
continue;
}
if (devc->profile) {
switch (devc->profile->transport) {
case DMM_TRANSPORT_USBHID:
sr_usb_dev_inst_free(devc->usb);
break;
case DMM_TRANSPORT_SERIAL:
if (devc->serial && devc->serial->fd != -1)
serial_close(devc->serial->fd);
sr_serial_dev_inst_free(devc->serial);
break;
}
}
sr_dev_inst_free(sdi);
}
g_slist_free(drvc->instances);
drvc->instances = NULL;
return SR_OK;
}
static int hw_init(void)
2012-07-01 20:37:15 +00:00
{
struct drv_context *drvc;
if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
sr_err("genericdmm: driver context malloc failed.");
return SR_ERR;
}
2012-07-01 20:37:15 +00:00
if (libusb_init(&genericdmm_usb_context) != 0) {
sr_err("genericdmm: Failed to initialize USB.");
return SR_ERR;
2012-07-01 20:37:15 +00:00
}
gdi->priv = drvc;
return SR_OK;
}
2012-07-08 21:49:04 +00:00
static GSList *hw_scan(GSList *options)
{
2012-07-08 21:49:04 +00:00
GSList *l, *ldef, *defopts, *newopts, *devices;
struct sr_hwopt *opt, *defopt;
struct dev_profile *pr, *profile;
2012-07-13 00:37:17 +00:00
struct sr_dev_inst *sdi;
struct drv_context *drvc;
2012-08-18 14:21:21 +00:00
struct dev_context *devc;
2012-07-08 21:49:04 +00:00
const char *model;
drvc = gdi->priv;
2012-07-08 21:49:04 +00:00
/* Separate model from the options list. */
model = NULL;
newopts = NULL;
for (l = options; l; l = l->next) {
opt = l->data;
if (opt->hwopt == SR_HWOPT_MODEL)
model = opt->value;
else
/* New list with references to the original data. */
newopts = g_slist_append(newopts, opt);
}
if (!model) {
2012-07-13 00:37:17 +00:00
/* This driver only works when a model is specified. */
2012-07-08 21:49:04 +00:00
return NULL;
}
2012-07-08 21:49:04 +00:00
/* Find a profile with this model name. */
profile = NULL;
for (pr = dev_profiles; pr->modelid; pr++) {
if (!strcmp(pr->modelid, model)) {
profile = pr;
break;
}
2012-07-01 20:37:15 +00:00
}
2012-07-08 21:49:04 +00:00
if (!profile) {
sr_err("Unknown model %s.", model);
return NULL;
}
/* Initialize the DMM chip driver. */
if (profile->chip->init)
profile->chip->init();
2012-07-01 20:37:15 +00:00
2012-07-08 21:49:04 +00:00
/* Convert the profile's default options list to a GSList. */
defopts = NULL;
for (opt = profile->defaults_opts; opt->hwopt; opt++) {
/* New list with references to const data in the profile. */
defopts = g_slist_append(defopts, opt);
2012-07-01 20:37:15 +00:00
}
2012-07-08 21:49:04 +00:00
/* Options given as argument to this function override the
* profile's default options.
*/
for (ldef = defopts; ldef; ldef = ldef->next) {
defopt = ldef->data;
for (l = newopts; l; l = l->next) {
opt = l->data;
if (opt->hwopt == defopt->hwopt) {
/* Override the default, and drop it from the
* options list.
*/
ldef->data = l->data;
newopts = g_slist_remove(newopts, opt);
break;
}
}
}
/* Whatever is left in newopts wasn't in the default options. */
defopts = g_slist_concat(defopts, newopts);
g_slist_free(newopts);
if (profile->chip->scan)
/* The DMM chip driver wants to do its own scanning. */
devices = profile->chip->scan(defopts);
else
devices = default_scan(defopts);
g_slist_free(defopts);
if (devices) {
/* TODO: need to fix up sdi->index fields */
2012-07-13 00:37:17 +00:00
for (l = devices; l; l = l->next) {
/* The default connection-based scanner doesn't really
* know about profiles, so it never filled in the vendor
* or model. Do that now.
*/
sdi = l->data;
2012-08-18 14:21:21 +00:00
devc = sdi->priv;
devc->profile = profile;
2012-07-13 00:37:17 +00:00
sdi->driver = gdi;
if (!sdi->vendor)
sdi->vendor = g_strdup(profile->vendor);
if (!sdi->model)
sdi->model = g_strdup(profile->model);
/* Add a copy of these new devices to the driver instances. */
drvc->instances = g_slist_append(drvc->instances, l->data);
2012-07-13 00:37:17 +00:00
}
2012-07-08 21:49:04 +00:00
}
return devices;
2012-07-01 20:37:15 +00:00
}
static GSList *hw_dev_list(void)
{
struct drv_context *drvc;
drvc = gdi->priv;
return drvc->instances;
}
static int hw_dev_open(struct sr_dev_inst *sdi)
2012-07-01 20:37:15 +00:00
{
struct dev_context *devc;
2012-08-18 14:21:21 +00:00
int ret;
2012-07-01 20:37:15 +00:00
if (!(devc = sdi->priv)) {
2012-07-01 20:37:15 +00:00
sr_err("genericdmm: sdi->priv was NULL.");
return SR_ERR_BUG;
}
2012-08-18 14:21:21 +00:00
ret = SR_OK;
switch (devc->profile->transport) {
2012-07-01 20:37:15 +00:00
case DMM_TRANSPORT_USBHID:
2012-08-18 14:21:21 +00:00
ret = open_usb(sdi);
2012-07-01 20:37:15 +00:00
break;
case DMM_TRANSPORT_SERIAL:
sr_dbg("genericdmm: Opening serial port '%s'.", devc->serial->port);
devc->serial->fd = serial_open(devc->serial->port, O_RDWR | O_NONBLOCK);
if (devc->serial->fd == -1) {
2012-07-01 20:37:15 +00:00
sr_err("genericdmm: Couldn't open serial port '%s'.",
devc->serial->port);
2012-08-18 14:21:21 +00:00
ret = SR_ERR;
2012-07-01 20:37:15 +00:00
}
// serial_set_params(devc->serial->fd, 2400, 8, 0, 1, 2);
2012-07-01 20:37:15 +00:00
break;
default:
sr_err("No transport set.");
2012-08-18 14:21:21 +00:00
ret = SR_ERR;
2012-07-01 20:37:15 +00:00
}
2012-08-18 14:21:21 +00:00
return ret;
2012-07-01 20:37:15 +00:00
}
static int hw_dev_close(struct sr_dev_inst *sdi)
2012-07-01 20:37:15 +00:00
{
struct dev_context *devc;
2012-07-01 20:37:15 +00:00
if (!(devc = sdi->priv)) {
2012-07-01 20:37:15 +00:00
sr_err("genericdmm: %s: sdi->priv was NULL.", __func__);
return SR_ERR_BUG;
}
switch (devc->profile->transport) {
2012-07-01 20:37:15 +00:00
case DMM_TRANSPORT_USBHID:
/* TODO */
break;
case DMM_TRANSPORT_SERIAL:
if (devc->serial && devc->serial->fd != -1) {
serial_close(devc->serial->fd);
devc->serial->fd = -1;
2012-07-01 20:37:15 +00:00
sdi->status = SR_ST_INACTIVE;
}
break;
}
return SR_OK;
}
static int hw_cleanup(void)
{
clear_instances();
2012-07-01 20:37:15 +00:00
if (genericdmm_usb_context)
libusb_exit(genericdmm_usb_context);
return SR_OK;
}
2012-07-22 09:49:00 +00:00
static int hw_info_get(int info_id, const void **data,
const struct sr_dev_inst *sdi)
2012-07-01 20:37:15 +00:00
{
struct dev_context *devc;
2012-07-01 20:37:15 +00:00
2012-07-24 22:33:38 +00:00
(void)sdi;
(void)devc;
2012-07-24 22:33:38 +00:00
2012-07-22 09:49:00 +00:00
switch (info_id) {
case SR_DI_HWOPTS:
*data = hwopts;
break;
case SR_DI_HWCAPS:
*data = hwcaps;
break;
2012-07-01 20:37:15 +00:00
case SR_DI_NUM_PROBES:
*data = GINT_TO_POINTER(1);
2012-07-01 20:37:15 +00:00
break;
case SR_DI_PROBE_NAMES:
*data = probe_names;
2012-07-01 20:37:15 +00:00
break;
case SR_DI_CUR_SAMPLERATE:
/* TODO get rid of this */
*data = NULL;
2012-08-18 14:21:21 +00:00
return SR_ERR_ARG;
2012-07-01 20:37:15 +00:00
break;
default:
/* Unknown device info ID. */
return SR_ERR_ARG;
2012-07-01 20:37:15 +00:00
}
return SR_OK;
2012-07-01 20:37:15 +00:00
}
static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
const void *value)
2012-07-01 20:37:15 +00:00
{
struct dev_context *devc;
2012-07-01 20:37:15 +00:00
if (!(devc = sdi->priv)) {
2012-07-01 20:37:15 +00:00
sr_err("genericdmm: sdi->priv was NULL.");
return SR_ERR_BUG;
}
switch (hwcap) {
case SR_HWCAP_LIMIT_MSEC:
2012-08-18 14:21:21 +00:00
/* TODO: not yet implemented */
2012-07-01 20:37:15 +00:00
if (*(const uint64_t *)value == 0) {
sr_err("genericdmm: LIMIT_MSEC can't be 0.");
return SR_ERR;
}
devc->limit_msec = *(const uint64_t *)value;
2012-08-18 14:21:21 +00:00
sr_dbg("genericdmm: Setting time limit to %" PRIu64 "ms.",
devc->limit_msec);
2012-07-01 20:37:15 +00:00
break;
case SR_HWCAP_LIMIT_SAMPLES:
devc->limit_samples = *(const uint64_t *)value;
2012-08-18 14:21:21 +00:00
sr_dbg("genericdmm: Setting sample limit to %" PRIu64 ".",
devc->limit_samples);
2012-07-01 20:37:15 +00:00
break;
default:
sr_err("genericdmm: Unknown capability: %d.", hwcap);
return SR_ERR;
break;
}
return SR_OK;
}
static int receive_data(int fd, int revents, void *cb_data)
{
struct sr_dev_inst *sdi;
struct dev_context *devc;
2012-07-01 20:37:15 +00:00
2012-08-18 14:21:21 +00:00
(void)revents;
2012-07-01 20:37:15 +00:00
if (!(sdi = cb_data))
2012-08-18 14:21:21 +00:00
return TRUE;
2012-07-01 20:37:15 +00:00
if (!(devc = sdi->priv))
2012-08-18 14:21:21 +00:00
return TRUE;
2012-07-01 20:37:15 +00:00
switch (devc->profile->transport) {
2012-07-01 20:37:15 +00:00
case DMM_TRANSPORT_USBHID:
2012-08-18 14:21:21 +00:00
if (devc->profile->chip->data)
devc->profile->chip->data(sdi);
2012-07-01 20:37:15 +00:00
break;
case DMM_TRANSPORT_SERIAL:
/* TODO */
2012-08-18 14:21:21 +00:00
fd = fd;
2012-07-01 20:37:15 +00:00
break;
}
2012-08-18 14:21:21 +00:00
if (devc->num_samples >= devc->limit_samples)
hw_dev_acquisition_stop(sdi, cb_data);
2012-07-01 20:37:15 +00:00
return TRUE;
}
static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
void *cb_data)
2012-07-01 20:37:15 +00:00
{
struct sr_datafeed_packet packet;
struct sr_datafeed_header header;
struct sr_datafeed_meta_analog meta;
struct dev_context *devc;
2012-07-01 20:37:15 +00:00
if (!(devc = sdi->priv)) {
2012-07-01 20:37:15 +00:00
sr_err("genericdmm: sdi->priv was NULL.");
return SR_ERR_BUG;
}
sr_dbg("genericdmm: Starting acquisition.");
devc->cb_data = cb_data;
2012-07-01 20:37:15 +00:00
/* Send header packet to the session bus. */
sr_dbg("genericdmm: Sending SR_DF_HEADER.");
packet.type = SR_DF_HEADER;
packet.payload = (uint8_t *)&header;
header.feed_version = 1;
gettimeofday(&header.starttime, NULL);
sr_session_send(devc->cb_data, &packet);
2012-07-01 20:37:15 +00:00
/* Send metadata about the SR_DF_ANALOG packets to come. */
sr_dbg("genericdmm: Sending SR_DF_META_ANALOG.");
packet.type = SR_DF_META_ANALOG;
packet.payload = &meta;
meta.num_probes = 1;
sr_session_send(devc->cb_data, &packet);
2012-07-01 20:37:15 +00:00
/* Hook up a proxy handler to receive data from the device. */
switch (devc->profile->transport) {
2012-07-01 20:37:15 +00:00
case DMM_TRANSPORT_USBHID:
2012-08-18 14:21:21 +00:00
/* Callously using stdin here. This works because no G_IO_* flags
* are set, but will certainly break when any other driver does
* this, and runs at the same time as genericdmm.
* We'll need a timeout-only source when revamping the whole
* driver source system.
*/
sr_source_add(0, 0, devc->profile->poll_timeout,
receive_data, (void *)sdi);
2012-07-01 20:37:15 +00:00
break;
case DMM_TRANSPORT_SERIAL:
/* TODO serial FD setup */
// sr_source_add(devc->serial->fd, G_IO_IN, -1, receive_data, sdi);
2012-07-01 20:37:15 +00:00
break;
}
return SR_OK;
}
static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
void *cb_data)
2012-07-01 20:37:15 +00:00
{
struct sr_datafeed_packet packet;
/* Avoid compiler warnings. */
(void)sdi;
2012-07-01 20:37:15 +00:00
sr_dbg("genericdmm: Stopping acquisition.");
/* Send end packet to the session bus. */
sr_dbg("genericdmm: Sending SR_DF_END.");
packet.type = SR_DF_END;
sr_session_send(cb_data, &packet);
2012-08-18 14:21:21 +00:00
sr_source_remove(0);
2012-07-01 20:37:15 +00:00
return SR_OK;
}
SR_PRIV struct sr_dev_driver genericdmm_driver_info = {
.name = "genericdmm",
.longname = "Generic DMM",
.api_version = 1,
.init = hw_init,
.cleanup = hw_cleanup,
.scan = hw_scan,
.dev_list = hw_dev_list,
.dev_clear = clear_instances,
2012-07-01 20:37:15 +00:00
.dev_open = hw_dev_open,
.dev_close = hw_dev_close,
.info_get = hw_info_get,
2012-07-01 20:37:15 +00:00
.dev_config_set = hw_dev_config_set,
.dev_acquisition_start = hw_dev_acquisition_start,
.dev_acquisition_stop = hw_dev_acquisition_stop,
.priv = NULL,
2012-07-01 20:37:15 +00:00
};