]> sigrok.org Git - libsigrok.git/blame - src/hwdriver.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / 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. */
c1aae900 27#include <libsigrok/libsigrok.h>
45c59c8b 28#include "libsigrok-internal.h"
a1bb33af 29
2ad1deb8 30/** @cond PRIVATE */
3544f848 31#define LOG_PREFIX "hwdriver"
2ad1deb8 32/** @endcond */
bd36d826 33
393fb9cb
UH
34/**
35 * @file
36 *
37 * Hardware driver handling in libsigrok.
38 */
39
7b870c38
UH
40/**
41 * @defgroup grp_driver Hardware drivers
42 *
43 * Hardware driver handling in libsigrok.
44 *
45 * @{
46 */
8bfdc8c4 47
54ab1dcd 48/* Same key order/grouping as in enum sr_configkey (libsigrok.h). */
c89c1c9c 49static struct sr_config_info sr_config_info_data[] = {
54ab1dcd
UH
50 /* Device classes */
51 {SR_CONF_LOGIC_ANALYZER, SR_T_STRING, NULL, "Logic analyzer", NULL},
51b1b95e
BV
52 {SR_CONF_OSCILLOSCOPE, SR_T_STRING, NULL, "Oscilloscope", NULL},
53 {SR_CONF_MULTIMETER, SR_T_STRING, NULL, "Multimeter", NULL},
54 {SR_CONF_DEMO_DEV, SR_T_STRING, NULL, "Demo device", NULL},
55 {SR_CONF_SOUNDLEVELMETER, SR_T_STRING, NULL, "Sound level meter", NULL},
56 {SR_CONF_THERMOMETER, SR_T_STRING, NULL, "Thermometer", NULL},
57 {SR_CONF_HYGROMETER, SR_T_STRING, NULL, "Hygrometer", NULL},
58 {SR_CONF_ENERGYMETER, SR_T_STRING, NULL, "Energy meter", NULL},
59 {SR_CONF_DEMODULATOR, SR_T_STRING, NULL, "Demodulator", NULL},
60 {SR_CONF_POWER_SUPPLY, SR_T_STRING, NULL, "Power supply", NULL},
61 {SR_CONF_LCRMETER, SR_T_STRING, NULL, "LCR meter", NULL},
62
54ab1dcd 63 /* Driver scan options */
ace218f9 64 {SR_CONF_CONN, SR_T_STRING, "conn",
083d64f9 65 "Connection", NULL},
ace218f9 66 {SR_CONF_SERIALCOMM, SR_T_STRING, "serialcomm",
083d64f9 67 "Serial communication", NULL},
daa39012
AJ
68 {SR_CONF_MODBUSADDR, SR_T_UINT64, "modbusaddr",
69 "Modbus slave address", NULL},
51b1b95e 70
54ab1dcd 71 /* Device (or channel group) configuration */
1953564a 72 {SR_CONF_SAMPLERATE, SR_T_UINT64, "samplerate",
083d64f9 73 "Sample rate", NULL},
1953564a 74 {SR_CONF_CAPTURE_RATIO, SR_T_UINT64, "captureratio",
083d64f9 75 "Pre-trigger capture ratio", NULL},
ace218f9 76 {SR_CONF_PATTERN_MODE, SR_T_STRING, "pattern",
2438b737 77 "Pattern", NULL},
1953564a 78 {SR_CONF_RLE, SR_T_BOOL, "rle",
54ab1dcd 79 "Run length encoding", NULL},
ace218f9 80 {SR_CONF_TRIGGER_SLOPE, SR_T_STRING, "triggerslope",
083d64f9 81 "Trigger slope", NULL},
9ed444e6
BG
82 {SR_CONF_AVERAGING, SR_T_BOOL, "averaging",
83 "Averaging", NULL},
84 {SR_CONF_AVG_SAMPLES, SR_T_UINT64, "avg_samples",
85 "Number of samples to average over", NULL},
ace218f9 86 {SR_CONF_TRIGGER_SOURCE, SR_T_STRING, "triggersource",
083d64f9 87 "Trigger source", NULL},
1953564a 88 {SR_CONF_HORIZ_TRIGGERPOS, SR_T_FLOAT, "horiz_triggerpos",
083d64f9 89 "Horizontal trigger position", NULL},
1953564a 90 {SR_CONF_BUFFERSIZE, SR_T_UINT64, "buffersize",
083d64f9 91 "Buffer size", NULL},
1953564a 92 {SR_CONF_TIMEBASE, SR_T_RATIONAL_PERIOD, "timebase",
083d64f9 93 "Time base", NULL},
6fad08e6
BV
94 {SR_CONF_FILTER, SR_T_BOOL, "filter",
95 "Filter", NULL},
1953564a 96 {SR_CONF_VDIV, SR_T_RATIONAL_VOLT, "vdiv",
083d64f9 97 "Volts/div", NULL},
ace218f9 98 {SR_CONF_COUPLING, SR_T_STRING, "coupling",
083d64f9 99 "Coupling", NULL},
54ab1dcd
UH
100 {SR_CONF_TRIGGER_MATCH, SR_T_INT32, "triggermatch",
101 "Trigger matches", NULL},
102 {SR_CONF_SAMPLE_INTERVAL, SR_T_UINT64, "sample_interval",
103 "Sample interval", NULL},
bf622e6d
ML
104 {SR_CONF_NUM_HDIV, SR_T_INT32, "num_hdiv",
105 "Number of horizontal divisions", NULL},
54ab1dcd
UH
106 {SR_CONF_NUM_VDIV, SR_T_INT32, "num_vdiv",
107 "Number of vertical divisions", NULL},
ace218f9 108 {SR_CONF_SPL_WEIGHT_FREQ, SR_T_STRING, "spl_weight_freq",
fd8854c4 109 "Sound pressure level frequency weighting", NULL},
ace218f9 110 {SR_CONF_SPL_WEIGHT_TIME, SR_T_STRING, "spl_weight_time",
fd8854c4 111 "Sound pressure level time weighting", NULL},
54ab1dcd
UH
112 {SR_CONF_SPL_MEASUREMENT_RANGE, SR_T_UINT64_RANGE, "spl_meas_range",
113 "Sound pressure level measurement range", NULL},
9fd6bc20
BV
114 {SR_CONF_HOLD_MAX, SR_T_BOOL, "hold_max",
115 "Hold max", NULL},
116 {SR_CONF_HOLD_MIN, SR_T_BOOL, "hold_min",
117 "Hold min", NULL},
db11d7d2
MC
118 {SR_CONF_VOLTAGE_THRESHOLD, SR_T_DOUBLE_RANGE, "voltage_threshold",
119 "Voltage threshold", NULL },
54ab1dcd
UH
120 {SR_CONF_EXTERNAL_CLOCK, SR_T_BOOL, "external_clock",
121 "External clock mode", NULL},
122 {SR_CONF_SWAP, SR_T_BOOL, "swap",
123 "Swap channel order", NULL},
124 {SR_CONF_CENTER_FREQUENCY, SR_T_UINT64, "center_frequency",
125 "Center frequency", NULL},
fca75cbb
UH
126 {SR_CONF_NUM_LOGIC_CHANNELS, SR_T_INT32, "logic_channels",
127 "Number of logic channels", NULL},
128 {SR_CONF_NUM_ANALOG_CHANNELS, SR_T_INT32, "analog_channels",
129 "Number of analog channels", NULL},
7a0b98b5
AJ
130 {SR_CONF_VOLTAGE, SR_T_FLOAT, "voltage",
131 "Current voltage", NULL},
132 {SR_CONF_VOLTAGE_TARGET, SR_T_FLOAT, "voltage_target",
133 "Voltage target", NULL},
134 {SR_CONF_CURRENT, SR_T_FLOAT, "current",
135 "Current current", NULL},
136 {SR_CONF_CURRENT_LIMIT, SR_T_FLOAT, "current_limit",
137 "Current limit", NULL},
138 {SR_CONF_ENABLED, SR_T_BOOL, "enabled",
139 "Channel enabled", NULL},
140 {SR_CONF_CHANNEL_CONFIG, SR_T_STRING, "channel_config",
141 "Channel modes", NULL},
a1eaa9e0
BV
142 {SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED, SR_T_BOOL, "ovp_enabled",
143 "Over-voltage protection enabled", NULL},
144 {SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE, SR_T_BOOL, "ovp_active",
145 "Over-voltage protection active", NULL},
146 {SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD, SR_T_FLOAT, "ovp_threshold",
147 "Over-voltage protection threshold", NULL},
148 {SR_CONF_OVER_CURRENT_PROTECTION_ENABLED, SR_T_BOOL, "ocp_enabled",
149 "Over-current protection enabled", NULL},
150 {SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE, SR_T_BOOL, "ocp_active",
151 "Over-current protection active", NULL},
152 {SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD, SR_T_FLOAT, "ocp_threshold",
153 "Over-current protection threshold", NULL},
ace218f9 154 {SR_CONF_CLOCK_EDGE, SR_T_STRING, "clock_edge",
860bc59b 155 "Clock edge", NULL},
cff7d8d6
BV
156 {SR_CONF_AMPLITUDE, SR_T_FLOAT, "amplitude",
157 "Amplitude", NULL},
7a0b98b5
AJ
158 {SR_CONF_REGULATION, SR_T_STRING, "regulation",
159 "Channel regulation", NULL},
54ab1dcd
UH
160 {SR_CONF_OVER_TEMPERATURE_PROTECTION, SR_T_BOOL, "otp",
161 "Over-temperature protection", NULL},
b94dd07b 162 {SR_CONF_OUTPUT_FREQUENCY, SR_T_FLOAT, "output_frequency",
a42a39ac 163 "Output frequency", NULL},
a77585d4
AG
164 {SR_CONF_OUTPUT_FREQUENCY_TARGET, SR_T_FLOAT, "output_frequency_target",
165 "Output frequency target", NULL},
a42a39ac
JH
166 {SR_CONF_MEASURED_QUANTITY, SR_T_STRING, "measured_quantity",
167 "Measured quantity", NULL},
168 {SR_CONF_MEASURED_2ND_QUANTITY, SR_T_STRING, "measured_2nd_quantity",
169 "Measured secondary quantity", NULL},
170 {SR_CONF_EQUIV_CIRCUIT_MODEL, SR_T_STRING, "equiv_circuit_model",
171 "Equivalent circuit model", NULL},
c4b78389
AJ
172 {SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE, SR_T_BOOL, "otp_active",
173 "Over-temperature protection active", NULL},
54ab1dcd
UH
174
175 /* Special stuff */
176 {SR_CONF_SCAN_OPTIONS, SR_T_STRING, "scan_options",
177 "Scan options", NULL},
178 {SR_CONF_DEVICE_OPTIONS, SR_T_STRING, "device_options",
179 "Device options", NULL},
180 {SR_CONF_SESSIONFILE, SR_T_STRING, "sessionfile",
181 "Session file", NULL},
182 {SR_CONF_CAPTUREFILE, SR_T_STRING, "capturefile",
183 "Capture file", NULL},
184 {SR_CONF_CAPTURE_UNITSIZE, SR_T_UINT64, "capture_unitsize",
185 "Capture unitsize", NULL},
186 {SR_CONF_POWER_OFF, SR_T_BOOL, "power_off",
187 "Power off", NULL},
188 {SR_CONF_DATA_SOURCE, SR_T_STRING, "data_source",
189 "Data source", NULL},
d3c81725
BG
190 {SR_CONF_PROBE_FACTOR, SR_T_UINT64, "probe_factor",
191 "Probe factor", NULL},
54ab1dcd
UH
192
193 /* Acquisition modes, sample limiting */
194 {SR_CONF_LIMIT_MSEC, SR_T_UINT64, "limit_time",
195 "Time limit", NULL},
196 {SR_CONF_LIMIT_SAMPLES, SR_T_UINT64, "limit_samples",
197 "Sample limit", NULL},
198 {SR_CONF_LIMIT_FRAMES, SR_T_UINT64, "limit_frames",
199 "Frame limit", NULL},
200 {SR_CONF_CONTINUOUS, SR_T_UINT64, "continuous",
201 "Continuous sampling", NULL},
202 {SR_CONF_DATALOG, SR_T_BOOL, "datalog",
203 "Datalog", NULL},
204 {SR_CONF_DEVICE_MODE, SR_T_STRING, "device_mode",
205 "Device mode", NULL},
206 {SR_CONF_TEST_MODE, SR_T_STRING, "test_mode",
207 "Test mode", NULL},
208
083d64f9 209 {0, 0, NULL, NULL, NULL},
a1bb33af
UH
210};
211
13fef1ed
ML
212SR_PRIV const GVariantType *sr_variant_type_get(int datatype)
213{
214 switch (datatype) {
215 case SR_T_INT32:
216 return G_VARIANT_TYPE_INT32;
217 case SR_T_UINT64:
218 return G_VARIANT_TYPE_UINT64;
219 case SR_T_STRING:
220 return G_VARIANT_TYPE_STRING;
221 case SR_T_BOOL:
222 return G_VARIANT_TYPE_BOOLEAN;
223 case SR_T_FLOAT:
224 return G_VARIANT_TYPE_DOUBLE;
225 case SR_T_RATIONAL_PERIOD:
226 case SR_T_RATIONAL_VOLT:
227 case SR_T_UINT64_RANGE:
228 case SR_T_DOUBLE_RANGE:
229 return G_VARIANT_TYPE_TUPLE;
230 case SR_T_KEYVALUE:
231 return G_VARIANT_TYPE_DICTIONARY;
232 default:
233 return NULL;
234 }
235}
236
584560f1 237SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *value)
13fef1ed
ML
238{
239 const struct sr_config_info *info;
240 const GVariantType *type, *expected;
61b02922
BV
241 char *expected_string, *type_string;
242
13fef1ed
ML
243 info = sr_config_info_get(key);
244 if (!info)
245 return SR_OK;
61b02922 246
13fef1ed
ML
247 expected = sr_variant_type_get(info->datatype);
248 type = g_variant_get_type(value);
61b02922
BV
249 if (!g_variant_type_equal(type, expected)
250 && !g_variant_type_is_subtype_of(type, expected)) {
251 expected_string = g_variant_type_dup_string(expected);
252 type_string = g_variant_type_dup_string(type);
13fef1ed
ML
253 sr_err("Wrong variant type for key '%s': expected '%s', got '%s'",
254 info->name, expected_string, type_string);
255 g_free(expected_string);
256 g_free(type_string);
257 return SR_ERR_ARG;
258 }
61b02922 259
13fef1ed
ML
260 return SR_OK;
261}
262
a1645fcd 263/**
cfe064d8 264 * Return the list of supported hardware drivers.
a1645fcd 265 *
032da34b
UH
266 * @param[in] ctx Pointer to a libsigrok context struct. Must not be NULL.
267 *
268 * @retval NULL The ctx argument was NULL, or there are no supported drivers.
269 * @retval Other Pointer to the NULL-terminated list of hardware drivers.
270 * The user should NOT g_free() this list, sr_exit() will do that.
47117241 271 *
032da34b 272 * @since 0.4.0
a1645fcd 273 */
032da34b 274SR_API struct sr_dev_driver **sr_driver_list(const struct sr_context *ctx)
a1bb33af 275{
032da34b
UH
276 if (!ctx)
277 return NULL;
9e60a31f 278
032da34b 279 return ctx->driver_list;
a1bb33af
UH
280}
281
a1645fcd 282/**
c09f0b57 283 * Initialize a hardware driver.
a1645fcd 284 *
c0eea11c
UH
285 * This usually involves memory allocations and variable initializations
286 * within the driver, but _not_ scanning for attached devices.
287 * The API call sr_driver_scan() is used for that.
288 *
44fc870c 289 * @param ctx A libsigrok context object allocated by a previous call to
c0eea11c
UH
290 * sr_init(). Must not be NULL.
291 * @param driver The driver to initialize. This must be a pointer to one of
292 * the entries returned by sr_driver_list(). Must not be NULL.
a1645fcd 293 *
67eb6bcb
MH
294 * @retval SR_OK Success
295 * @retval SR_ERR_ARG Invalid parameter(s).
296 * @retval SR_ERR_BUG Internal errors.
297 * @retval other Another negative error code upon other errors.
47117241
UH
298 *
299 * @since 0.2.0
a1645fcd 300 */
44fc870c 301SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver)
8722c31e 302{
c0eea11c
UH
303 int ret;
304
305 if (!ctx) {
306 sr_err("Invalid libsigrok context, can't initialize.");
307 return SR_ERR_ARG;
308 }
309
310 if (!driver) {
311 sr_err("Invalid driver, can't initialize.");
312 return SR_ERR_ARG;
313 }
8722c31e 314
c0eea11c 315 sr_spew("Initializing driver '%s'.", driver->name);
4f840ce9 316 if ((ret = driver->init(driver, ctx)) < 0)
c0eea11c 317 sr_err("Failed to initialize the driver: %d.", ret);
80bf0426 318
c0eea11c 319 return ret;
80bf0426
BV
320}
321
adfba736
BV
322static int check_options(struct sr_dev_driver *driver, GSList *options,
323 uint32_t optlist_key, struct sr_dev_inst *sdi,
324 struct sr_channel_group *cg)
325{
326 struct sr_config *src;
327 const struct sr_config_info *srci;
328 GVariant *gvar_opts;
329 GSList *l;
330 const uint32_t *opts;
331 gsize num_opts, i;
332 int ret;
333
334 if (sr_config_list(driver, sdi, cg, optlist_key, &gvar_opts) != SR_OK) {
335 /* Driver publishes no options for this optlist. */
336 return SR_ERR;
337 }
338
339 ret = SR_OK;
340 opts = g_variant_get_fixed_array(gvar_opts, &num_opts, sizeof(uint32_t));
341 for (l = options; l; l = l->next) {
342 src = l->data;
343 for (i = 0; i < num_opts; i++) {
344 if (opts[i] == src->key)
345 break;
346 }
347 if (i == num_opts) {
348 if (!(srci = sr_config_info_get(src->key)))
349 /* Shouldn't happen. */
350 sr_err("Invalid option %d.", src->key);
351 else
352 sr_err("Invalid option '%s'.", srci->id);
353 ret = SR_ERR_ARG;
354 break;
355 }
356 if (sr_variant_type_check(src->key, src->data) != SR_OK) {
357 ret = SR_ERR_ARG;
358 break;
359 }
360 }
361 g_variant_unref(gvar_opts);
362
363 return ret;
364}
365
80bf0426
BV
366/**
367 * Tell a hardware driver to scan for devices.
368 *
a5f2e707
BV
369 * In addition to the detection, the devices that are found are also
370 * initialized automatically. On some devices, this involves a firmware upload,
371 * or other such measures.
372 *
373 * The order in which the system is scanned for devices is not specified. The
374 * caller should not assume or rely on any specific order.
375 *
4b97c74e
UH
376 * Before calling sr_driver_scan(), the user must have previously initialized
377 * the driver by calling sr_driver_init().
80bf0426 378 *
4b97c74e
UH
379 * @param driver The driver that should scan. This must be a pointer to one of
380 * the entries returned by sr_driver_list(). Must not be NULL.
381 * @param options A list of 'struct sr_hwopt' options to pass to the driver's
382 * scanner. Can be NULL/empty.
383 *
384 * @return A GSList * of 'struct sr_dev_inst', or NULL if no devices were
385 * found (or errors were encountered). This list must be freed by the
386 * caller using g_slist_free(), but without freeing the data pointed
387 * to in the list.
47117241
UH
388 *
389 * @since 0.2.0
80bf0426
BV
390 */
391SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options)
392{
071151b5 393 GSList *l;
4b97c74e
UH
394
395 if (!driver) {
396 sr_err("Invalid driver, can't scan for devices.");
397 return NULL;
398 }
399
41812aca 400 if (!driver->context) {
4b97c74e
UH
401 sr_err("Driver not initialized, can't scan for devices.");
402 return NULL;
403 }
404
adfba736
BV
405 if (options) {
406 if (check_options(driver, options, SR_CONF_SCAN_OPTIONS, NULL, NULL) != SR_OK)
13fef1ed
ML
407 return NULL;
408 }
409
4f840ce9 410 l = driver->scan(driver, options);
80bf0426 411
4b97c74e
UH
412 sr_spew("Scan of '%s' found %d devices.", driver->name,
413 g_slist_length(l));
80bf0426 414
4b97c74e 415 return l;
8722c31e
BV
416}
417
032da34b
UH
418/**
419 * Call driver cleanup function for all drivers.
420 *
421 * @param[in] ctx Pointer to a libsigrok context struct. Must not be NULL.
422 *
423 * @private
424 */
425SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx)
8722c31e 426{
050e9219 427 int i;
c09f0b57 428 struct sr_dev_driver **drivers;
8722c31e 429
032da34b
UH
430 if (!ctx)
431 return;
432
433 drivers = sr_driver_list(ctx);
c09f0b57
UH
434 for (i = 0; drivers[i]; i++) {
435 if (drivers[i]->cleanup)
4f840ce9 436 drivers[i]->cleanup(drivers[i]);
41812aca 437 drivers[i]->context = NULL;
8722c31e 438 }
8722c31e
BV
439}
440
67eb6bcb
MH
441/** Allocate struct sr_config.
442 * A floating reference can be passed in for data.
443 * @private
444 */
584560f1 445SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data)
4c0e310c
BV
446{
447 struct sr_config *src;
448
91219afc 449 src = g_malloc0(sizeof(struct sr_config));
4c0e310c 450 src->key = key;
bc1c2f00 451 src->data = g_variant_ref_sink(data);
4c0e310c
BV
452
453 return src;
454}
455
67eb6bcb
MH
456/** Free struct sr_config.
457 * @private
458 */
722db131
BV
459SR_PRIV void sr_config_free(struct sr_config *src)
460{
461
462 if (!src || !src->data) {
463 sr_err("%s: invalid data!", __func__);
464 return;
465 }
466
467 g_variant_unref(src->data);
468 g_free(src);
469
470}
471
dcd438ee
UH
472static void log_key(const struct sr_dev_inst *sdi,
473 const struct sr_channel_group *cg, uint32_t key, int op, GVariant *data)
474{
475 const char *opstr;
476 const struct sr_config_info *srci;
477
478 /* Don't log SR_CONF_DEVICE_OPTIONS, it's verbose and not too useful. */
479 if (key == SR_CONF_DEVICE_OPTIONS)
480 return;
481
482 opstr = op == SR_CONF_GET ? "get" : op == SR_CONF_SET ? "set" : "list";
483 srci = sr_config_info_get(key);
484
485 sr_spew("sr_config_%s(): key %d (%s) sdi %p cg %s -> %s", opstr, key,
486 srci ? srci->id : "NULL", sdi, cg ? cg->name : "NULL",
487 data ? g_variant_print(data, TRUE) : "NULL");
488}
489
c6dde812
BV
490static int check_key(const struct sr_dev_driver *driver,
491 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg,
dcd438ee 492 uint32_t key, int op, GVariant *data)
c6dde812
BV
493{
494 const struct sr_config_info *srci;
495 gsize num_opts, i;
496 GVariant *gvar_opts;
497 const uint32_t *opts;
498 uint32_t pub_opt;
499 char *suffix, *opstr;
500
501 if (sdi && cg)
502 suffix = " for this device and channel group";
503 else if (sdi)
504 suffix = " for this device";
505 else
506 suffix = "";
507
508 if (!(srci = sr_config_info_get(key))) {
509 sr_err("Invalid key %d.", key);
510 return SR_ERR_ARG;
511 }
512 opstr = op == SR_CONF_GET ? "get" : op == SR_CONF_SET ? "set" : "list";
dcd438ee
UH
513
514 switch (key) {
515 case SR_CONF_LIMIT_MSEC:
516 case SR_CONF_LIMIT_SAMPLES:
517 case SR_CONF_SAMPLERATE:
518 /* Setting any of these to 0 is not useful. */
519 if (op != SR_CONF_SET || !data)
520 break;
521 if (g_variant_get_uint64(data) == 0) {
522 sr_err("Cannot set '%s' to 0.", srci->id);
523 return SR_ERR_ARG;
524 }
525 break;
526 }
c6dde812
BV
527
528 if (sr_config_list(driver, sdi, cg, SR_CONF_DEVICE_OPTIONS, &gvar_opts) != SR_OK) {
529 /* Driver publishes no options. */
530 sr_err("No options available%s.", srci->id, suffix);
531 return SR_ERR_ARG;
532 }
533 opts = g_variant_get_fixed_array(gvar_opts, &num_opts, sizeof(uint32_t));
534 pub_opt = 0;
535 for (i = 0; i < num_opts; i++) {
536 if ((opts[i] & SR_CONF_MASK) == key) {
537 pub_opt = opts[i];
538 break;
539 }
540 }
541 g_variant_unref(gvar_opts);
542 if (!pub_opt) {
543 sr_err("Option '%s' not available%s.", srci->id, suffix);
544 return SR_ERR_ARG;
545 }
546
547 if (!(pub_opt & op)) {
548 sr_err("Option '%s' not available to %s%s.", srci->id, opstr, suffix);
549 return SR_ERR_ARG;
550 }
551
552 return SR_OK;
553}
554
df123801 555/**
67eb6bcb 556 * Query value of a configuration key at the given driver or device instance.
df123801 557 *
67eb6bcb
MH
558 * @param[in] driver The sr_dev_driver struct to query.
559 * @param[in] sdi (optional) If the key is specific to a device, this must
57ecdbd7
BV
560 * contain a pointer to the struct sr_dev_inst to be checked.
561 * Otherwise it must be NULL.
53b4680f 562 * @param[in] cg The channel group on the device for which to list the
57ecdbd7 563 * values, or NULL.
67eb6bcb
MH
564 * @param[in] key The configuration key (SR_CONF_*).
565 * @param[in,out] data Pointer to a GVariant where the value will be stored.
566 * Must not be NULL. The caller is given ownership of the GVariant
bc1c2f00
BV
567 * and must thus decrease the refcount after use. However if
568 * this function returns an error code, the field should be
569 * considered unused, and should not be unreferenced.
df123801 570 *
67eb6bcb
MH
571 * @retval SR_OK Success.
572 * @retval SR_ERR Error.
573 * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
574 * interpreted as an error by the caller; merely as an indication
575 * that it's not applicable.
47117241
UH
576 *
577 * @since 0.3.0
df123801 578 */
8f996b89
ML
579SR_API int sr_config_get(const struct sr_dev_driver *driver,
580 const struct sr_dev_inst *sdi,
53b4680f 581 const struct sr_channel_group *cg,
584560f1 582 uint32_t key, GVariant **data)
df123801
BV
583{
584 int ret;
585
cbadb856 586 if (!driver || !data)
df123801
BV
587 return SR_ERR;
588
6cefe516
BV
589 if (!driver->config_get)
590 return SR_ERR_ARG;
591
dcd438ee 592 if (check_key(driver, sdi, cg, key, SR_CONF_GET, NULL) != SR_OK)
c6dde812
BV
593 return SR_ERR_ARG;
594
53b4680f 595 if ((ret = driver->config_get(key, data, sdi, cg)) == SR_OK) {
dcd438ee 596 log_key(sdi, cg, key, SR_CONF_GET, *data);
bc1c2f00
BV
597 /* Got a floating reference from the driver. Sink it here,
598 * caller will need to unref when done with it. */
599 g_variant_ref_sink(*data);
600 }
df123801
BV
601
602 return ret;
603}
604
cbadb856 605/**
67eb6bcb 606 * Set value of a configuration key in a device instance.
cbadb856 607 *
67eb6bcb 608 * @param[in] sdi The device instance.
53b4680f 609 * @param[in] cg The channel group on the device for which to list the
57ecdbd7 610 * values, or NULL.
67eb6bcb 611 * @param[in] key The configuration key (SR_CONF_*).
bc1c2f00
BV
612 * @param data The new value for the key, as a GVariant with GVariantType
613 * appropriate to that key. A floating reference can be passed
614 * in; its refcount will be sunk and unreferenced after use.
cbadb856 615 *
67eb6bcb
MH
616 * @retval SR_OK Success.
617 * @retval SR_ERR Error.
618 * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
619 * interpreted as an error by the caller; merely as an indication
620 * that it's not applicable.
47117241
UH
621 *
622 * @since 0.3.0
cbadb856 623 */
8f996b89 624SR_API int sr_config_set(const struct sr_dev_inst *sdi,
53b4680f 625 const struct sr_channel_group *cg,
584560f1 626 uint32_t key, GVariant *data)
cbadb856
BV
627{
628 int ret;
629
bc1c2f00 630 g_variant_ref_sink(data);
cbadb856 631
bc1c2f00
BV
632 if (!sdi || !sdi->driver || !data)
633 ret = SR_ERR;
634 else if (!sdi->driver->config_set)
635 ret = SR_ERR_ARG;
dcd438ee 636 else if (check_key(sdi->driver, sdi, cg, key, SR_CONF_SET, data) != SR_OK)
c6dde812 637 return SR_ERR_ARG;
dcd438ee
UH
638 else if ((ret = sr_variant_type_check(key, data)) == SR_OK) {
639 log_key(sdi, cg, key, SR_CONF_SET, data);
53b4680f 640 ret = sdi->driver->config_set(key, data, sdi, cg);
dcd438ee 641 }
cbadb856 642
bc1c2f00 643 g_variant_unref(data);
cbadb856
BV
644
645 return ret;
646}
647
2a854d71
DE
648/**
649 * Apply configuration settings to the device hardware.
650 *
651 * @param sdi The device instance.
652 *
653 * @return SR_OK upon success or SR_ERR in case of error.
47117241
UH
654 *
655 * @since 0.3.0
2a854d71
DE
656 */
657SR_API int sr_config_commit(const struct sr_dev_inst *sdi)
658{
659 int ret;
660
661 if (!sdi || !sdi->driver)
662 ret = SR_ERR;
663 else if (!sdi->driver->config_commit)
664 ret = SR_OK;
665 else
666 ret = sdi->driver->config_commit(sdi);
667
668 return ret;
669}
670
cbadb856
BV
671/**
672 * List all possible values for a configuration key.
673 *
67eb6bcb
MH
674 * @param[in] driver The sr_dev_driver struct to query.
675 * @param[in] sdi (optional) If the key is specific to a device, this must
57ecdbd7 676 * contain a pointer to the struct sr_dev_inst to be checked.
53b4680f 677 * @param[in] cg The channel group on the device for which to list the
57ecdbd7 678 * values, or NULL.
67eb6bcb
MH
679 * @param[in] key The configuration key (SR_CONF_*).
680 * @param[in,out] data A pointer to a GVariant where the list will be stored.
681 * The caller is given ownership of the GVariant and must thus
bc1c2f00
BV
682 * unref the GVariant after use. However if this function
683 * returns an error code, the field should be considered
684 * unused, and should not be unreferenced.
cbadb856 685 *
67eb6bcb
MH
686 * @retval SR_OK Success.
687 * @retval SR_ERR Error.
688 * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
689 * interpreted as an error by the caller; merely as an indication
690 * that it's not applicable.
47117241
UH
691 *
692 * @since 0.3.0
cbadb856 693 */
8f996b89
ML
694SR_API int sr_config_list(const struct sr_dev_driver *driver,
695 const struct sr_dev_inst *sdi,
53b4680f 696 const struct sr_channel_group *cg,
584560f1 697 uint32_t key, GVariant **data)
c5fb502f
BV
698{
699 int ret;
700
6cefe516 701 if (!driver || !data)
8a58419d 702 return SR_ERR;
d8284802 703 else if (!driver->config_list)
8a58419d 704 return SR_ERR_ARG;
c6dde812 705 else if (key != SR_CONF_SCAN_OPTIONS && key != SR_CONF_DEVICE_OPTIONS) {
dcd438ee 706 if (check_key(driver, sdi, cg, key, SR_CONF_LIST, NULL) != SR_OK)
c6dde812
BV
707 return SR_ERR_ARG;
708 }
dcd438ee
UH
709 if ((ret = driver->config_list(key, data, sdi, cg)) == SR_OK) {
710 log_key(sdi, cg, key, SR_CONF_LIST, *data);
bc1c2f00 711 g_variant_ref_sink(*data);
dcd438ee 712 }
c5fb502f
BV
713
714 return ret;
715}
716
8bfdc8c4 717/**
67eb6bcb 718 * Get information about a configuration key, by key.
a1645fcd 719 *
67eb6bcb 720 * @param[in] key The configuration key.
15cb43d6 721 *
c89c1c9c 722 * @return A pointer to a struct sr_config_info, or NULL if the key
15cb43d6 723 * was not found.
47117241
UH
724 *
725 * @since 0.2.0
15cb43d6 726 */
584560f1 727SR_API const struct sr_config_info *sr_config_info_get(uint32_t key)
15cb43d6
BV
728{
729 int i;
730
c89c1c9c
BV
731 for (i = 0; sr_config_info_data[i].key; i++) {
732 if (sr_config_info_data[i].key == key)
733 return &sr_config_info_data[i];
15cb43d6
BV
734 }
735
736 return NULL;
737}
738
739/**
67eb6bcb 740 * Get information about a configuration key, by name.
15cb43d6 741 *
67eb6bcb 742 * @param[in] optname The configuration key.
a1645fcd 743 *
c89c1c9c 744 * @return A pointer to a struct sr_config_info, or NULL if the key
15cb43d6 745 * was not found.
47117241
UH
746 *
747 * @since 0.2.0
a1645fcd 748 */
c89c1c9c 749SR_API const struct sr_config_info *sr_config_info_name_get(const char *optname)
a1bb33af 750{
a1bb33af
UH
751 int i;
752
c89c1c9c 753 for (i = 0; sr_config_info_data[i].key; i++) {
a700a3a4
BV
754 if (!sr_config_info_data[i].id)
755 continue;
c89c1c9c
BV
756 if (!strcmp(sr_config_info_data[i].id, optname))
757 return &sr_config_info_data[i];
a1bb33af
UH
758 }
759
49d0ce50 760 return NULL;
a1bb33af
UH
761}
762
7b870c38 763/** @} */