]> sigrok.org Git - libsigrok.git/blame - sigrok.h.in
libsigrok.pc: Add Required.private field entries.
[libsigrok.git] / sigrok.h.in
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#ifndef SIGROK_SIGROK_H
21#define SIGROK_SIGROK_H
22
23#include <stdio.h>
24#include <sys/time.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <glib.h>
22b02383 28#ifdef HAVE_LIBUSB_1_0
a1bb33af 29#include <libusb.h>
22b02383 30#endif
a1bb33af 31
a00b530c
UH
32#ifdef __cplusplus
33extern "C" {
34#endif
35
52f28f82
UH
36#define SIGROK_MAJOR_VERSION @SIGROK_MAJOR_VERSION@
37#define SIGROK_MINOR_VERSION @SIGROK_MINOR_VERSION@
38#define SIGROK_MICRO_VERSION @SIGROK_MICRO_VERSION@
39#define SIGROK_VERSION "@SIGROK_VERSION@"
40
e31b636d
UH
41/*
42 * Status/error codes returned by libsigrok functions.
43 *
44 * All possible return codes of libsigrok functions must be listed here.
45 * Functions should never return hardcoded numbers as status, but rather
46 * use these #defines instead. All error codes are negative numbers.
47 *
48 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
49 * libsigrok functions returns a "malloc error" it must be exactly the same
50 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
51 * There must be no functions which indicate two different errors via the
52 * same return code.
53 *
54 * Also, for compatibility reasons, no defined return codes are ever removed
55 * or reused for different #defines later. You can only add new #defines and
56 * return codes, but never remove or redefine existing ones.
57 */
e46b8fb1
UH
58#define SR_OK 0 /* No error */
59#define SR_ERR -1 /* Generic/unspecified error */
60#define SR_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
f7d2982d
UH
61#define SR_ERR_ARG -3 /* Function argument error */
62#define SR_ERR_SAMPLERATE -4 /* Incorrect samplerate */
a1bb33af 63
9688b443
UH
64#define SR_MAX_NUM_PROBES 64 /* Limited by uint64_t. */
65#define SR_MAX_PROBENAME_LEN 32
2a3f9541 66
a1bb33af 67/* Handy little macros */
c9140419 68#define SR_HZ(n) (n)
59df0c77
UH
69#define SR_KHZ(n) ((n) * 1000)
70#define SR_MHZ(n) ((n) * 1000000)
71#define SR_GHZ(n) ((n) * 1000000000)
a1bb33af 72
59df0c77 73#define SR_HZ_TO_NS(n) (1000000000 / (n))
3677f3ec 74
1352eedd 75/* libsigrok loglevels. */
8e49cebd
BV
76#define SR_LOG_NONE 0
77#define SR_LOG_ERR 1
78#define SR_LOG_WARN 2
79#define SR_LOG_INFO 3
80#define SR_LOG_DBG 4
81#define SR_LOG_SPEW 5
1352eedd 82
a887e3da 83typedef int (*sr_receive_data_callback) (int fd, int revents, void *user_data);
882e2075 84
882e2075 85/* Data types used by hardware plugins for set_configuration() */
a1bb33af 86enum {
5a2326a7
UH
87 SR_T_UINT64,
88 SR_T_CHAR,
89 SR_T_NULL,
a1bb33af
UH
90};
91
8bb416be 92#if 0
a1bb33af 93/* (Unused) protocol decoder stack entry */
809c5f20 94struct sr_protocol {
a1bb33af
UH
95 char *name;
96 int id;
97 int stackindex;
98};
8bb416be 99#endif
a1bb33af 100
b9c735a2 101/* sr_datafeed_packet.type values */
a1bb33af 102enum {
5a2326a7
UH
103 SR_DF_HEADER,
104 SR_DF_END,
105 SR_DF_TRIGGER,
106 SR_DF_LOGIC,
107 SR_DF_ANALOG,
108 SR_DF_PD,
a1bb33af
UH
109};
110
b9c735a2 111struct sr_datafeed_packet {
a1bb33af 112 uint16_t type;
38ab3ee7
BV
113 /* timeoffset since start, in picoseconds */
114 uint64_t timeoffset;
115 /* duration of data in this packet, in picoseconds */
116 uint64_t duration;
a1bb33af
UH
117 void *payload;
118};
119
b9c735a2 120struct sr_datafeed_header {
a1bb33af
UH
121 int feed_version;
122 struct timeval starttime;
4c100f32 123 uint64_t samplerate;
921e753f
DR
124 int num_analog_probes;
125 int num_logic_probes;
a1bb33af
UH
126};
127
38ab3ee7
BV
128struct sr_datafeed_logic {
129 uint64_t length;
130 uint16_t unitsize;
9c939c51 131 void *data;
38ab3ee7
BV
132};
133
134struct sr_datafeed_pd {
135 char *protocol;
136 char *annotation;
137 unsigned char *data;
138};
139
92b3101c 140#if defined(HAVE_LA_ALSA)
809c5f20 141struct sr_analog_probe {
48d783e4 142 uint8_t att;
c3579621
DR
143 uint8_t res; /* Needs to be a power of 2, FIXME */
144 uint16_t val; /* Max hardware ADC width is 16bits */
48d783e4
DR
145};
146
809c5f20 147struct sr_analog_sample {
c3579621 148 uint8_t num_probes; /* Max hardware probes is 256 */
809c5f20 149 struct sr_analog_probe probes[];
48d783e4 150};
8bb416be 151#endif
48d783e4 152
f50f3f40
UH
153struct sr_input {
154 struct sr_input_format *format;
13a12913 155 char *param;
5c2d46d1 156 struct sr_device *vdevice;
34e4813f
BV
157};
158
f50f3f40 159struct sr_input_format {
cdb3573c 160 char *id;
34e4813f 161 char *description;
757b8c62 162 int (*format_match) (const char *filename);
f50f3f40
UH
163 int (*init) (struct sr_input *in);
164 int (*loadfile) (struct sr_input *in, const char *filename);
34e4813f
BV
165};
166
f50f3f40
UH
167struct sr_output {
168 struct sr_output_format *format;
5c2d46d1 169 struct sr_device *device;
a1bb33af
UH
170 char *param;
171 void *internal;
172};
173
f50f3f40 174struct sr_output_format {
cdb3573c 175 char *id;
a1bb33af 176 char *description;
f0411b1d 177 int df_type;
f50f3f40 178 int (*init) (struct sr_output *o);
54ac5277
UH
179 int (*data) (struct sr_output *o, const char *data_in,
180 uint64_t length_in, char **data_out, uint64_t *length_out);
f50f3f40 181 int (*event) (struct sr_output *o, int event_type, char **data_out,
a1bb33af
UH
182 uint64_t *length_out);
183};
184
8bb416be 185#if 0
809c5f20 186struct sr_analyzer {
a1bb33af
UH
187 char *name;
188 char *filename;
189 /*
190 * TODO: Parameters? If so, configured plugins need another struct.
191 * TODO: Input and output format?
192 */
193};
8bb416be 194#endif
a1bb33af 195
c4911129 196struct sr_datastore {
a1bb33af
UH
197 /* Size in bytes of the number of units stored in this datastore */
198 int ds_unitsize;
33247d6a 199 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
200 GSList *chunklist;
201};
202
a1bb33af
UH
203/*
204 * This represents a generic device connected to the system.
205 * For device-specific information, ask the plugin. The plugin_index refers
206 * to the device index within that plugin; it may be handling more than one
207 * device. All relevant plugin calls take a device_index parameter for this.
208 */
5c2d46d1 209struct sr_device {
a1bb33af 210 /* Which plugin handles this device */
5c2d46d1 211 struct sr_device_plugin *plugin;
a1bb33af
UH
212 /* A plugin may handle multiple devices of the same type */
213 int plugin_index;
1afe8989 214 /* List of struct sr_probe* */
a1bb33af
UH
215 GSList *probes;
216 /* Data acquired by this device, if any */
c4911129 217 struct sr_datastore *datastore;
a1bb33af
UH
218};
219
921e753f 220enum {
5a2326a7
UH
221 SR_PROBE_TYPE_LOGIC,
222 SR_PROBE_TYPE_ANALOG,
921e753f
DR
223};
224
1afe8989 225struct sr_probe {
a1bb33af 226 int index;
6ea7e235 227 int type;
a1bb33af
UH
228 gboolean enabled;
229 char *name;
230 char *trigger;
231};
232
8bb416be 233/* TODO: Get rid of this global variable. */
a1bb33af
UH
234extern GSList *devices;
235
a1bb33af
UH
236/* Hardware plugin capabilities */
237enum {
5a2326a7 238 SR_HWCAP_DUMMY, /* Used to terminate lists */
e88dadd7
UH
239
240 /*--- Device classes ------------------------------------------------*/
241
242 /** The device can act as logic analyzer. */
5a2326a7 243 SR_HWCAP_LOGIC_ANALYZER,
925dbf9f 244
e88dadd7
UH
245 /* TODO: SR_HWCAP_SCOPE, SW_HWCAP_PATTERN_GENERATOR, etc.? */
246
247 /*--- Device options ------------------------------------------------*/
248
249 /** The device supports setting/changing its samplerate. */
250 SR_HWCAP_SAMPLERATE,
251
252 /* TODO: Better description? Rename to PROBE_AND_TRIGGER_CONFIG? */
253 /** The device supports setting a probe mask. */
254 SR_HWCAP_PROBECONFIG,
255
256 /** The device supports setting a pre/post-trigger capture ratio. */
257 SR_HWCAP_CAPTURE_RATIO,
258
259 /* TODO? */
260 /** The device supports setting a pattern (pattern generator mode). */
261 SR_HWCAP_PATTERN_MODE,
262
3a4d09c0
GM
263 /** The device supports Run Length Encoding. */
264 SR_HWCAP_RLE,
265
e88dadd7
UH
266 /*--- Special stuff -------------------------------------------------*/
267
268 /* TODO: Better description. */
269 /** The device supports specifying a capturefile to inject. */
270 SR_HWCAP_CAPTUREFILE,
925dbf9f 271
e88dadd7
UH
272 /* TODO: Better description. */
273 /** The device supports specifying the capturefile unit size. */
274 SR_HWCAP_CAPTURE_UNITSIZE,
7d658874 275
e88dadd7
UH
276 /* TODO: Better description. */
277 /** The device supports setting the number of probes. */
278 SR_HWCAP_CAPTURE_NUM_PROBES,
279
280 /*--- Acquisition modes ---------------------------------------------*/
281
282 /**
283 * The device supports setting a sample time limit, i.e. how long the
284 * sample acquisition should run (in ms).
285 */
286 SR_HWCAP_LIMIT_MSEC,
287
288 /**
289 * The device supports setting a sample number limit, i.e. how many
290 * samples should be acquired.
291 */
292 SR_HWCAP_LIMIT_SAMPLES,
293
294 /**
295 * The device supports continuous sampling, i.e. neither a time limit
296 * nor a sample number limit has to be supplied, it will just acquire
297 * samples continuously, until explicitly stopped by a certain command.
298 */
5a2326a7 299 SR_HWCAP_CONTINUOUS,
e88dadd7
UH
300
301 /* TODO: SR_HWCAP_JUST_SAMPLE or similar. */
a1bb33af
UH
302};
303
a65de030 304struct sr_hwcap_option {
a1bb33af
UH
305 int capability;
306 int type;
307 char *description;
308 char *shortname;
309};
310
a00ba012 311struct sr_device_instance {
a1bb33af
UH
312 int index;
313 int status;
314 int instance_type;
315 char *vendor;
316 char *model;
317 char *version;
8d672550 318 void *priv;
a1bb33af 319 union {
6c290072
UH
320 struct sr_usb_device_instance *usb;
321 struct sr_serial_device_instance *serial;
a1bb33af
UH
322 };
323};
324
a00ba012 325/* sr_device_instance types */
a1bb33af 326enum {
5a2326a7
UH
327 SR_USB_INSTANCE,
328 SR_SERIAL_INSTANCE,
a1bb33af
UH
329};
330
22b02383 331#ifdef HAVE_LIBUSB_1_0
6c290072 332struct sr_usb_device_instance {
a1bb33af
UH
333 uint8_t bus;
334 uint8_t address;
335 struct libusb_device_handle *devhdl;
336};
22b02383 337#endif
a1bb33af 338
6c290072 339struct sr_serial_device_instance {
a1bb33af
UH
340 char *port;
341 int fd;
342};
343
344/* Device instance status */
345enum {
5a2326a7 346 SR_ST_NOT_FOUND,
a1bb33af 347 /* Found, but still booting */
5a2326a7 348 SR_ST_INITIALIZING,
a1bb33af 349 /* Live, but not in use */
5a2326a7 350 SR_ST_INACTIVE,
a1bb33af 351 /* Actively in use in a session */
5a2326a7 352 SR_ST_ACTIVE,
a1bb33af
UH
353};
354
355/*
356 * TODO: This sucks, you just kinda have to "know" the returned type.
357 * TODO: Need a DI to return the number of trigger stages supported.
358 */
359
360/* Device info IDs */
361enum {
a00ba012 362 /* struct sr_device_instance for this specific device */
5a2326a7 363 SR_DI_INSTANCE,
a1bb33af 364 /* The number of probes connected to this device */
5a2326a7 365 SR_DI_NUM_PROBES,
60679b18 366 /* Samplerates supported by this device, (struct sr_samplerates) */
5a2326a7 367 SR_DI_SAMPLERATES,
a1bb33af 368 /* Types of trigger supported, out of "01crf" (char *) */
5a2326a7 369 SR_DI_TRIGGER_TYPES,
4c100f32 370 /* The currently set samplerate in Hz (uint64_t) */
5a2326a7 371 SR_DI_CUR_SAMPLERATE,
925dbf9f 372 /* Supported pattern generator modes */
5a2326a7 373 SR_DI_PATTERNMODES,
a1bb33af
UH
374};
375
1b452b85
UH
376/*
377 * A device supports either a range of samplerates with steps of a given
378 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
379 * step or list, but not both.
380 */
60679b18 381struct sr_samplerates {
a1bb33af
UH
382 uint64_t low;
383 uint64_t high;
384 uint64_t step;
385 uint64_t *list;
386};
387
5c2d46d1 388struct sr_device_plugin {
1b452b85 389 /* Plugin-specific */
a1bb33af 390 char *name;
9f8274a5 391 char *longname;
a1bb33af 392 int api_version;
54ac5277 393 int (*init) (const char *deviceinfo);
a1bb33af
UH
394 void (*cleanup) (void);
395
1b452b85 396 /* Device-specific */
86f5e3d8 397 int (*opendev) (int device_index);
697785d1 398 int (*closedev) (int device_index);
a1bb33af
UH
399 void *(*get_device_info) (int device_index, int device_info_id);
400 int (*get_status) (int device_index);
401 int *(*get_capabilities) (void);
402 int (*set_configuration) (int device_index, int capability, void *value);
403 int (*start_acquisition) (int device_index, gpointer session_device_id);
404 void (*stop_acquisition) (int device_index, gpointer session_device_id);
405};
406
2872d21e 407struct sr_session {
5c2d46d1 408 /* List of struct sr_device* */
a1bb33af
UH
409 GSList *devices;
410 /* List of struct analyzer* */
411 GSList *analyzers;
a887e3da 412 /* list of sr_receive_data_callback */
a1bb33af
UH
413 GSList *datafeed_callbacks;
414 GTimeVal starttime;
544a4582 415 gboolean running;
a1bb33af
UH
416};
417
882e2075 418#include "sigrok-proto.h"
c2bd92ec 419
a00b530c
UH
420#ifdef __cplusplus
421}
422#endif
423
a1bb33af 424#endif