]> sigrok.org Git - libsigrok.git/blame - device.c
Replace 'probe' with 'channel' in most places.
[libsigrok.git] / device.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 <stdio.h>
21#include <glib.h>
545f9786 22#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
45c59c8b
BV
23#include "libsigrok.h"
24#include "libsigrok-internal.h"
a1bb33af 25
3544f848 26#define LOG_PREFIX "device"
a885ce3e 27
393fb9cb
UH
28/**
29 * @file
30 *
31 * Device handling in libsigrok.
32 */
33
7b870c38
UH
34/**
35 * @defgroup grp_devices Devices
36 *
37 * Device handling in libsigrok.
38 *
39 * @{
40 */
41
04cb9157 42/** @private
91aea754
UH
43 * Allocate and initialize new struct sr_channel
44 * @param[in] index @copydoc sr_channel::index
45 * @param[in] type @copydoc sr_channel::type
46 * @param[in] enabled @copydoc sr_channel::enabled
47 * @param[in] name @copydoc sr_channel::name
04cb9157 48 *
91aea754 49 * @return NULL (failure) or new struct sr_channel*.
04cb9157 50 */
91aea754 51SR_PRIV struct sr_channel *sr_probe_new(int index, int type,
48a486cd
BV
52 gboolean enabled, const char *name)
53{
ba7dd8bb 54 struct sr_channel *ch;
48a486cd 55
ba7dd8bb
UH
56 if (!(ch = g_try_malloc0(sizeof(struct sr_channel)))) {
57 sr_err("Channel malloc failed.");
48a486cd
BV
58 return NULL;
59 }
60
ba7dd8bb
UH
61 ch->index = index;
62 ch->type = type;
63 ch->enabled = enabled;
48a486cd 64 if (name)
ba7dd8bb 65 ch->name = g_strdup(name);
48a486cd 66
ba7dd8bb 67 return ch;
48a486cd
BV
68}
69
94799bc4 70/**
ba7dd8bb 71 * Set the name of the specified channel in the specified device.
94799bc4 72 *
ba7dd8bb 73 * If the channel already has a different name assigned to it, it will be
94799bc4
UH
74 * removed, and the new name will be saved instead.
75 *
ba7dd8bb
UH
76 * @param sdi The device instance the channel is connected to.
77 * @param[in] channelnum The number of the channel whose name to set.
78 * Note that the channel numbers start at 0.
79 * @param[in] name The new name that the specified channel should get. A copy
37e8b4c4 80 * of the string is made.
0e3b1439 81 *
37e8b4c4 82 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
9fb5f2df 83 *
53f05fa8 84 * @since 0.2.0
94799bc4 85 */
37e8b4c4 86SR_API int sr_dev_probe_name_set(const struct sr_dev_inst *sdi,
ba7dd8bb 87 int channelnum, const char *name)
a1bb33af 88{
37e8b4c4 89 GSList *l;
ba7dd8bb 90 struct sr_channel *ch;
37e8b4c4 91 int ret;
a1bb33af 92
37e8b4c4
BV
93 if (!sdi) {
94 sr_err("%s: sdi was NULL", __func__);
0e3b1439 95 return SR_ERR_ARG;
94799bc4
UH
96 }
97
37e8b4c4 98 ret = SR_ERR_ARG;
ba7dd8bb
UH
99 for (l = sdi->channels; l; l = l->next) {
100 ch = l->data;
101 if (ch->index == channelnum) {
102 g_free(ch->name);
103 ch->name = g_strdup(name);
37e8b4c4
BV
104 ret = SR_OK;
105 break;
106 }
94799bc4
UH
107 }
108
37e8b4c4 109 return ret;
a1bb33af
UH
110}
111
be5bf44d 112/**
ba7dd8bb 113 * Enable or disable a channel on the specified device.
be5bf44d 114 *
ba7dd8bb
UH
115 * @param sdi The device instance the channel is connected to.
116 * @param channelnum The channel number, starting from 0.
117 * @param state TRUE to enable the channel, FALSE to disable.
be5bf44d 118 *
2a854d71 119 * @return SR_OK on success or SR_ERR on failure. In case of invalid
ba7dd8bb 120 * arguments, SR_ERR_ARG is returned and the channel enabled state
2a854d71 121 * remains unchanged.
9fb5f2df
UH
122 *
123 * @since 0.2.0
be5bf44d 124 */
ba7dd8bb 125SR_API int sr_dev_probe_enable(const struct sr_dev_inst *sdi, int channelnum,
be5bf44d
BV
126 gboolean state)
127{
128 GSList *l;
ba7dd8bb 129 struct sr_channel *ch;
be5bf44d 130 int ret;
2a854d71 131 gboolean was_enabled;
be5bf44d
BV
132
133 if (!sdi)
134 return SR_ERR_ARG;
135
136 ret = SR_ERR_ARG;
ba7dd8bb
UH
137 for (l = sdi->channels; l; l = l->next) {
138 ch = l->data;
139 if (ch->index == channelnum) {
140 was_enabled = ch->enabled;
141 ch->enabled = state;
be5bf44d 142 ret = SR_OK;
2a854d71
DE
143 if (!state != !was_enabled && sdi->driver
144 && sdi->driver->config_probe_set) {
145 ret = sdi->driver->config_probe_set(
ba7dd8bb 146 sdi, ch, SR_PROBE_SET_ENABLED);
2a854d71
DE
147 /* Roll back change if it wasn't applicable. */
148 if (ret == SR_ERR_ARG)
ba7dd8bb 149 ch->enabled = was_enabled;
2a854d71 150 }
be5bf44d
BV
151 break;
152 }
153 }
154
155 return ret;
156}
157
94799bc4 158/**
ba7dd8bb 159 * Add a trigger to the specified device (and the specified channel).
01c3e9db 160 *
ba7dd8bb 161 * If the specified channel of this device already has a trigger, it will
01c3e9db 162 * be silently replaced.
94799bc4 163 *
04cb9157 164 * @param[in,out] sdi Pointer to the device instance; must not be NULL.
ba7dd8bb 165 * @param[in] channelnum Number of channel, starting at 0.
04cb9157 166 * @param[in] trigger Trigger string, in the format used by sigrok-cli
0e3b1439 167 *
2a854d71
DE
168 * @return SR_OK on success or SR_ERR on failure. In case of invalid
169 * arguments, SR_ERR_ARG is returned and the trigger settings
170 * remain unchanged.
9fb5f2df 171 *
53f05fa8 172 * @since 0.2.0
94799bc4 173 */
ba7dd8bb 174SR_API int sr_dev_trigger_set(const struct sr_dev_inst *sdi, int channelnum,
58453e58 175 const char *trigger)
a1bb33af 176{
58453e58 177 GSList *l;
ba7dd8bb 178 struct sr_channel *ch;
2a854d71 179 char *old_trigger;
58453e58 180 int ret;
a1bb33af 181
58453e58 182 if (!sdi)
0e3b1439 183 return SR_ERR_ARG;
94799bc4 184
58453e58 185 ret = SR_ERR_ARG;
ba7dd8bb
UH
186 for (l = sdi->channels; l; l = l->next) {
187 ch = l->data;
188 if (ch->index == channelnum) {
189 old_trigger = ch->trigger;
58453e58 190 ret = SR_OK;
2a854d71
DE
191 if (g_strcmp0(trigger, old_trigger) == 0)
192 break;
193 /* Set new trigger if it has changed. */
ba7dd8bb 194 ch->trigger = g_strdup(trigger);
2a854d71
DE
195
196 if (sdi->driver && sdi->driver->config_probe_set) {
197 ret = sdi->driver->config_probe_set(
ba7dd8bb 198 sdi, ch, SR_PROBE_SET_TRIGGER);
2a854d71
DE
199 /* Roll back change if it wasn't applicable. */
200 if (ret == SR_ERR_ARG) {
ba7dd8bb
UH
201 g_free(ch->trigger);
202 ch->trigger = old_trigger;
2a854d71
DE
203 break;
204 }
205 }
206 g_free(old_trigger);
58453e58
BV
207 break;
208 }
94799bc4 209 }
a1bb33af 210
58453e58 211 return ret;
7d658874
BV
212}
213
94799bc4 214/**
9c5332d2
UH
215 * Determine whether the specified device instance has the specified
216 * capability.
94799bc4 217 *
9c5332d2 218 * @param sdi Pointer to the device instance to be checked. Must not be NULL.
8ec95d22
UH
219 * If the device's 'driver' field is NULL (virtual device), this
220 * function will always return FALSE (virtual devices don't have
221 * a hardware capabilities list).
04cb9157 222 * @param[in] key The option that should be checked for is supported by the
4d15e5c9 223 * specified device.
94799bc4 224 *
04cb9157
MH
225 * @retval TRUE Device has the specified option
226 * @retval FALSE Device does not have the specified option, invalid input
227 * parameters or other error conditions.
9fb5f2df 228 *
53f05fa8 229 * @since 0.2.0
94799bc4 230 */
4d15e5c9 231SR_API gboolean sr_dev_has_option(const struct sr_dev_inst *sdi, int key)
7d658874 232{
003595ac 233 GVariant *gvar;
4d15e5c9 234 const int *devopts;
003595ac
BV
235 gsize num_opts, i;
236 int ret;
7d658874 237
003595ac 238 if (!sdi || !sdi->driver || !sdi->driver->config_list)
8ec95d22 239 return FALSE;
94799bc4 240
8f996b89 241 if (sdi->driver->config_list(SR_CONF_DEVICE_OPTIONS,
92b68bb5 242 &gvar, sdi, NULL) != SR_OK)
8ec95d22 243 return FALSE;
94799bc4 244
003595ac
BV
245 ret = FALSE;
246 devopts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(int32_t));
247 for (i = 0; i < num_opts; i++) {
248 if (devopts[i] == key) {
249 ret = TRUE;
250 break;
251 }
94799bc4 252 }
003595ac 253 g_variant_unref(gvar);
218557b8 254
003595ac 255 return ret;
a1bb33af 256}
fd9836bf 257
04cb9157
MH
258/** @private
259 * Allocate and init new device instance struct.
2eb84c98
UH
260 * @param[in] index @copydoc sr_dev_inst::index
261 * @param[in] status @copydoc sr_dev_inst::status
262 * @param[in] vendor @copydoc sr_dev_inst::vendor
263 * @param[in] model @copydoc sr_dev_inst::model
264 * @param[in] version @copydoc sr_dev_inst::version
04cb9157 265 *
2eb84c98
UH
266 * @retval NULL Error
267 * @retval struct sr_dev_inst *. Dynamically allocated, free using
04cb9157
MH
268 * sr_dev_inst_free().
269 */
48a486cd
BV
270SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
271 const char *vendor, const char *model, const char *version)
272{
273 struct sr_dev_inst *sdi;
274
275 if (!(sdi = g_try_malloc(sizeof(struct sr_dev_inst)))) {
c4227fc6 276 sr_err("Device instance malloc failed.");
48a486cd
BV
277 return NULL;
278 }
279
e8d3d6c8 280 sdi->driver = NULL;
48a486cd
BV
281 sdi->index = index;
282 sdi->status = status;
283 sdi->inst_type = -1;
284 sdi->vendor = vendor ? g_strdup(vendor) : NULL;
285 sdi->model = model ? g_strdup(model) : NULL;
286 sdi->version = version ? g_strdup(version) : NULL;
ba7dd8bb 287 sdi->channels = NULL;
660e398f 288 sdi->channel_groups = NULL;
9e2e9864 289 sdi->conn = NULL;
48a486cd
BV
290 sdi->priv = NULL;
291
292 return sdi;
293}
294
04cb9157
MH
295/** @private
296 * Free device instance struct created by sr_dev_inst().
2eb84c98 297 * @param sdi struct* to free.
04cb9157 298 */
48a486cd
BV
299SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
300{
ba7dd8bb 301 struct sr_channel *ch;
d3cff734
BV
302 GSList *l;
303
ba7dd8bb
UH
304 for (l = sdi->channels; l; l = l->next) {
305 ch = l->data;
306 g_free(ch->name);
307 g_free(ch->trigger);
308 g_free(ch);
d3cff734 309 }
ba7dd8bb 310 g_slist_free(sdi->channels);
d3cff734 311
660e398f
UH
312 if (sdi->channel_groups)
313 g_slist_free(sdi->channel_groups);
90c7f4e9 314
48a486cd
BV
315 g_free(sdi->vendor);
316 g_free(sdi->model);
317 g_free(sdi->version);
318 g_free(sdi);
319}
320
321#ifdef HAVE_LIBUSB_1_0
322
04cb9157
MH
323/** @private
324 * Allocate and init struct for USB device instance.
2eb84c98
UH
325 * @param[in] bus @copydoc sr_usb_dev_inst::bus
326 * @param[in] address @copydoc sr_usb_dev_inst::address
327 * @param[in] hdl @copydoc sr_usb_dev_inst::devhdl
04cb9157 328 *
2eb84c98
UH
329 * @retval NULL Error
330 * @retval other struct sr_usb_dev_inst * for USB device instance.
04cb9157 331 */
48a486cd
BV
332SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
333 uint8_t address, struct libusb_device_handle *hdl)
334{
335 struct sr_usb_dev_inst *udi;
336
337 if (!(udi = g_try_malloc(sizeof(struct sr_usb_dev_inst)))) {
c4227fc6 338 sr_err("USB device instance malloc failed.");
48a486cd
BV
339 return NULL;
340 }
341
342 udi->bus = bus;
343 udi->address = address;
344 udi->devhdl = hdl;
345
346 return udi;
347}
348
04cb9157
MH
349/** @private
350 * Free struct * allocated by sr_usb_dev_inst().
2eb84c98 351 * @param usb struct* to free. Must not be NULL.
04cb9157 352 */
48a486cd
BV
353SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
354{
a006798b 355 g_free(usb);
48a486cd
BV
356}
357
358#endif
359
c4f2dfd0
UH
360#ifdef HAVE_LIBSERIALPORT
361
9fb5f2df
UH
362/**
363 * @private
299bdb24
BV
364 *
365 * Both parameters are copied to newly allocated strings, and freed
366 * automatically by sr_serial_dev_inst_free().
9fb5f2df 367 *
04cb9157 368 * @param[in] port OS-specific serial port specification. Examples:
9fb5f2df 369 * "/dev/ttyUSB0", "/dev/ttyACM1", "/dev/tty.Modem-0", "COM1".
04cb9157
MH
370 * @param[in] serialcomm A serial communication parameters string, in the form
371 * of \<speed\>/\<data bits\>\<parity\>\<stopbits\>, for example
372 * "9600/8n1" or "600/7o2". This is an optional parameter;
373 * it may be filled in later.
9fb5f2df
UH
374 *
375 * @return A pointer to a newly initialized struct sr_serial_dev_inst,
376 * or NULL on error.
299bdb24 377 */
48a486cd 378SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
299bdb24 379 const char *serialcomm)
48a486cd
BV
380{
381 struct sr_serial_dev_inst *serial;
382
299bdb24 383 if (!port) {
c4227fc6 384 sr_err("Serial port required.");
299bdb24
BV
385 return NULL;
386 }
387
388 if (!(serial = g_try_malloc0(sizeof(struct sr_serial_dev_inst)))) {
c4227fc6 389 sr_err("Serial device instance malloc failed.");
48a486cd
BV
390 return NULL;
391 }
392
393 serial->port = g_strdup(port);
299bdb24
BV
394 if (serialcomm)
395 serial->serialcomm = g_strdup(serialcomm);
48a486cd
BV
396
397 return serial;
398}
399
04cb9157
MH
400/** @private
401 * Free struct sr_serial_dev_inst * allocated by sr_serial_dev_inst().
2eb84c98 402 * @param serial struct sr_serial_dev_inst * to free. Must not be NULL.
04cb9157 403 */
48a486cd
BV
404SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
405{
406 g_free(serial->port);
299bdb24 407 g_free(serial->serialcomm);
acac8fc3 408 g_free(serial);
48a486cd 409}
c4f2dfd0
UH
410#endif
411
df823ac4 412/** @private */
ae67644f
ML
413SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device)
414{
415 struct sr_usbtmc_dev_inst *usbtmc;
416
417 if (!device) {
418 sr_err("Device name required.");
419 return NULL;
420 }
421
422 if (!(usbtmc = g_try_malloc0(sizeof(struct sr_usbtmc_dev_inst)))) {
423 sr_err("USBTMC device instance malloc failed.");
424 return NULL;
425 }
426
427 usbtmc->device = g_strdup(device);
428 usbtmc->fd = -1;
429
430 return usbtmc;
431}
432
df823ac4 433/** @private */
ae67644f
ML
434SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc)
435{
436 g_free(usbtmc->device);
437 g_free(usbtmc);
438}
439
576ff5b0
UH
440/**
441 * Get the list of devices/instances of the specified driver.
442 *
443 * @param driver The driver to use. Must not be NULL.
444 *
445 * @return The list of devices/instances of this driver, or NULL upon errors
446 * or if the list is empty.
447 *
53f05fa8 448 * @since 0.2.0
576ff5b0 449 */
f99e32af 450SR_API GSList *sr_dev_list(const struct sr_dev_driver *driver)
811deee4 451{
811deee4
BV
452 if (driver && driver->dev_list)
453 return driver->dev_list();
454 else
455 return NULL;
456}
457
576ff5b0 458/**
8102cee4 459 * Clear the list of device instances a driver knows about.
576ff5b0 460 *
8102cee4
BV
461 * @param driver The driver to use. This must be a pointer to one of
462 * the entries returned by sr_driver_list(). Must not be NULL.
576ff5b0 463 *
8102cee4
BV
464 * @retval SR_OK Success
465 * @retval SR_ERR_ARG Invalid driver
576ff5b0
UH
466 *
467 * @since 0.2.0
468 */
f99e32af 469SR_API int sr_dev_clear(const struct sr_dev_driver *driver)
811deee4 470{
8102cee4
BV
471 int ret;
472
473 if (!driver) {
474 sr_err("Invalid driver.");
475 return SR_ERR_ARG;
476 }
477
478 if (driver->dev_clear)
479 ret = driver->dev_clear();
811deee4 480 else
8102cee4
BV
481 ret = std_dev_clear(driver, NULL);
482
483 return ret;
811deee4
BV
484}
485
576ff5b0
UH
486/**
487 * Open the specified device.
488 *
489 * @param sdi Device instance to use. Must not be NULL.
490 *
491 * @return SR_OK upon success, a negative error code upon errors.
492 *
493 * @since 0.2.0
494 */
efdecf4c
BV
495SR_API int sr_dev_open(struct sr_dev_inst *sdi)
496{
497 int ret;
498
499 if (!sdi || !sdi->driver || !sdi->driver->dev_open)
500 return SR_ERR;
501
502 ret = sdi->driver->dev_open(sdi);
503
504 return ret;
505}
506
576ff5b0
UH
507/**
508 * Close the specified device.
509 *
510 * @param sdi Device instance to use. Must not be NULL.
511 *
512 * @return SR_OK upon success, a negative error code upon errors.
513 *
514 * @since 0.2.0
515 */
efdecf4c
BV
516SR_API int sr_dev_close(struct sr_dev_inst *sdi)
517{
518 int ret;
519
520 if (!sdi || !sdi->driver || !sdi->driver->dev_close)
521 return SR_ERR;
522
523 ret = sdi->driver->dev_close(sdi);
524
525 return ret;
526}
527
7b870c38 528/** @} */