]> sigrok.org Git - libsigrok.git/blob - src/hwdriver.c
korad-kaxxxxp: use ID text prefix with optional version for RND models
[libsigrok.git] / src / hwdriver.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 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 <config.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <sys/types.h>
24 #include <dirent.h>
25 #include <string.h>
26 #include <glib.h>
27 #include <libsigrok/libsigrok.h>
28 #include "libsigrok-internal.h"
29
30 /** @cond PRIVATE */
31 #define LOG_PREFIX "hwdriver"
32 /** @endcond */
33
34 /**
35  * @file
36  *
37  * Hardware driver handling in libsigrok.
38  */
39
40 /**
41  * @defgroup grp_driver Hardware drivers
42  *
43  * Hardware driver handling in libsigrok.
44  *
45  * @{
46  */
47
48 /* Please use the same order/grouping as in enum sr_configkey (libsigrok.h). */
49 static struct sr_key_info sr_key_info_config[] = {
50         /* Device classes */
51         {SR_CONF_LOGIC_ANALYZER, SR_T_STRING, NULL, "Logic analyzer", NULL},
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         {SR_CONF_ELECTRONIC_LOAD, SR_T_STRING, NULL, "Electronic load", NULL},
63         {SR_CONF_SCALE, SR_T_STRING, NULL, "Scale", NULL},
64         {SR_CONF_SIGNAL_GENERATOR, SR_T_STRING, NULL, "Signal generator", NULL},
65         {SR_CONF_POWERMETER, SR_T_STRING, NULL, "Power meter", NULL},
66         {SR_CONF_MULTIPLEXER, SR_T_STRING, NULL, "Multiplexer", NULL},
67
68         /* Driver scan options */
69         {SR_CONF_CONN, SR_T_STRING, "conn",
70                 "Connection", NULL},
71         {SR_CONF_SERIALCOMM, SR_T_STRING, "serialcomm",
72                 "Serial communication", NULL},
73         {SR_CONF_MODBUSADDR, SR_T_UINT64, "modbusaddr",
74                 "Modbus slave address", NULL},
75         {SR_CONF_FORCE_DETECT, SR_T_STRING, "force_detect",
76                 "Forced detection", NULL},
77         {SR_CONF_PROBE_NAMES, SR_T_STRING, "probe_names",
78                 "Names of device's probes", NULL},
79
80         /* Device (or channel group) configuration */
81         {SR_CONF_SAMPLERATE, SR_T_UINT64, "samplerate",
82                 "Sample rate", NULL},
83         {SR_CONF_CAPTURE_RATIO, SR_T_UINT64, "captureratio",
84                 "Pre-trigger capture ratio", NULL},
85         {SR_CONF_PATTERN_MODE, SR_T_STRING, "pattern",
86                 "Pattern", NULL},
87         {SR_CONF_RLE, SR_T_BOOL, "rle",
88                 "Run length encoding", NULL},
89         {SR_CONF_TRIGGER_SLOPE, SR_T_STRING, "triggerslope",
90                 "Trigger slope", NULL},
91         {SR_CONF_AVERAGING, SR_T_BOOL, "averaging",
92                 "Averaging", NULL},
93         {SR_CONF_AVG_SAMPLES, SR_T_UINT64, "avg_samples",
94                 "Number of samples to average over", NULL},
95         {SR_CONF_TRIGGER_SOURCE, SR_T_STRING, "triggersource",
96                 "Trigger source", NULL},
97         {SR_CONF_HORIZ_TRIGGERPOS, SR_T_FLOAT, "horiz_triggerpos",
98                 "Horizontal trigger position", NULL},
99         {SR_CONF_BUFFERSIZE, SR_T_UINT64, "buffersize",
100                 "Buffer size", NULL},
101         {SR_CONF_TIMEBASE, SR_T_RATIONAL_PERIOD, "timebase",
102                 "Time base", NULL},
103         {SR_CONF_FILTER, SR_T_BOOL, "filter",
104                 "Filter", NULL},
105         {SR_CONF_VDIV, SR_T_RATIONAL_VOLT, "vdiv",
106                 "Volts/div", NULL},
107         {SR_CONF_COUPLING, SR_T_STRING, "coupling",
108                 "Coupling", NULL},
109         {SR_CONF_TRIGGER_MATCH, SR_T_INT32, "triggermatch",
110                 "Trigger matches", NULL},
111         {SR_CONF_SAMPLE_INTERVAL, SR_T_UINT64, "sample_interval",
112                 "Sample interval", NULL},
113         {SR_CONF_NUM_HDIV, SR_T_INT32, "num_hdiv",
114                 "Number of horizontal divisions", NULL},
115         {SR_CONF_NUM_VDIV, SR_T_INT32, "num_vdiv",
116                 "Number of vertical divisions", NULL},
117         {SR_CONF_SPL_WEIGHT_FREQ, SR_T_STRING, "spl_weight_freq",
118                 "Sound pressure level frequency weighting", NULL},
119         {SR_CONF_SPL_WEIGHT_TIME, SR_T_STRING, "spl_weight_time",
120                 "Sound pressure level time weighting", NULL},
121         {SR_CONF_SPL_MEASUREMENT_RANGE, SR_T_UINT64_RANGE, "spl_meas_range",
122                 "Sound pressure level measurement range", NULL},
123         {SR_CONF_HOLD_MAX, SR_T_BOOL, "hold_max",
124                 "Hold max", NULL},
125         {SR_CONF_HOLD_MIN, SR_T_BOOL, "hold_min",
126                 "Hold min", NULL},
127         {SR_CONF_VOLTAGE_THRESHOLD, SR_T_DOUBLE_RANGE, "voltage_threshold",
128                 "Voltage threshold", NULL },
129         {SR_CONF_EXTERNAL_CLOCK, SR_T_BOOL, "external_clock",
130                 "External clock mode", NULL},
131         {SR_CONF_SWAP, SR_T_BOOL, "swap",
132                 "Swap channel order", NULL},
133         {SR_CONF_CENTER_FREQUENCY, SR_T_UINT64, "center_frequency",
134                 "Center frequency", NULL},
135         {SR_CONF_NUM_LOGIC_CHANNELS, SR_T_INT32, "logic_channels",
136                 "Number of logic channels", NULL},
137         {SR_CONF_NUM_ANALOG_CHANNELS, SR_T_INT32, "analog_channels",
138                 "Number of analog channels", NULL},
139         {SR_CONF_VOLTAGE, SR_T_FLOAT, "voltage",
140                 "Current voltage", NULL},
141         {SR_CONF_VOLTAGE_TARGET, SR_T_FLOAT, "voltage_target",
142                 "Voltage target", NULL},
143         {SR_CONF_CURRENT, SR_T_FLOAT, "current",
144                 "Current current", NULL},
145         {SR_CONF_CURRENT_LIMIT, SR_T_FLOAT, "current_limit",
146                 "Current limit", NULL},
147         {SR_CONF_ENABLED, SR_T_BOOL, "enabled",
148                 "Channel enabled", NULL},
149         {SR_CONF_CHANNEL_CONFIG, SR_T_STRING, "channel_config",
150                 "Channel modes", NULL},
151         {SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED, SR_T_BOOL, "ovp_enabled",
152                 "Over-voltage protection enabled", NULL},
153         {SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE, SR_T_BOOL, "ovp_active",
154                 "Over-voltage protection active", NULL},
155         {SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD, SR_T_FLOAT, "ovp_threshold",
156                 "Over-voltage protection threshold", NULL},
157         {SR_CONF_OVER_CURRENT_PROTECTION_ENABLED, SR_T_BOOL, "ocp_enabled",
158                 "Over-current protection enabled", NULL},
159         {SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE, SR_T_BOOL, "ocp_active",
160                 "Over-current protection active", NULL},
161         {SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD, SR_T_FLOAT, "ocp_threshold",
162                 "Over-current protection threshold", NULL},
163         {SR_CONF_CLOCK_EDGE, SR_T_STRING, "clock_edge",
164                 "Clock edge", NULL},
165         {SR_CONF_AMPLITUDE, SR_T_FLOAT, "amplitude",
166                 "Amplitude", NULL},
167         {SR_CONF_REGULATION, SR_T_STRING, "regulation",
168                 "Channel regulation", NULL},
169         {SR_CONF_OVER_TEMPERATURE_PROTECTION, SR_T_BOOL, "otp",
170                 "Over-temperature protection", NULL},
171         {SR_CONF_OUTPUT_FREQUENCY, SR_T_FLOAT, "output_frequency",
172                 "Output frequency", NULL},
173         {SR_CONF_OUTPUT_FREQUENCY_TARGET, SR_T_FLOAT, "output_frequency_target",
174                 "Output frequency target", NULL},
175         {SR_CONF_MEASURED_QUANTITY, SR_T_MQ, "measured_quantity",
176                 "Measured quantity", NULL},
177         {SR_CONF_EQUIV_CIRCUIT_MODEL, SR_T_STRING, "equiv_circuit_model",
178                 "Equivalent circuit model", NULL},
179         {SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE, SR_T_BOOL, "otp_active",
180                 "Over-temperature protection active", NULL},
181         {SR_CONF_UNDER_VOLTAGE_CONDITION, SR_T_BOOL, "uvc",
182                 "Under-voltage condition", NULL},
183         {SR_CONF_UNDER_VOLTAGE_CONDITION_ACTIVE, SR_T_BOOL, "uvc_active",
184                 "Under-voltage condition active", NULL},
185         {SR_CONF_UNDER_VOLTAGE_CONDITION_THRESHOLD, SR_T_FLOAT, "uvc_threshold",
186                 "Under-voltage condition threshold", NULL},
187         {SR_CONF_TRIGGER_LEVEL, SR_T_FLOAT, "triggerlevel",
188                 "Trigger level", NULL},
189         {SR_CONF_EXTERNAL_CLOCK_SOURCE, SR_T_STRING, "external_clock_source",
190                 "External clock source", NULL},
191         {SR_CONF_OFFSET, SR_T_FLOAT, "offset",
192                 "Offset", NULL},
193         {SR_CONF_TRIGGER_PATTERN, SR_T_STRING, "triggerpattern",
194                 "Trigger pattern", NULL},
195         {SR_CONF_HIGH_RESOLUTION, SR_T_BOOL, "highresolution",
196                 "High resolution", NULL},
197         {SR_CONF_PEAK_DETECTION, SR_T_BOOL, "peakdetection",
198                 "Peak detection", NULL},
199         {SR_CONF_LOGIC_THRESHOLD, SR_T_STRING, "logic_threshold",
200                 "Logic threshold (predefined)", NULL},
201         {SR_CONF_LOGIC_THRESHOLD_CUSTOM, SR_T_FLOAT, "logic_threshold_custom",
202                 "Logic threshold (custom)", NULL},
203         {SR_CONF_RANGE, SR_T_STRING, "range",
204                 "Range", NULL},
205         {SR_CONF_DIGITS, SR_T_STRING, "digits",
206                 "Digits", NULL},
207         {SR_CONF_PHASE, SR_T_FLOAT, "phase",
208                 "Phase", NULL},
209         {SR_CONF_DUTY_CYCLE, SR_T_FLOAT, "output_duty_cycle",
210                 "Duty Cycle", NULL},
211         {SR_CONF_POWER, SR_T_FLOAT, "power",
212                 "Power", NULL},
213         {SR_CONF_POWER_TARGET, SR_T_FLOAT, "power_target",
214                 "Power Target", NULL},
215         {SR_CONF_RESISTANCE_TARGET, SR_T_FLOAT, "resistance_target",
216                 "Resistance Target", NULL},
217
218         /* Special stuff */
219         {SR_CONF_SESSIONFILE, SR_T_STRING, "sessionfile",
220                 "Session file", NULL},
221         {SR_CONF_CAPTUREFILE, SR_T_STRING, "capturefile",
222                 "Capture file", NULL},
223         {SR_CONF_CAPTURE_UNITSIZE, SR_T_UINT64, "capture_unitsize",
224                 "Capture unitsize", NULL},
225         {SR_CONF_POWER_OFF, SR_T_BOOL, "power_off",
226                 "Power off", NULL},
227         {SR_CONF_DATA_SOURCE, SR_T_STRING, "data_source",
228                 "Data source", NULL},
229         {SR_CONF_PROBE_FACTOR, SR_T_UINT64, "probe_factor",
230                 "Probe factor", NULL},
231         {SR_CONF_ADC_POWERLINE_CYCLES, SR_T_FLOAT, "nplc",
232                 "Number of ADC powerline cycles", NULL},
233
234         /* Acquisition modes, sample limiting */
235         {SR_CONF_LIMIT_MSEC, SR_T_UINT64, "limit_time",
236                 "Time limit", NULL},
237         {SR_CONF_LIMIT_SAMPLES, SR_T_UINT64, "limit_samples",
238                 "Sample limit", NULL},
239         {SR_CONF_LIMIT_FRAMES, SR_T_UINT64, "limit_frames",
240                 "Frame limit", NULL},
241         {SR_CONF_CONTINUOUS, SR_T_BOOL, "continuous",
242                 "Continuous sampling", NULL},
243         {SR_CONF_DATALOG, SR_T_BOOL, "datalog",
244                 "Datalog", NULL},
245         {SR_CONF_DEVICE_MODE, SR_T_STRING, "device_mode",
246                 "Device mode", NULL},
247         {SR_CONF_TEST_MODE, SR_T_STRING, "test_mode",
248                 "Test mode", NULL},
249
250         ALL_ZERO
251 };
252
253 /* Please use the same order as in enum sr_mq (libsigrok.h). */
254 static struct sr_key_info sr_key_info_mq[] = {
255         {SR_MQ_VOLTAGE, 0, "voltage", "Voltage", NULL},
256         {SR_MQ_CURRENT, 0, "current", "Current", NULL},
257         {SR_MQ_RESISTANCE, 0, "resistance", "Resistance", NULL},
258         {SR_MQ_CAPACITANCE, 0, "capacitance", "Capacitance", NULL},
259         {SR_MQ_TEMPERATURE, 0, "temperature", "Temperature", NULL},
260         {SR_MQ_FREQUENCY, 0, "frequency", "Frequency", NULL},
261         {SR_MQ_DUTY_CYCLE, 0, "duty_cycle", "Duty cycle", NULL},
262         {SR_MQ_CONTINUITY, 0, "continuity", "Continuity", NULL},
263         {SR_MQ_PULSE_WIDTH, 0, "pulse_width", "Pulse width", NULL},
264         {SR_MQ_CONDUCTANCE, 0, "conductance", "Conductance", NULL},
265         {SR_MQ_POWER, 0, "power", "Power", NULL},
266         {SR_MQ_GAIN, 0, "gain", "Gain", NULL},
267         {SR_MQ_SOUND_PRESSURE_LEVEL, 0, "spl", "Sound pressure level", NULL},
268         {SR_MQ_CARBON_MONOXIDE, 0, "co", "Carbon monoxide", NULL},
269         {SR_MQ_RELATIVE_HUMIDITY, 0, "rh", "Relative humidity", NULL},
270         {SR_MQ_TIME, 0, "time", "Time", NULL},
271         {SR_MQ_WIND_SPEED, 0, "wind_speed", "Wind speed", NULL},
272         {SR_MQ_PRESSURE, 0, "pressure", "Pressure", NULL},
273         {SR_MQ_PARALLEL_INDUCTANCE, 0, "parallel_inductance", "Parallel inductance", NULL},
274         {SR_MQ_PARALLEL_CAPACITANCE, 0, "parallel_capacitance", "Parallel capacitance", NULL},
275         {SR_MQ_PARALLEL_RESISTANCE, 0, "parallel_resistance", "Parallel resistance", NULL},
276         {SR_MQ_SERIES_INDUCTANCE, 0, "series_inductance", "Series inductance", NULL},
277         {SR_MQ_SERIES_CAPACITANCE, 0, "series_capacitance", "Series capacitance", NULL},
278         {SR_MQ_SERIES_RESISTANCE, 0, "series_resistance", "Series resistance", NULL},
279         {SR_MQ_DISSIPATION_FACTOR, 0, "dissipation_factor", "Dissipation factor", NULL},
280         {SR_MQ_QUALITY_FACTOR, 0, "quality_factor", "Quality factor", NULL},
281         {SR_MQ_PHASE_ANGLE, 0, "phase_angle", "Phase angle", NULL},
282         {SR_MQ_DIFFERENCE, 0, "difference", "Difference", NULL},
283         {SR_MQ_COUNT, 0, "count", "Count", NULL},
284         {SR_MQ_POWER_FACTOR, 0, "power_factor", "Power factor", NULL},
285         {SR_MQ_APPARENT_POWER, 0, "apparent_power", "Apparent power", NULL},
286         {SR_MQ_MASS, 0, "mass", "Mass", NULL},
287         {SR_MQ_HARMONIC_RATIO, 0, "harmonic_ratio", "Harmonic ratio", NULL},
288         {SR_MQ_ENERGY, 0, "energy", "Energy", NULL},
289         {SR_MQ_ELECTRIC_CHARGE, 0, "electric_charge", "Electric charge", NULL},
290         ALL_ZERO
291 };
292
293 /* Please use the same order as in enum sr_mqflag (libsigrok.h). */
294 static struct sr_key_info sr_key_info_mqflag[] = {
295         {SR_MQFLAG_AC, 0, "ac", "AC", NULL},
296         {SR_MQFLAG_DC, 0, "dc", "DC", NULL},
297         {SR_MQFLAG_RMS, 0, "rms", "RMS", NULL},
298         {SR_MQFLAG_DIODE, 0, "diode", "Diode", NULL},
299         {SR_MQFLAG_HOLD, 0, "hold", "Hold", NULL},
300         {SR_MQFLAG_MAX, 0, "max", "Max", NULL},
301         {SR_MQFLAG_MIN, 0, "min", "Min", NULL},
302         {SR_MQFLAG_AUTORANGE, 0, "auto_range", "Auto range", NULL},
303         {SR_MQFLAG_RELATIVE, 0, "relative", "Relative", NULL},
304         {SR_MQFLAG_SPL_FREQ_WEIGHT_A, 0, "spl_freq_weight_a",
305                 "Frequency weighted (A)", NULL},
306         {SR_MQFLAG_SPL_FREQ_WEIGHT_C, 0, "spl_freq_weight_c",
307                 "Frequency weighted (C)", NULL},
308         {SR_MQFLAG_SPL_FREQ_WEIGHT_Z, 0, "spl_freq_weight_z",
309                 "Frequency weighted (Z)", NULL},
310         {SR_MQFLAG_SPL_FREQ_WEIGHT_FLAT, 0, "spl_freq_weight_flat",
311                 "Frequency weighted (flat)", NULL},
312         {SR_MQFLAG_SPL_TIME_WEIGHT_S, 0, "spl_time_weight_s",
313                 "Time weighted (S)", NULL},
314         {SR_MQFLAG_SPL_TIME_WEIGHT_F, 0, "spl_time_weight_f",
315                 "Time weighted (F)", NULL},
316         {SR_MQFLAG_SPL_LAT, 0, "spl_time_average", "Time-averaged (LEQ)", NULL},
317         {SR_MQFLAG_SPL_PCT_OVER_ALARM, 0, "spl_pct_over_alarm",
318                 "Percentage over alarm", NULL},
319         {SR_MQFLAG_DURATION, 0, "duration", "Duration", NULL},
320         {SR_MQFLAG_AVG, 0, "average", "Average", NULL},
321         {SR_MQFLAG_REFERENCE, 0, "reference", "Reference", NULL},
322         {SR_MQFLAG_UNSTABLE, 0, "unstable", "Unstable", NULL},
323         {SR_MQFLAG_FOUR_WIRE, 0, "four_wire", "4-Wire", NULL},
324         ALL_ZERO
325 };
326
327 /* This must handle all the keys from enum sr_datatype (libsigrok.h). */
328 /** @private */
329 SR_PRIV const GVariantType *sr_variant_type_get(int datatype)
330 {
331         switch (datatype) {
332         case SR_T_INT32:
333                 return G_VARIANT_TYPE_INT32;
334         case SR_T_UINT64:
335                 return G_VARIANT_TYPE_UINT64;
336         case SR_T_STRING:
337                 return G_VARIANT_TYPE_STRING;
338         case SR_T_BOOL:
339                 return G_VARIANT_TYPE_BOOLEAN;
340         case SR_T_FLOAT:
341                 return G_VARIANT_TYPE_DOUBLE;
342         case SR_T_RATIONAL_PERIOD:
343         case SR_T_RATIONAL_VOLT:
344         case SR_T_UINT64_RANGE:
345         case SR_T_DOUBLE_RANGE:
346                 return G_VARIANT_TYPE_TUPLE;
347         case SR_T_KEYVALUE:
348                 return G_VARIANT_TYPE_DICTIONARY;
349         case SR_T_MQ:
350                 return G_VARIANT_TYPE_TUPLE;
351         default:
352                 return NULL;
353         }
354 }
355
356 /** @private */
357 SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *value)
358 {
359         const struct sr_key_info *info;
360         const GVariantType *type, *expected;
361         char *expected_string, *type_string;
362
363         info = sr_key_info_get(SR_KEY_CONFIG, key);
364         if (!info)
365                 return SR_OK;
366
367         expected = sr_variant_type_get(info->datatype);
368         type = g_variant_get_type(value);
369         if (!g_variant_type_equal(type, expected)
370                         && !g_variant_type_is_subtype_of(type, expected)) {
371                 expected_string = g_variant_type_dup_string(expected);
372                 type_string = g_variant_type_dup_string(type);
373                 sr_err("Wrong variant type for key '%s': expected '%s', got '%s'",
374                         info->name, expected_string, type_string);
375                 g_free(expected_string);
376                 g_free(type_string);
377                 return SR_ERR_ARG;
378         }
379
380         return SR_OK;
381 }
382
383 /**
384  * Return the list of supported hardware drivers.
385  *
386  * @param[in] ctx Pointer to a libsigrok context struct. Must not be NULL.
387  *
388  * @retval NULL The ctx argument was NULL, or there are no supported drivers.
389  * @retval Other Pointer to the NULL-terminated list of hardware drivers.
390  *               The user should NOT g_free() this list, sr_exit() will do that.
391  *
392  * @since 0.4.0
393  */
394 SR_API struct sr_dev_driver **sr_driver_list(const struct sr_context *ctx)
395 {
396         if (!ctx)
397                 return NULL;
398
399         return ctx->driver_list;
400 }
401
402 /**
403  * Initialize a hardware driver.
404  *
405  * This usually involves memory allocations and variable initializations
406  * within the driver, but _not_ scanning for attached devices.
407  * The API call sr_driver_scan() is used for that.
408  *
409  * @param ctx A libsigrok context object allocated by a previous call to
410  *            sr_init(). Must not be NULL.
411  * @param driver The driver to initialize. This must be a pointer to one of
412  *               the entries returned by sr_driver_list(). Must not be NULL.
413  *
414  * @retval SR_OK Success
415  * @retval SR_ERR_ARG Invalid parameter(s).
416  * @retval SR_ERR_BUG Internal errors.
417  * @retval other Another negative error code upon other errors.
418  *
419  * @since 0.2.0
420  */
421 SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver)
422 {
423         int ret;
424
425         if (!ctx) {
426                 sr_err("Invalid libsigrok context, can't initialize.");
427                 return SR_ERR_ARG;
428         }
429
430         if (!driver) {
431                 sr_err("Invalid driver, can't initialize.");
432                 return SR_ERR_ARG;
433         }
434
435         /* No log message here, too verbose and not very useful. */
436
437         if ((ret = driver->init(driver, ctx)) < 0)
438                 sr_err("Failed to initialize the driver: %d.", ret);
439
440         return ret;
441 }
442
443 /**
444  * Enumerate scan options supported by this driver.
445  *
446  * Before calling sr_driver_scan_options_list(), the user must have previously
447  * initialized the driver by calling sr_driver_init().
448  *
449  * @param driver The driver to enumerate options for. This must be a pointer
450  *               to one of the entries returned by sr_driver_list(). Must not
451  *               be NULL.
452  *
453  * @return A GArray * of uint32_t entries, or NULL on invalid arguments. Each
454  *         entry is a configuration key that is supported as a scan option.
455  *         The array must be freed by the caller using g_array_free().
456  *
457  * @since 0.4.0
458  */
459 SR_API GArray *sr_driver_scan_options_list(const struct sr_dev_driver *driver)
460 {
461         GVariant *gvar;
462         const uint32_t *opts;
463         gsize num_opts;
464         GArray *result;
465
466         if (sr_config_list(driver, NULL, NULL, SR_CONF_SCAN_OPTIONS, &gvar) != SR_OK)
467                 return NULL;
468
469         opts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(uint32_t));
470
471         result = g_array_sized_new(FALSE, FALSE, sizeof(uint32_t), num_opts);
472
473         g_array_insert_vals(result, 0, opts, num_opts);
474
475         g_variant_unref(gvar);
476
477         return result;
478 }
479
480 static int check_options(struct sr_dev_driver *driver, GSList *options,
481                 uint32_t optlist_key, struct sr_dev_inst *sdi,
482                 struct sr_channel_group *cg)
483 {
484         struct sr_config *src;
485         const struct sr_key_info *srci;
486         GVariant *gvar_opts;
487         GSList *l;
488         const uint32_t *opts;
489         gsize num_opts, i;
490         int ret;
491
492         if (sr_config_list(driver, sdi, cg, optlist_key, &gvar_opts) != SR_OK) {
493                 /* Driver publishes no options for this optlist. */
494                 return SR_ERR;
495         }
496
497         ret = SR_OK;
498         opts = g_variant_get_fixed_array(gvar_opts, &num_opts, sizeof(uint32_t));
499         for (l = options; l; l = l->next) {
500                 src = l->data;
501                 for (i = 0; i < num_opts; i++) {
502                         if (opts[i] == src->key)
503                                 break;
504                 }
505                 if (i == num_opts) {
506                         if (!(srci = sr_key_info_get(SR_KEY_CONFIG, src->key)))
507                                 /* Shouldn't happen. */
508                                 sr_err("Invalid option %d.", src->key);
509                         else
510                                 sr_err("Invalid option '%s'.", srci->id);
511                         ret = SR_ERR_ARG;
512                         break;
513                 }
514                 if (sr_variant_type_check(src->key, src->data) != SR_OK) {
515                         ret = SR_ERR_ARG;
516                         break;
517                 }
518         }
519         g_variant_unref(gvar_opts);
520
521         return ret;
522 }
523
524 /**
525  * Tell a hardware driver to scan for devices.
526  *
527  * In addition to the detection, the devices that are found are also
528  * initialized automatically. On some devices, this involves a firmware upload,
529  * or other such measures.
530  *
531  * The order in which the system is scanned for devices is not specified. The
532  * caller should not assume or rely on any specific order.
533  *
534  * Before calling sr_driver_scan(), the user must have previously initialized
535  * the driver by calling sr_driver_init().
536  *
537  * @param driver The driver that should scan. This must be a pointer to one of
538  *               the entries returned by sr_driver_list(). Must not be NULL.
539  * @param options A list of 'struct sr_hwopt' options to pass to the driver's
540  *                scanner. Can be NULL/empty.
541  *
542  * @return A GSList * of 'struct sr_dev_inst', or NULL if no devices were
543  *         found (or errors were encountered). This list must be freed by the
544  *         caller using g_slist_free(), but without freeing the data pointed
545  *         to in the list.
546  *
547  * @since 0.2.0
548  */
549 SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options)
550 {
551         GSList *l;
552
553         if (!driver) {
554                 sr_err("Invalid driver, can't scan for devices.");
555                 return NULL;
556         }
557
558         if (!driver->context) {
559                 sr_err("Driver not initialized, can't scan for devices.");
560                 return NULL;
561         }
562
563         if (options) {
564                 if (check_options(driver, options, SR_CONF_SCAN_OPTIONS, NULL, NULL) != SR_OK)
565                         return NULL;
566         }
567
568         l = driver->scan(driver, options);
569
570         sr_spew("Scan found %d devices (%s).", g_slist_length(l), driver->name);
571
572         return l;
573 }
574
575 /**
576  * Call driver cleanup function for all drivers.
577  *
578  * @param[in] ctx Pointer to a libsigrok context struct. Must not be NULL.
579  *
580  * @private
581  */
582 SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx)
583 {
584         int i;
585         struct sr_dev_driver **drivers;
586
587         if (!ctx)
588                 return;
589
590         sr_dbg("Cleaning up all drivers.");
591
592         drivers = sr_driver_list(ctx);
593         for (i = 0; drivers[i]; i++) {
594                 if (drivers[i]->cleanup)
595                         drivers[i]->cleanup(drivers[i]);
596                 drivers[i]->context = NULL;
597         }
598 }
599
600 /**
601  * Allocate struct sr_config.
602  *
603  * A floating reference can be passed in for data.
604  *
605  * @param key The config key to use.
606  * @param data The GVariant data to use.
607  *
608  * @return The newly allocated struct sr_config. This function is assumed
609  *         to never fail.
610  *
611  * @private
612  */
613 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data)
614 {
615         struct sr_config *src;
616
617         src = g_malloc0(sizeof(struct sr_config));
618         src->key = key;
619         src->data = g_variant_ref_sink(data);
620
621         return src;
622 }
623
624 /**
625  * Free struct sr_config.
626  *
627  * @private
628  */
629 SR_PRIV void sr_config_free(struct sr_config *src)
630 {
631         if (!src || !src->data) {
632                 sr_err("%s: invalid data!", __func__);
633                 return;
634         }
635
636         g_variant_unref(src->data);
637         g_free(src);
638 }
639
640 /** @private */
641 SR_PRIV int sr_dev_acquisition_start(struct sr_dev_inst *sdi)
642 {
643         if (!sdi || !sdi->driver) {
644                 sr_err("%s: Invalid arguments.", __func__);
645                 return SR_ERR_ARG;
646         }
647
648         if (sdi->status != SR_ST_ACTIVE) {
649                 sr_err("%s: Device instance not active, can't start.",
650                         sdi->driver->name);
651                 return SR_ERR_DEV_CLOSED;
652         }
653
654         sr_dbg("%s: Starting acquisition.", sdi->driver->name);
655
656         return sdi->driver->dev_acquisition_start(sdi);
657 }
658
659 /** @private */
660 SR_PRIV int sr_dev_acquisition_stop(struct sr_dev_inst *sdi)
661 {
662         if (!sdi || !sdi->driver) {
663                 sr_err("%s: Invalid arguments.", __func__);
664                 return SR_ERR_ARG;
665         }
666
667         if (sdi->status != SR_ST_ACTIVE) {
668                 sr_err("%s: Device instance not active, can't stop.",
669                         sdi->driver->name);
670                 return SR_ERR_DEV_CLOSED;
671         }
672
673         sr_dbg("%s: Stopping acquisition.", sdi->driver->name);
674
675         return sdi->driver->dev_acquisition_stop(sdi);
676 }
677
678 static void log_key(const struct sr_dev_inst *sdi,
679         const struct sr_channel_group *cg, uint32_t key, unsigned int op,
680         GVariant *data)
681 {
682         const char *opstr;
683         const struct sr_key_info *srci;
684         gchar *tmp_str;
685
686         /* Don't log SR_CONF_DEVICE_OPTIONS, it's verbose and not too useful. */
687         if (key == SR_CONF_DEVICE_OPTIONS)
688                 return;
689
690         opstr = op == SR_CONF_GET ? "get" : op == SR_CONF_SET ? "set" : "list";
691         srci = sr_key_info_get(SR_KEY_CONFIG, key);
692
693         tmp_str = g_variant_print(data, TRUE);
694         sr_spew("sr_config_%s(): key %d (%s) sdi %p cg %s -> %s", opstr, key,
695                 srci ? srci->id : "NULL", sdi, cg ? cg->name : "NULL",
696                 data ? tmp_str : "NULL");
697         g_free(tmp_str);
698 }
699
700 static int check_key(const struct sr_dev_driver *driver,
701                 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg,
702                 uint32_t key, unsigned int op, GVariant *data)
703 {
704         const struct sr_key_info *srci;
705         gsize num_opts, i;
706         GVariant *gvar_opts;
707         const uint32_t *opts;
708         uint32_t pub_opt;
709         const char *suffix;
710         const char *opstr;
711
712         if (sdi && cg)
713                 suffix = " for this device instance and channel group";
714         else if (sdi)
715                 suffix = " for this device instance";
716         else
717                 suffix = "";
718
719         if (!(srci = sr_key_info_get(SR_KEY_CONFIG, key))) {
720                 sr_err("Invalid key %d.", key);
721                 return SR_ERR_ARG;
722         }
723         opstr = op == SR_CONF_GET ? "get" : op == SR_CONF_SET ? "set" : "list";
724
725         switch (key) {
726         case SR_CONF_LIMIT_MSEC:
727         case SR_CONF_LIMIT_SAMPLES:
728         case SR_CONF_SAMPLERATE:
729                 /* Setting any of these to 0 is not useful. */
730                 if (op != SR_CONF_SET || !data)
731                         break;
732                 if (g_variant_get_uint64(data) == 0) {
733                         sr_err("Cannot set '%s' to 0.", srci->id);
734                         return SR_ERR_ARG;
735                 }
736                 break;
737         case SR_CONF_CAPTURE_RATIO:
738                 /* Capture ratio must always be between 0 and 100. */
739                 if (op != SR_CONF_SET || !data)
740                         break;
741                 if (g_variant_get_uint64(data) > 100) {
742                         sr_err("Capture ratio must be 0..100.");
743                         return SR_ERR_ARG;
744                 }
745                 break;
746         }
747
748         if (sr_config_list(driver, sdi, cg, SR_CONF_DEVICE_OPTIONS, &gvar_opts) != SR_OK) {
749                 /* Driver publishes no options. */
750                 sr_err("No options available%s.", suffix);
751                 return SR_ERR_ARG;
752         }
753         opts = g_variant_get_fixed_array(gvar_opts, &num_opts, sizeof(uint32_t));
754         pub_opt = 0;
755         for (i = 0; i < num_opts; i++) {
756                 if ((opts[i] & SR_CONF_MASK) == key) {
757                         pub_opt = opts[i];
758                         break;
759                 }
760         }
761         g_variant_unref(gvar_opts);
762         if (!pub_opt) {
763                 sr_err("Option '%s' not available%s.", srci->id, suffix);
764                 return SR_ERR_ARG;
765         }
766
767         if (!(pub_opt & op)) {
768                 sr_err("Option '%s' not available to %s%s.", srci->id, opstr, suffix);
769                 return SR_ERR_ARG;
770         }
771
772         return SR_OK;
773 }
774
775 /**
776  * Query value of a configuration key at the given driver or device instance.
777  *
778  * @param[in] driver The sr_dev_driver struct to query. Must not be NULL.
779  * @param[in] sdi (optional) If the key is specific to a device, this must
780  *            contain a pointer to the struct sr_dev_inst to be checked.
781  *            Otherwise it must be NULL. If sdi is != NULL, sdi->priv must
782  *            also be != NULL.
783  * @param[in] cg The channel group on the device for which to list the
784  *               values, or NULL.
785  * @param[in] key The configuration key (SR_CONF_*).
786  * @param[in,out] data Pointer to a GVariant where the value will be stored.
787  *             Must not be NULL. The caller is given ownership of the GVariant
788  *             and must thus decrease the refcount after use. However if
789  *             this function returns an error code, the field should be
790  *             considered unused, and should not be unreferenced.
791  *
792  * @retval SR_OK Success.
793  * @retval SR_ERR Error.
794  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
795  *         interpreted as an error by the caller; merely as an indication
796  *         that it's not applicable.
797  *
798  * @since 0.3.0
799  */
800 SR_API int sr_config_get(const struct sr_dev_driver *driver,
801                 const struct sr_dev_inst *sdi,
802                 const struct sr_channel_group *cg,
803                 uint32_t key, GVariant **data)
804 {
805         int ret;
806
807         if (!driver || !data)
808                 return SR_ERR;
809
810         if (!driver->config_get)
811                 return SR_ERR_ARG;
812
813         if (check_key(driver, sdi, cg, key, SR_CONF_GET, NULL) != SR_OK)
814                 return SR_ERR_ARG;
815
816         if (sdi && !sdi->priv) {
817                 sr_err("Can't get config (sdi != NULL, sdi->priv == NULL).");
818                 return SR_ERR;
819         }
820
821         if ((ret = driver->config_get(key, data, sdi, cg)) == SR_OK) {
822                 log_key(sdi, cg, key, SR_CONF_GET, *data);
823                 /* Got a floating reference from the driver. Sink it here,
824                  * caller will need to unref when done with it. */
825                 g_variant_ref_sink(*data);
826         }
827
828         if (ret == SR_ERR_CHANNEL_GROUP)
829                 sr_err("%s: No channel group specified.",
830                         (sdi) ? sdi->driver->name : "unknown");
831
832         return ret;
833 }
834
835 /**
836  * Set value of a configuration key in a device instance.
837  *
838  * @param[in] sdi The device instance. Must not be NULL. sdi->driver and
839  *                sdi->priv must not be NULL either.
840  * @param[in] cg The channel group on the device for which to list the
841  *                    values, or NULL.
842  * @param[in] key The configuration key (SR_CONF_*).
843  * @param data The new value for the key, as a GVariant with GVariantType
844  *        appropriate to that key. A floating reference can be passed
845  *        in; its refcount will be sunk and unreferenced after use.
846  *
847  * @retval SR_OK Success.
848  * @retval SR_ERR Error.
849  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
850  *         interpreted as an error by the caller; merely as an indication
851  *         that it's not applicable.
852  *
853  * @since 0.3.0
854  */
855 SR_API int sr_config_set(const struct sr_dev_inst *sdi,
856                 const struct sr_channel_group *cg,
857                 uint32_t key, GVariant *data)
858 {
859         int ret;
860
861         g_variant_ref_sink(data);
862
863         if (!sdi || !sdi->driver || !sdi->priv || !data)
864                 ret = SR_ERR;
865         else if (!sdi->driver->config_set)
866                 ret = SR_ERR_ARG;
867         else if (sdi->status != SR_ST_ACTIVE) {
868                 sr_err("%s: Device instance not active, can't set config.",
869                         sdi->driver->name);
870                 ret = SR_ERR_DEV_CLOSED;
871         } else if (check_key(sdi->driver, sdi, cg, key, SR_CONF_SET, data) != SR_OK)
872                 return SR_ERR_ARG;
873         else if ((ret = sr_variant_type_check(key, data)) == SR_OK) {
874                 log_key(sdi, cg, key, SR_CONF_SET, data);
875                 ret = sdi->driver->config_set(key, data, sdi, cg);
876         }
877
878         g_variant_unref(data);
879
880         if (ret == SR_ERR_CHANNEL_GROUP)
881                 sr_err("%s: No channel group specified.",
882                         (sdi) ? sdi->driver->name : "unknown");
883
884         return ret;
885 }
886
887 /**
888  * Apply configuration settings to the device hardware.
889  *
890  * @param sdi The device instance.
891  *
892  * @return SR_OK upon success or SR_ERR in case of error.
893  *
894  * @since 0.3.0
895  */
896 SR_API int sr_config_commit(const struct sr_dev_inst *sdi)
897 {
898         int ret;
899
900         if (!sdi || !sdi->driver)
901                 ret = SR_ERR;
902         else if (!sdi->driver->config_commit)
903                 ret = SR_OK;
904         else if (sdi->status != SR_ST_ACTIVE) {
905                 sr_err("%s: Device instance not active, can't commit config.",
906                         sdi->driver->name);
907                 ret = SR_ERR_DEV_CLOSED;
908         } else
909                 ret = sdi->driver->config_commit(sdi);
910
911         return ret;
912 }
913
914 /**
915  * List all possible values for a configuration key.
916  *
917  * @param[in] driver The sr_dev_driver struct to query. Must not be NULL.
918  * @param[in] sdi (optional) If the key is specific to a device instance, this
919  *            must contain a pointer to the struct sr_dev_inst to be checked.
920  *            Otherwise it must be NULL. If sdi is != NULL, sdi->priv must
921  *            also be != NULL.
922  * @param[in] cg The channel group on the device instance for which to list
923  *            the values, or NULL. If this device instance doesn't
924  *            have channel groups, this must not be != NULL.
925  *            If cg is NULL, this function will return the "common" device
926  *            instance options that are channel-group independent. Otherwise
927  *            it will return the channel-group specific options.
928  * @param[in] key The configuration key (SR_CONF_*).
929  * @param[in,out] data A pointer to a GVariant where the list will be stored.
930  *                The caller is given ownership of the GVariant and must thus
931  *                unref the GVariant after use. However if this function
932  *                returns an error code, the field should be considered
933  *                unused, and should not be unreferenced.
934  *
935  * @retval SR_OK Success.
936  * @retval SR_ERR Error.
937  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
938  *         interpreted as an error by the caller; merely as an indication
939  *         that it's not applicable.
940  *
941  * @since 0.3.0
942  */
943 SR_API int sr_config_list(const struct sr_dev_driver *driver,
944                 const struct sr_dev_inst *sdi,
945                 const struct sr_channel_group *cg,
946                 uint32_t key, GVariant **data)
947 {
948         int ret;
949
950         if (!driver || !data)
951                 return SR_ERR;
952
953         if (!driver->config_list)
954                 return SR_ERR_ARG;
955
956         if (key != SR_CONF_SCAN_OPTIONS && key != SR_CONF_DEVICE_OPTIONS) {
957                 if (check_key(driver, sdi, cg, key, SR_CONF_LIST, NULL) != SR_OK)
958                         return SR_ERR_ARG;
959         }
960
961         if (sdi && !sdi->priv) {
962                 sr_err("Can't list config (sdi != NULL, sdi->priv == NULL).");
963                 return SR_ERR;
964         }
965
966         if (key != SR_CONF_SCAN_OPTIONS && key != SR_CONF_DEVICE_OPTIONS && !sdi) {
967                 sr_err("Config keys other than SR_CONF_SCAN_OPTIONS and "
968                        "SR_CONF_DEVICE_OPTIONS always need an sdi.");
969                 return SR_ERR_ARG;
970         }
971
972         if (cg && sdi && !sdi->channel_groups) {
973                 sr_err("Can't list config for channel group, there are none.");
974                 return SR_ERR_ARG;
975         }
976
977         if (cg && sdi && !g_slist_find(sdi->channel_groups, cg)) {
978                 sr_err("If a channel group is specified, it must be a valid one.");
979                 return SR_ERR_ARG;
980         }
981
982         if (cg && !sdi) {
983                 sr_err("Need sdi when a channel group is specified.");
984                 return SR_ERR_ARG;
985         }
986
987         if ((ret = driver->config_list(key, data, sdi, cg)) == SR_OK) {
988                 log_key(sdi, cg, key, SR_CONF_LIST, *data);
989                 g_variant_ref_sink(*data);
990         }
991
992         if (ret == SR_ERR_CHANNEL_GROUP)
993                 sr_err("%s: No channel group specified.",
994                         (sdi) ? sdi->driver->name : "unknown");
995
996         return ret;
997 }
998
999 static struct sr_key_info *get_keytable(int keytype)
1000 {
1001         struct sr_key_info *table;
1002
1003         switch (keytype) {
1004         case SR_KEY_CONFIG:
1005                 table = sr_key_info_config;
1006                 break;
1007         case SR_KEY_MQ:
1008                 table = sr_key_info_mq;
1009                 break;
1010         case SR_KEY_MQFLAGS:
1011                 table = sr_key_info_mqflag;
1012                 break;
1013         default:
1014                 sr_err("Invalid keytype %d", keytype);
1015                 return NULL;
1016         }
1017
1018         return table;
1019 }
1020
1021 /**
1022  * Get information about a key, by key.
1023  *
1024  * @param[in] keytype The namespace the key is in.
1025  * @param[in] key The key to find.
1026  *
1027  * @return A pointer to a struct sr_key_info, or NULL if the key
1028  *         was not found.
1029  *
1030  * @since 0.3.0
1031  */
1032 SR_API const struct sr_key_info *sr_key_info_get(int keytype, uint32_t key)
1033 {
1034         struct sr_key_info *table;
1035         int i;
1036
1037         if (!(table = get_keytable(keytype)))
1038                 return NULL;
1039
1040         for (i = 0; table[i].key; i++) {
1041                 if (table[i].key == key)
1042                         return &table[i];
1043         }
1044
1045         return NULL;
1046 }
1047
1048 /**
1049  * Get information about a key, by name.
1050  *
1051  * @param[in] keytype The namespace the key is in.
1052  * @param[in] keyid The key id string.
1053  *
1054  * @return A pointer to a struct sr_key_info, or NULL if the key
1055  *         was not found.
1056  *
1057  * @since 0.2.0
1058  */
1059 SR_API const struct sr_key_info *sr_key_info_name_get(int keytype, const char *keyid)
1060 {
1061         struct sr_key_info *table;
1062         int i;
1063
1064         if (!(table = get_keytable(keytype)))
1065                 return NULL;
1066
1067         for (i = 0; table[i].key; i++) {
1068                 if (!table[i].id)
1069                         continue;
1070                 if (!strcmp(table[i].id, keyid))
1071                         return &table[i];
1072         }
1073
1074         return NULL;
1075 }
1076
1077 /** @} */