]> sigrok.org Git - libsigrok.git/blame - hwdriver.c
Code drop from DreamSourceLabs first source release.
[libsigrok.git] / hwdriver.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
13d8e03c 4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
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>
545f9786 26#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
45c59c8b
BV
27#include "libsigrok.h"
28#include "libsigrok-internal.h"
a1bb33af 29
29a27196
UH
30/* Message logging helpers with subsystem-specific prefix string. */
31#define LOG_PREFIX "hwdriver: "
32#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
33#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
34#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
35#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
36#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
37#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
bd36d826 38
393fb9cb
UH
39/**
40 * @file
41 *
42 * Hardware driver handling in libsigrok.
43 */
44
7b870c38
UH
45/**
46 * @defgroup grp_driver Hardware drivers
47 *
48 * Hardware driver handling in libsigrok.
49 *
50 * @{
51 */
8bfdc8c4 52
c89c1c9c 53static struct sr_config_info sr_config_info_data[] = {
1953564a 54 {SR_CONF_CONN, SR_T_CHAR, "conn",
083d64f9 55 "Connection", NULL},
1953564a 56 {SR_CONF_SERIALCOMM, SR_T_CHAR, "serialcomm",
083d64f9 57 "Serial communication", NULL},
1953564a 58 {SR_CONF_SAMPLERATE, SR_T_UINT64, "samplerate",
083d64f9 59 "Sample rate", NULL},
f1b296fc
BV
60 {SR_CONF_CLOCK_TYPE, SR_T_BOOL, "clocktype",
61 "Using External Clock", NULL},
62 {SR_CONF_CAPTURE_RATIO, SR_T_UINT64, "captureratio",
083d64f9 63 "Pre-trigger capture ratio", NULL},
f1b296fc
BV
64 {SR_CONF_DEVICE_MODE, SR_T_CHAR, "device",
65 "Device Mode", NULL},
66 {SR_CONF_PATTERN_MODE, SR_T_CHAR, "pattern",
67 "Pattern mode", NULL},
68 {SR_CONF_TRIGGER_TYPE, SR_T_CHAR, "triggertype",
8e34ca86 69 "Trigger types", NULL},
1953564a 70 {SR_CONF_RLE, SR_T_BOOL, "rle",
083d64f9 71 "Run Length Encoding", NULL},
1953564a 72 {SR_CONF_TRIGGER_SLOPE, SR_T_UINT64, "triggerslope",
083d64f9 73 "Trigger slope", NULL},
1953564a 74 {SR_CONF_TRIGGER_SOURCE, SR_T_CHAR, "triggersource",
083d64f9 75 "Trigger source", NULL},
1953564a 76 {SR_CONF_HORIZ_TRIGGERPOS, SR_T_FLOAT, "horiz_triggerpos",
083d64f9 77 "Horizontal trigger position", NULL},
1953564a 78 {SR_CONF_BUFFERSIZE, SR_T_UINT64, "buffersize",
083d64f9 79 "Buffer size", NULL},
1953564a 80 {SR_CONF_TIMEBASE, SR_T_RATIONAL_PERIOD, "timebase",
083d64f9 81 "Time base", NULL},
1953564a 82 {SR_CONF_FILTER, SR_T_CHAR, "filter",
083d64f9 83 "Filter targets", NULL},
1953564a 84 {SR_CONF_VDIV, SR_T_RATIONAL_VOLT, "vdiv",
083d64f9 85 "Volts/div", NULL},
1953564a 86 {SR_CONF_COUPLING, SR_T_CHAR, "coupling",
083d64f9 87 "Coupling", NULL},
e6551ea6
BV
88 {SR_CONF_DATALOG, SR_T_BOOL, "datalog",
89 "Datalog", NULL},
083d64f9 90 {0, 0, NULL, NULL, NULL},
a1bb33af
UH
91};
92
b4bd7088 93/** @cond PRIVATE */
a61b0e6a 94#ifdef HAVE_LA_DEMO
c09f0b57 95extern SR_PRIV struct sr_dev_driver demo_driver_info;
a61b0e6a 96#endif
f1b296fc
BV
97#ifdef HAVE_LA_DSLOGIC
98extern SR_PRIV struct sr_dev_driver DSLogic_driver_info;
79081ec8 99#endif
b4bd7088 100/** @endcond */
6ed4f044 101
c09f0b57 102static struct sr_dev_driver *drivers_list[] = {
a61b0e6a 103#ifdef HAVE_LA_DEMO
c09f0b57 104 &demo_driver_info,
a61b0e6a 105#endif
f1b296fc
BV
106#ifdef HAVE_LA_DSLOGIC
107 &DSLogic_driver_info,
eb1f1eb4 108#endif
050e9219
UH
109 NULL,
110};
a1bb33af 111
a1645fcd 112/**
cfe064d8 113 * Return the list of supported hardware drivers.
a1645fcd 114 *
c09f0b57 115 * @return Pointer to the NULL-terminated list of hardware driver pointers.
a1645fcd 116 */
cfe064d8 117SR_API struct sr_dev_driver **sr_driver_list(void)
a1bb33af 118{
80bf0426 119
c09f0b57 120 return drivers_list;
a1bb33af
UH
121}
122
a1645fcd 123/**
c09f0b57 124 * Initialize a hardware driver.
a1645fcd 125 *
c0eea11c
UH
126 * This usually involves memory allocations and variable initializations
127 * within the driver, but _not_ scanning for attached devices.
128 * The API call sr_driver_scan() is used for that.
129 *
44fc870c 130 * @param ctx A libsigrok context object allocated by a previous call to
c0eea11c
UH
131 * sr_init(). Must not be NULL.
132 * @param driver The driver to initialize. This must be a pointer to one of
133 * the entries returned by sr_driver_list(). Must not be NULL.
a1645fcd 134 *
c0eea11c
UH
135 * @return SR_OK upon success, SR_ERR_ARG upon invalid parameters,
136 * SR_ERR_BUG upon internal errors, or another negative error code
137 * upon other errors.
a1645fcd 138 */
44fc870c 139SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver)
8722c31e 140{
c0eea11c
UH
141 int ret;
142
143 if (!ctx) {
144 sr_err("Invalid libsigrok context, can't initialize.");
145 return SR_ERR_ARG;
146 }
147
148 if (!driver) {
149 sr_err("Invalid driver, can't initialize.");
150 return SR_ERR_ARG;
151 }
8722c31e 152
c0eea11c
UH
153 sr_spew("Initializing driver '%s'.", driver->name);
154 if ((ret = driver->init(ctx)) < 0)
155 sr_err("Failed to initialize the driver: %d.", ret);
80bf0426 156
c0eea11c 157 return ret;
80bf0426
BV
158}
159
160/**
161 * Tell a hardware driver to scan for devices.
162 *
a5f2e707
BV
163 * In addition to the detection, the devices that are found are also
164 * initialized automatically. On some devices, this involves a firmware upload,
165 * or other such measures.
166 *
167 * The order in which the system is scanned for devices is not specified. The
168 * caller should not assume or rely on any specific order.
169 *
4b97c74e
UH
170 * Before calling sr_driver_scan(), the user must have previously initialized
171 * the driver by calling sr_driver_init().
80bf0426 172 *
4b97c74e
UH
173 * @param driver The driver that should scan. This must be a pointer to one of
174 * the entries returned by sr_driver_list(). Must not be NULL.
175 * @param options A list of 'struct sr_hwopt' options to pass to the driver's
176 * scanner. Can be NULL/empty.
177 *
178 * @return A GSList * of 'struct sr_dev_inst', or NULL if no devices were
179 * found (or errors were encountered). This list must be freed by the
180 * caller using g_slist_free(), but without freeing the data pointed
181 * to in the list.
80bf0426
BV
182 */
183SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options)
184{
4b97c74e
UH
185 GSList *l;
186
187 if (!driver) {
188 sr_err("Invalid driver, can't scan for devices.");
189 return NULL;
190 }
191
192 if (!driver->priv) {
193 sr_err("Driver not initialized, can't scan for devices.");
194 return NULL;
195 }
196
197 l = driver->scan(options);
80bf0426 198
4b97c74e
UH
199 sr_spew("Scan of '%s' found %d devices.", driver->name,
200 g_slist_length(l));
80bf0426 201
4b97c74e 202 return l;
8722c31e
BV
203}
204
b4bd7088 205/** @private */
93a04e3b 206SR_PRIV void sr_hw_cleanup_all(void)
8722c31e 207{
050e9219 208 int i;
c09f0b57 209 struct sr_dev_driver **drivers;
8722c31e 210
cfe064d8 211 drivers = sr_driver_list();
c09f0b57
UH
212 for (i = 0; drivers[i]; i++) {
213 if (drivers[i]->cleanup)
214 drivers[i]->cleanup();
8722c31e 215 }
8722c31e
BV
216}
217
bc1c2f00
BV
218/** A floating reference can be passed in for data. */
219SR_PRIV struct sr_config *sr_config_new(int key, GVariant *data)
4c0e310c
BV
220{
221 struct sr_config *src;
222
223 if (!(src = g_try_malloc(sizeof(struct sr_config))))
224 return NULL;
225 src->key = key;
bc1c2f00 226 src->data = g_variant_ref_sink(data);
4c0e310c
BV
227
228 return src;
229}
230
722db131
BV
231SR_PRIV void sr_config_free(struct sr_config *src)
232{
233
234 if (!src || !src->data) {
235 sr_err("%s: invalid data!", __func__);
236 return;
237 }
238
239 g_variant_unref(src->data);
240 g_free(src);
241
242}
243
df123801
BV
244/**
245 * Returns information about the given driver or device instance.
246 *
247 * @param driver The sr_dev_driver struct to query.
cbadb856 248 * @param key The configuration key (SR_CONF_*).
bc1c2f00
BV
249 * @param data Pointer to a GVariant where the value will be stored. Must
250 * not be NULL. The caller is given ownership of the GVariant
251 * and must thus decrease the refcount after use. However if
252 * this function returns an error code, the field should be
253 * considered unused, and should not be unreferenced.
254 * @param sdi (optional) If the key is specific to a device, this must
255 * contain a pointer to the struct sr_dev_inst to be checked.
256 * Otherwise it must be NULL.
df123801
BV
257 *
258 * @return SR_OK upon success or SR_ERR in case of error. Note SR_ERR_ARG
cbadb856 259 * may be returned by the driver indicating it doesn't know that key,
df123801
BV
260 * but this is not to be flagged as an error by the caller; merely
261 * as an indication that it's not applicable.
262 */
9fd504b9 263SR_API int sr_config_get(const struct sr_dev_driver *driver, int key,
bc1c2f00 264 GVariant **data, const struct sr_dev_inst *sdi)
df123801
BV
265{
266 int ret;
267
cbadb856 268 if (!driver || !data)
df123801
BV
269 return SR_ERR;
270
6cefe516
BV
271 if (!driver->config_get)
272 return SR_ERR_ARG;
273
bc1c2f00
BV
274 if ((ret = driver->config_get(key, data, sdi)) == SR_OK) {
275 /* Got a floating reference from the driver. Sink it here,
276 * caller will need to unref when done with it. */
277 g_variant_ref_sink(*data);
278 }
df123801
BV
279
280 return ret;
281}
282
cbadb856
BV
283/**
284 * Set a configuration key in a device instance.
285 *
286 * @param sdi The device instance.
287 * @param key The configuration key (SR_CONF_*).
bc1c2f00
BV
288 * @param data The new value for the key, as a GVariant with GVariantType
289 * appropriate to that key. A floating reference can be passed
290 * in; its refcount will be sunk and unreferenced after use.
cbadb856
BV
291 *
292 * @return SR_OK upon success or SR_ERR in case of error. Note SR_ERR_ARG
293 * may be returned by the driver indicating it doesn't know that key,
294 * but this is not to be flagged as an error by the caller; merely
295 * as an indication that it's not applicable.
296 */
bc1c2f00 297SR_API int sr_config_set(const struct sr_dev_inst *sdi, int key, GVariant *data)
cbadb856
BV
298{
299 int ret;
300
bc1c2f00 301 g_variant_ref_sink(data);
cbadb856 302
bc1c2f00
BV
303 if (!sdi || !sdi->driver || !data)
304 ret = SR_ERR;
305 else if (!sdi->driver->config_set)
306 ret = SR_ERR_ARG;
307 else
308 ret = sdi->driver->config_set(key, data, sdi);
cbadb856 309
bc1c2f00 310 g_variant_unref(data);
cbadb856
BV
311
312 return ret;
313}
314
315/**
316 * List all possible values for a configuration key.
317 *
318 * @param driver The sr_dev_driver struct to query.
319 * @param key The configuration key (SR_CONF_*).
bc1c2f00
BV
320 * @param data A pointer to a GVariant where the list will be stored. The
321 * caller is given ownership of the GVariant and must thus
322 * unref the GVariant after use. However if this function
323 * returns an error code, the field should be considered
324 * unused, and should not be unreferenced.
325 * @param sdi (optional) If the key is specific to a device, this must
326 * contain a pointer to the struct sr_dev_inst to be checked.
cbadb856
BV
327 *
328 * @return SR_OK upon success or SR_ERR in case of error. Note SR_ERR_ARG
329 * may be returned by the driver indicating it doesn't know that key,
330 * but this is not to be flagged as an error by the caller; merely
331 * as an indication that it's not applicable.
332 */
4c961f5e 333SR_API int sr_config_list(const struct sr_dev_driver *driver, int key,
bc1c2f00 334 GVariant **data, const struct sr_dev_inst *sdi)
c5fb502f
BV
335{
336 int ret;
337
6cefe516 338 if (!driver || !data)
bc1c2f00 339 ret = SR_ERR;
d8284802 340 else if (!driver->config_list)
6cefe516 341 ret = SR_ERR_ARG;
bc1c2f00
BV
342 else if ((ret = driver->config_list(key, data, sdi)) == SR_OK)
343 g_variant_ref_sink(*data);
c5fb502f
BV
344
345 return ret;
346}
347
8bfdc8c4 348/**
cbadb856 349 * Get information about a configuration key.
a1645fcd 350 *
ca0938c5 351 * @param key The configuration key.
15cb43d6 352 *
c89c1c9c 353 * @return A pointer to a struct sr_config_info, or NULL if the key
15cb43d6
BV
354 * was not found.
355 */
c89c1c9c 356SR_API const struct sr_config_info *sr_config_info_get(int key)
15cb43d6
BV
357{
358 int i;
359
c89c1c9c
BV
360 for (i = 0; sr_config_info_data[i].key; i++) {
361 if (sr_config_info_data[i].key == key)
362 return &sr_config_info_data[i];
15cb43d6
BV
363 }
364
365 return NULL;
366}
367
368/**
cbadb856 369 * Get information about an configuration key, by name.
15cb43d6 370 *
cbadb856 371 * @param optname The configuration key.
a1645fcd 372 *
c89c1c9c 373 * @return A pointer to a struct sr_config_info, or NULL if the key
15cb43d6 374 * was not found.
a1645fcd 375 */
c89c1c9c 376SR_API const struct sr_config_info *sr_config_info_name_get(const char *optname)
a1bb33af 377{
a1bb33af
UH
378 int i;
379
c89c1c9c
BV
380 for (i = 0; sr_config_info_data[i].key; i++) {
381 if (!strcmp(sr_config_info_data[i].id, optname))
382 return &sr_config_info_data[i];
a1bb33af
UH
383 }
384
49d0ce50 385 return NULL;
a1bb33af
UH
386}
387
69cfcfc8 388/* Unnecessary level of indirection follows. */
544a4582 389
b4bd7088 390/** @private */
69cfcfc8 391SR_PRIV int sr_source_remove(int fd)
a1bb33af 392{
69cfcfc8 393 return sr_session_source_remove(fd);
a1bb33af
UH
394}
395
b4bd7088 396/** @private */
69cfcfc8
UH
397SR_PRIV int sr_source_add(int fd, int events, int timeout,
398 sr_receive_data_callback_t cb, void *cb_data)
a1bb33af 399{
f1b296fc 400 return sr_session_source_add(fd, events, timeout, cb, cb_data);
a1bb33af 401}
7b870c38
UH
402
403/** @} */