]> sigrok.org Git - libsigrok.git/blame - src/device.c
baylibre-acme: Drop unneeded comment.
[libsigrok.git] / src / 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
2ad1deb8 26/** @cond PRIVATE */
3544f848 27#define LOG_PREFIX "device"
2ad1deb8 28/** @endcond */
a885ce3e 29
393fb9cb
UH
30/**
31 * @file
32 *
33 * Device handling in libsigrok.
34 */
35
7b870c38
UH
36/**
37 * @defgroup grp_devices Devices
38 *
39 * Device handling in libsigrok.
40 *
41 * @{
42 */
43
04cb9157 44/** @private
91aea754
UH
45 * Allocate and initialize new struct sr_channel
46 * @param[in] index @copydoc sr_channel::index
47 * @param[in] type @copydoc sr_channel::type
48 * @param[in] enabled @copydoc sr_channel::enabled
49 * @param[in] name @copydoc sr_channel::name
04cb9157 50 *
c368e6f3 51 * @return A new struct sr_channel*.
04cb9157 52 */
56d0d245 53SR_PRIV struct sr_channel *sr_channel_new(int index, int type,
48a486cd
BV
54 gboolean enabled, const char *name)
55{
ba7dd8bb 56 struct sr_channel *ch;
48a486cd 57
c368e6f3 58 ch = g_malloc0(sizeof(struct sr_channel));
ba7dd8bb
UH
59 ch->index = index;
60 ch->type = type;
61 ch->enabled = enabled;
48a486cd 62 if (name)
ba7dd8bb 63 ch->name = g_strdup(name);
48a486cd 64
ba7dd8bb 65 return ch;
48a486cd
BV
66}
67
94799bc4 68/**
ba7dd8bb 69 * Set the name of the specified channel in the specified device.
94799bc4 70 *
ba7dd8bb 71 * If the channel already has a different name assigned to it, it will be
94799bc4
UH
72 * removed, and the new name will be saved instead.
73 *
ba7dd8bb
UH
74 * @param sdi The device instance the channel is connected to.
75 * @param[in] channelnum The number of the channel whose name to set.
76 * Note that the channel numbers start at 0.
77 * @param[in] name The new name that the specified channel should get. A copy
37e8b4c4 78 * of the string is made.
0e3b1439 79 *
37e8b4c4 80 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
9fb5f2df 81 *
47117241 82 * @since 0.3.0
94799bc4 83 */
f3ca73ed 84SR_API int sr_dev_channel_name_set(const struct sr_dev_inst *sdi,
ba7dd8bb 85 int channelnum, const char *name)
a1bb33af 86{
37e8b4c4 87 GSList *l;
ba7dd8bb 88 struct sr_channel *ch;
37e8b4c4 89 int ret;
a1bb33af 90
37e8b4c4
BV
91 if (!sdi) {
92 sr_err("%s: sdi was NULL", __func__);
0e3b1439 93 return SR_ERR_ARG;
94799bc4
UH
94 }
95
37e8b4c4 96 ret = SR_ERR_ARG;
ba7dd8bb
UH
97 for (l = sdi->channels; l; l = l->next) {
98 ch = l->data;
99 if (ch->index == channelnum) {
100 g_free(ch->name);
101 ch->name = g_strdup(name);
37e8b4c4
BV
102 ret = SR_OK;
103 break;
104 }
94799bc4
UH
105 }
106
37e8b4c4 107 return ret;
a1bb33af
UH
108}
109
be5bf44d 110/**
ba7dd8bb 111 * Enable or disable a channel on the specified device.
be5bf44d 112 *
ba7dd8bb
UH
113 * @param sdi The device instance the channel is connected to.
114 * @param channelnum The channel number, starting from 0.
115 * @param state TRUE to enable the channel, FALSE to disable.
be5bf44d 116 *
2a854d71 117 * @return SR_OK on success or SR_ERR on failure. In case of invalid
ba7dd8bb 118 * arguments, SR_ERR_ARG is returned and the channel enabled state
2a854d71 119 * remains unchanged.
9fb5f2df 120 *
47117241 121 * @since 0.3.0
be5bf44d 122 */
f3ca73ed 123SR_API int sr_dev_channel_enable(const struct sr_dev_inst *sdi, int channelnum,
be5bf44d
BV
124 gboolean state)
125{
126 GSList *l;
ba7dd8bb 127 struct sr_channel *ch;
be5bf44d 128 int ret;
2a854d71 129 gboolean was_enabled;
be5bf44d
BV
130
131 if (!sdi)
132 return SR_ERR_ARG;
133
134 ret = SR_ERR_ARG;
ba7dd8bb
UH
135 for (l = sdi->channels; l; l = l->next) {
136 ch = l->data;
137 if (ch->index == channelnum) {
138 was_enabled = ch->enabled;
139 ch->enabled = state;
be5bf44d 140 ret = SR_OK;
2a854d71 141 if (!state != !was_enabled && sdi->driver
f3ca73ed
UH
142 && sdi->driver->config_channel_set) {
143 ret = sdi->driver->config_channel_set(
3f239f08 144 sdi, ch, SR_CHANNEL_SET_ENABLED);
2a854d71
DE
145 /* Roll back change if it wasn't applicable. */
146 if (ret == SR_ERR_ARG)
ba7dd8bb 147 ch->enabled = was_enabled;
2a854d71 148 }
be5bf44d
BV
149 break;
150 }
151 }
152
153 return ret;
154}
155
94799bc4 156/**
9c5332d2
UH
157 * Determine whether the specified device instance has the specified
158 * capability.
94799bc4 159 *
9c5332d2 160 * @param sdi Pointer to the device instance to be checked. Must not be NULL.
8ec95d22
UH
161 * If the device's 'driver' field is NULL (virtual device), this
162 * function will always return FALSE (virtual devices don't have
163 * a hardware capabilities list).
04cb9157 164 * @param[in] key The option that should be checked for is supported by the
4d15e5c9 165 * specified device.
94799bc4 166 *
04cb9157
MH
167 * @retval TRUE Device has the specified option
168 * @retval FALSE Device does not have the specified option, invalid input
169 * parameters or other error conditions.
9fb5f2df 170 *
53f05fa8 171 * @since 0.2.0
94799bc4 172 */
4d15e5c9 173SR_API gboolean sr_dev_has_option(const struct sr_dev_inst *sdi, int key)
7d658874 174{
003595ac 175 GVariant *gvar;
4d15e5c9 176 const int *devopts;
003595ac
BV
177 gsize num_opts, i;
178 int ret;
7d658874 179
003595ac 180 if (!sdi || !sdi->driver || !sdi->driver->config_list)
8ec95d22 181 return FALSE;
94799bc4 182
8f996b89 183 if (sdi->driver->config_list(SR_CONF_DEVICE_OPTIONS,
92b68bb5 184 &gvar, sdi, NULL) != SR_OK)
8ec95d22 185 return FALSE;
94799bc4 186
003595ac
BV
187 ret = FALSE;
188 devopts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(int32_t));
189 for (i = 0; i < num_opts; i++) {
d099d880 190 if ((devopts[i] & SR_CONF_MASK) == key) {
003595ac
BV
191 ret = TRUE;
192 break;
193 }
94799bc4 194 }
003595ac 195 g_variant_unref(gvar);
218557b8 196
003595ac 197 return ret;
a1bb33af 198}
fd9836bf 199
e705ce3b
UH
200/**
201 * Allocate and init a new user-generated device instance.
aac29cc1
UH
202 *
203 * @param vendor Device vendor
204 * @param model Device model
205 * @param version Device version
206 *
207 * @retval struct sr_dev_inst *. Dynamically allocated, free using
208 * sr_dev_inst_free().
e705ce3b
UH
209 */
210SR_API struct sr_dev_inst *sr_dev_inst_user_new(const char *vendor,
211 const char *model, const char *version)
212{
213 struct sr_dev_inst *sdi;
214
aac29cc1
UH
215 sdi = g_malloc0(sizeof(struct sr_dev_inst));
216
0af636be
UH
217 sdi->vendor = g_strdup(vendor);
218 sdi->model = g_strdup(model);
219 sdi->version = g_strdup(version);
e705ce3b
UH
220 sdi->inst_type = SR_INST_USER;
221
222 return sdi;
223}
224
225/**
226 * Add a new channel to the specified device instance.
227 */
228SR_API int sr_dev_inst_channel_add(struct sr_dev_inst *sdi, int index, int type, const char *name)
229{
230 struct sr_channel *ch;
231
232 if (!sdi || sdi->inst_type != SR_INST_USER || index < 0)
233 return SR_ERR_ARG;
234
235 ch = sr_channel_new(index, type, TRUE, name);
e705ce3b
UH
236 sdi->channels = g_slist_append(sdi->channels, ch);
237
238 return SR_OK;
239}
240
04cb9157
MH
241/** @private
242 * Free device instance struct created by sr_dev_inst().
7aebe22d 243 * @param sdi device instance to free.
04cb9157 244 */
48a486cd
BV
245SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
246{
ba7dd8bb 247 struct sr_channel *ch;
b1b1944e 248 struct sr_channel_group *cg;
d3cff734
BV
249 GSList *l;
250
ba7dd8bb
UH
251 for (l = sdi->channels; l; l = l->next) {
252 ch = l->data;
253 g_free(ch->name);
379d2609 254 g_free(ch->priv);
ba7dd8bb 255 g_free(ch);
d3cff734 256 }
ba7dd8bb 257 g_slist_free(sdi->channels);
d3cff734 258
b1b1944e
BV
259 for (l = sdi->channel_groups; l; l = l->next) {
260 cg = l->data;
7aebe22d
BV
261 g_free(cg->name);
262 g_slist_free(cg->channels);
b1b1944e 263 g_free(cg->priv);
7aebe22d 264 g_free(cg);
b1b1944e
BV
265 }
266 g_slist_free(sdi->channel_groups);
90c7f4e9 267
48a486cd
BV
268 g_free(sdi->vendor);
269 g_free(sdi->model);
270 g_free(sdi->version);
2fe6210a
SA
271 g_free(sdi->serial_num);
272 g_free(sdi->connection_id);
48a486cd
BV
273 g_free(sdi);
274}
275
276#ifdef HAVE_LIBUSB_1_0
277
04cb9157
MH
278/** @private
279 * Allocate and init struct for USB device instance.
2eb84c98
UH
280 * @param[in] bus @copydoc sr_usb_dev_inst::bus
281 * @param[in] address @copydoc sr_usb_dev_inst::address
282 * @param[in] hdl @copydoc sr_usb_dev_inst::devhdl
04cb9157 283 *
2eb84c98 284 * @retval other struct sr_usb_dev_inst * for USB device instance.
04cb9157 285 */
48a486cd
BV
286SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
287 uint8_t address, struct libusb_device_handle *hdl)
288{
289 struct sr_usb_dev_inst *udi;
290
91219afc 291 udi = g_malloc0(sizeof(struct sr_usb_dev_inst));
48a486cd
BV
292 udi->bus = bus;
293 udi->address = address;
294 udi->devhdl = hdl;
295
296 return udi;
297}
298
04cb9157
MH
299/** @private
300 * Free struct * allocated by sr_usb_dev_inst().
2eb84c98 301 * @param usb struct* to free. Must not be NULL.
04cb9157 302 */
48a486cd
BV
303SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
304{
a006798b 305 g_free(usb);
48a486cd
BV
306}
307
308#endif
309
c4f2dfd0
UH
310#ifdef HAVE_LIBSERIALPORT
311
9fb5f2df
UH
312/**
313 * @private
299bdb24
BV
314 *
315 * Both parameters are copied to newly allocated strings, and freed
316 * automatically by sr_serial_dev_inst_free().
9fb5f2df 317 *
04cb9157 318 * @param[in] port OS-specific serial port specification. Examples:
9fb5f2df 319 * "/dev/ttyUSB0", "/dev/ttyACM1", "/dev/tty.Modem-0", "COM1".
91219afc 320 * Must not be NULL.
04cb9157
MH
321 * @param[in] serialcomm A serial communication parameters string, in the form
322 * of \<speed\>/\<data bits\>\<parity\>\<stopbits\>, for example
323 * "9600/8n1" or "600/7o2". This is an optional parameter;
91219afc 324 * it may be filled in later. Can be NULL.
9fb5f2df
UH
325 *
326 * @return A pointer to a newly initialized struct sr_serial_dev_inst,
327 * or NULL on error.
299bdb24 328 */
48a486cd 329SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
299bdb24 330 const char *serialcomm)
48a486cd
BV
331{
332 struct sr_serial_dev_inst *serial;
333
91219afc 334 serial = g_malloc0(sizeof(struct sr_serial_dev_inst));
48a486cd 335 serial->port = g_strdup(port);
299bdb24
BV
336 if (serialcomm)
337 serial->serialcomm = g_strdup(serialcomm);
48a486cd
BV
338
339 return serial;
340}
341
04cb9157
MH
342/** @private
343 * Free struct sr_serial_dev_inst * allocated by sr_serial_dev_inst().
2eb84c98 344 * @param serial struct sr_serial_dev_inst * to free. Must not be NULL.
04cb9157 345 */
48a486cd
BV
346SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
347{
348 g_free(serial->port);
299bdb24 349 g_free(serial->serialcomm);
acac8fc3 350 g_free(serial);
48a486cd 351}
c4f2dfd0
UH
352#endif
353
df823ac4 354/** @private */
ae67644f
ML
355SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device)
356{
357 struct sr_usbtmc_dev_inst *usbtmc;
358
91219afc 359 usbtmc = g_malloc0(sizeof(struct sr_usbtmc_dev_inst));
ae67644f
ML
360 usbtmc->device = g_strdup(device);
361 usbtmc->fd = -1;
362
363 return usbtmc;
364}
365
df823ac4 366/** @private */
ae67644f
ML
367SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc)
368{
369 g_free(usbtmc->device);
370 g_free(usbtmc);
371}
372
576ff5b0
UH
373/**
374 * Get the list of devices/instances of the specified driver.
375 *
376 * @param driver The driver to use. Must not be NULL.
377 *
378 * @return The list of devices/instances of this driver, or NULL upon errors
379 * or if the list is empty.
380 *
53f05fa8 381 * @since 0.2.0
576ff5b0 382 */
f99e32af 383SR_API GSList *sr_dev_list(const struct sr_dev_driver *driver)
811deee4 384{
811deee4
BV
385 if (driver && driver->dev_list)
386 return driver->dev_list();
387 else
388 return NULL;
389}
390
576ff5b0 391/**
8102cee4 392 * Clear the list of device instances a driver knows about.
576ff5b0 393 *
8102cee4
BV
394 * @param driver The driver to use. This must be a pointer to one of
395 * the entries returned by sr_driver_list(). Must not be NULL.
576ff5b0 396 *
8102cee4
BV
397 * @retval SR_OK Success
398 * @retval SR_ERR_ARG Invalid driver
576ff5b0
UH
399 *
400 * @since 0.2.0
401 */
f99e32af 402SR_API int sr_dev_clear(const struct sr_dev_driver *driver)
811deee4 403{
8102cee4
BV
404 int ret;
405
406 if (!driver) {
407 sr_err("Invalid driver.");
408 return SR_ERR_ARG;
409 }
410
411 if (driver->dev_clear)
412 ret = driver->dev_clear();
811deee4 413 else
8102cee4
BV
414 ret = std_dev_clear(driver, NULL);
415
416 return ret;
811deee4
BV
417}
418
576ff5b0
UH
419/**
420 * Open the specified device.
421 *
422 * @param sdi Device instance to use. Must not be NULL.
423 *
424 * @return SR_OK upon success, a negative error code upon errors.
425 *
426 * @since 0.2.0
427 */
efdecf4c
BV
428SR_API int sr_dev_open(struct sr_dev_inst *sdi)
429{
430 int ret;
431
432 if (!sdi || !sdi->driver || !sdi->driver->dev_open)
433 return SR_ERR;
434
435 ret = sdi->driver->dev_open(sdi);
436
437 return ret;
438}
439
576ff5b0
UH
440/**
441 * Close the specified device.
442 *
443 * @param sdi Device instance to use. Must not be NULL.
444 *
445 * @return SR_OK upon success, a negative error code upon errors.
446 *
447 * @since 0.2.0
448 */
efdecf4c
BV
449SR_API int sr_dev_close(struct sr_dev_inst *sdi)
450{
451 int ret;
452
453 if (!sdi || !sdi->driver || !sdi->driver->dev_close)
454 return SR_ERR;
455
456 ret = sdi->driver->dev_close(sdi);
457
458 return ret;
459}
460
0157fdce
SA
461/**
462 * Queries a device instances' driver.
463 *
464 * @param sdi Device instance to use. Must not be NULL.
465 *
466 * @return The driver instance or NULL on error.
467 */
2f5f9705 468SR_API struct sr_dev_driver *sr_dev_inst_driver_get(const struct sr_dev_inst *sdi)
0157fdce
SA
469{
470 if (!sdi || !sdi->driver)
471 return NULL;
472
473 return sdi->driver;
474}
475
476/**
477 * Queries a device instances' vendor.
478 *
479 * @param sdi Device instance to use. Must not be NULL.
480 *
481 * @return The vendor string or NULL.
482 */
2f5f9705 483SR_API const char *sr_dev_inst_vendor_get(const struct sr_dev_inst *sdi)
0157fdce
SA
484{
485 if (!sdi)
486 return NULL;
487
488 return sdi->vendor;
489}
490
491/**
492 * Queries a device instances' model.
493 *
494 * @param sdi Device instance to use. Must not be NULL.
495 *
496 * @return The model string or NULL.
497 */
2f5f9705 498SR_API const char *sr_dev_inst_model_get(const struct sr_dev_inst *sdi)
0157fdce
SA
499{
500 if (!sdi)
501 return NULL;
502
503 return sdi->model;
504}
505
506/**
507 * Queries a device instances' version.
508 *
509 * @param sdi Device instance to use. Must not be NULL.
510 *
511 * @return The version string or NULL.
512 */
2f5f9705 513SR_API const char *sr_dev_inst_version_get(const struct sr_dev_inst *sdi)
0157fdce
SA
514{
515 if (!sdi)
516 return NULL;
517
518 return sdi->version;
519}
520
521/**
522 * Queries a device instances' serial number.
523 *
524 * @param sdi Device instance to use. Must not be NULL.
525 *
526 * @return The serial number string or NULL.
527 */
2f5f9705 528SR_API const char *sr_dev_inst_sernum_get(const struct sr_dev_inst *sdi)
0157fdce
SA
529{
530 if (!sdi)
531 return NULL;
532
533 return sdi->serial_num;
534}
535
536/**
537 * Queries a device instances' connection identifier.
538 *
539 * @param sdi Device instance to use. Must not be NULL.
540 *
541 * @return A copy of the connection id string or NULL. The caller is responsible
542 * for g_free()ing the string when it is no longer needed.
543 */
2f5f9705 544SR_API const char *sr_dev_inst_connid_get(const struct sr_dev_inst *sdi)
0157fdce
SA
545{
546 struct drv_context *drvc;
9c6a2913
SA
547 int r, cnt, i, a, b;
548 char connection_id[64];
549
550#ifdef HAVE_LIBUSB_1_0
0157fdce
SA
551 struct sr_usb_dev_inst *usb;
552 struct libusb_device **devlist;
553 struct libusb_device_descriptor des;
9c6a2913 554#endif
0157fdce
SA
555
556 if (!sdi)
557 return NULL;
558
9c6a2913 559#ifdef HAVE_LIBSERIALPORT
e8cbb223
SA
560 struct sr_serial_dev_inst *serial;
561
562 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_SERIAL)) {
563 /* connection_id isn't populated, let's do that here. */
564
565 serial = sdi->conn;
2f5f9705 566 ((struct sr_dev_inst *)sdi)->connection_id = g_strdup(serial->port);
e8cbb223 567 }
9c6a2913 568#endif
e8cbb223
SA
569
570
9c6a2913 571#ifdef HAVE_LIBUSB_1_0
0157fdce
SA
572 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_USB)) {
573 /* connection_id isn't populated, let's do that here. */
574
575 drvc = sdi->driver->priv;
576 usb = sdi->conn;
577
578 if ((cnt = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist)) < 0) {
579 sr_err("Failed to retrieve device list: %s.",
580 libusb_error_name(cnt));
581 return NULL;
582 }
583
584 for (i = 0; i < cnt; i++) {
585 if ((r = libusb_get_device_descriptor(devlist[i], &des)) < 0) {
586 sr_err("Failed to get device descriptor: %s.",
587 libusb_error_name(r));
588 continue;
589 }
590
591 /* Find the USB device by the logical address we know. */
592 b = libusb_get_bus_number(devlist[i]);
593 a = libusb_get_device_address(devlist[i]);
594 if (b != usb->bus || a != usb->address)
595 continue;
596
597 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
2f5f9705 598 ((struct sr_dev_inst *)sdi)->connection_id = g_strdup(connection_id);
0157fdce
SA
599 break;
600 }
601
602 libusb_free_device_list(devlist, 1);
603 }
9c6a2913 604#endif
0157fdce
SA
605
606 return sdi->connection_id;
607}
608
e437da2b
UH
609/**
610 * Queries a device instances' channel list.
611 *
612 * @param sdi Device instance to use. Must not be NULL.
613 *
614 * @return The GSList of channels or NULL.
615 */
2f5f9705 616SR_API GSList *sr_dev_inst_channels_get(const struct sr_dev_inst *sdi)
e437da2b
UH
617{
618 if (!sdi)
619 return NULL;
620
621 return sdi->channels;
622}
623
624/**
625 * Queries a device instances' channel groups list.
626 *
627 * @param sdi Device instance to use. Must not be NULL.
628 *
629 * @return The GSList of channel groups or NULL.
630 */
2f5f9705 631SR_API GSList *sr_dev_inst_channel_groups_get(const struct sr_dev_inst *sdi)
e437da2b
UH
632{
633 if (!sdi)
634 return NULL;
635
636 return sdi->channel_groups;
637}
638
7b870c38 639/** @} */