]> sigrok.org Git - libsigrok.git/blame - libsigrok.h
sr: fx2lafw: Add basic support for USBee DX and clones
[libsigrok.git] / libsigrok.h
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
0f8522bf
UH
20#ifndef LIBSIGROK_SIGROK_H
21#define LIBSIGROK_SIGROK_H
a1bb33af
UH
22
23#include <stdio.h>
24#include <sys/time.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <glib.h>
a1bb33af 28
a00b530c
UH
29#ifdef __cplusplus
30extern "C" {
31#endif
32
e31b636d
UH
33/*
34 * Status/error codes returned by libsigrok functions.
35 *
36 * All possible return codes of libsigrok functions must be listed here.
37 * Functions should never return hardcoded numbers as status, but rather
38 * use these #defines instead. All error codes are negative numbers.
39 *
40 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
41 * libsigrok functions returns a "malloc error" it must be exactly the same
42 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
43 * There must be no functions which indicate two different errors via the
44 * same return code.
45 *
46 * Also, for compatibility reasons, no defined return codes are ever removed
47 * or reused for different #defines later. You can only add new #defines and
48 * return codes, but never remove or redefine existing ones.
49 */
e46b8fb1
UH
50#define SR_OK 0 /* No error */
51#define SR_ERR -1 /* Generic/unspecified error */
52#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
f7d2982d 53#define SR_ERR_ARG -3 /* Function argument error */
e0508e67
UH
54#define SR_ERR_BUG -4 /* Errors hinting at internal bugs */
55#define SR_ERR_SAMPLERATE -5 /* Incorrect samplerate */
a1bb33af 56
b2ff9506
BV
57#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
58#define SR_MAX_PROBENAME_LEN 32
2a3f9541 59
a1bb33af 60/* Handy little macros */
c9140419 61#define SR_HZ(n) (n)
59df0c77
UH
62#define SR_KHZ(n) ((n) * 1000)
63#define SR_MHZ(n) ((n) * 1000000)
64#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 65
59df0c77 66#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 67
1352eedd 68/* libsigrok loglevels. */
44dae539 69#define SR_LOG_NONE 0 /**< Output no messages at all. */
b2ff9506 70#define SR_LOG_ERR 1 /**< Output error messages. */
44dae539
UH
71#define SR_LOG_WARN 2 /**< Output warnings. */
72#define SR_LOG_INFO 3 /**< Output informational messages. */
b2ff9506 73#define SR_LOG_DBG 4 /**< Output debug messages. */
44dae539 74#define SR_LOG_SPEW 5 /**< Output very noisy debug messages. */
1352eedd 75
1a081ca6
UH
76/*
77 * Use SR_API to mark public API symbols, and SR_PRIV for private symbols.
78 *
79 * Variables and functions marked 'static' are private already and don't
80 * need SR_PRIV. However, functions which are not static (because they need
81 * to be used in other libsigrok-internal files) but are also not meant to
82 * be part of the public libsigrok API, must use SR_PRIV.
83 *
84 * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
85 *
69e70c23
UH
86 * This feature is not available on MinGW/Windows, as it is a feature of
87 * ELF files and MinGW/Windows uses PE files.
88 *
1a081ca6
UH
89 * Details: http://gcc.gnu.org/wiki/Visibility
90 */
91
92/* Marks public libsigrok API symbols. */
69e70c23 93#ifndef _WIN32
1a081ca6 94#define SR_API __attribute__((visibility("default")))
69e70c23
UH
95#else
96#define SR_API
97#endif
1a081ca6
UH
98
99/* Marks private, non-public libsigrok symbols (not part of the API). */
69e70c23 100#ifndef _WIN32
1a081ca6 101#define SR_PRIV __attribute__((visibility("hidden")))
69e70c23
UH
102#else
103#define SR_PRIV
104#endif
1a081ca6 105
1f9813eb 106typedef int (*sr_receive_data_callback_t)(int fd, int revents, void *cb_data);
882e2075 107
c09f0b57 108/* Data types used by hardware drivers for dev_config_set() */
a1bb33af 109enum {
5a2326a7
UH
110 SR_T_UINT64,
111 SR_T_CHAR,
4d436e71 112 SR_T_BOOL,
0fe11789 113 SR_T_FLOAT,
c1e48618 114 SR_T_RATIONAL_PERIOD,
bd8db307 115 SR_T_RATIONAL_VOLT,
45edd0b2 116 SR_T_KEYVALUE,
0fe11789
BV
117};
118
119struct sr_rational {
120 /* numerator */
121 uint64_t p;
122 /* denominator */
123 uint64_t q;
a1bb33af
UH
124};
125
b9c735a2 126/* sr_datafeed_packet.type values */
a1bb33af 127enum {
5a2326a7
UH
128 SR_DF_HEADER,
129 SR_DF_END,
130 SR_DF_TRIGGER,
131 SR_DF_LOGIC,
ee7489d2
BV
132 SR_DF_META_LOGIC,
133 SR_DF_ANALOG,
134 SR_DF_META_ANALOG,
6ea7669c
BV
135 SR_DF_FRAME_BEGIN,
136 SR_DF_FRAME_END,
a1bb33af
UH
137};
138
9956f285
UH
139/* sr_datafeed_analog.mq values */
140enum {
141 SR_MQ_VOLTAGE,
142 SR_MQ_CURRENT,
143 SR_MQ_RESISTANCE,
144 SR_MQ_CAPACITANCE,
145 SR_MQ_TEMPERATURE,
146 SR_MQ_FREQUENCY,
147 SR_MQ_DUTY_CYCLE,
148};
149
aff5a729
BV
150/* sr_datafeed_analog.unit values */
151enum {
9956f285
UH
152 SR_UNIT_VOLT,
153 SR_UNIT_AMPERE,
154 SR_UNIT_OHM,
155 SR_UNIT_FARAD,
156 SR_UNIT_CELSIUS,
157 SR_UNIT_KELVIN,
158 SR_UNIT_HERTZ,
159 SR_UNIT_PERCENTAGE,
aff5a729
BV
160};
161
b9c735a2 162struct sr_datafeed_packet {
a1bb33af 163 uint16_t type;
a1bb33af
UH
164 void *payload;
165};
166
b9c735a2 167struct sr_datafeed_header {
a1bb33af
UH
168 int feed_version;
169 struct timeval starttime;
ee7489d2
BV
170};
171
172struct sr_datafeed_meta_logic {
173 int num_probes;
4c100f32 174 uint64_t samplerate;
a1bb33af
UH
175};
176
38ab3ee7
BV
177struct sr_datafeed_logic {
178 uint64_t length;
179 uint16_t unitsize;
9c939c51 180 void *data;
38ab3ee7
BV
181};
182
ee7489d2
BV
183struct sr_datafeed_meta_analog {
184 int num_probes;
185};
186
187struct sr_datafeed_analog {
188 int num_samples;
9956f285
UH
189 int mq; /* Measured quantity (e.g. voltage, current, temperature) */
190 int unit; /* Unit in which the MQ is measured. */
ee7489d2
BV
191 float *data;
192};
193
f50f3f40
UH
194struct sr_input {
195 struct sr_input_format *format;
3dafb92b 196 GHashTable *param;
bb7ef793 197 struct sr_dev *vdev;
3dafb92b 198 void *internal;
34e4813f
BV
199};
200
f50f3f40 201struct sr_input_format {
cdb3573c 202 char *id;
34e4813f 203 char *description;
757b8c62 204 int (*format_match) (const char *filename);
f50f3f40
UH
205 int (*init) (struct sr_input *in);
206 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
207};
208
f50f3f40
UH
209struct sr_output {
210 struct sr_output_format *format;
bb7ef793 211 struct sr_dev *dev;
a1bb33af
UH
212 char *param;
213 void *internal;
214};
215
f50f3f40 216struct sr_output_format {
cdb3573c 217 char *id;
a1bb33af 218 char *description;
f0411b1d 219 int df_type;
f50f3f40 220 int (*init) (struct sr_output *o);
054e6709
UH
221 int (*data) (struct sr_output *o, const uint8_t *data_in,
222 uint64_t length_in, uint8_t **data_out,
223 uint64_t *length_out);
224 int (*event) (struct sr_output *o, int event_type, uint8_t **data_out,
a1bb33af
UH
225 uint64_t *length_out);
226};
227
c4911129 228struct sr_datastore {
a1bb33af
UH
229 /* Size in bytes of the number of units stored in this datastore */
230 int ds_unitsize;
33247d6a 231 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
232 GSList *chunklist;
233};
234
a1bb33af
UH
235/*
236 * This represents a generic device connected to the system.
c09f0b57
UH
237 * For device-specific information, ask the driver. The driver_index refers
238 * to the device index within that driver; it may be handling more than one
239 * device. All relevant driver calls take a dev_index parameter for this.
a1bb33af 240 */
bb7ef793 241struct sr_dev {
c09f0b57
UH
242 /* Which driver handles this device */
243 struct sr_dev_driver *driver;
244 /* A driver may handle multiple devices of the same type */
245 int driver_index;
1afe8989 246 /* List of struct sr_probe* */
a1bb33af
UH
247 GSList *probes;
248 /* Data acquired by this device, if any */
c4911129 249 struct sr_datastore *datastore;
a1bb33af
UH
250};
251
921e753f 252enum {
5a2326a7 253 SR_PROBE_TYPE_LOGIC,
921e753f
DR
254};
255
1afe8989 256struct sr_probe {
a1bb33af 257 int index;
6ea7e235 258 int type;
a1bb33af
UH
259 gboolean enabled;
260 char *name;
261 char *trigger;
262};
263
c09f0b57 264/* Hardware driver capabilities */
a1bb33af 265enum {
fb93625d 266 SR_HWCAP_DUMMY = 0, /* Used to terminate lists. Must be 0! */
e88dadd7
UH
267
268 /*--- Device classes ------------------------------------------------*/
269
270 /** The device can act as logic analyzer. */
5a2326a7 271 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 272
ee7489d2
BV
273 /** The device can act as an oscilloscope. */
274 SR_HWCAP_OSCILLOSCOPE,
e88dadd7 275
ca3d84cc
BV
276 /** The device can act as a multimeter. */
277 SR_HWCAP_MULTIMETER,
a141db8c 278
ca3d84cc 279 /** The device is a demo device. */
bb7ef793 280 SR_HWCAP_DEMO_DEV,
a141db8c 281
ca3d84cc
BV
282
283 /*--- Device communication ------------------------------------------*/
284 /** Some drivers cannot detect the exact model they're talking to. */
285 SR_HWCAP_MODEL,
286
287 /** Specification on how to connect to a device */
288 SR_HWCAP_CONN,
289
290 /** Serial communication spec: <data bits><parity><stop bit> e.g. 8n1 */
291 SR_HWCAP_SERIALCOMM,
292
293
294 /*--- Device configuration ------------------------------------------*/
e88dadd7
UH
295
296 /** The device supports setting/changing its samplerate. */
297 SR_HWCAP_SAMPLERATE,
298
299 /* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
300 /** The device supports setting a probe mask. */
301 SR_HWCAP_PROBECONFIG,
302
303 /** The device supports setting a pre/post-trigger capture ratio. */
304 SR_HWCAP_CAPTURE_RATIO,
305
306 /* TODO? */
307 /** The device supports setting a pattern (pattern generator mode). */
308 SR_HWCAP_PATTERN_MODE,
309
3a4d09c0
GM
310 /** The device supports Run Length Encoding. */
311 SR_HWCAP_RLE,
312
ee7489d2 313 /** The device supports setting trigger slope. */
0fe11789
BV
314 SR_HWCAP_TRIGGER_SLOPE,
315
316 /** Trigger source. */
317 SR_HWCAP_TRIGGER_SOURCE,
318
319 /** Horizontal trigger position */
320 SR_HWCAP_HORIZ_TRIGGERPOS,
321
322 /** Buffer size. */
323 SR_HWCAP_BUFFERSIZE,
324
325 /** Time base. */
326 SR_HWCAP_TIMEBASE,
ee7489d2 327
3c4976c9
BV
328 /** Filter. */
329 SR_HWCAP_FILTER,
330
bd8db307
BV
331 /** Volts/div. */
332 SR_HWCAP_VDIV,
333
e1c8b2ab
BV
334 /** Coupling. */
335 SR_HWCAP_COUPLING,
336
ca3d84cc 337
e88dadd7
UH
338 /*--- Special stuff -------------------------------------------------*/
339
340 /* TODO: Better description. */
341 /** The device supports specifying a capturefile to inject. */
342 SR_HWCAP_CAPTUREFILE,
925dbf9f 343
e88dadd7
UH
344 /* TODO: Better description. */
345 /** The device supports specifying the capturefile unit size. */
346 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 347
e88dadd7
UH
348 /* TODO: Better description. */
349 /** The device supports setting the number of probes. */
350 SR_HWCAP_CAPTURE_NUM_PROBES,
351
ca3d84cc 352
e88dadd7
UH
353 /*--- Acquisition modes ---------------------------------------------*/
354
355 /**
356 * The device supports setting a sample time limit, i.e. how long the
357 * sample acquisition should run (in ms).
358 */
359 SR_HWCAP_LIMIT_MSEC,
360
361 /**
362 * The device supports setting a sample number limit, i.e. how many
363 * samples should be acquired.
364 */
365 SR_HWCAP_LIMIT_SAMPLES,
366
6ea7669c
BV
367 /**
368 * The device supports setting a frame limit, i.e. how many
369 * frames should be acquired.
370 */
371 SR_HWCAP_LIMIT_FRAMES,
372
e88dadd7
UH
373 /**
374 * The device supports continuous sampling, i.e. neither a time limit
375 * nor a sample number limit has to be supplied, it will just acquire
376 * samples continuously, until explicitly stopped by a certain command.
377 */
5a2326a7 378 SR_HWCAP_CONTINUOUS,
e88dadd7 379
a1bb33af
UH
380};
381
a65de030 382struct sr_hwcap_option {
ffedd0bf 383 int hwcap;
a1bb33af
UH
384 int type;
385 char *description;
386 char *shortname;
387};
388
d68e2d1a 389struct sr_dev_inst {
a1bb33af
UH
390 int index;
391 int status;
1d9a8a5f 392 int inst_type;
a1bb33af
UH
393 char *vendor;
394 char *model;
395 char *version;
8d672550 396 void *priv;
a1bb33af
UH
397};
398
d68e2d1a 399/* sr_dev_inst types */
a1bb33af 400enum {
4101f961
UH
401 /** Device instance type for USB devices. */
402 SR_INST_USB,
403 /** Device instance type for serial port devices. */
404 SR_INST_SERIAL,
a1bb33af
UH
405};
406
a1bb33af
UH
407/* Device instance status */
408enum {
5a2326a7 409 SR_ST_NOT_FOUND,
a1bb33af 410 /* Found, but still booting */
5a2326a7 411 SR_ST_INITIALIZING,
a1bb33af 412 /* Live, but not in use */
5a2326a7 413 SR_ST_INACTIVE,
a1bb33af 414 /* Actively in use in a session */
5a2326a7 415 SR_ST_ACTIVE,
a1bb33af
UH
416};
417
418/*
419 * TODO: This sucks, you just kinda have to "know" the returned type.
420 * TODO: Need a DI to return the number of trigger stages supported.
421 */
422
423/* Device info IDs */
424enum {
d68e2d1a 425 /* struct sr_dev_inst for this specific device */
1d9a8a5f 426 SR_DI_INST,
a1bb33af 427 /* The number of probes connected to this device */
5a2326a7 428 SR_DI_NUM_PROBES,
464d12c7
KS
429 /* The probe names on this device */
430 SR_DI_PROBE_NAMES,
60679b18 431 /* Samplerates supported by this device, (struct sr_samplerates) */
5a2326a7 432 SR_DI_SAMPLERATES,
0fe11789 433 /* Types of logic trigger supported, out of "01crf" (char *) */
5a2326a7 434 SR_DI_TRIGGER_TYPES,
4c100f32 435 /* The currently set samplerate in Hz (uint64_t) */
5a2326a7 436 SR_DI_CUR_SAMPLERATE,
eb0a3731
UH
437 /* Supported patterns (in pattern generator mode) */
438 SR_DI_PATTERNS,
0fe11789
BV
439 /* Supported buffer sizes */
440 SR_DI_BUFFERSIZES,
441 /* Supported time bases */
442 SR_DI_TIMEBASES,
443 /* Supported trigger sources */
444 SR_DI_TRIGGER_SOURCES,
3c4976c9
BV
445 /* Supported filter targets */
446 SR_DI_FILTERS,
bd8db307
BV
447 /* Valid volts/div values */
448 SR_DI_VDIVS,
e1c8b2ab
BV
449 /* Coupling options */
450 SR_DI_COUPLING,
a1bb33af
UH
451};
452
1b452b85
UH
453/*
454 * A device supports either a range of samplerates with steps of a given
455 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
456 * step or list, but not both.
457 */
60679b18 458struct sr_samplerates {
a1bb33af
UH
459 uint64_t low;
460 uint64_t high;
461 uint64_t step;
a533743d 462 const uint64_t *list;
a1bb33af
UH
463};
464
c09f0b57
UH
465struct sr_dev_driver {
466 /* Driver-specific */
a1bb33af 467 char *name;
9f8274a5 468 char *longname;
a1bb33af 469 int api_version;
bb7ef793 470 int (*init) (const char *devinfo);
57ab7d9f 471 int (*cleanup) (void);
a1bb33af 472
1b452b85 473 /* Device-specific */
e7eb703f
UH
474 int (*dev_open) (int dev_index);
475 int (*dev_close) (int dev_index);
b7f578be 476 const void *(*dev_info_get) (int dev_index, int dev_info_id);
e7eb703f 477 int (*dev_status_get) (int dev_index);
915f7cc8 478 const int *(*hwcap_get_all) (void);
1b79df2f 479 int (*dev_config_set) (int dev_index, int hwcap, const void *value);
1f9813eb
UH
480 int (*dev_acquisition_start) (int dev_index, void *session_dev_id);
481 int (*dev_acquisition_stop) (int dev_index, void *session_dev_id);
a1bb33af
UH
482};
483
2872d21e 484struct sr_session {
bb7ef793
UH
485 /* List of struct sr_dev* */
486 GSList *devs;
d08490aa 487 /* list of sr_receive_data_callback_t */
a1bb33af
UH
488 GSList *datafeed_callbacks;
489 GTimeVal starttime;
544a4582 490 gboolean running;
b7e94111
LPC
491
492 unsigned int num_sources;
493
494 /* Both "sources" and "pollfds" are of the same size and contain pairs of
495 * descriptor and callback function. We can not embed the GPollFD into the
496 * source struct since we want to be able to pass the array of all poll
497 * descriptors to g_poll.
498 */
499 struct source *sources;
500 GPollFD *pollfds;
501 int source_timeout;
a1bb33af
UH
502};
503
45c59c8b
BV
504#include "proto.h"
505#include "version.h"
c2bd92ec 506
a00b530c
UH
507#ifdef __cplusplus
508}
509#endif
510
a1bb33af 511#endif