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