]> sigrok.org Git - libsigrok.git/blame - sigrok.h
Add incomplete mso-19 plugin
[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>
28#include <libusb.h>
29
e31b636d
UH
30/*
31 * Status/error codes returned by libsigrok functions.
32 *
33 * All possible return codes of libsigrok functions must be listed here.
34 * Functions should never return hardcoded numbers as status, but rather
35 * use these #defines instead. All error codes are negative numbers.
36 *
37 * The error codes are globally unique in libsigrok, i.e. if one of the
2b3414a4
UH
38 * libsigrok functions returns a "malloc error" it must be exactly the same
39 * return value as used by all other functions to indicate "malloc error".
e31b636d
UH
40 * There must be no functions which indicate two different errors via the
41 * same return code.
42 *
43 * Also, for compatibility reasons, no defined return codes are ever removed
44 * or reused for different #defines later. You can only add new #defines and
45 * return codes, but never remove or redefine existing ones.
46 */
2b3414a4 47#define SIGROK_OK 0 /* No error */
e31b636d
UH
48#define SIGROK_ERR -1 /* Generic/unspecified error */
49#define SIGROK_ERR_MALLOC -2 /* Malloc/calloc/realloc error */
50#define SIGROK_ERR_SAMPLERATE -3 /* Incorrect samplerate */
a1bb33af 51
2a3f9541
BV
52/* limited by uint64_t */
53#define MAX_NUM_PROBES 64
54#define MAX_PROBENAME_LEN 32
55
56
a1bb33af 57/* Handy little macros */
d86dc674
UH
58#define KHZ(n) ((n) * 1000)
59#define MHZ(n) ((n) * 1000000)
60#define GHZ(n) ((n) * 1000000000)
a1bb33af 61
3677f3ec
DR
62#define HZ_TO_NS(n) (1000000000 / (n))
63
fdd20b52
UH
64#ifndef ARRAY_SIZE
65#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
66#endif
67
dfa4b731
DR
68#ifndef ARRAY_AND_SIZE
69#define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
70#endif
71
a1bb33af
UH
72/* Data types, used by hardware plugins for set_configuration() */
73enum {
74 T_UINT64,
75 T_CHAR,
76};
77
78enum {
79 PROTO_RAW,
80};
81
82/* (Unused) protocol decoder stack entry */
83struct protocol {
84 char *name;
85 int id;
86 int stackindex;
87};
88
89/*
1b452b85 90 * Datafeed
a1bb33af
UH
91 */
92
93/* datafeed_packet.type values */
94enum {
95 DF_HEADER,
96 DF_END,
97 DF_TRIGGER,
4c046c6b 98 DF_LOGIC,
1437e893 99 DF_ANALOG,
4c046c6b 100 DF_PD,
a1bb33af
UH
101};
102
103struct datafeed_packet {
104 uint16_t type;
e1aac231 105 uint64_t length;
4c046c6b 106 uint16_t unitsize;
a1bb33af
UH
107 void *payload;
108};
109
110struct datafeed_header {
111 int feed_version;
112 struct timeval starttime;
4c100f32 113 uint64_t samplerate;
a1bb33af 114 int protocol_id;
921e753f
DR
115 int num_analog_probes;
116 int num_logic_probes;
a1bb33af
UH
117};
118
34e4813f
BV
119/*
120 * Input
121 */
122struct input {
123 struct input_format *format;
124 void *param;
125 void *internal;
126};
127
128struct input_format {
129 char *extension;
130 char *description;
757b8c62
UH
131 int (*format_match) (const char *filename);
132 int (*in_loadfile) (const char *filename);
34e4813f
BV
133};
134
135struct input_format **input_list(void);
136
137
a1bb33af 138/*
1b452b85 139 * Output
a1bb33af
UH
140 */
141struct output {
142 struct output_format *format;
143 struct device *device;
144 char *param;
145 void *internal;
146};
147
148struct output_format {
149 char *extension;
150 char *description;
f0411b1d 151 int df_type;
5a8fda15 152 int (*init) (struct output *o);
a1bb33af
UH
153 int (*data) (struct output *o, char *data_in, uint64_t length_in,
154 char **data_out, uint64_t *length_out);
155 int (*event) (struct output *o, int event_type, char **data_out,
156 uint64_t *length_out);
157};
158
159struct output_format **output_list(void);
34e4813f
BV
160
161
a1bb33af
UH
162int filter_probes(int in_unitsize, int out_unitsize, int *probelist,
163 char *data_in, uint64_t length_in, char **data_out,
164 uint64_t *length_out);
165
25e7d9b1 166char *sigrok_samplerate_string(uint64_t samplerate);
2a3f9541 167char *sigrok_period_string(uint64_t frequency);
25e7d9b1 168
a1bb33af
UH
169/*--- analyzer.c ------------------------------------------------------------*/
170
171struct analyzer {
172 char *name;
173 char *filename;
174 /*
175 * TODO: Parameters? If so, configured plugins need another struct.
176 * TODO: Input and output format?
177 */
178};
179
180/*--- backend.c -------------------------------------------------------------*/
181
182int sigrok_init(void);
183void sigrok_cleanup(void);
184
185/*--- datastore.c -----------------------------------------------------------*/
186
187/* Size of a chunk in units */
188#define DATASTORE_CHUNKSIZE 512000
189
190struct datastore {
191 /* Size in bytes of the number of units stored in this datastore */
192 int ds_unitsize;
33247d6a 193 unsigned int num_units; /* TODO: uint64_t */
a1bb33af
UH
194 GSList *chunklist;
195};
196
2aebf78d 197int datastore_new(int unitsize, struct datastore **ds);
33247d6a 198int datastore_destroy(struct datastore *ds);
a1bb33af
UH
199void datastore_put(struct datastore *ds, void *data, unsigned int length,
200 int in_unitsize, int *probelist);
201
202/*--- debug.c ---------------------------------------------------------------*/
203
204void hexdump(unsigned char *address, int length);
205
206/*--- device.c --------------------------------------------------------------*/
207
208/*
209 * This represents a generic device connected to the system.
210 * For device-specific information, ask the plugin. The plugin_index refers
211 * to the device index within that plugin; it may be handling more than one
212 * device. All relevant plugin calls take a device_index parameter for this.
213 */
214struct device {
215 /* Which plugin handles this device */
216 struct device_plugin *plugin;
217 /* A plugin may handle multiple devices of the same type */
218 int plugin_index;
219 /* List of struct probe* */
220 GSList *probes;
221 /* Data acquired by this device, if any */
222 struct datastore *datastore;
223};
224
921e753f
DR
225enum {
226 PROBE_TYPE_LOGIC,
227 PROBE_TYPE_ANALOG,
228};
229
a1bb33af
UH
230struct probe {
231 int index;
921e753f 232 int type;
a1bb33af
UH
233 gboolean enabled;
234 char *name;
235 char *trigger;
236};
237
238extern GSList *devices;
239
240void device_scan(void);
241void device_close_all(void);
242GSList *device_list(void);
873080cc 243struct device *device_new(struct device_plugin *plugin, int plugin_index, int num_probes);
a1bb33af
UH
244void device_clear(struct device *device);
245void device_destroy(struct device *dev);
246
247void device_probe_clear(struct device *device, int probenum);
248void device_probe_add(struct device *device, char *name);
249struct probe *probe_find(struct device *device, int probenum);
250void device_probe_name(struct device *device, int probenum, char *name);
251
252void device_trigger_clear(struct device *device);
253void device_trigger_set(struct device *device, int probenum, char *trigger);
254
255/*--- hwplugin.c ------------------------------------------------------------*/
256
257/* Hardware plugin capabilities */
258enum {
1b452b85 259 HWCAP_DUMMY, /* Used to terminate lists */
a1bb33af 260 HWCAP_LOGIC_ANALYZER,
1b452b85
UH
261 HWCAP_SAMPLERATE, /* Change samplerate */
262 HWCAP_PROBECONFIG, /* Configure probe mask */
a803c0db 263 HWCAP_CAPTURE_RATIO, /* Set pre/post-trigger capture ratio */
1b452b85
UH
264 HWCAP_LIMIT_MSEC, /* Set a time limit for sample acquisition */
265 HWCAP_LIMIT_SAMPLES, /* Set a limit on number of samples */
a1bb33af
UH
266};
267
268struct hwcap_option {
269 int capability;
270 int type;
271 char *description;
272 char *shortname;
273};
274
275struct sigrok_device_instance {
276 int index;
277 int status;
278 int instance_type;
279 char *vendor;
280 char *model;
281 char *version;
8d672550 282 void *priv;
a1bb33af
UH
283 union {
284 struct usb_device_instance *usb;
285 struct serial_device_instance *serial;
286 };
287};
288
289/* sigrok_device_instance types */
290enum {
291 USB_INSTANCE,
292 SERIAL_INSTANCE,
293};
294
295struct usb_device_instance {
296 uint8_t bus;
297 uint8_t address;
298 struct libusb_device_handle *devhdl;
299};
300
301struct serial_device_instance {
302 char *port;
303 int fd;
304};
305
306/* Device instance status */
307enum {
308 ST_NOT_FOUND,
309 /* Found, but still booting */
310 ST_INITIALIZING,
311 /* Live, but not in use */
312 ST_INACTIVE,
313 /* Actively in use in a session */
314 ST_ACTIVE,
315};
316
317/*
318 * TODO: This sucks, you just kinda have to "know" the returned type.
319 * TODO: Need a DI to return the number of trigger stages supported.
320 */
321
322/* Device info IDs */
323enum {
324 /* struct sigrok_device_instance for this specific device */
325 DI_INSTANCE,
326 /* The number of probes connected to this device */
327 DI_NUM_PROBES,
4c100f32 328 /* Samplerates supported by this device, (struct samplerates) */
a1bb33af
UH
329 DI_SAMPLERATES,
330 /* Types of trigger supported, out of "01crf" (char *) */
331 DI_TRIGGER_TYPES,
4c100f32
UH
332 /* The currently set samplerate in Hz (uint64_t) */
333 DI_CUR_SAMPLERATE,
a1bb33af
UH
334};
335
1b452b85
UH
336/*
337 * A device supports either a range of samplerates with steps of a given
338 * granularity, or is limited to a set of defined samplerates. Use either
a1bb33af
UH
339 * step or list, but not both.
340 */
341struct samplerates {
342 uint64_t low;
343 uint64_t high;
344 uint64_t step;
345 uint64_t *list;
346};
347
348struct device_plugin {
1b452b85 349 /* Plugin-specific */
a1bb33af
UH
350 char *name;
351 int api_version;
352 int (*init) (char *deviceinfo);
353 void (*cleanup) (void);
354
1b452b85 355 /* Device-specific */
a1bb33af
UH
356 int (*open) (int device_index);
357 void (*close) (int device_index);
358 void *(*get_device_info) (int device_index, int device_info_id);
359 int (*get_status) (int device_index);
360 int *(*get_capabilities) (void);
361 int (*set_configuration) (int device_index, int capability, void *value);
362 int (*start_acquisition) (int device_index, gpointer session_device_id);
363 void (*stop_acquisition) (int device_index, gpointer session_device_id);
364};
365
366struct gsource_fd {
367 GSource source;
368 GPollFD gpfd;
369 /* Not really using this */
370 GSource *timeout_source;
371};
372
373typedef int (*receive_data_callback) (int fd, int revents, void *user_data);
374
375int load_hwplugins(void);
376GSList *list_hwplugins(void);
377
378/* Generic device instances */
379struct sigrok_device_instance *sigrok_device_instance_new(int index,
49d0ce50 380 int status, const char *vendor, const char *model, const char *version);
1b452b85
UH
381struct sigrok_device_instance *get_sigrok_device_instance(
382 GSList *device_instances, int device_index);
a1bb33af
UH
383void sigrok_device_instance_free(struct sigrok_device_instance *sdi);
384
385/* USB-specific instances */
386struct usb_device_instance *usb_device_instance_new(uint8_t bus,
387 uint8_t address, struct libusb_device_handle *hdl);
388void usb_device_instance_free(struct usb_device_instance *usb);
389
390/* Serial-specific instances */
49d0ce50
UH
391struct serial_device_instance *serial_device_instance_new(
392 const char *port, int fd);
a1bb33af
UH
393void serial_device_instance_free(struct serial_device_instance *serial);
394
395int find_hwcap(int *capabilities, int hwcap);
396struct hwcap_option *find_hwcap_option(int hwcap);
397void source_remove(int fd);
1b452b85
UH
398void source_add(int fd, int events, int timeout, receive_data_callback rcv_cb,
399 void *user_data);
a1bb33af
UH
400
401/*--- session.c -------------------------------------------------------------*/
402
403typedef void (*source_callback_remove) (int fd);
404typedef void (*source_callback_add) (int fd, int events, int timeout,
405 receive_data_callback callback, void *user_data);
406typedef void (*datafeed_callback) (struct device *device,
407 struct datafeed_packet *packet);
408
409struct session {
410 /* List of struct device* */
411 GSList *devices;
412 /* List of struct analyzer* */
413 GSList *analyzers;
1b452b85 414 /* Datafeed callbacks */
a1bb33af
UH
415 GSList *datafeed_callbacks;
416 GTimeVal starttime;
417};
418
419/* Session setup */
afc8e4de 420struct session *session_load(const char *filename);
a1bb33af
UH
421struct session *session_new(void);
422void session_destroy(void);
423void session_device_clear(void);
424int session_device_add(struct device *device);
425
426/* Protocol analyzers setup */
427void session_pa_clear(void);
428void session_pa_add(struct analyzer *pa);
429
430/* Datafeed setup */
431void session_datafeed_callback_clear(void);
432void session_datafeed_callback_add(datafeed_callback callback);
433
434/* Session control */
435int session_start(void);
436void session_stop(void);
437void session_bus(struct device *device, struct datafeed_packet *packet);
438void make_metadata(char *filename);
439int session_save(char *filename);
440
441/*--- hwcommon.c ------------------------------------------------------------*/
442
443int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
444int ezusb_install_firmware(libusb_device_handle *hdl, char *filename);
edf60d05
UH
445int ezusb_upload_firmware(libusb_device *dev, int configuration,
446 const char *filename);
a1bb33af
UH
447
448GSList *list_serial_ports(void);
d02a535e
BV
449int serial_open(const char *pathname, int flags);
450int serial_close(int fd);
f0551a65 451int serial_flush(int fd);
d02a535e
BV
452void *serial_backup_params(int fd);
453void serial_restore_params(int fd, void *backup);
1b452b85
UH
454int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
455 int flowcontrol);
a1bb33af 456
9a5c6dcf
UH
457/* libsigrok/hardware/common/misc.c */
458/* TODO: Should not be public. */
459int opendev2(int device_index, struct sigrok_device_instance **sdi,
460 libusb_device *dev, struct libusb_device_descriptor *des,
461 int *skip, uint16_t vid, uint16_t pid, int interface);
462int opendev3(struct sigrok_device_instance **sdi, libusb_device *dev,
463 struct libusb_device_descriptor *des,
464 uint16_t vid, uint16_t pid, int interface);
465
a1bb33af 466#endif