]> sigrok.org Git - libsigrok.git/blame - device.c
device: Make some parameters const.
[libsigrok.git] / device.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 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 <stdio.h>
21#include <glib.h>
1b452b85 22#include <sigrok.h>
b08024a8 23#include <sigrok-internal.h>
a1bb33af 24
a00ba012 25extern struct sr_global *global;
a1bb33af
UH
26
27GSList *devices = NULL;
28
94799bc4
UH
29/**
30 * Scan the system for attached logic analyzers / devices.
31 *
32 * This will try to autodetect all supported logic analyzer devices:
33 *
34 * - Those attached via USB (can be reliably detected via USB VID/PID).
35 *
36 * - Those using a (real or virtual) serial port (detected by sending
37 * device-specific commands to all OS-specific serial port devices such
38 * as /dev/ttyS*, /dev/ttyUSB*, /dev/ttyACM*, and others).
39 * The autodetection for this kind of devices can potentially be unreliable.
40 *
41 * Also, sending various bytes/commands to (all!) devices which happen to
42 * be attached to the system via a (real or virtual) serial port can be
43 * problematic. There is no way for libsigrok to know how unknown devices
44 * react to the bytes libsigrok sends. Potentially they could lead to the
45 * device getting into invalid/error states, losing/overwriting data, or...
46 *
47 * In addition to the detection, the devices that are found are also
48 * initialized automatically. On some devices, this involves a firmware upload,
49 * or other such measures.
50 *
51 * The order in which the system is scanned for devices is not specified. The
52 * caller should not assume or rely on any specific order.
53 *
54 * After the system has been scanned for devices, the list of detected (and
55 * supported) devices can be acquired via sr_device_list().
56 *
94799bc4
UH
57 * TODO: Error checks?
58 * TODO: Option to only scan for specific devices or device classes.
0e3b1439
UH
59 *
60 * @return SR_OK upon success, SR_ERR upon errors.
94799bc4 61 */
0e3b1439 62int sr_device_scan(void)
a1bb33af
UH
63{
64 GSList *plugins, *l;
5c2d46d1 65 struct sr_device_plugin *plugin;
a1bb33af 66
94799bc4
UH
67 if (!(plugins = sr_list_hwplugins())) {
68 sr_err("dev: %s: no supported devices/hwplugins", __func__);
0e3b1439 69 return SR_ERR; /* TODO: More specific error? */
94799bc4 70 }
a1bb33af 71
1b452b85
UH
72 /*
73 * Initialize all plugins first. Since the init() call may involve
a1bb33af
UH
74 * a firmware upload and associated delay, we may as well get all
75 * of these out of the way first.
76 */
1b452b85 77 for (l = plugins; l; l = l->next) {
a1bb33af 78 plugin = l->data;
94799bc4 79 /* TODO: Handle 'plugin' being NULL. */
8722c31e 80 sr_init_hwplugins(plugin);
e54bcdc5 81 }
0e3b1439
UH
82
83 return SR_OK;
a1bb33af
UH
84}
85
94799bc4
UH
86/**
87 * Return the list of logic analyzer devices libsigrok has detected.
88 *
89 * If the libsigrok-internal device list is empty, a scan for attached
90 * devices -- via a call to sr_device_scan() -- is performed first.
91 *
92 * TODO: Error handling?
93 *
94 * @return The list (GSList) of detected devices, or NULL if none were found.
95 */
2bf4aca6 96GSList *sr_device_list(void)
a1bb33af 97{
e54bcdc5 98 if (!devices)
2bf4aca6 99 sr_device_scan();
e54bcdc5 100
a1bb33af
UH
101 return devices;
102}
103
94799bc4
UH
104/**
105 * Create a new device.
106 *
94799bc4
UH
107 * TODO: num_probes should be uint16_t.
108 * TODO: Should return int, so that we can return SR_OK, SR_ERR_* etc.
109 *
110 * It is the caller's responsibility to g_free() the allocated memory when
111 * no longer needed. TODO: Using which API function?
112 *
113 * @param plugin TODO.
114 * If 'plugin' is NULL, the created device is a "virtual" one.
115 * @param plugin_index TODO
116 * @param num_probes The number of probes (>= 1) this device has.
117 * TODO: 0 allowed?
118 *
119 * @return Pointer to the newly allocated device, or NULL upon errors.
120 */
08d4cc1d
UH
121struct sr_device *sr_device_new(const struct sr_device_plugin *plugin,
122 int plugin_index, int num_probes)
a1bb33af 123{
5c2d46d1 124 struct sr_device *device;
873080cc 125 int i;
a1bb33af 126
94799bc4
UH
127 if (!plugin) {
128 sr_err("dev: %s: plugin was NULL", __func__);
129 return NULL; /* TODO: SR_ERR_ARG */
130 }
131
132 /* TODO: Check if plugin_index valid? */
133
134 /* TODO: Check if num_probes valid? */
135
b53738ba
UH
136 if (!(device = g_try_malloc0(sizeof(struct sr_device)))) {
137 sr_err("dev: %s: device malloc failed", __func__);
138 return NULL;
139 }
140
08d4cc1d 141 device->plugin = (struct sr_device_plugin *)plugin;
a1bb33af
UH
142 device->plugin_index = plugin_index;
143 devices = g_slist_append(devices, device);
144
7d658874 145 for (i = 0; i < num_probes; i++)
94799bc4 146 sr_device_probe_add(device, NULL); /* TODO: Check return value. */
a1bb33af
UH
147
148 return device;
149}
150
94799bc4
UH
151/**
152 * Clear all probes of the specified device.
153 *
154 * This removes/clears the 'name' and 'trigger' fields of all probes of
155 * the device.
156 *
157 * The order in which the probes are cleared is not specified. The caller
158 * should not assume or rely on a specific order.
159 *
94799bc4
UH
160 * TODO: Rename to sr_device_clear_probes() or sr_device_probe_clear_all().
161 *
162 * @param device The device whose probes to clear. Must not be NULL.
163 * Note: device->probes is allowed to be NULL (in that case,
164 * there are no probes, thus none have to be cleared).
0e3b1439
UH
165 *
166 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
167 * If something other than SR_OK is returned, 'device' is unchanged.
94799bc4 168 */
0e3b1439 169int sr_device_clear(struct sr_device *device)
a1bb33af 170{
1b452b85 171 unsigned int pnum;
a1bb33af 172
94799bc4
UH
173 if (!device) {
174 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 175 return SR_ERR_ARG;
94799bc4
UH
176 }
177
178 /* Note: device->probes can be NULL, this is handled correctly. */
a1bb33af 179
1b452b85 180 for (pnum = 1; pnum <= g_slist_length(device->probes); pnum++)
2bf4aca6 181 sr_device_probe_clear(device, pnum);
94799bc4 182
0e3b1439 183 return SR_OK;
a1bb33af
UH
184}
185
94799bc4
UH
186/**
187 * Clear the specified probe in the specified device.
188 *
189 * The probe itself still exists afterwards, but its 'name' and 'trigger'
190 * fields are g_free()'d and set to NULL.
191 *
94799bc4
UH
192 * @param device The device in which the specified (to be cleared) probe
193 * resides. Must not be NULL.
194 * @param probenum The number of the probe to clear.
195 * Note that the probe numbers start at 1 (not 0!).
0e3b1439
UH
196 *
197 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
198 * upon other errors.
199 * If something other than SR_OK is returned, 'device' is unchanged.
94799bc4 200 */
0e3b1439 201int sr_device_probe_clear(struct sr_device *device, int probenum)
a1bb33af 202{
1afe8989 203 struct sr_probe *p;
a1bb33af 204
94799bc4
UH
205 if (!device) {
206 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 207 return SR_ERR_ARG;
94799bc4
UH
208 }
209
210 /* TODO: Sanity check on 'probenum'. */
211
212 if (!(p = sr_device_probe_find(device, probenum))) {
213 sr_err("dev: %s: probe %d not found", __func__, probenum);
0e3b1439 214 return SR_ERR; /* TODO: More specific error? */
94799bc4 215 }
a1bb33af 216
94799bc4 217 /* If the probe has a name, remove it. */
1b452b85 218 if (p->name) {
a1bb33af
UH
219 g_free(p->name);
220 p->name = NULL;
221 }
222
94799bc4 223 /* If the probe has a trigger, remove it. */
1b452b85 224 if (p->trigger) {
a1bb33af
UH
225 g_free(p->trigger);
226 p->trigger = NULL;
227 }
94799bc4 228
0e3b1439 229 return SR_OK;
a1bb33af
UH
230}
231
94799bc4
UH
232/**
233 * Add a probe with the specified name to the specified device.
234 *
235 * The added probe is automatically enabled (the 'enabled' field is TRUE).
236 *
237 * The 'trigger' field of the added probe is set to NULL. A trigger can be
238 * added via sr_device_trigger_set().
239 *
94799bc4
UH
240 * TODO: Are duplicate names allowed?
241 * TODO: Do we enforce a maximum probe number for a device?
242 * TODO: Error if the max. probe number for the specific LA is reached, e.g.
243 * if the caller tries to add more probes than the device actually has.
244 *
245 * @param device The device to which to add a probe with the specified name.
246 * Must not be NULL.
247 * @param name The name of the probe to add to this device. Must not be NULL.
248 * TODO: Maximum length, allowed characters, etc.
249 *
250 * @return SR_OK upon success, SR_ERR_MALLOC upon memory allocation errors,
251 * or SR_ERR_ARG upon invalid arguments.
252 * If something other than SR_OK is returned, 'device' is unchanged.
253 */
0e3b1439 254int sr_device_probe_add(struct sr_device *device, const char *name)
a1bb33af 255{
1afe8989 256 struct sr_probe *p;
94799bc4 257 char probename[16]; /* FIXME: Don't hardcode 16? #define? */
7d658874 258 int probenum;
a1bb33af 259
94799bc4
UH
260 if (!device) {
261 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 262 return SR_ERR_ARG;
94799bc4
UH
263 }
264
265 if (!name) {
266 sr_err("dev: %s: name was NULL", __func__);
0e3b1439 267 return SR_ERR_ARG;
94799bc4
UH
268 }
269
270 /* TODO: Further checks to ensure name is valid. */
271
7d658874 272 probenum = g_slist_length(device->probes) + 1;
b53738ba
UH
273
274 if (!(p = g_try_malloc0(sizeof(struct sr_probe)))) {
275 sr_err("dev: %s: p malloc failed", __func__);
0e3b1439 276 return SR_ERR_MALLOC;
b53738ba
UH
277 }
278
7d658874 279 p->index = probenum;
a1bb33af 280 p->enabled = TRUE;
7d658874
BV
281 if (name) {
282 p->name = g_strdup(name);
283 } else {
284 snprintf(probename, 16, "%d", probenum);
285 p->name = g_strdup(probename);
286 }
a1bb33af
UH
287 p->trigger = NULL;
288 device->probes = g_slist_append(device->probes, p);
94799bc4
UH
289
290 return SR_OK;
a1bb33af
UH
291}
292
94799bc4
UH
293/**
294 * Find the probe with the specified number in the specified device.
295 *
296 * TODO
297 *
298 * @param device TODO. Must not be NULL.
299 * @param probenum The number of the probe whose 'struct sr_probe' we want.
300 * Note that the probe numbers start at 1 (not 0!).
301 *
302 * TODO: Should return int.
94799bc4
UH
303 * TODO: probenum should be unsigned.
304 *
305 * @return A pointer to the requested probe's 'struct sr_probe', or NULL
306 * if the probe could not be found.
307 */
08d4cc1d
UH
308struct sr_probe *sr_device_probe_find(const struct sr_device *device,
309 int probenum)
a1bb33af
UH
310{
311 GSList *l;
1afe8989 312 struct sr_probe *p, *found_probe;
a1bb33af 313
94799bc4
UH
314 if (!device) {
315 sr_err("dev: %s: device was NULL", __func__);
316 return NULL; /* TODO: SR_ERR_ARG */
317 }
318
319 /* TODO: Sanity check on probenum. */
320
a1bb33af 321 found_probe = NULL;
1b452b85 322 for (l = device->probes; l; l = l->next) {
a1bb33af 323 p = l->data;
94799bc4 324 /* TODO: Check for p != NULL. */
1b452b85 325 if (p->index == probenum) {
a1bb33af
UH
326 found_probe = p;
327 break;
328 }
329 }
330
331 return found_probe;
332}
333
94799bc4
UH
334/**
335 * Set the name of the specified probe in the specified device.
336 *
337 * If the probe already has a different name assigned to it, it will be
338 * removed, and the new name will be saved instead.
339 *
94799bc4
UH
340 * TODO: Rename to sr_device_set_probe_name().
341 *
342 * @param device TODO
343 * @param probenum The number of the probe whose name to set.
344 * Note that the probe numbers start at 1 (not 0!).
345 * @param name The new name that the specified probe should get.
0e3b1439
UH
346 *
347 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
348 * upon other errors.
349 * If something other than SR_OK is returned, 'device' is unchanged.
94799bc4 350 */
0e3b1439
UH
351int sr_device_probe_name(struct sr_device *device, int probenum,
352 const char *name)
a1bb33af 353{
1afe8989 354 struct sr_probe *p;
a1bb33af 355
94799bc4
UH
356 if (!device) {
357 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 358 return SR_ERR_ARG;
94799bc4
UH
359 }
360
03dbc020 361 p = sr_device_probe_find(device, probenum);
94799bc4
UH
362 if (!p) {
363 sr_err("dev: %s: probe %d not found", __func__, probenum);
0e3b1439 364 return SR_ERR; /* TODO: More specific error? */
94799bc4
UH
365 }
366
367 /* TODO: Sanity check on 'name'. */
a1bb33af 368
94799bc4 369 /* If the probe already has a name, kill it first. */
1b452b85 370 if (p->name)
a1bb33af 371 g_free(p->name);
94799bc4 372
a1bb33af 373 p->name = g_strdup(name);
0e3b1439
UH
374
375 return SR_OK;
a1bb33af
UH
376}
377
94799bc4
UH
378/**
379 * Remove all triggers set up for the specified device.
380 *
381 * TODO: Better description.
382 *
94799bc4 383 * @param device TODO
0e3b1439
UH
384 *
385 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
386 * If something other than SR_OK is returned, 'device' is unchanged.
94799bc4 387 */
0e3b1439 388int sr_device_trigger_clear(struct sr_device *device)
a1bb33af 389{
1afe8989 390 struct sr_probe *p;
0e3b1439 391 unsigned int pnum; /* TODO: uint16_t? */
a1bb33af 392
94799bc4
UH
393 if (!device) {
394 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 395 return SR_ERR_ARG;
94799bc4
UH
396 }
397
398 if (!device->probes) {
399 sr_err("dev: %s: device->probes was NULL", __func__);
0e3b1439 400 return SR_ERR_ARG;
94799bc4 401 }
a1bb33af 402
1b452b85 403 for (pnum = 1; pnum <= g_slist_length(device->probes); pnum++) {
03dbc020 404 p = sr_device_probe_find(device, pnum);
94799bc4 405 /* TODO: Silently ignore probes which cannot be found? */
1b452b85
UH
406 if (p && p->trigger) {
407 g_free(p->trigger);
408 p->trigger = NULL;
409 }
410 }
0e3b1439
UH
411
412 return SR_OK;
1b452b85 413}
a1bb33af 414
94799bc4
UH
415/**
416 * Add a trigger to the specified device.
417 *
418 * TODO: Better description.
419 * TODO: Describe valid format of the 'trigger' string.
420 *
94799bc4
UH
421 * @param device TODO. Must not be NULL.
422 * @param probenum The number of the probe. TODO.
423 * Note that the probe numbers start at 1 (not 0!).
424 * @param trigger TODO.
425 * TODO: Is NULL allowed?
0e3b1439
UH
426 *
427 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
428 * upon other errors.
429 * If something other than SR_OK is returned, 'device' is unchanged.
94799bc4 430 */
0e3b1439
UH
431int sr_device_trigger_set(struct sr_device *device, int probenum,
432 const char *trigger)
a1bb33af 433{
1afe8989 434 struct sr_probe *p;
a1bb33af 435
94799bc4
UH
436 if (!device) {
437 sr_err("dev: %s: device was NULL", __func__);
0e3b1439 438 return SR_ERR_ARG;
94799bc4
UH
439 }
440
441 /* TODO: Sanity check on 'probenum'. */
442
443 /* TODO: Sanity check on 'trigger'. */
444
03dbc020 445 p = sr_device_probe_find(device, probenum);
94799bc4
UH
446 if (!p) {
447 sr_err("dev: %s: probe %d not found", __func__, probenum);
0e3b1439 448 return SR_ERR; /* TODO: More specific error? */
94799bc4 449 }
a1bb33af 450
94799bc4 451 /* If the probe already has a trigger, kill it first. */
1b452b85 452 if (p->trigger)
a1bb33af
UH
453 g_free(p->trigger);
454
455 p->trigger = g_strdup(trigger);
0e3b1439
UH
456
457 return SR_OK;
7d658874
BV
458}
459
94799bc4
UH
460/**
461 * Determine whether the specified device has the specified capability.
462 *
463 * TODO: Should return int?
94799bc4
UH
464 *
465 * @param device Pointer to the device to be checked. Must not be NULL.
466 * The device's 'plugin' field must not be NULL either.
467 * @param hwcap The capability that should be checked (whether it's supported
468 * by the specified device).
469 *
470 * @return TRUE, if the device has the specified capability, FALSE otherwise.
471 * FALSE is also returned upon invalid input parameters or other
472 * error conditions.
473 */
08d4cc1d 474gboolean sr_device_has_hwcap(const struct sr_device *device, int hwcap)
7d658874
BV
475{
476 int *capabilities, i;
477
94799bc4
UH
478 if (!device) {
479 sr_err("dev: %s: device was NULL", __func__);
480 return FALSE; /* TODO: SR_ERR_ARG. */
481 }
482
483 if (!device->plugin) {
484 sr_err("dev: %s: device->plugin was NULL", __func__);
485 return FALSE; /* TODO: SR_ERR_ARG. */
486 }
487
488 /* TODO: Sanity check on 'hwcap'. */
489
490 if (!(capabilities = device->plugin->get_capabilities())) {
491 sr_err("dev: %s: device has no capabilities", __func__);
492 return FALSE; /* TODO: SR_ERR*. */
493 }
494
495 for (i = 0; capabilities[i]; i++) {
496 if (capabilities[i] != hwcap)
497 continue;
498 sr_spew("dev: %s: found hwcap %d", __func__, hwcap);
499 return TRUE;
500 }
218557b8 501
94799bc4 502 sr_spew("dev: %s: hwcap %d not found", __func__, hwcap);
7d658874
BV
503
504 return FALSE;
a1bb33af 505}