]> sigrok.org Git - libsigrok.git/blame_incremental - hwplugin.c
sr: chronovu-la8: Add missing <stdlib.h> #include.
[libsigrok.git] / hwplugin.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <stdlib.h>
21#include <stdio.h>
22#include <sys/types.h>
23#include <dirent.h>
24#include <string.h>
25#include <glib.h>
26#include "sigrok.h"
27#include "sigrok-internal.h"
28
29/* The list of loaded plugins lives here. */
30static GSList *plugins;
31
32/*
33 * This enumerates which plugin capabilities correspond to user-settable
34 * options.
35 */
36/* TODO: This shouldn't be a global. */
37SR_API struct sr_hwcap_option sr_hwcap_options[] = {
38 {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
39 {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
40 {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"},
41 {SR_HWCAP_RLE, SR_T_BOOL, "Run Length Encoding", "rle"},
42 {0, 0, NULL, NULL},
43};
44
45#ifdef HAVE_LA_DEMO
46extern struct sr_device_plugin demo_plugin_info;
47#endif
48#ifdef HAVE_LA_SALEAE_LOGIC
49extern struct sr_device_plugin saleae_logic_plugin_info;
50#endif
51#ifdef HAVE_LA_OLS
52extern struct sr_device_plugin ols_plugin_info;
53#endif
54#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
55extern struct sr_device_plugin zeroplus_logic_cube_plugin_info;
56#endif
57#ifdef HAVE_LA_ASIX_SIGMA
58extern struct sr_device_plugin asix_sigma_plugin_info;
59#endif
60#ifdef HAVE_LA_CHRONOVU_LA8
61extern SR_PRIV struct device_plugin chronovu_la8_plugin_info;
62#endif
63#ifdef HAVE_LA_LINK_MSO19
64extern struct sr_device_plugin link_mso19_plugin_info;
65#endif
66#ifdef HAVE_LA_ALSA
67extern struct sr_device_plugin alsa_plugin_info;
68#endif
69
70/* TODO: No linked list needed, this can be a simple array. */
71SR_PRIV int load_hwplugins(void)
72{
73#ifdef HAVE_LA_DEMO
74 plugins = g_slist_append(plugins, (gpointer *)&demo_plugin_info);
75#endif
76#ifdef HAVE_LA_SALEAE_LOGIC
77 plugins =
78 g_slist_append(plugins, (gpointer *)&saleae_logic_plugin_info);
79#endif
80#ifdef HAVE_LA_OLS
81 plugins = g_slist_append(plugins, (gpointer *)&ols_plugin_info);
82#endif
83#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
84 plugins = g_slist_append(plugins,
85 (gpointer *)&zeroplus_logic_cube_plugin_info);
86#endif
87#ifdef HAVE_LA_ASIX_SIGMA
88 plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
89#endif
90#ifdef HAVE_LA_CHRONOVU_LA8
91 plugins = g_slist_append(plugins, (gpointer *)&chronovu_la8_plugin_info);
92#endif
93#ifdef HAVE_LA_LINK_MSO19
94 plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
95#endif
96#ifdef HAVE_LA_ALSA
97 plugins = g_slist_append(plugins, (gpointer *)&alsa_plugin_info);
98#endif
99
100 return SR_OK;
101}
102
103SR_API GSList *sr_list_hwplugins(void)
104{
105 return plugins;
106}
107
108SR_API int sr_init_hwplugins(struct sr_device_plugin *plugin)
109{
110 int num_devices, num_probes, i, j;
111 int num_initialized_devices = 0;
112 struct sr_device *device;
113 char **probe_names;
114
115 sr_dbg("initializing %s plugin", plugin->name);
116 num_devices = plugin->init(NULL);
117 for (i = 0; i < num_devices; i++) {
118 num_probes = GPOINTER_TO_INT(
119 plugin->get_device_info(i, SR_DI_NUM_PROBES));
120 probe_names = (char **)plugin->get_device_info(i,
121 SR_DI_PROBE_NAMES);
122
123 if (!probe_names) {
124 sr_warn("hwplugin: %s: plugin %s does not return a "
125 "list of probe names", __func__, plugin->name);
126 continue;
127 }
128
129 device = sr_device_new(plugin, i);
130 for (j = 0; j < num_probes; j++)
131 sr_device_probe_add(device, probe_names[j]);
132 num_initialized_devices++;
133 }
134
135 return num_initialized_devices;
136}
137
138SR_API void sr_cleanup_hwplugins(void)
139{
140 struct sr_device_plugin *plugin;
141 GSList *l;
142
143 for (l = plugins; l; l = l->next) {
144 plugin = l->data;
145 if (plugin->cleanup)
146 plugin->cleanup();
147 }
148}
149
150SR_API struct sr_device_instance *sr_device_instance_new(int index, int status,
151 const char *vendor, const char *model, const char *version)
152{
153 struct sr_device_instance *sdi;
154
155 if (!(sdi = g_malloc(sizeof(struct sr_device_instance))))
156 return NULL;
157
158 sdi->index = index;
159 sdi->status = status;
160 sdi->instance_type = -1;
161 sdi->vendor = vendor ? g_strdup(vendor) : NULL;
162 sdi->model = model ? g_strdup(model) : NULL;
163 sdi->version = version ? g_strdup(version) : NULL;
164 sdi->priv = NULL;
165
166 return sdi;
167}
168
169SR_API struct sr_device_instance *sr_get_device_instance(
170 GSList *device_instances, int device_index)
171{
172 struct sr_device_instance *sdi;
173 GSList *l;
174
175 for (l = device_instances; l; l = l->next) {
176 sdi = (struct sr_device_instance *)(l->data);
177 if (sdi->index == device_index)
178 return sdi;
179 }
180 sr_warn("could not find device index %d instance", device_index);
181
182 return NULL;
183}
184
185SR_API void sr_device_instance_free(struct sr_device_instance *sdi)
186{
187 g_free(sdi->priv);
188 g_free(sdi->vendor);
189 g_free(sdi->model);
190 g_free(sdi->version);
191 g_free(sdi);
192}
193
194#ifdef HAVE_LIBUSB_1_0
195
196SR_PRIV struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
197 uint8_t address, struct libusb_device_handle *hdl)
198{
199 struct sr_usb_device_instance *udi;
200
201 if (!(udi = malloc(sizeof(struct sr_usb_device_instance))))
202 return NULL;
203
204 udi->bus = bus;
205 udi->address = address;
206 udi->devhdl = hdl; /* TODO: Check if this is NULL? */
207
208 return udi;
209}
210
211SR_PRIV void sr_usb_device_instance_free(struct sr_usb_device_instance *usb)
212{
213 /* Avoid compiler warnings. */
214 (void)usb;
215
216 /* Nothing to do for this device instance type. */
217}
218
219#endif
220
221SR_PRIV struct sr_serial_device_instance *sr_serial_device_instance_new(
222 const char *port, int fd)
223{
224 struct sr_serial_device_instance *serial;
225
226 if (!(serial = malloc(sizeof(struct sr_serial_device_instance))))
227 return NULL;
228
229 serial->port = strdup(port);
230 serial->fd = fd;
231
232 return serial;
233}
234
235SR_PRIV void sr_serial_device_instance_free(
236 struct sr_serial_device_instance *serial)
237{
238 free(serial->port);
239}
240
241SR_API int sr_find_hwcap(int *capabilities, int hwcap)
242{
243 int i;
244
245 for (i = 0; capabilities[i]; i++) {
246 if (capabilities[i] == hwcap)
247 return TRUE;
248 }
249
250 return FALSE;
251}
252
253SR_API struct sr_hwcap_option *sr_find_hwcap_option(int hwcap)
254{
255 int i;
256
257 for (i = 0; sr_hwcap_options[i].capability; i++) {
258 if (sr_hwcap_options[i].capability == hwcap)
259 return &sr_hwcap_options[i];
260 }
261
262 return NULL;
263}
264
265/* unnecessary level of indirection follows. */
266
267void sr_source_remove(int fd)
268{
269 sr_session_source_remove(fd);
270}
271
272void sr_source_add(int fd, int events, int timeout,
273 sr_receive_data_callback rcv_cb, void *user_data)
274{
275 sr_session_source_add(fd, events, timeout, rcv_cb, user_data);
276}