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