libsigrok/hwplugin.c

294 lines
7.0 KiB
C
Raw Normal View History

/*
* This file is part of the sigrok project.
*
* Copyright (C) 2010 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 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 "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <glib.h>
#include "sigrok.h"
#include "sigrok-internal.h"
2010-04-15 18:16:53 +00:00
/* The list of loaded plugins lives here. */
static GSList *plugins;
2010-04-15 18:16:53 +00:00
/*
* This enumerates which plugin capabilities correspond to user-settable
* options.
*/
/* TODO: This shouldn't be a global. */
struct sr_hwcap_option sr_hwcap_options[] = {
2011-01-30 16:58:41 +00:00
{SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
{SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
{SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"},
{SR_HWCAP_RLE, SR_T_BOOL, "Run Length Encoding", "rle"},
2010-05-18 22:38:14 +00:00
{0, 0, NULL, NULL},
};
2011-01-11 21:17:33 +00:00
#ifdef HAVE_LA_DEMO
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin demo_plugin_info;
2011-01-11 21:17:33 +00:00
#endif
#ifdef HAVE_LA_SALEAE_LOGIC
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin saleae_logic_plugin_info;
#endif
#ifdef HAVE_LA_OLS
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin ols_plugin_info;
#endif
#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin zeroplus_logic_cube_plugin_info;
#endif
#ifdef HAVE_LA_ASIX_SIGMA
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin asix_sigma_plugin_info;
#endif
#ifdef HAVE_LA_CHRONOVU_LA8
extern struct device_plugin chronovu_la8_plugin_info;
#endif
#ifdef HAVE_LA_LINK_MSO19
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin link_mso19_plugin_info;
#endif
#ifdef HAVE_LA_ALSA
2011-01-30 15:19:42 +00:00
extern struct sr_device_plugin alsa_plugin_info;
#endif
2010-05-18 22:38:14 +00:00
/* TODO: No linked list needed, this can be a simple array. */
int load_hwplugins(void)
{
2011-01-11 21:17:33 +00:00
#ifdef HAVE_LA_DEMO
plugins = g_slist_append(plugins, (gpointer *)&demo_plugin_info);
2011-01-11 21:17:33 +00:00
#endif
#ifdef HAVE_LA_SALEAE_LOGIC
2010-04-15 18:16:53 +00:00
plugins =
2010-05-18 22:38:14 +00:00
g_slist_append(plugins, (gpointer *)&saleae_logic_plugin_info);
#endif
#ifdef HAVE_LA_OLS
2010-05-18 22:38:14 +00:00
plugins = g_slist_append(plugins, (gpointer *)&ols_plugin_info);
#endif
#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
2010-04-15 18:16:53 +00:00
plugins = g_slist_append(plugins,
2010-05-18 22:38:14 +00:00
(gpointer *)&zeroplus_logic_cube_plugin_info);
#endif
#ifdef HAVE_LA_ASIX_SIGMA
plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
#endif
#ifdef HAVE_LA_CHRONOVU_LA8
plugins = g_slist_append(plugins, (gpointer *)&chronovu_la8_plugin_info);
#endif
#ifdef HAVE_LA_LINK_MSO19
plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
#endif
#ifdef HAVE_LA_ALSA
plugins = g_slist_append(plugins, (gpointer *)&alsa_plugin_info);
#endif
2011-01-29 15:23:12 +00:00
return SR_OK;
}
2011-02-20 12:24:26 +00:00
GSList *sr_list_hwplugins(void)
{
return plugins;
}
int sr_init_hwplugins(struct sr_device_plugin *plugin)
{
int num_devices, num_probes, i, j;
int num_initialized_devices = 0;
struct sr_device *device;
char **probe_names;
sr_dbg("initializing %s plugin", plugin->name);
num_devices = plugin->init(NULL);
for (i = 0; i < num_devices; i++) {
num_probes = GPOINTER_TO_INT(
plugin->get_device_info(i, SR_DI_NUM_PROBES));
probe_names = (char **)plugin->get_device_info(i,
SR_DI_PROBE_NAMES);
if (!probe_names) {
sr_warn("hwplugin: %s: plugin %s does not return a "
"list of probe names", __func__, plugin->name);
continue;
}
device = sr_device_new(plugin, i);
for (j = 0; j < num_probes; j++)
sr_device_probe_add(device, probe_names[j]);
num_initialized_devices++;
}
return num_initialized_devices;
}
void sr_cleanup_hwplugins(void)
{
struct sr_device_plugin *plugin;
GSList *l;
for (l = plugins; l; l = l->next) {
plugin = l->data;
if (plugin->cleanup)
plugin->cleanup();
}
}
2011-01-29 15:43:45 +00:00
struct sr_device_instance *sr_device_instance_new(int index, int status,
2010-05-18 22:38:14 +00:00
const char *vendor, const char *model, const char *version)
{
2011-01-29 15:43:45 +00:00
struct sr_device_instance *sdi;
if (!(sdi = g_malloc(sizeof(struct sr_device_instance))))
return NULL;
sdi->index = index;
sdi->status = status;
sdi->instance_type = -1;
sdi->vendor = vendor ? g_strdup(vendor) : NULL;
sdi->model = model ? g_strdup(model) : NULL;
sdi->version = version ? g_strdup(version) : NULL;
sdi->priv = NULL;
sdi->usb = NULL;
return sdi;
}
struct sr_device_instance *sr_get_device_instance(GSList *device_instances,
int device_index)
{
2011-01-29 15:43:45 +00:00
struct sr_device_instance *sdi;
GSList *l;
2010-04-15 18:16:53 +00:00
for (l = device_instances; l; l = l->next) {
2011-01-29 15:43:45 +00:00
sdi = (struct sr_device_instance *)(l->data);
2010-04-15 18:16:53 +00:00
if (sdi->index == device_index)
return sdi;
}
sr_warn("could not find device index %d instance", device_index);
return NULL;
}
2011-01-29 15:43:45 +00:00
void sr_device_instance_free(struct sr_device_instance *sdi)
{
2010-04-15 18:16:53 +00:00
switch (sdi->instance_type) {
#ifdef HAVE_LIBUSB_1_0
2011-01-30 16:58:41 +00:00
case SR_USB_INSTANCE:
2011-01-30 15:44:26 +00:00
sr_usb_device_instance_free(sdi->usb);
break;
#endif
2011-01-30 16:58:41 +00:00
case SR_SERIAL_INSTANCE:
2011-01-30 15:44:26 +00:00
sr_serial_device_instance_free(sdi->serial);
break;
2010-05-18 22:38:14 +00:00
default:
2010-04-15 18:16:53 +00:00
/* No specific type, nothing extra to free. */
2010-05-18 22:38:14 +00:00
break;
}
if (sdi->priv)
g_free(sdi->priv);
g_free(sdi->vendor);
g_free(sdi->model);
g_free(sdi->version);
g_free(sdi);
}
#ifdef HAVE_LIBUSB_1_0
2011-01-30 15:44:26 +00:00
struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
2010-04-15 18:16:53 +00:00
uint8_t address, struct libusb_device_handle *hdl)
{
2011-01-30 15:44:26 +00:00
struct sr_usb_device_instance *udi;
2011-01-30 15:44:26 +00:00
if (!(udi = malloc(sizeof(struct sr_usb_device_instance))))
return NULL;
udi->bus = bus;
udi->address = address;
2010-05-18 22:38:14 +00:00
udi->devhdl = hdl; /* TODO: Check if this is NULL? */
return udi;
}
2011-01-30 15:44:26 +00:00
void sr_usb_device_instance_free(struct sr_usb_device_instance *usb)
{
/* Avoid compiler warnings. */
(void)usb;
2010-04-15 18:16:53 +00:00
/* Nothing to do for this device instance type. */
}
#endif
2011-01-30 15:44:26 +00:00
struct sr_serial_device_instance *sr_serial_device_instance_new(
2010-05-18 22:38:14 +00:00
const char *port, int fd)
{
2011-01-30 15:44:26 +00:00
struct sr_serial_device_instance *serial;
2011-01-30 15:44:26 +00:00
if (!(serial = malloc(sizeof(struct sr_serial_device_instance))))
return NULL;
serial->port = strdup(port);
serial->fd = fd;
return serial;
}
2011-01-30 15:44:26 +00:00
void sr_serial_device_instance_free(struct sr_serial_device_instance *serial)
{
free(serial->port);
}
int sr_find_hwcap(int *capabilities, int hwcap)
{
int i;
2010-05-18 22:38:14 +00:00
for (i = 0; capabilities[i]; i++) {
2010-04-15 18:16:53 +00:00
if (capabilities[i] == hwcap)
return TRUE;
2010-05-18 22:38:14 +00:00
}
return FALSE;
}
struct sr_hwcap_option *sr_find_hwcap_option(int hwcap)
{
int i;
for (i = 0; sr_hwcap_options[i].capability; i++) {
if (sr_hwcap_options[i].capability == hwcap)
return &sr_hwcap_options[i];
}
2010-05-18 22:38:14 +00:00
return NULL;
}
/* unnecessary level of indirection follows. */
void sr_source_remove(int fd)
{
sr_session_source_remove(fd);
}
void sr_source_add(int fd, int events, int timeout,
sr_receive_data_callback rcv_cb, void *user_data)
{
sr_session_source_add(fd, events, timeout, rcv_cb, user_data);
}