]> sigrok.org Git - libsigrok.git/blame - device.c
sr: Fix/document probe names.
[libsigrok.git] / device.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 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>
b7f09cf8
UH
22#include "sigrok.h"
23#include "sigrok-internal.h"
a1bb33af 24
bb7ef793 25static GSList *devs = NULL;
a1bb33af 26
94799bc4
UH
27/**
28 * Scan the system for attached logic analyzers / devices.
29 *
30 * This will try to autodetect all supported logic analyzer devices:
31 *
32 * - Those attached via USB (can be reliably detected via USB VID/PID).
33 *
34 * - Those using a (real or virtual) serial port (detected by sending
35 * device-specific commands to all OS-specific serial port devices such
36 * as /dev/ttyS*, /dev/ttyUSB*, /dev/ttyACM*, and others).
37 * The autodetection for this kind of devices can potentially be unreliable.
38 *
39 * Also, sending various bytes/commands to (all!) devices which happen to
40 * be attached to the system via a (real or virtual) serial port can be
41 * problematic. There is no way for libsigrok to know how unknown devices
42 * react to the bytes libsigrok sends. Potentially they could lead to the
43 * device getting into invalid/error states, losing/overwriting data, or...
44 *
45 * In addition to the detection, the devices that are found are also
46 * initialized automatically. On some devices, this involves a firmware upload,
47 * or other such measures.
48 *
49 * The order in which the system is scanned for devices is not specified. The
50 * caller should not assume or rely on any specific order.
51 *
52 * After the system has been scanned for devices, the list of detected (and
03168500 53 * supported) devices can be acquired via sr_dev_list().
94799bc4 54 *
94799bc4
UH
55 * TODO: Error checks?
56 * TODO: Option to only scan for specific devices or device classes.
0e3b1439
UH
57 *
58 * @return SR_OK upon success, SR_ERR upon errors.
94799bc4 59 */
03168500 60SR_API int sr_dev_scan(void)
a1bb33af 61{
050e9219
UH
62 int i;
63 struct sr_dev_plugin **plugins;
a1bb33af 64
050e9219
UH
65 plugins = sr_hw_list();
66 if (!plugins[0]) {
94799bc4 67 sr_err("dev: %s: no supported devices/hwplugins", __func__);
0e3b1439 68 return SR_ERR; /* TODO: More specific error? */
94799bc4 69 }
a1bb33af 70
1b452b85
UH
71 /*
72 * Initialize all plugins first. Since the init() call may involve
a1bb33af
UH
73 * a firmware upload and associated delay, we may as well get all
74 * of these out of the way first.
75 */
050e9219
UH
76 for (i = 0; plugins[i]; i++)
77 sr_hw_init(plugins[i]);
0e3b1439
UH
78
79 return SR_OK;
a1bb33af
UH
80}
81
94799bc4
UH
82/**
83 * Return the list of logic analyzer devices libsigrok has detected.
84 *
85 * If the libsigrok-internal device list is empty, a scan for attached
03168500 86 * devices -- via a call to sr_dev_scan() -- is performed first.
94799bc4
UH
87 *
88 * TODO: Error handling?
89 *
90 * @return The list (GSList) of detected devices, or NULL if none were found.
91 */
03168500 92SR_API GSList *sr_dev_list(void)
a1bb33af 93{
bb7ef793 94 if (!devs)
03168500 95 sr_dev_scan();
e54bcdc5 96
bb7ef793 97 return devs;
a1bb33af
UH
98}
99
94799bc4
UH
100/**
101 * Create a new device.
102 *
c37d2b1b
UH
103 * The device is added to the (libsigrok-internal) list of devices, but
104 * additionally a pointer to the newly created device is also returned.
105 *
106 * The device has no probes attached to it yet after this call. You can
03168500 107 * use sr_dev_probe_add() to add one or more probes.
c37d2b1b 108 *
94799bc4
UH
109 * TODO: Should return int, so that we can return SR_OK, SR_ERR_* etc.
110 *
111 * It is the caller's responsibility to g_free() the allocated memory when
112 * no longer needed. TODO: Using which API function?
113 *
114 * @param plugin TODO.
115 * If 'plugin' is NULL, the created device is a "virtual" one.
116 * @param plugin_index TODO
94799bc4
UH
117 *
118 * @return Pointer to the newly allocated device, or NULL upon errors.
119 */
bb7ef793
UH
120SR_API struct sr_dev *sr_dev_new(const struct sr_dev_plugin *plugin,
121 int plugin_index)
a1bb33af 122{
bb7ef793 123 struct sr_dev *dev;
94799bc4
UH
124
125 /* TODO: Check if plugin_index valid? */
126
bb7ef793
UH
127 if (!(dev = g_try_malloc0(sizeof(struct sr_dev)))) {
128 sr_err("dev: %s: dev malloc failed", __func__);
b53738ba
UH
129 return NULL;
130 }
131
bb7ef793
UH
132 dev->plugin = (struct sr_dev_plugin *)plugin;
133 dev->plugin_index = plugin_index;
134 devs = g_slist_append(devs, dev);
a1bb33af 135
bb7ef793 136 return dev;
a1bb33af
UH
137}
138
94799bc4
UH
139/**
140 * Add a probe with the specified name to the specified device.
141 *
142 * The added probe is automatically enabled (the 'enabled' field is TRUE).
143 *
144 * The 'trigger' field of the added probe is set to NULL. A trigger can be
03168500 145 * added via sr_dev_trigger_set().
94799bc4 146 *
94799bc4
UH
147 * TODO: Are duplicate names allowed?
148 * TODO: Do we enforce a maximum probe number for a device?
149 * TODO: Error if the max. probe number for the specific LA is reached, e.g.
150 * if the caller tries to add more probes than the device actually has.
151 *
bb7ef793
UH
152 * @param dev The device to which to add a probe with the specified name.
153 * Must not be NULL.
94799bc4
UH
154 * @param name The name of the probe to add to this device. Must not be NULL.
155 * TODO: Maximum length, allowed characters, etc.
156 *
157 * @return SR_OK upon success, SR_ERR_MALLOC upon memory allocation errors,
158 * or SR_ERR_ARG upon invalid arguments.
bb7ef793 159 * If something other than SR_OK is returned, 'dev' is unchanged.
94799bc4 160 */
bb7ef793 161SR_API int sr_dev_probe_add(struct sr_dev *dev, const char *name)
a1bb33af 162{
1afe8989 163 struct sr_probe *p;
7d658874 164 int probenum;
a1bb33af 165
bb7ef793
UH
166 if (!dev) {
167 sr_err("dev: %s: dev was NULL", __func__);
0e3b1439 168 return SR_ERR_ARG;
94799bc4
UH
169 }
170
171 if (!name) {
172 sr_err("dev: %s: name was NULL", __func__);
0e3b1439 173 return SR_ERR_ARG;
94799bc4
UH
174 }
175
176 /* TODO: Further checks to ensure name is valid. */
177
bb7ef793 178 probenum = g_slist_length(dev->probes) + 1;
b53738ba
UH
179
180 if (!(p = g_try_malloc0(sizeof(struct sr_probe)))) {
181 sr_err("dev: %s: p malloc failed", __func__);
0e3b1439 182 return SR_ERR_MALLOC;
b53738ba
UH
183 }
184
7d658874 185 p->index = probenum;
a1bb33af 186 p->enabled = TRUE;
c37d2b1b 187 p->name = g_strdup(name);
a1bb33af 188 p->trigger = NULL;
bb7ef793 189 dev->probes = g_slist_append(dev->probes, p);
94799bc4
UH
190
191 return SR_OK;
a1bb33af
UH
192}
193
94799bc4
UH
194/**
195 * Find the probe with the specified number in the specified device.
196 *
197 * TODO
198 *
bb7ef793 199 * @param dev TODO. Must not be NULL.
94799bc4
UH
200 * @param probenum The number of the probe whose 'struct sr_probe' we want.
201 * Note that the probe numbers start at 1 (not 0!).
202 *
203 * TODO: Should return int.
94799bc4
UH
204 * TODO: probenum should be unsigned.
205 *
206 * @return A pointer to the requested probe's 'struct sr_probe', or NULL
207 * if the probe could not be found.
208 */
bb7ef793
UH
209SR_API struct sr_probe *sr_dev_probe_find(const struct sr_dev *dev,
210 int probenum)
a1bb33af
UH
211{
212 GSList *l;
1afe8989 213 struct sr_probe *p, *found_probe;
a1bb33af 214
bb7ef793
UH
215 if (!dev) {
216 sr_err("dev: %s: dev was NULL", __func__);
94799bc4
UH
217 return NULL; /* TODO: SR_ERR_ARG */
218 }
219
220 /* TODO: Sanity check on probenum. */
221
a1bb33af 222 found_probe = NULL;
bb7ef793 223 for (l = dev->probes; l; l = l->next) {
a1bb33af 224 p = l->data;
94799bc4 225 /* TODO: Check for p != NULL. */
1b452b85 226 if (p->index == probenum) {
a1bb33af
UH
227 found_probe = p;
228 break;
229 }
230 }
231
232 return found_probe;
233}
234
94799bc4
UH
235/**
236 * Set the name of the specified probe in the specified device.
237 *
238 * If the probe already has a different name assigned to it, it will be
239 * removed, and the new name will be saved instead.
240 *
bb7ef793 241 * TODO: Rename to sr_dev_probe_name_set().
94799bc4 242 *
bb7ef793 243 * @param dev TODO
94799bc4
UH
244 * @param probenum The number of the probe whose name to set.
245 * Note that the probe numbers start at 1 (not 0!).
246 * @param name The new name that the specified probe should get.
0e3b1439
UH
247 *
248 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
249 * upon other errors.
bb7ef793 250 * If something other than SR_OK is returned, 'dev' is unchanged.
94799bc4 251 */
bb7ef793
UH
252SR_API int sr_dev_probe_name(struct sr_dev *dev, int probenum,
253 const char *name)
a1bb33af 254{
1afe8989 255 struct sr_probe *p;
a1bb33af 256
bb7ef793
UH
257 if (!dev) {
258 sr_err("dev: %s: dev was NULL", __func__);
0e3b1439 259 return SR_ERR_ARG;
94799bc4
UH
260 }
261
bb7ef793 262 p = sr_dev_probe_find(dev, probenum);
94799bc4
UH
263 if (!p) {
264 sr_err("dev: %s: probe %d not found", __func__, probenum);
0e3b1439 265 return SR_ERR; /* TODO: More specific error? */
94799bc4
UH
266 }
267
268 /* TODO: Sanity check on 'name'. */
a1bb33af 269
94799bc4 270 /* If the probe already has a name, kill it first. */
66410a86 271 g_free(p->name);
94799bc4 272
a1bb33af 273 p->name = g_strdup(name);
0e3b1439
UH
274
275 return SR_OK;
a1bb33af
UH
276}
277
94799bc4
UH
278/**
279 * Remove all triggers set up for the specified device.
280 *
281 * TODO: Better description.
282 *
bb7ef793 283 * @param dev TODO
0e3b1439
UH
284 *
285 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
bb7ef793 286 * If something other than SR_OK is returned, 'dev' is unchanged.
94799bc4 287 */
bb7ef793 288SR_API int sr_dev_trigger_clear(struct sr_dev *dev)
a1bb33af 289{
1afe8989 290 struct sr_probe *p;
0e3b1439 291 unsigned int pnum; /* TODO: uint16_t? */
a1bb33af 292
bb7ef793
UH
293 if (!dev) {
294 sr_err("dev: %s: dev was NULL", __func__);
0e3b1439 295 return SR_ERR_ARG;
94799bc4
UH
296 }
297
bb7ef793
UH
298 if (!dev->probes) {
299 sr_err("dev: %s: dev->probes was NULL", __func__);
0e3b1439 300 return SR_ERR_ARG;
94799bc4 301 }
a1bb33af 302
bb7ef793
UH
303 for (pnum = 1; pnum <= g_slist_length(dev->probes); pnum++) {
304 p = sr_dev_probe_find(dev, pnum);
94799bc4 305 /* TODO: Silently ignore probes which cannot be found? */
66410a86 306 if (p) {
1b452b85
UH
307 g_free(p->trigger);
308 p->trigger = NULL;
309 }
310 }
0e3b1439
UH
311
312 return SR_OK;
1b452b85 313}
a1bb33af 314
94799bc4
UH
315/**
316 * Add a trigger to the specified device.
317 *
318 * TODO: Better description.
319 * TODO: Describe valid format of the 'trigger' string.
320 *
bb7ef793 321 * @param dev TODO. Must not be NULL.
94799bc4
UH
322 * @param probenum The number of the probe. TODO.
323 * Note that the probe numbers start at 1 (not 0!).
324 * @param trigger TODO.
325 * TODO: Is NULL allowed?
0e3b1439
UH
326 *
327 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
328 * upon other errors.
bb7ef793 329 * If something other than SR_OK is returned, 'dev' is unchanged.
94799bc4 330 */
bb7ef793
UH
331SR_API int sr_dev_trigger_set(struct sr_dev *dev, int probenum,
332 const char *trigger)
a1bb33af 333{
1afe8989 334 struct sr_probe *p;
a1bb33af 335
bb7ef793
UH
336 if (!dev) {
337 sr_err("dev: %s: dev was NULL", __func__);
0e3b1439 338 return SR_ERR_ARG;
94799bc4
UH
339 }
340
341 /* TODO: Sanity check on 'probenum'. */
342
343 /* TODO: Sanity check on 'trigger'. */
344
bb7ef793 345 p = sr_dev_probe_find(dev, probenum);
94799bc4
UH
346 if (!p) {
347 sr_err("dev: %s: probe %d not found", __func__, probenum);
0e3b1439 348 return SR_ERR; /* TODO: More specific error? */
94799bc4 349 }
a1bb33af 350
94799bc4 351 /* If the probe already has a trigger, kill it first. */
66410a86 352 g_free(p->trigger);
a1bb33af
UH
353
354 p->trigger = g_strdup(trigger);
0e3b1439
UH
355
356 return SR_OK;
7d658874
BV
357}
358
94799bc4
UH
359/**
360 * Determine whether the specified device has the specified capability.
361 *
362 * TODO: Should return int?
94799bc4 363 *
bb7ef793
UH
364 * @param dev Pointer to the device to be checked. Must not be NULL.
365 * The device's 'plugin' field must not be NULL either.
94799bc4
UH
366 * @param hwcap The capability that should be checked (whether it's supported
367 * by the specified device).
368 *
369 * @return TRUE, if the device has the specified capability, FALSE otherwise.
370 * FALSE is also returned upon invalid input parameters or other
371 * error conditions.
372 */
bb7ef793 373SR_API gboolean sr_dev_has_hwcap(const struct sr_dev *dev, int hwcap)
7d658874 374{
ffedd0bf 375 int *hwcaps, i;
7d658874 376
bb7ef793
UH
377 if (!dev) {
378 sr_err("dev: %s: dev was NULL", __func__);
94799bc4
UH
379 return FALSE; /* TODO: SR_ERR_ARG. */
380 }
381
bb7ef793
UH
382 if (!dev->plugin) {
383 sr_err("dev: %s: dev->plugin was NULL", __func__);
94799bc4
UH
384 return FALSE; /* TODO: SR_ERR_ARG. */
385 }
386
387 /* TODO: Sanity check on 'hwcap'. */
388
ffedd0bf 389 if (!(hwcaps = dev->plugin->hwcap_get_all())) {
bb7ef793 390 sr_err("dev: %s: dev has no capabilities", __func__);
94799bc4
UH
391 return FALSE; /* TODO: SR_ERR*. */
392 }
393
ffedd0bf
UH
394 for (i = 0; hwcaps[i]; i++) {
395 if (hwcaps[i] != hwcap)
94799bc4
UH
396 continue;
397 sr_spew("dev: %s: found hwcap %d", __func__, hwcap);
398 return TRUE;
399 }
218557b8 400
94799bc4 401 sr_spew("dev: %s: hwcap %d not found", __func__, hwcap);
7d658874
BV
402
403 return FALSE;
a1bb33af 404}
fd9836bf
AS
405
406/**
407 * Returns information about the given device.
408 *
bb7ef793
UH
409 * @param dev Pointer to the device to be checked. Must not be NULL.
410 * The device's 'plugin' field must not be NULL either.
44dae539
UH
411 * @param id The type of information.
412 * @param data The return value. Must not be NULL.
fd9836bf
AS
413 *
414 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or SR_ERR
415 * upon other errors.
416 */
bb7ef793 417SR_API int sr_dev_info_get(const struct sr_dev *dev, int id, const void **data)
fd9836bf 418{
bb7ef793 419 if ((dev == NULL) || (dev->plugin == NULL))
fd9836bf
AS
420 return SR_ERR_ARG;
421
422 if (data == NULL)
423 return SR_ERR_ARG;
424
5097b0d0 425 *data = dev->plugin->dev_info_get(dev->plugin_index, id);
fd9836bf
AS
426
427 if (*data == NULL)
428 return SR_ERR;
429
430 return SR_OK;
431}