]> sigrok.org Git - libsigrok.git/blob - src/libsigrok-internal.h
serial_bt: support the dialog DA14580 chip (seen in TC66C)
[libsigrok.git] / src / libsigrok-internal.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 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 LIBSIGROK_LIBSIGROK_INTERNAL_H
21 #define LIBSIGROK_LIBSIGROK_INTERNAL_H
22
23 #include "config.h"
24
25 #include <glib.h>
26 #ifdef HAVE_LIBHIDAPI
27 #include <hidapi.h>
28 #endif
29 #ifdef HAVE_LIBSERIALPORT
30 #include <libserialport.h>
31 #endif
32 #ifdef HAVE_LIBUSB_1_0
33 #include <libusb.h>
34 #endif
35 #ifdef HAVE_LIBFTDI
36 #include <ftdi.h>
37 #endif
38 #include <stdarg.h>
39 #include <stdint.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42
43 struct zip;
44 struct zip_stat;
45
46 /**
47  * @file
48  *
49  * libsigrok private header file, only to be used internally.
50  */
51
52 /*--- Macros ----------------------------------------------------------------*/
53
54 #ifndef ARRAY_SIZE
55 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
56 #endif
57
58 #ifndef ARRAY_AND_SIZE
59 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
60 #endif
61
62 #ifndef G_SOURCE_FUNC
63 #define G_SOURCE_FUNC(f) ((GSourceFunc) (void (*)(void)) (f)) /* Since 2.58. */
64 #endif
65
66 #define SR_RECEIVE_DATA_CALLBACK(f) \
67         ((sr_receive_data_callback) (void (*)(void)) (f))
68
69 /**
70  * Read a 8 bits unsigned integer out of memory.
71  * @param x a pointer to the input memory
72  * @return the corresponding unsigned integer
73  */
74 static inline uint8_t read_u8(const uint8_t *p)
75 {
76         return p[0];
77 }
78 #define R8(x)   read_u8((const uint8_t *)(x))
79
80 /**
81  * Read an 8 bits signed integer out of memory.
82  * @param x a pointer to the input memory
83  * @return the corresponding signed integer
84  */
85 static inline int8_t read_i8(const uint8_t *p)
86 {
87         return (int8_t)p[0];
88 }
89
90 /**
91  * Read a 16 bits big endian unsigned integer out of memory.
92  * @param x a pointer to the input memory
93  * @return the corresponding unsigned integer
94  */
95 static inline uint16_t read_u16be(const uint8_t *p)
96 {
97         uint16_t u;
98
99         u = 0;
100         u <<= 8; u |= p[0];
101         u <<= 8; u |= p[1];
102
103         return u;
104 }
105 #define RB16(x) read_u16be((const uint8_t *)(x))
106
107 /**
108  * Read a 16 bits little endian unsigned integer out of memory.
109  * @param x a pointer to the input memory
110  * @return the corresponding unsigned integer
111  */
112 static inline uint16_t read_u16le(const uint8_t *p)
113 {
114         uint16_t u;
115
116         u = 0;
117         u <<= 8; u |= p[1];
118         u <<= 8; u |= p[0];
119
120         return u;
121 }
122 #define RL16(x) read_u16le((const uint8_t *)(x))
123
124 /**
125  * Read a 16 bits big endian signed integer out of memory.
126  * @param x a pointer to the input memory
127  * @return the corresponding signed integer
128  */
129 static inline int16_t read_i16be(const uint8_t *p)
130 {
131         uint16_t u;
132         int16_t i;
133
134         u = read_u16be(p);
135         i = (int16_t)u;
136
137         return i;
138 }
139 #define RB16S(x) read_i16be((const uint8_t *)(x))
140
141 /**
142  * Read a 16 bits little endian signed integer out of memory.
143  * @param x a pointer to the input memory
144  * @return the corresponding signed integer
145  */
146 static inline int16_t read_i16le(const uint8_t *p)
147 {
148         uint16_t u;
149         int16_t i;
150
151         u = read_u16le(p);
152         i = (int16_t)u;
153
154         return i;
155 }
156 #define RL16S(x) read_i16le((const uint8_t *)(x))
157
158 /**
159  * Read a 24 bits little endian unsigned integer out of memory.
160  * @param x a pointer to the input memory
161  * @return the corresponding unsigned integer
162  */
163 static inline uint32_t read_u24le(const uint8_t *p)
164 {
165         uint32_t u;
166
167         u = 0;
168         u <<= 8; u |= p[2];
169         u <<= 8; u |= p[1];
170         u <<= 8; u |= p[0];
171
172         return u;
173 }
174
175 /**
176  * Read a 32 bits big endian unsigned integer out of memory.
177  * @param x a pointer to the input memory
178  * @return the corresponding unsigned integer
179  */
180 static inline uint32_t read_u32be(const uint8_t *p)
181 {
182         uint32_t u;
183
184         u = 0;
185         u <<= 8; u |= p[0];
186         u <<= 8; u |= p[1];
187         u <<= 8; u |= p[2];
188         u <<= 8; u |= p[3];
189
190         return u;
191 }
192 #define RB32(x) read_u32be((const uint8_t *)(x))
193
194 /**
195  * Read a 32 bits little endian unsigned integer out of memory.
196  * @param x a pointer to the input memory
197  * @return the corresponding unsigned integer
198  */
199 static inline uint32_t read_u32le(const uint8_t *p)
200 {
201         uint32_t u;
202
203         u = 0;
204         u <<= 8; u |= p[3];
205         u <<= 8; u |= p[2];
206         u <<= 8; u |= p[1];
207         u <<= 8; u |= p[0];
208
209         return u;
210 }
211 #define RL32(x) read_u32le((const uint8_t *)(x))
212
213 /**
214  * Read a 32 bits big endian signed integer out of memory.
215  * @param x a pointer to the input memory
216  * @return the corresponding signed integer
217  */
218 static inline int32_t read_i32be(const uint8_t *p)
219 {
220         uint32_t u;
221         int32_t i;
222
223         u = read_u32be(p);
224         i = (int32_t)u;
225
226         return i;
227 }
228 #define RB32S(x) read_i32be((const uint8_t *)(x))
229
230 /**
231  * Read a 32 bits little endian signed integer out of memory.
232  * @param x a pointer to the input memory
233  * @return the corresponding signed integer
234  */
235 static inline int32_t read_i32le(const uint8_t *p)
236 {
237         uint32_t u;
238         int32_t i;
239
240         u = read_u32le(p);
241         i = (int32_t)u;
242
243         return i;
244 }
245 #define RL32S(x) read_i32le((const uint8_t *)(x))
246
247 /**
248  * Read a 64 bits big endian unsigned integer out of memory.
249  * @param x a pointer to the input memory
250  * @return the corresponding unsigned integer
251  */
252 static inline uint64_t read_u64be(const uint8_t *p)
253 {
254         uint64_t u;
255
256         u = 0;
257         u <<= 8; u |= p[0];
258         u <<= 8; u |= p[1];
259         u <<= 8; u |= p[2];
260         u <<= 8; u |= p[3];
261         u <<= 8; u |= p[4];
262         u <<= 8; u |= p[5];
263         u <<= 8; u |= p[6];
264         u <<= 8; u |= p[7];
265
266         return u;
267 }
268 #define RB64(x) read_u64be((const uint8_t *)(x))
269
270 /**
271  * Read a 64 bits little endian unsigned integer out of memory.
272  * @param x a pointer to the input memory
273  * @return the corresponding unsigned integer
274  */
275 static inline uint64_t read_u64le(const uint8_t *p)
276 {
277         uint64_t u;
278
279         u = 0;
280         u <<= 8; u |= p[7];
281         u <<= 8; u |= p[6];
282         u <<= 8; u |= p[5];
283         u <<= 8; u |= p[4];
284         u <<= 8; u |= p[3];
285         u <<= 8; u |= p[2];
286         u <<= 8; u |= p[1];
287         u <<= 8; u |= p[0];
288
289         return u;
290 }
291 #define RL64(x) read_u64le((const uint8_t *)(x))
292
293 /**
294  * Read a 64 bits big endian signed integer out of memory.
295  * @param x a pointer to the input memory
296  * @return the corresponding unsigned integer
297  */
298 static inline int64_t read_i64be(const uint8_t *p)
299 {
300         uint64_t u;
301         int64_t i;
302
303         u = read_u64be(p);
304         i = (int64_t)u;
305
306         return i;
307 }
308 #define RB64S(x) read_i64be((const uint8_t *)(x))
309
310 /**
311  * Read a 64 bits little endian signed integer out of memory.
312  * @param x a pointer to the input memory
313  * @return the corresponding unsigned integer
314  */
315 static inline int64_t read_i64le(const uint8_t *p)
316 {
317         uint64_t u;
318         int64_t i;
319
320         u = read_u64le(p);
321         i = (int64_t)u;
322
323         return i;
324 }
325 #define RL64S(x) read_i64le((const uint8_t *)(x))
326
327 /**
328  * Read a 32 bits big endian float out of memory (single precision).
329  * @param x a pointer to the input memory
330  * @return the corresponding float
331  */
332 static inline float read_fltbe(const uint8_t *p)
333 {
334         /*
335          * Implementor's note: Strictly speaking the "union" trick
336          * is not portable. But this phrase was found to work on the
337          * project's supported platforms, and serve well until a more
338          * appropriate phrase is found.
339          */
340         union { uint32_t u32; float flt; } u;
341         float f;
342
343         u.u32 = read_u32be(p);
344         f = u.flt;
345
346         return f;
347 }
348 #define RBFL(x) read_fltbe((const uint8_t *)(x))
349
350 /**
351  * Read a 32 bits little endian float out of memory (single precision).
352  * @param x a pointer to the input memory
353  * @return the corresponding float
354  */
355 static inline float read_fltle(const uint8_t *p)
356 {
357         /*
358          * Implementor's note: Strictly speaking the "union" trick
359          * is not portable. But this phrase was found to work on the
360          * project's supported platforms, and serve well until a more
361          * appropriate phrase is found.
362          */
363         union { uint32_t u32; float flt; } u;
364         float f;
365
366         u.u32 = read_u32le(p);
367         f = u.flt;
368
369         return f;
370 }
371 #define RLFL(x) read_fltle((const uint8_t *)(x))
372
373 /**
374  * Read a 64 bits big endian float out of memory (double precision).
375  * @param x a pointer to the input memory
376  * @return the corresponding floating point value
377  */
378 static inline double read_dblbe(const uint8_t *p)
379 {
380         /*
381          * Implementor's note: Strictly speaking the "union" trick
382          * is not portable. But this phrase was found to work on the
383          * project's supported platforms, and serve well until a more
384          * appropriate phrase is found.
385          */
386         union { uint64_t u64; double flt; } u;
387         double f;
388
389         u.u64 = read_u64be(p);
390         f = u.flt;
391
392         return f;
393 }
394
395 /**
396  * Read a 64 bits little endian float out of memory (double precision).
397  * @param x a pointer to the input memory
398  * @return the corresponding floating point value
399  */
400 static inline double read_dblle(const uint8_t *p)
401 {
402         /*
403          * Implementor's note: Strictly speaking the "union" trick
404          * is not portable. But this phrase was found to work on the
405          * project's supported platforms, and serve well until a more
406          * appropriate phrase is found.
407          */
408         union { uint64_t u64; double flt; } u;
409         double f;
410
411         u.u64 = read_u64le(p);
412         f = u.flt;
413
414         return f;
415 }
416 #define RLDB(x) read_dblle((const uint8_t *)(x))
417
418 /**
419  * Write a 8 bits unsigned integer to memory.
420  * @param p a pointer to the output memory
421  * @param x the input unsigned integer
422  */
423 static inline void write_u8(uint8_t *p, uint8_t x)
424 {
425         p[0] = x;
426 }
427 #define W8(p, x) write_u8((uint8_t *)(p), (uint8_t)(x))
428
429 /**
430  * Write a 16 bits unsigned integer to memory stored as big endian.
431  * @param p a pointer to the output memory
432  * @param x the input unsigned integer
433  */
434 static inline void write_u16be(uint8_t *p, uint16_t x)
435 {
436         p[1] = x & 0xff; x >>= 8;
437         p[0] = x & 0xff; x >>= 8;
438 }
439 #define WB16(p, x) write_u16be((uint8_t *)(p), (uint16_t)(x))
440
441 /**
442  * Write a 16 bits unsigned integer to memory stored as little endian.
443  * @param p a pointer to the output memory
444  * @param x the input unsigned integer
445  */
446 static inline void write_u16le(uint8_t *p, uint16_t x)
447 {
448         p[0] = x & 0xff; x >>= 8;
449         p[1] = x & 0xff; x >>= 8;
450 }
451 #define WL16(p, x) write_u16le((uint8_t *)(p), (uint16_t)(x))
452
453 /**
454  * Write a 24 bits unsigned integer to memory stored as little endian.
455  * @param p a pointer to the output memory
456  * @param x the input unsigned integer
457  */
458 static inline void write_u24le(uint8_t *p, uint32_t x)
459 {
460         p[0] = x & 0xff; x >>= 8;
461         p[1] = x & 0xff; x >>= 8;
462         p[2] = x & 0xff; x >>= 8;
463 }
464 #define WL24(p, x) write_u24le((uint8_t *)(p), (uint32_t)(x))
465
466 /**
467  * Write a 32 bits unsigned integer to memory stored as big endian.
468  * @param p a pointer to the output memory
469  * @param x the input unsigned integer
470  */
471 static inline void write_u32be(uint8_t *p, uint32_t x)
472 {
473         p[3] = x & 0xff; x >>= 8;
474         p[2] = x & 0xff; x >>= 8;
475         p[1] = x & 0xff; x >>= 8;
476         p[0] = x & 0xff; x >>= 8;
477 }
478 #define WB32(p, x) write_u32be((uint8_t *)(p), (uint32_t)(x))
479
480 /**
481  * Write a 32 bits unsigned integer to memory stored as little endian.
482  * @param p a pointer to the output memory
483  * @param x the input unsigned integer
484  */
485 static inline void write_u32le(uint8_t *p, uint32_t x)
486 {
487         p[0] = x & 0xff; x >>= 8;
488         p[1] = x & 0xff; x >>= 8;
489         p[2] = x & 0xff; x >>= 8;
490         p[3] = x & 0xff; x >>= 8;
491 }
492 #define WL32(p, x) write_u32le((uint8_t *)(p), (uint32_t)(x))
493
494 /**
495  * Write a 40 bits unsigned integer to memory stored as little endian.
496  * @param p a pointer to the output memory
497  * @param x the input unsigned integer
498  */
499 static inline void write_u40le(uint8_t *p, uint64_t x)
500 {
501         p[0] = x & 0xff; x >>= 8;
502         p[1] = x & 0xff; x >>= 8;
503         p[2] = x & 0xff; x >>= 8;
504         p[3] = x & 0xff; x >>= 8;
505         p[4] = x & 0xff; x >>= 8;
506 }
507 #define WL40(p, x) write_u40le((uint8_t *)(p), (uint64_t)(x))
508
509 /**
510  * Write a 48 bits unsigned integer to memory stored as little endian.
511  * @param p a pointer to the output memory
512  * @param x the input unsigned integer
513  */
514 static inline void write_u48le(uint8_t *p, uint64_t x)
515 {
516         p[0] = x & 0xff; x >>= 8;
517         p[1] = x & 0xff; x >>= 8;
518         p[2] = x & 0xff; x >>= 8;
519         p[3] = x & 0xff; x >>= 8;
520         p[4] = x & 0xff; x >>= 8;
521         p[5] = x & 0xff; x >>= 8;
522 }
523 #define WL48(p, x) write_u48le((uint8_t *)(p), (uint64_t)(x))
524
525 /**
526  * Write a 64 bits unsigned integer to memory stored as big endian.
527  * @param p a pointer to the output memory
528  * @param x the input unsigned integer
529  */
530 static inline void write_u64be(uint8_t *p, uint64_t x)
531 {
532         p[7] = x & 0xff; x >>= 8;
533         p[6] = x & 0xff; x >>= 8;
534         p[5] = x & 0xff; x >>= 8;
535         p[4] = x & 0xff; x >>= 8;
536         p[3] = x & 0xff; x >>= 8;
537         p[2] = x & 0xff; x >>= 8;
538         p[1] = x & 0xff; x >>= 8;
539         p[0] = x & 0xff; x >>= 8;
540 }
541
542 /**
543  * Write a 64 bits unsigned integer to memory stored as little endian.
544  * @param p a pointer to the output memory
545  * @param x the input unsigned integer
546  */
547 static inline void write_u64le(uint8_t *p, uint64_t x)
548 {
549         p[0] = x & 0xff; x >>= 8;
550         p[1] = x & 0xff; x >>= 8;
551         p[2] = x & 0xff; x >>= 8;
552         p[3] = x & 0xff; x >>= 8;
553         p[4] = x & 0xff; x >>= 8;
554         p[5] = x & 0xff; x >>= 8;
555         p[6] = x & 0xff; x >>= 8;
556         p[7] = x & 0xff; x >>= 8;
557 }
558 #define WL64(p, x) write_u64le((uint8_t *)(p), (uint64_t)(x))
559
560 /**
561  * Write a 32 bits float to memory stored as big endian.
562  * @param p a pointer to the output memory
563  * @param x the input float
564  */
565 static inline void write_fltbe(uint8_t *p, float x)
566 {
567         union { uint32_t u; float f; } u;
568         u.f = x;
569         write_u32be(p, u.u);
570 }
571 #define WBFL(p, x) write_fltbe((uint8_t *)(p), (x))
572
573 /**
574  * Write a 32 bits float to memory stored as little endian.
575  * @param p a pointer to the output memory
576  * @param x the input float
577  */
578 static inline void write_fltle(uint8_t *p, float x)
579 {
580         union { uint32_t u; float f; } u;
581         u.f = x;
582         write_u32le(p, u.u);
583 }
584 #define WLFL(p, x) write_fltle((uint8_t *)(p), float (x))
585
586 /**
587  * Write a 64 bits float to memory stored as little endian.
588  * @param p a pointer to the output memory
589  * @param x the input floating point value
590  */
591 static inline void write_dblle(uint8_t *p, double x)
592 {
593         union { uint64_t u; double f; } u;
594         u.f = x;
595         write_u64le(p, u.u);
596 }
597 #define WLDB(p, x) write_dblle((uint8_t *)(p), float (x))
598
599 /* Endianess conversion helpers with read/write position increment. */
600
601 /**
602  * Read unsigned 8bit integer from raw memory, increment read position.
603  * @param[in, out] p Pointer into byte stream.
604  * @return Retrieved integer value, unsigned.
605  */
606 static inline uint8_t read_u8_inc(const uint8_t **p)
607 {
608         uint8_t v;
609
610         if (!p || !*p)
611                 return 0;
612         v = read_u8(*p);
613         *p += sizeof(v);
614
615         return v;
616 }
617
618 /**
619  * Read unsigned 8bit integer, check length, increment read position.
620  * @param[in, out] p Pointer into byte stream.
621  * @param[in, out] l Remaining input payload length.
622  * @return Retrieved integer value, unsigned.
623  */
624 static inline uint8_t read_u8_inc_len(const uint8_t **p, size_t *l)
625 {
626         uint8_t v;
627
628         if (!p || !*p)
629                 return 0;
630         if (l && *l < sizeof(v)) {
631                 *l = 0;
632                 return 0;
633         }
634         v = read_u8(*p);
635         *p += sizeof(v);
636         if (l)
637                 *l -= sizeof(v);
638
639         return v;
640 }
641
642 /**
643  * Read signed 8bit integer from raw memory, increment read position.
644  * @param[in, out] p Pointer into byte stream.
645  * @return Retrieved integer value, signed.
646  */
647 static inline int8_t read_i8_inc(const uint8_t **p)
648 {
649         int8_t v;
650
651         if (!p || !*p)
652                 return 0;
653         v = read_i8(*p);
654         *p += sizeof(v);
655
656         return v;
657 }
658
659 /**
660  * Read unsigned 16bit integer from raw memory (big endian format), increment read position.
661  * @param[in, out] p Pointer into byte stream.
662  * @return Retrieved integer value, unsigned.
663  */
664 static inline uint16_t read_u16be_inc(const uint8_t **p)
665 {
666         uint16_t v;
667
668         if (!p || !*p)
669                 return 0;
670         v = read_u16be(*p);
671         *p += sizeof(v);
672
673         return v;
674 }
675
676 /**
677  * Read unsigned 16bit integer from raw memory (little endian format), increment read position.
678  * @param[in, out] p Pointer into byte stream.
679  * @return Retrieved integer value, unsigned.
680  */
681 static inline uint16_t read_u16le_inc(const uint8_t **p)
682 {
683         uint16_t v;
684
685         if (!p || !*p)
686                 return 0;
687         v = read_u16le(*p);
688         *p += sizeof(v);
689
690         return v;
691 }
692
693 /**
694  * Read unsigned 16bit integer (LE format), check length, increment position.
695  * @param[in, out] p Pointer into byte stream.
696  * @param[in, out] l Remaining input payload length.
697  * @return Retrieved integer value, unsigned.
698  */
699 static inline uint16_t read_u16le_inc_len(const uint8_t **p, size_t *l)
700 {
701         uint16_t v;
702
703         if (!p || !*p)
704                 return 0;
705         if (l && *l < sizeof(v)) {
706                 *l = 0;
707                 return 0;
708         }
709         v = read_u16le(*p);
710         *p += sizeof(v);
711         if (l)
712                 *l -= sizeof(v);
713
714         return v;
715 }
716
717 /**
718  * Read signed 16bit integer from raw memory (big endian format), increment read position.
719  * @param[in, out] p Pointer into byte stream.
720  * @return Retrieved integer value, signed.
721  */
722 static inline int16_t read_i16be_inc(const uint8_t **p)
723 {
724         int16_t v;
725
726         if (!p || !*p)
727                 return 0;
728         v = read_i16be(*p);
729         *p += sizeof(v);
730
731         return v;
732 }
733
734 /**
735  * Read signed 16bit integer from raw memory (little endian format), increment read position.
736  * @param[in, out] p Pointer into byte stream.
737  * @return Retrieved integer value, signed.
738  */
739 static inline int16_t read_i16le_inc(const uint8_t **p)
740 {
741         int16_t v;
742
743         if (!p || !*p)
744                 return 0;
745         v = read_i16le(*p);
746         *p += sizeof(v);
747
748         return v;
749 }
750
751 /**
752  * Read unsigned 24bit integer from raw memory (little endian format), increment read position.
753  * @param[in, out] p Pointer into byte stream.
754  * @return Retrieved integer value, unsigned.
755  */
756 static inline uint32_t read_u24le_inc(const uint8_t **p)
757 {
758         uint32_t v;
759
760         if (!p || !*p)
761                 return 0;
762         v = read_u24le(*p);
763         *p += 3 * sizeof(uint8_t);
764
765         return v;
766 }
767
768 /**
769  * Read unsigned 32bit integer from raw memory (big endian format), increment read position.
770  * @param[in, out] p Pointer into byte stream.
771  * @return Retrieved integer value, unsigned.
772  */
773 static inline uint32_t read_u32be_inc(const uint8_t **p)
774 {
775         uint32_t v;
776
777         if (!p || !*p)
778                 return 0;
779         v = read_u32be(*p);
780         *p += sizeof(v);
781
782         return v;
783 }
784
785 /**
786  * Read unsigned 32bit integer from raw memory (little endian format), increment read position.
787  * @param[in, out] p Pointer into byte stream.
788  * @return Retrieved integer value, unsigned.
789  */
790 static inline uint32_t read_u32le_inc(const uint8_t **p)
791 {
792         uint32_t v;
793
794         if (!p || !*p)
795                 return 0;
796         v = read_u32le(*p);
797         *p += sizeof(v);
798
799         return v;
800 }
801
802 /**
803  * Read signed 32bit integer from raw memory (big endian format), increment read position.
804  * @param[in, out] p Pointer into byte stream.
805  * @return Retrieved integer value, signed.
806  */
807 static inline int32_t read_i32be_inc(const uint8_t **p)
808 {
809         int32_t v;
810
811         if (!p || !*p)
812                 return 0;
813         v = read_i32be(*p);
814         *p += sizeof(v);
815
816         return v;
817 }
818
819 /**
820  * Read signed 32bit integer from raw memory (little endian format), increment read position.
821  * @param[in, out] p Pointer into byte stream.
822  * @return Retrieved integer value, signed.
823  */
824 static inline int32_t read_i32le_inc(const uint8_t **p)
825 {
826         int32_t v;
827
828         if (!p || !*p)
829                 return 0;
830         v = read_i32le(*p);
831         *p += sizeof(v);
832
833         return v;
834 }
835
836 /**
837  * Read unsigned 64bit integer from raw memory (big endian format), increment read position.
838  * @param[in, out] p Pointer into byte stream.
839  * @return Retrieved integer value, unsigned.
840  */
841 static inline uint64_t read_u64be_inc(const uint8_t **p)
842 {
843         uint64_t v;
844
845         if (!p || !*p)
846                 return 0;
847         v = read_u64be(*p);
848         *p += sizeof(v);
849
850         return v;
851 }
852
853 /**
854  * Read unsigned 64bit integer from raw memory (little endian format), increment read position.
855  * @param[in, out] p Pointer into byte stream.
856  * @return Retrieved integer value, unsigned.
857  */
858 static inline uint64_t read_u64le_inc(const uint8_t **p)
859 {
860         uint64_t v;
861
862         if (!p || !*p)
863                 return 0;
864         v = read_u64le(*p);
865         *p += sizeof(v);
866
867         return v;
868 }
869
870 /**
871  * Read 32bit float from raw memory (big endian format), increment read position.
872  * @param[in, out] p Pointer into byte stream.
873  * @return Retrieved float value.
874  */
875 static inline float read_fltbe_inc(const uint8_t **p)
876 {
877         float v;
878
879         if (!p || !*p)
880                 return 0;
881         v = read_fltbe(*p);
882         *p += sizeof(v);
883
884         return v;
885 }
886
887 /**
888  * Read 32bit float from raw memory (little endian format), increment read position.
889  * @param[in, out] p Pointer into byte stream.
890  * @return Retrieved float value.
891  */
892 static inline float read_fltle_inc(const uint8_t **p)
893 {
894         float v;
895
896         if (!p || !*p)
897                 return 0;
898         v = read_fltle(*p);
899         *p += sizeof(v);
900
901         return v;
902 }
903
904 /**
905  * Read 64bit float from raw memory (big endian format), increment read position.
906  * @param[in, out] p Pointer into byte stream.
907  * @return Retrieved float value.
908  */
909 static inline double read_dblbe_inc(const uint8_t **p)
910 {
911         double v;
912
913         if (!p || !*p)
914                 return 0;
915         v = read_dblbe(*p);
916         *p += sizeof(v);
917
918         return v;
919 }
920
921 /**
922  * Read 64bit float from raw memory (little endian format), increment read position.
923  * @param[in, out] p Pointer into byte stream.
924  * @return Retrieved float value.
925  */
926 static inline double read_dblle_inc(const uint8_t **p)
927 {
928         double v;
929
930         if (!p || !*p)
931                 return 0;
932         v = read_dblle(*p);
933         *p += sizeof(v);
934
935         return v;
936 }
937
938 /**
939  * Write unsigned 8bit integer to raw memory, increment write position.
940  * @param[in, out] p Pointer into byte stream.
941  * @param[in] x Value to write.
942  */
943 static inline void write_u8_inc(uint8_t **p, uint8_t x)
944 {
945         if (!p || !*p)
946                 return;
947         write_u8(*p, x);
948         *p += sizeof(x);
949 }
950
951 /**
952  * Write unsigned 16bit big endian integer to raw memory, increment write position.
953  * @param[in, out] p Pointer into byte stream.
954  * @param[in] x Value to write.
955  */
956 static inline void write_u16be_inc(uint8_t **p, uint16_t x)
957 {
958         if (!p || !*p)
959                 return;
960         write_u16be(*p, x);
961         *p += sizeof(x);
962 }
963
964 /**
965  * Write unsigned 16bit little endian integer to raw memory, increment write position.
966  * @param[in, out] p Pointer into byte stream.
967  * @param[in] x Value to write.
968  */
969 static inline void write_u16le_inc(uint8_t **p, uint16_t x)
970 {
971         if (!p || !*p)
972                 return;
973         write_u16le(*p, x);
974         *p += sizeof(x);
975 }
976
977 /**
978  * Write unsigned 24bit liggle endian integer to raw memory, increment write position.
979  * @param[in, out] p Pointer into byte stream.
980  * @param[in] x Value to write.
981  */
982 static inline void write_u24le_inc(uint8_t **p, uint32_t x)
983 {
984         if (!p || !*p)
985                 return;
986         write_u24le(*p, x);
987         *p += 3 * sizeof(uint8_t);
988 }
989
990 /**
991  * Write unsigned 32bit big endian integer to raw memory, increment write position.
992  * @param[in, out] p Pointer into byte stream.
993  * @param[in] x Value to write.
994  */
995 static inline void write_u32be_inc(uint8_t **p, uint32_t x)
996 {
997         if (!p || !*p)
998                 return;
999         write_u32be(*p, x);
1000         *p += sizeof(x);
1001 }
1002
1003 /**
1004  * Write unsigned 32bit little endian integer to raw memory, increment write position.
1005  * @param[in, out] p Pointer into byte stream.
1006  * @param[in] x Value to write.
1007  */
1008 static inline void write_u32le_inc(uint8_t **p, uint32_t x)
1009 {
1010         if (!p || !*p)
1011                 return;
1012         write_u32le(*p, x);
1013         *p += sizeof(x);
1014 }
1015
1016 /**
1017  * Write unsigned 40bit little endian integer to raw memory, increment write position.
1018  * @param[in, out] p Pointer into byte stream.
1019  * @param[in] x Value to write.
1020  */
1021 static inline void write_u40le_inc(uint8_t **p, uint64_t x)
1022 {
1023         if (!p || !*p)
1024                 return;
1025         write_u40le(*p, x);
1026         *p += 5 * sizeof(uint8_t);
1027 }
1028
1029 /**
1030  * Write unsigned 48bit little endian integer to raw memory, increment write position.
1031  * @param[in, out] p Pointer into byte stream.
1032  * @param[in] x Value to write.
1033  */
1034 static inline void write_u48le_inc(uint8_t **p, uint64_t x)
1035 {
1036         if (!p || !*p)
1037                 return;
1038         write_u48le(*p, x);
1039         *p += 48 / 8 * sizeof(uint8_t);
1040 }
1041
1042 /**
1043  * Write unsigned 64bit little endian integer to raw memory, increment write position.
1044  * @param[in, out] p Pointer into byte stream.
1045  * @param[in] x Value to write.
1046  */
1047 static inline void write_u64le_inc(uint8_t **p, uint64_t x)
1048 {
1049         if (!p || !*p)
1050                 return;
1051         write_u64le(*p, x);
1052         *p += sizeof(x);
1053 }
1054
1055 /**
1056  * Write single precision little endian float to raw memory, increment write position.
1057  * @param[in, out] p Pointer into byte stream.
1058  * @param[in] x Value to write.
1059  */
1060 static inline void write_fltle_inc(uint8_t **p, float x)
1061 {
1062         if (!p || !*p)
1063                 return;
1064         write_fltle(*p, x);
1065         *p += sizeof(x);
1066 }
1067
1068 /**
1069  * Write double precision little endian float to raw memory, increment write position.
1070  * @param[in, out] p Pointer into byte stream.
1071  * @param[in] x Value to write.
1072  */
1073 static inline void write_dblle_inc(uint8_t **p, double x)
1074 {
1075         if (!p || !*p)
1076                 return;
1077         write_dblle(*p, x);
1078         *p += sizeof(x);
1079 }
1080
1081 /* Portability fixes for FreeBSD. */
1082 #ifdef __FreeBSD__
1083 #define LIBUSB_CLASS_APPLICATION 0xfe
1084 #define libusb_has_capability(x) 0
1085 #define libusb_handle_events_timeout_completed(ctx, tv, c) \
1086         libusb_handle_events_timeout(ctx, tv)
1087 #endif
1088
1089 /*
1090  * Convenience for FTDI library version dependency.
1091  * - Version 1.5 introduced ftdi_tciflush(), ftdi_tcoflush(), and
1092  *   ftdi_tcioflush() all within the same commit, and deprecated
1093  *   ftdi_usb_purge_buffers() which suffered from inverse semantics.
1094  *   The API is drop-in compatible (arguments count and data types are
1095  *   identical). The libsigrok source code always flushes RX and TX at
1096  *   the same time, never individually.
1097  */
1098 #if defined HAVE_FTDI_TCIOFLUSH && HAVE_FTDI_TCIOFLUSH
1099 #  define PURGE_FTDI_BOTH ftdi_tcioflush
1100 #else
1101 #  define PURGE_FTDI_BOTH ftdi_usb_purge_buffers
1102 #endif
1103
1104 /* Static definitions of structs ending with an all-zero entry are a
1105  * problem when compiling with -Wmissing-field-initializers: GCC
1106  * suppresses the warning only with { 0 }, clang wants { } */
1107 #ifdef __clang__
1108 #define ALL_ZERO { }
1109 #else
1110 #define ALL_ZERO { 0 }
1111 #endif
1112
1113 #ifdef __APPLE__
1114 #define SR_DRIVER_LIST_SECTION "__DATA,__sr_driver_list"
1115 #else
1116 #define SR_DRIVER_LIST_SECTION "__sr_driver_list"
1117 #endif
1118
1119 #if !defined SR_DRIVER_LIST_NOREORDER && defined __has_attribute
1120 #if __has_attribute(no_reorder)
1121 #define SR_DRIVER_LIST_NOREORDER __attribute__((no_reorder))
1122 #endif
1123 #endif
1124 #if !defined SR_DRIVER_LIST_NOREORDER
1125 #define SR_DRIVER_LIST_NOREORDER /* EMPTY */
1126 #endif
1127
1128 /**
1129  * Register a list of hardware drivers.
1130  *
1131  * This macro can be used to register multiple hardware drivers to the library.
1132  * This is useful when a driver supports multiple similar but slightly
1133  * different devices that require different sr_dev_driver struct definitions.
1134  *
1135  * For registering only a single driver see SR_REGISTER_DEV_DRIVER().
1136  *
1137  * Example:
1138  * @code{c}
1139  * #define MY_DRIVER(_name) \
1140  *     &(struct sr_dev_driver){ \
1141  *         .name = _name, \
1142  *         ...
1143  *     };
1144  *
1145  * SR_REGISTER_DEV_DRIVER_LIST(my_driver_infos,
1146  *     MY_DRIVER("driver 1"),
1147  *     MY_DRIVER("driver 2"),
1148  *     ...
1149  * );
1150  * @endcode
1151  *
1152  * @param name Name to use for the driver list identifier.
1153  * @param ... Comma separated list of pointers to sr_dev_driver structs.
1154  */
1155 #define SR_REGISTER_DEV_DRIVER_LIST(name, ...) \
1156         static const struct sr_dev_driver *name[] \
1157                 SR_DRIVER_LIST_NOREORDER \
1158                 __attribute__((section (SR_DRIVER_LIST_SECTION), used, \
1159                         aligned(sizeof(struct sr_dev_driver *)))) \
1160                 = { \
1161                         __VA_ARGS__ \
1162                 };
1163
1164 /**
1165  * Register a hardware driver.
1166  *
1167  * This macro is used to register a hardware driver with the library. It has
1168  * to be used in order to make the driver accessible to applications using the
1169  * library.
1170  *
1171  * The macro invocation should be placed directly under the struct
1172  * sr_dev_driver definition.
1173  *
1174  * Example:
1175  * @code{c}
1176  * static struct sr_dev_driver driver_info = {
1177  *     .name = "driver",
1178  *     ....
1179  * };
1180  * SR_REGISTER_DEV_DRIVER(driver_info);
1181  * @endcode
1182  *
1183  * @param name Identifier name of sr_dev_driver struct to register.
1184  */
1185 #define SR_REGISTER_DEV_DRIVER(name) \
1186         SR_REGISTER_DEV_DRIVER_LIST(name##_list, &name);
1187
1188 SR_API void sr_drivers_init(struct sr_context *context);
1189
1190 struct sr_context {
1191         struct sr_dev_driver **driver_list;
1192 #ifdef HAVE_LIBUSB_1_0
1193         libusb_context *libusb_ctx;
1194 #endif
1195         sr_resource_open_callback resource_open_cb;
1196         sr_resource_close_callback resource_close_cb;
1197         sr_resource_read_callback resource_read_cb;
1198         void *resource_cb_data;
1199 };
1200
1201 /** Input module metadata keys. */
1202 enum sr_input_meta_keys {
1203         /** The input filename, if there is one. */
1204         SR_INPUT_META_FILENAME = 0x01,
1205         /** The input file's size in bytes. */
1206         SR_INPUT_META_FILESIZE = 0x02,
1207         /** The first 128 bytes of the file, provided as a GString. */
1208         SR_INPUT_META_HEADER = 0x04,
1209
1210         /** The module cannot identify a file without this metadata. */
1211         SR_INPUT_META_REQUIRED = 0x80,
1212 };
1213
1214 /** Input (file) module struct. */
1215 struct sr_input {
1216         /**
1217          * A pointer to this input module's 'struct sr_input_module'.
1218          */
1219         const struct sr_input_module *module;
1220         GString *buf;
1221         struct sr_dev_inst *sdi;
1222         gboolean sdi_ready;
1223         void *priv;
1224 };
1225
1226 /** Input (file) module driver. */
1227 struct sr_input_module {
1228         /**
1229          * A unique ID for this input module, suitable for use in command-line
1230          * clients, [a-z0-9-]. Must not be NULL.
1231          */
1232         const char *id;
1233
1234         /**
1235          * A unique name for this input module, suitable for use in GUI
1236          * clients, can contain UTF-8. Must not be NULL.
1237          */
1238         const char *name;
1239
1240         /**
1241          * A short description of the input module. Must not be NULL.
1242          *
1243          * This can be displayed by frontends, e.g. when selecting the input
1244          * module for saving a file.
1245          */
1246         const char *desc;
1247
1248         /**
1249          * A NULL terminated array of strings containing a list of file name
1250          * extensions typical for the input file format, or NULL if there is
1251          * no typical extension for this file format.
1252          */
1253         const char *const *exts;
1254
1255         /**
1256          * Zero-terminated list of metadata items the module needs to be able
1257          * to identify an input stream. Can be all-zero, if the module cannot
1258          * identify streams at all, i.e. has to be forced into use.
1259          *
1260          * Each item is one of:
1261          *   SR_INPUT_META_FILENAME
1262          *   SR_INPUT_META_FILESIZE
1263          *   SR_INPUT_META_HEADER
1264          *
1265          * If the high bit (SR_INPUT META_REQUIRED) is set, the module cannot
1266          * identify a stream without the given metadata.
1267          */
1268         const uint8_t metadata[8];
1269
1270         /**
1271          * Returns a NULL-terminated list of options this module can take.
1272          * Can be NULL, if the module has no options.
1273          */
1274         const struct sr_option *(*options) (void);
1275
1276         /**
1277          * Check if this input module can load and parse the specified stream.
1278          *
1279          * @param[in] metadata Metadata the module can use to identify the stream.
1280          * @param[out] confidence "Strength" of the detection.
1281          *   Specialized handlers can take precedence over generic/basic support.
1282          *
1283          * @retval SR_OK This module knows the format.
1284          * @retval SR_ERR_NA There wasn't enough data for this module to
1285          *   positively identify the format.
1286          * @retval SR_ERR_DATA This module knows the format, but cannot handle
1287          *   it. This means the stream is either corrupt, or indicates a
1288          *   feature that the module does not support.
1289          * @retval SR_ERR This module does not know the format.
1290          *
1291          * Lower numeric values of 'confidence' mean that the input module
1292          * stronger believes in its capability to handle this specific format.
1293          * This way, multiple input modules can claim support for a format,
1294          * and the application can pick the best match, or try fallbacks
1295          * in case of errors. This approach also copes with formats that
1296          * are unreliable to detect in the absence of magic signatures.
1297          */
1298         int (*format_match) (GHashTable *metadata, unsigned int *confidence);
1299
1300         /**
1301          * Initialize the input module.
1302          *
1303          * @retval SR_OK Success
1304          * @retval other Negative error code.
1305          */
1306         int (*init) (struct sr_input *in, GHashTable *options);
1307
1308         /**
1309          * Send data to the specified input instance.
1310          *
1311          * When an input module instance is created with sr_input_new(), this
1312          * function is used to feed data to the instance.
1313          *
1314          * As enough data gets fed into this function to completely populate
1315          * the device instance associated with this input instance, this is
1316          * guaranteed to return the moment it's ready. This gives the caller
1317          * the chance to examine the device instance, attach session callbacks
1318          * and so on.
1319          *
1320          * @retval SR_OK Success
1321          * @retval other Negative error code.
1322          */
1323         int (*receive) (struct sr_input *in, GString *buf);
1324
1325         /**
1326          * Signal the input module no more data will come.
1327          *
1328          * This will cause the module to process any data it may have buffered.
1329          * The SR_DF_END packet will also typically be sent at this time.
1330          */
1331         int (*end) (struct sr_input *in);
1332
1333         /**
1334          * Reset the input module's input handling structures.
1335          *
1336          * Causes the input module to reset its internal state so that we can
1337          * re-send the input data from the beginning without having to
1338          * re-create the entire input module.
1339          *
1340          * @retval SR_OK Success.
1341          * @retval other Negative error code.
1342          */
1343         int (*reset) (struct sr_input *in);
1344
1345         /**
1346          * This function is called after the caller is finished using
1347          * the input module, and can be used to free any internal
1348          * resources the module may keep.
1349          *
1350          * This function is optional.
1351          *
1352          * @retval SR_OK Success
1353          * @retval other Negative error code.
1354          */
1355         void (*cleanup) (struct sr_input *in);
1356 };
1357
1358 /** Output module instance. */
1359 struct sr_output {
1360         /** A pointer to this output's module. */
1361         const struct sr_output_module *module;
1362
1363         /**
1364          * The device for which this output module is creating output. This
1365          * can be used by the module to find out channel names and numbers.
1366          */
1367         const struct sr_dev_inst *sdi;
1368
1369         /**
1370          * The name of the file that the data should be written to.
1371          */
1372         const char *filename;
1373
1374         /**
1375          * A generic pointer which can be used by the module to keep internal
1376          * state between calls into its callback functions.
1377          *
1378          * For example, the module might store a pointer to a chunk of output
1379          * there, and only flush it when it reaches a certain size.
1380          */
1381         void *priv;
1382 };
1383
1384 /** Output module driver. */
1385 struct sr_output_module {
1386         /**
1387          * A unique ID for this output module, suitable for use in command-line
1388          * clients, [a-z0-9-]. Must not be NULL.
1389          */
1390         const char *id;
1391
1392         /**
1393          * A unique name for this output module, suitable for use in GUI
1394          * clients, can contain UTF-8. Must not be NULL.
1395          */
1396         const char *name;
1397
1398         /**
1399          * A short description of the output module. Must not be NULL.
1400          *
1401          * This can be displayed by frontends, e.g. when selecting the output
1402          * module for saving a file.
1403          */
1404         const char *desc;
1405
1406         /**
1407          * A NULL terminated array of strings containing a list of file name
1408          * extensions typical for the input file format, or NULL if there is
1409          * no typical extension for this file format.
1410          */
1411         const char *const *exts;
1412
1413         /**
1414          * Bitfield containing flags that describe certain properties
1415          * this output module may or may not have.
1416          * @see sr_output_flags
1417          */
1418         const uint64_t flags;
1419
1420         /**
1421          * Returns a NULL-terminated list of options this module can take.
1422          * Can be NULL, if the module has no options.
1423          */
1424         const struct sr_option *(*options) (void);
1425
1426         /**
1427          * This function is called once, at the beginning of an output stream.
1428          *
1429          * The device struct will be available in the output struct passed in,
1430          * as well as the param field -- which may be NULL or an empty string,
1431          * if no parameter was passed.
1432          *
1433          * The module can use this to initialize itself, create a struct for
1434          * keeping state and storing it in the <code>internal</code> field.
1435          *
1436          * @param o Pointer to the respective 'struct sr_output'.
1437          *
1438          * @retval SR_OK Success
1439          * @retval other Negative error code.
1440          */
1441         int (*init) (struct sr_output *o, GHashTable *options);
1442
1443         /**
1444          * This function is passed a copy of every packet in the data feed.
1445          * Any output generated by the output module in response to the
1446          * packet should be returned in a newly allocated GString
1447          * <code>out</code>, which will be freed by the caller.
1448          *
1449          * Packets not of interest to the output module can just be ignored,
1450          * and the <code>out</code> parameter set to NULL.
1451          *
1452          * @param o Pointer to the respective 'struct sr_output'.
1453          * @param sdi The device instance that generated the packet.
1454          * @param packet The complete packet.
1455          * @param out A pointer where a GString * should be stored if
1456          * the module generates output, or NULL if not.
1457          *
1458          * @retval SR_OK Success
1459          * @retval other Negative error code.
1460          */
1461         int (*receive) (const struct sr_output *o,
1462                         const struct sr_datafeed_packet *packet, GString **out);
1463
1464         /**
1465          * This function is called after the caller is finished using
1466          * the output module, and can be used to free any internal
1467          * resources the module may keep.
1468          *
1469          * @retval SR_OK Success
1470          * @retval other Negative error code.
1471          */
1472         int (*cleanup) (struct sr_output *o);
1473 };
1474
1475 /** Transform module instance. */
1476 struct sr_transform {
1477         /** A pointer to this transform's module. */
1478         const struct sr_transform_module *module;
1479
1480         /**
1481          * The device for which this transform module is used. This
1482          * can be used by the module to find out channel names and numbers.
1483          */
1484         const struct sr_dev_inst *sdi;
1485
1486         /**
1487          * A generic pointer which can be used by the module to keep internal
1488          * state between calls into its callback functions.
1489          */
1490         void *priv;
1491 };
1492
1493 struct sr_transform_module {
1494         /**
1495          * A unique ID for this transform module, suitable for use in
1496          * command-line clients, [a-z0-9-]. Must not be NULL.
1497          */
1498         const char *id;
1499
1500         /**
1501          * A unique name for this transform module, suitable for use in GUI
1502          * clients, can contain UTF-8. Must not be NULL.
1503          */
1504         const char *name;
1505
1506         /**
1507          * A short description of the transform module. Must not be NULL.
1508          *
1509          * This can be displayed by frontends, e.g. when selecting
1510          * which transform module(s) to add.
1511          */
1512         const char *desc;
1513
1514         /**
1515          * Returns a NULL-terminated list of options this transform module
1516          * can take. Can be NULL, if the transform module has no options.
1517          */
1518         const struct sr_option *(*options) (void);
1519
1520         /**
1521          * This function is called once, at the beginning of a stream.
1522          *
1523          * @param t Pointer to the respective 'struct sr_transform'.
1524          * @param options Hash table of options for this transform module.
1525          *                Can be NULL if no options are to be used.
1526          *
1527          * @retval SR_OK Success
1528          * @retval other Negative error code.
1529          */
1530         int (*init) (struct sr_transform *t, GHashTable *options);
1531
1532         /**
1533          * This function is passed a pointer to every packet in the data feed.
1534          *
1535          * It can either return (in packet_out) a pointer to another packet
1536          * (possibly the exact same packet it got as input), or NULL.
1537          *
1538          * @param t Pointer to the respective 'struct sr_transform'.
1539          * @param packet_in Pointer to a datafeed packet.
1540          * @param packet_out Pointer to the resulting datafeed packet after
1541          *                   this function was run. If NULL, the transform
1542          *                   module intentionally didn't output a new packet.
1543          *
1544          * @retval SR_OK Success
1545          * @retval other Negative error code.
1546          */
1547         int (*receive) (const struct sr_transform *t,
1548                         struct sr_datafeed_packet *packet_in,
1549                         struct sr_datafeed_packet **packet_out);
1550
1551         /**
1552          * This function is called after the caller is finished using
1553          * the transform module, and can be used to free any internal
1554          * resources the module may keep.
1555          *
1556          * @retval SR_OK Success
1557          * @retval other Negative error code.
1558          */
1559         int (*cleanup) (struct sr_transform *t);
1560 };
1561
1562 #ifdef HAVE_LIBUSB_1_0
1563 /** USB device instance */
1564 struct sr_usb_dev_inst {
1565         /** USB bus */
1566         uint8_t bus;
1567         /** Device address on USB bus */
1568         uint8_t address;
1569         /** libusb device handle */
1570         struct libusb_device_handle *devhdl;
1571 };
1572 #endif
1573
1574 struct sr_serial_dev_inst;
1575 #ifdef HAVE_SERIAL_COMM
1576 struct ser_lib_functions;
1577 struct ser_hid_chip_functions;
1578 struct sr_bt_desc;
1579 typedef void (*serial_rx_chunk_callback)(struct sr_serial_dev_inst *serial,
1580         void *cb_data, const void *buf, size_t count);
1581 struct sr_serial_dev_inst {
1582         /** Port name, e.g. '/dev/tty42'. */
1583         char *port;
1584         /** Comm params for serial_set_paramstr(). */
1585         char *serialcomm;
1586         struct ser_lib_functions *lib_funcs;
1587         struct {
1588                 int bit_rate;
1589                 int data_bits;
1590                 int parity_bits;
1591                 int stop_bits;
1592         } comm_params;
1593         GString *rcv_buffer;
1594         serial_rx_chunk_callback rx_chunk_cb_func;
1595         void *rx_chunk_cb_data;
1596 #ifdef HAVE_LIBSERIALPORT
1597         /** libserialport port handle */
1598         struct sp_port *sp_data;
1599 #endif
1600 #ifdef HAVE_LIBHIDAPI
1601         enum ser_hid_chip_t {
1602                 SER_HID_CHIP_UNKNOWN,           /**!< place holder */
1603                 SER_HID_CHIP_BTC_BU86X,         /**!< Brymen BU86x */
1604                 SER_HID_CHIP_SIL_CP2110,        /**!< SiLabs CP2110 */
1605                 SER_HID_CHIP_VICTOR_DMM,        /**!< Victor 70/86 DMM cable */
1606                 SER_HID_CHIP_WCH_CH9325,        /**!< WCH CH9325 */
1607                 SER_HID_CHIP_LAST,              /**!< sentinel */
1608         } hid_chip;
1609         struct ser_hid_chip_functions *hid_chip_funcs;
1610         char *usb_path;
1611         char *usb_serno;
1612         const char *hid_path;
1613         hid_device *hid_dev;
1614         GSList *hid_source_args;
1615 #endif
1616 #ifdef HAVE_BLUETOOTH
1617         enum ser_bt_conn_t {
1618                 SER_BT_CONN_UNKNOWN,    /**!< place holder */
1619                 SER_BT_CONN_RFCOMM,     /**!< BT classic, RFCOMM channel */
1620                 SER_BT_CONN_BLE122,     /**!< BLE, BLE122 module, indications */
1621                 SER_BT_CONN_NRF51,      /**!< BLE, Nordic nRF51, notifications */
1622                 SER_BT_CONN_CC254x,     /**!< BLE, TI CC254x, notifications */
1623                 SER_BT_CONN_AC6328,     /**!< BLE, JL AC6328B, notifications */
1624                 SER_BT_CONN_DIALOG,     /**!< BLE, dialog DA14580, notifications */
1625                 SER_BT_CONN_NOTIFY,     /**!< BLE, generic notifications */
1626                 SER_BT_CONN_MAX,        /**!< sentinel */
1627         } bt_conn_type;
1628         char *bt_addr_local;
1629         char *bt_addr_remote;
1630         size_t bt_rfcomm_channel;
1631         uint16_t bt_notify_handle_read;
1632         uint16_t bt_notify_handle_write;
1633         uint16_t bt_notify_handle_cccd;
1634         uint16_t bt_notify_value_cccd;
1635         uint16_t bt_ble_mtu;
1636         struct sr_bt_desc *bt_desc;
1637         GSList *bt_source_args;
1638 #endif
1639 };
1640 #endif
1641
1642 struct sr_usbtmc_dev_inst {
1643         char *device;
1644         int fd;
1645 };
1646
1647 /* Private driver context. */
1648 struct drv_context {
1649         /** sigrok context */
1650         struct sr_context *sr_ctx;
1651         GSList *instances;
1652 };
1653
1654 /*--- log.c -----------------------------------------------------------------*/
1655
1656 #if defined(_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
1657 /*
1658  * On MinGW, we need to specify the gnu_printf format flavor or GCC
1659  * will assume non-standard Microsoft printf syntax.
1660  */
1661 SR_PRIV int sr_log(int loglevel, const char *format, ...)
1662                 __attribute__((__format__ (__gnu_printf__, 2, 3)));
1663 #else
1664 SR_PRIV int sr_log(int loglevel, const char *format, ...) G_GNUC_PRINTF(2, 3);
1665 #endif
1666
1667 /* Message logging helpers with subsystem-specific prefix string. */
1668 #define sr_spew(...)    sr_log(SR_LOG_SPEW, LOG_PREFIX ": " __VA_ARGS__)
1669 #define sr_dbg(...)     sr_log(SR_LOG_DBG,  LOG_PREFIX ": " __VA_ARGS__)
1670 #define sr_info(...)    sr_log(SR_LOG_INFO, LOG_PREFIX ": " __VA_ARGS__)
1671 #define sr_warn(...)    sr_log(SR_LOG_WARN, LOG_PREFIX ": " __VA_ARGS__)
1672 #define sr_err(...)     sr_log(SR_LOG_ERR,  LOG_PREFIX ": " __VA_ARGS__)
1673
1674 /*--- device.c --------------------------------------------------------------*/
1675
1676 /** Scan options supported by a driver. */
1677 #define SR_CONF_SCAN_OPTIONS 0x7FFF0000
1678
1679 /** Device options for a particular device. */
1680 #define SR_CONF_DEVICE_OPTIONS 0x7FFF0001
1681
1682 /** Mask for separating config keys from capabilities. */
1683 #define SR_CONF_MASK 0x1fffffff
1684
1685 /** Values for the changes argument of sr_dev_driver.config_channel_set. */
1686 enum {
1687         /** The enabled state of the channel has been changed. */
1688         SR_CHANNEL_SET_ENABLED = 1 << 0,
1689 };
1690
1691 SR_PRIV struct sr_channel *sr_channel_new(struct sr_dev_inst *sdi,
1692                 int index, int type, gboolean enabled, const char *name);
1693 SR_PRIV void sr_channel_free(struct sr_channel *ch);
1694 SR_PRIV void sr_channel_free_cb(void *p);
1695 SR_PRIV struct sr_channel *sr_next_enabled_channel(const struct sr_dev_inst *sdi,
1696                 struct sr_channel *cur_channel);
1697 SR_PRIV gboolean sr_channels_differ(struct sr_channel *ch1, struct sr_channel *ch2);
1698 SR_PRIV gboolean sr_channel_lists_differ(GSList *l1, GSList *l2);
1699
1700 SR_PRIV struct sr_channel_group *sr_channel_group_new(struct sr_dev_inst *sdi,
1701         const char *name, void *priv);
1702 SR_PRIV void sr_channel_group_free(struct sr_channel_group *cg);
1703 SR_PRIV void sr_channel_group_free_cb(void *cg);
1704
1705 /** Device instance data */
1706 struct sr_dev_inst {
1707         /** Device driver. */
1708         struct sr_dev_driver *driver;
1709         /** Device instance status. SR_ST_NOT_FOUND, etc. */
1710         int status;
1711         /** Device instance type. SR_INST_USB, etc. */
1712         int inst_type;
1713         /** Device vendor. */
1714         char *vendor;
1715         /** Device model. */
1716         char *model;
1717         /** Device version. */
1718         char *version;
1719         /** Serial number. */
1720         char *serial_num;
1721         /** Connection string to uniquely identify devices. */
1722         char *connection_id;
1723         /** List of channels. */
1724         GSList *channels;
1725         /** List of sr_channel_group structs */
1726         GSList *channel_groups;
1727         /** Device instance connection data (used?) */
1728         void *conn;
1729         /** Device instance private data (used?) */
1730         void *priv;
1731         /** Session to which this device is currently assigned. */
1732         struct sr_session *session;
1733 };
1734
1735 /* Generic device instances */
1736 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
1737
1738 #ifdef HAVE_LIBUSB_1_0
1739 /* USB-specific instances */
1740 SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
1741                 uint8_t address, struct libusb_device_handle *hdl);
1742 SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb);
1743 SR_PRIV void sr_usb_dev_inst_free_cb(gpointer p); /* Glib wrapper. */
1744 #endif
1745
1746 #ifdef HAVE_SERIAL_COMM
1747 #ifndef HAVE_LIBSERIALPORT
1748 /*
1749  * Some identifiers which initially got provided by libserialport are
1750  * used internally within the libsigrok serial layer's implementation,
1751  * while libserialport no longer is the exclusive provider of serial
1752  * communication support. Declare the identifiers here so they remain
1753  * available across all build configurations.
1754  */
1755 enum libsp_parity {
1756         SP_PARITY_NONE = 0,
1757         SP_PARITY_ODD = 1,
1758         SP_PARITY_EVEN = 2,
1759         SP_PARITY_MARK = 3,
1760         SP_PARITY_SPACE = 4,
1761 };
1762
1763 enum libsp_flowcontrol {
1764         SP_FLOWCONTROL_NONE = 0,
1765         SP_FLOWCONTROL_XONXOFF = 1,
1766         SP_FLOWCONTROL_RTSCTS = 2,
1767         SP_FLOWCONTROL_DTRDSR = 3,
1768 };
1769 #endif
1770
1771 /* Serial-specific instances */
1772 SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
1773                 const char *serialcomm);
1774 SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial);
1775 #endif
1776
1777 /* USBTMC-specific instances */
1778 SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device);
1779 SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc);
1780
1781 /*--- hwdriver.c ------------------------------------------------------------*/
1782
1783 SR_PRIV const GVariantType *sr_variant_type_get(int datatype);
1784 SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *data);
1785 SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx);
1786 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data);
1787 SR_PRIV void sr_config_free(struct sr_config *src);
1788 SR_PRIV int sr_dev_acquisition_start(struct sr_dev_inst *sdi);
1789 SR_PRIV int sr_dev_acquisition_stop(struct sr_dev_inst *sdi);
1790
1791 /*--- session.c -------------------------------------------------------------*/
1792
1793 struct sr_session {
1794         /** Context this session exists in. */
1795         struct sr_context *ctx;
1796         /** List of struct sr_dev_inst pointers. */
1797         GSList *devs;
1798         /** List of struct sr_dev_inst pointers owned by this session. */
1799         GSList *owned_devs;
1800         /** List of struct datafeed_callback pointers. */
1801         GSList *datafeed_callbacks;
1802         GSList *transforms;
1803         struct sr_trigger *trigger;
1804
1805         /** Callback to invoke on session stop. */
1806         sr_session_stopped_callback stopped_callback;
1807         /** User data to be passed to the session stop callback. */
1808         void *stopped_cb_data;
1809
1810         /** Mutex protecting the main context pointer. */
1811         GMutex main_mutex;
1812         /** Context of the session main loop. */
1813         GMainContext *main_context;
1814
1815         /** Registered event sources for this session. */
1816         GHashTable *event_sources;
1817         /** Session main loop. */
1818         GMainLoop *main_loop;
1819         /** ID of idle source for dispatching the session stop notification. */
1820         unsigned int stop_check_id;
1821         /** Whether the session has been started. */
1822         gboolean running;
1823 };
1824
1825 SR_PRIV int sr_session_source_add_internal(struct sr_session *session,
1826                 void *key, GSource *source);
1827 SR_PRIV int sr_session_source_remove_internal(struct sr_session *session,
1828                 void *key);
1829 SR_PRIV int sr_session_source_destroyed(struct sr_session *session,
1830                 void *key, GSource *source);
1831 SR_PRIV int sr_session_fd_source_add(struct sr_session *session,
1832                 void *key, gintptr fd, int events, int timeout,
1833                 sr_receive_data_callback cb, void *cb_data);
1834
1835 SR_PRIV int sr_session_source_add(struct sr_session *session, int fd,
1836                 int events, int timeout, sr_receive_data_callback cb, void *cb_data);
1837 SR_PRIV int sr_session_source_add_pollfd(struct sr_session *session,
1838                 GPollFD *pollfd, int timeout, sr_receive_data_callback cb,
1839                 void *cb_data);
1840 SR_PRIV int sr_session_source_add_channel(struct sr_session *session,
1841                 GIOChannel *channel, int events, int timeout,
1842                 sr_receive_data_callback cb, void *cb_data);
1843 SR_PRIV int sr_session_source_remove(struct sr_session *session, int fd);
1844 SR_PRIV int sr_session_source_remove_pollfd(struct sr_session *session,
1845                 GPollFD *pollfd);
1846 SR_PRIV int sr_session_source_remove_channel(struct sr_session *session,
1847                 GIOChannel *channel);
1848
1849 SR_PRIV int sr_session_send_meta(const struct sr_dev_inst *sdi,
1850                 uint32_t key, GVariant *var);
1851 SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
1852                 const struct sr_datafeed_packet *packet);
1853 SR_PRIV int sr_sessionfile_check(const char *filename);
1854 SR_PRIV struct sr_dev_inst *sr_session_prepare_sdi(const char *filename,
1855                 struct sr_session **session);
1856
1857 /*--- session_file.c --------------------------------------------------------*/
1858
1859 #if !HAVE_ZIP_DISCARD
1860 /* Replace zip_discard() if not available. */
1861 #define zip_discard(zip) sr_zip_discard(zip)
1862 SR_PRIV void sr_zip_discard(struct zip *archive);
1863 #endif
1864
1865 SR_PRIV GKeyFile *sr_sessionfile_read_metadata(struct zip *archive,
1866                         const struct zip_stat *entry);
1867
1868 /*--- analog.c --------------------------------------------------------------*/
1869
1870 SR_PRIV int sr_analog_init(struct sr_datafeed_analog *analog,
1871                            struct sr_analog_encoding *encoding,
1872                            struct sr_analog_meaning *meaning,
1873                            struct sr_analog_spec *spec,
1874                            int digits);
1875
1876 /*--- std.c -----------------------------------------------------------------*/
1877
1878 typedef int (*dev_close_callback)(struct sr_dev_inst *sdi);
1879 typedef void (*std_dev_clear_callback)(void *priv);
1880
1881 SR_PRIV int std_init(struct sr_dev_driver *di, struct sr_context *sr_ctx);
1882 SR_PRIV int std_cleanup(const struct sr_dev_driver *di);
1883 SR_PRIV int std_dummy_dev_open(struct sr_dev_inst *sdi);
1884 SR_PRIV int std_dummy_dev_close(struct sr_dev_inst *sdi);
1885 SR_PRIV int std_dummy_dev_acquisition_start(const struct sr_dev_inst *sdi);
1886 SR_PRIV int std_dummy_dev_acquisition_stop(struct sr_dev_inst *sdi);
1887 #ifdef HAVE_SERIAL_COMM
1888 SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi);
1889 SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi);
1890 #endif
1891 SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi);
1892 SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi);
1893 SR_PRIV int std_session_send_df_trigger(const struct sr_dev_inst *sdi);
1894 SR_PRIV int std_session_send_df_frame_begin(const struct sr_dev_inst *sdi);
1895 SR_PRIV int std_session_send_df_frame_end(const struct sr_dev_inst *sdi);
1896 SR_PRIV int std_dev_clear_with_callback(const struct sr_dev_driver *driver,
1897                 std_dev_clear_callback clear_private);
1898 SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver);
1899 SR_PRIV GSList *std_dev_list(const struct sr_dev_driver *di);
1900 SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi);
1901 SR_PRIV GSList *std_scan_complete(struct sr_dev_driver *di, GSList *devices);
1902
1903 SR_PRIV int std_opts_config_list(uint32_t key, GVariant **data,
1904         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg,
1905         const uint32_t scanopts[], size_t scansize, const uint32_t drvopts[],
1906         size_t drvsize, const uint32_t devopts[], size_t devsize);
1907
1908 extern SR_PRIV const uint32_t NO_OPTS[1];
1909
1910 #define STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts) \
1911         std_opts_config_list(key, data, sdi, cg, ARRAY_AND_SIZE(scanopts), \
1912                 ARRAY_AND_SIZE(drvopts), ARRAY_AND_SIZE(devopts))
1913
1914 SR_PRIV GVariant *std_gvar_tuple_array(const uint64_t a[][2], unsigned int n);
1915 SR_PRIV GVariant *std_gvar_tuple_rational(const struct sr_rational *r, unsigned int n);
1916 SR_PRIV GVariant *std_gvar_samplerates(const uint64_t samplerates[], unsigned int n);
1917 SR_PRIV GVariant *std_gvar_samplerates_steps(const uint64_t samplerates[], unsigned int n);
1918 SR_PRIV GVariant *std_gvar_min_max_step(double min, double max, double step);
1919 SR_PRIV GVariant *std_gvar_min_max_step_array(const double a[3]);
1920 SR_PRIV GVariant *std_gvar_min_max_step_thresholds(const double dmin, const double dmax, const double dstep);
1921
1922 SR_PRIV GVariant *std_gvar_tuple_u64(uint64_t low, uint64_t high);
1923 SR_PRIV GVariant *std_gvar_tuple_double(double low, double high);
1924
1925 SR_PRIV GVariant *std_gvar_array_i32(const int32_t a[], unsigned int n);
1926 SR_PRIV GVariant *std_gvar_array_u32(const uint32_t a[], unsigned int n);
1927 SR_PRIV GVariant *std_gvar_array_u64(const uint64_t a[], unsigned int n);
1928 SR_PRIV GVariant *std_gvar_array_str(const char *a[], unsigned int n);
1929
1930 SR_PRIV GVariant *std_gvar_thresholds(const double a[][2], unsigned int n);
1931
1932 SR_PRIV int std_str_idx(GVariant *data, const char *a[], unsigned int n);
1933 SR_PRIV int std_u64_idx(GVariant *data, const uint64_t a[], unsigned int n);
1934 SR_PRIV int std_u8_idx(GVariant *data, const uint8_t a[], unsigned int n);
1935
1936 SR_PRIV int std_str_idx_s(const char *s, const char *a[], unsigned int n);
1937 SR_PRIV int std_u8_idx_s(uint8_t b, const uint8_t a[], unsigned int n);
1938
1939 SR_PRIV int std_u64_tuple_idx(GVariant *data, const uint64_t a[][2], unsigned int n);
1940 SR_PRIV int std_double_tuple_idx(GVariant *data, const double a[][2], unsigned int n);
1941 SR_PRIV int std_double_tuple_idx_d0(const double d, const double a[][2], unsigned int n);
1942
1943 SR_PRIV int std_cg_idx(const struct sr_channel_group *cg, struct sr_channel_group *a[], unsigned int n);
1944
1945 SR_PRIV int std_dummy_set_params(struct sr_serial_dev_inst *serial,
1946         int baudrate, int bits, int parity, int stopbits,
1947         int flowcontrol, int rts, int dtr);
1948 SR_PRIV int std_dummy_set_handshake(struct sr_serial_dev_inst *serial,
1949         int rts, int dtr);
1950
1951 /*--- resource.c ------------------------------------------------------------*/
1952
1953 SR_PRIV int64_t sr_file_get_size(FILE *file);
1954
1955 SR_PRIV int sr_resource_open(struct sr_context *ctx,
1956                 struct sr_resource *res, int type, const char *name)
1957                 G_GNUC_WARN_UNUSED_RESULT;
1958 SR_PRIV int sr_resource_close(struct sr_context *ctx,
1959                 struct sr_resource *res);
1960 SR_PRIV gssize sr_resource_read(struct sr_context *ctx,
1961                 const struct sr_resource *res, void *buf, size_t count)
1962                 G_GNUC_WARN_UNUSED_RESULT;
1963 SR_PRIV void *sr_resource_load(struct sr_context *ctx, int type,
1964                 const char *name, size_t *size, size_t max_size)
1965                 G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
1966
1967 /*--- strutil.c -------------------------------------------------------------*/
1968
1969 SR_PRIV int sr_atol(const char *str, long *ret);
1970 SR_PRIV int sr_atol_base(const char *str, long *ret, char **end, int base);
1971 SR_PRIV int sr_atoul_base(const char *str, unsigned long *ret, char **end, int base);
1972 SR_PRIV int sr_atoi(const char *str, int *ret);
1973 SR_PRIV int sr_atod(const char *str, double *ret);
1974 SR_PRIV int sr_atof(const char *str, float *ret);
1975 SR_PRIV int sr_atod_ascii(const char *str, double *ret);
1976 SR_PRIV int sr_atod_ascii_digits(const char *str, double *ret, int *digits);
1977 SR_PRIV int sr_atof_ascii(const char *str, float *ret);
1978
1979 SR_PRIV GString *sr_hexdump_new(const uint8_t *data, const size_t len);
1980 SR_PRIV void sr_hexdump_free(GString *s);
1981
1982 /*--- soft-trigger.c --------------------------------------------------------*/
1983
1984 struct soft_trigger_logic {
1985         const struct sr_dev_inst *sdi;
1986         const struct sr_trigger *trigger;
1987         int count;
1988         int unitsize;
1989         int cur_stage;
1990         uint8_t *prev_sample;
1991         uint8_t *pre_trigger_buffer;
1992         uint8_t *pre_trigger_head;
1993         int pre_trigger_size;
1994         int pre_trigger_fill;
1995 };
1996
1997 SR_PRIV int logic_channel_unitsize(GSList *channels);
1998 SR_PRIV struct soft_trigger_logic *soft_trigger_logic_new(
1999                 const struct sr_dev_inst *sdi, struct sr_trigger *trigger,
2000                 int pre_trigger_samples);
2001 SR_PRIV void soft_trigger_logic_free(struct soft_trigger_logic *st);
2002 SR_PRIV int soft_trigger_logic_check(struct soft_trigger_logic *st, uint8_t *buf,
2003                 int len, int *pre_trigger_samples);
2004
2005 /*--- serial.c --------------------------------------------------------------*/
2006
2007 #ifdef HAVE_SERIAL_COMM
2008 enum {
2009         SERIAL_RDWR = 1,
2010         SERIAL_RDONLY = 2,
2011 };
2012
2013 typedef gboolean (*packet_valid_callback)(const uint8_t *buf);
2014 typedef int (*packet_valid_len_callback)(void *st,
2015         const uint8_t *p, size_t l, size_t *pl);
2016
2017 typedef GSList *(*sr_ser_list_append_t)(GSList *devs, const char *name,
2018                 const char *desc);
2019 typedef GSList *(*sr_ser_find_append_t)(GSList *devs, const char *name);
2020
2021 SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags);
2022 SR_PRIV int serial_close(struct sr_serial_dev_inst *serial);
2023 SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial);
2024 SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial);
2025 SR_PRIV size_t serial_has_receive_data(struct sr_serial_dev_inst *serial);
2026 SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
2027                 const void *buf, size_t count, unsigned int timeout_ms);
2028 SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
2029                 const void *buf, size_t count);
2030 SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial, void *buf,
2031                 size_t count, unsigned int timeout_ms);
2032 SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial, void *buf,
2033                 size_t count);
2034 SR_PRIV int serial_set_read_chunk_cb(struct sr_serial_dev_inst *serial,
2035                 serial_rx_chunk_callback cb, void *cb_data);
2036 SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
2037                 int bits, int parity, int stopbits, int flowcontrol, int rts, int dtr);
2038 SR_PRIV int serial_set_handshake(struct sr_serial_dev_inst *serial,
2039                 int rts, int dtr);
2040 SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
2041                 const char *paramstr);
2042 SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial, char **buf,
2043                 int *buflen, gint64 timeout_ms);
2044 SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
2045                 uint8_t *buf, size_t *buflen,
2046                 size_t packet_size, packet_valid_callback is_valid,
2047                 packet_valid_len_callback is_valid_len, size_t *return_size,
2048                 uint64_t timeout_ms);
2049 SR_PRIV int serial_source_add(struct sr_session *session,
2050                 struct sr_serial_dev_inst *serial, int events, int timeout,
2051                 sr_receive_data_callback cb, void *cb_data);
2052 SR_PRIV int serial_source_remove(struct sr_session *session,
2053                 struct sr_serial_dev_inst *serial);
2054 SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id);
2055 SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes);
2056
2057 SR_PRIV void sr_ser_discard_queued_data(struct sr_serial_dev_inst *serial);
2058 SR_PRIV size_t sr_ser_has_queued_data(struct sr_serial_dev_inst *serial);
2059 SR_PRIV void sr_ser_queue_rx_data(struct sr_serial_dev_inst *serial,
2060                 const uint8_t *data, size_t len);
2061 SR_PRIV size_t sr_ser_unqueue_rx_data(struct sr_serial_dev_inst *serial,
2062                 uint8_t *data, size_t len);
2063
2064 struct ser_lib_functions {
2065         int (*open)(struct sr_serial_dev_inst *serial, int flags);
2066         int (*close)(struct sr_serial_dev_inst *serial);
2067         int (*flush)(struct sr_serial_dev_inst *serial);
2068         int (*drain)(struct sr_serial_dev_inst *serial);
2069         int (*write)(struct sr_serial_dev_inst *serial,
2070                         const void *buf, size_t count,
2071                         int nonblocking, unsigned int timeout_ms);
2072         int (*read)(struct sr_serial_dev_inst *serial,
2073                         void *buf, size_t count,
2074                         int nonblocking, unsigned int timeout_ms);
2075         int (*set_params)(struct sr_serial_dev_inst *serial,
2076                         int baudrate, int bits, int parity, int stopbits,
2077                         int flowcontrol, int rts, int dtr);
2078         int (*set_handshake)(struct sr_serial_dev_inst *serial,
2079                         int rts, int dtr);
2080         int (*setup_source_add)(struct sr_session *session,
2081                         struct sr_serial_dev_inst *serial,
2082                         int events, int timeout,
2083                         sr_receive_data_callback cb, void *cb_data);
2084         int (*setup_source_remove)(struct sr_session *session,
2085                         struct sr_serial_dev_inst *serial);
2086         GSList *(*list)(GSList *list, sr_ser_list_append_t append);
2087         GSList *(*find_usb)(GSList *list, sr_ser_find_append_t append,
2088                         uint16_t vendor_id, uint16_t product_id);
2089         int (*get_frame_format)(struct sr_serial_dev_inst *serial,
2090                         int *baud, int *bits);
2091         size_t (*get_rx_avail)(struct sr_serial_dev_inst *serial);
2092 };
2093 extern SR_PRIV struct ser_lib_functions *ser_lib_funcs_libsp;
2094 SR_PRIV int ser_name_is_hid(struct sr_serial_dev_inst *serial);
2095 extern SR_PRIV struct ser_lib_functions *ser_lib_funcs_hid;
2096 SR_PRIV int ser_name_is_bt(struct sr_serial_dev_inst *serial);
2097 extern SR_PRIV struct ser_lib_functions *ser_lib_funcs_bt;
2098
2099 #ifdef HAVE_LIBHIDAPI
2100 struct vid_pid_item {
2101         uint16_t vid, pid;
2102 };
2103
2104 struct ser_hid_chip_functions {
2105         const char *chipname;
2106         const char *chipdesc;
2107         const struct vid_pid_item *vid_pid_items;
2108         const int max_bytes_per_request;
2109         int (*set_params)(struct sr_serial_dev_inst *serial,
2110                         int baudrate, int bits, int parity, int stopbits,
2111                         int flowcontrol, int rts, int dtr);
2112         int (*read_bytes)(struct sr_serial_dev_inst *serial,
2113                         uint8_t *data, int space, unsigned int timeout);
2114         int (*write_bytes)(struct sr_serial_dev_inst *serial,
2115                         const uint8_t *data, int space);
2116         int (*flush)(struct sr_serial_dev_inst *serial);
2117         int (*drain)(struct sr_serial_dev_inst *serial);
2118 };
2119 extern SR_PRIV struct ser_hid_chip_functions *ser_hid_chip_funcs_bu86x;
2120 extern SR_PRIV struct ser_hid_chip_functions *ser_hid_chip_funcs_ch9325;
2121 extern SR_PRIV struct ser_hid_chip_functions *ser_hid_chip_funcs_cp2110;
2122 extern SR_PRIV struct ser_hid_chip_functions *ser_hid_chip_funcs_victor;
2123 SR_PRIV const char *ser_hid_chip_find_name_vid_pid(uint16_t vid, uint16_t pid);
2124 #endif
2125 #endif
2126
2127 SR_PRIV int sr_serial_extract_options(GSList *options,
2128         const char **serial_device, const char **serial_options);
2129
2130 /*--- bt/ API ---------------------------------------------------------------*/
2131
2132 #ifdef HAVE_BLUETOOTH
2133 SR_PRIV const char *sr_bt_adapter_get_address(size_t idx);
2134
2135 struct sr_bt_desc;
2136 typedef void (*sr_bt_scan_cb)(void *cb_data, const char *addr, const char *name);
2137 typedef int (*sr_bt_data_cb)(void *cb_data, uint8_t *data, size_t dlen);
2138
2139 SR_PRIV struct sr_bt_desc *sr_bt_desc_new(void);
2140 SR_PRIV void sr_bt_desc_free(struct sr_bt_desc *desc);
2141
2142 SR_PRIV int sr_bt_config_cb_scan(struct sr_bt_desc *desc,
2143         sr_bt_scan_cb cb, void *cb_data);
2144 SR_PRIV int sr_bt_config_cb_data(struct sr_bt_desc *desc,
2145         sr_bt_data_cb cb, void *cb_data);
2146 SR_PRIV int sr_bt_config_addr_local(struct sr_bt_desc *desc, const char *addr);
2147 SR_PRIV int sr_bt_config_addr_remote(struct sr_bt_desc *desc, const char *addr);
2148 SR_PRIV int sr_bt_config_rfcomm(struct sr_bt_desc *desc, size_t channel);
2149 SR_PRIV int sr_bt_config_notify(struct sr_bt_desc *desc,
2150         uint16_t read_handle, uint16_t write_handle,
2151         uint16_t cccd_handle, uint16_t cccd_value,
2152         uint16_t ble_mtu);
2153
2154 SR_PRIV int sr_bt_scan_le(struct sr_bt_desc *desc, int duration);
2155 SR_PRIV int sr_bt_scan_bt(struct sr_bt_desc *desc, int duration);
2156
2157 SR_PRIV int sr_bt_connect_ble(struct sr_bt_desc *desc);
2158 SR_PRIV int sr_bt_connect_rfcomm(struct sr_bt_desc *desc);
2159 SR_PRIV void sr_bt_disconnect(struct sr_bt_desc *desc);
2160
2161 SR_PRIV ssize_t sr_bt_read(struct sr_bt_desc *desc,
2162         void *data, size_t len);
2163 SR_PRIV ssize_t sr_bt_write(struct sr_bt_desc *desc,
2164         const void *data, size_t len);
2165
2166 SR_PRIV int sr_bt_start_notify(struct sr_bt_desc *desc);
2167 SR_PRIV int sr_bt_check_notify(struct sr_bt_desc *desc);
2168 #endif
2169
2170 /*--- ezusb.c ---------------------------------------------------------------*/
2171
2172 #ifdef HAVE_LIBUSB_1_0
2173 SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
2174 SR_PRIV int ezusb_install_firmware(struct sr_context *ctx, libusb_device_handle *hdl,
2175                                    const char *name);
2176 SR_PRIV int ezusb_upload_firmware(struct sr_context *ctx, libusb_device *dev,
2177                                   int configuration, const char *name);
2178 #endif
2179
2180 /*--- usb.c -----------------------------------------------------------------*/
2181
2182 SR_PRIV int sr_usb_split_conn(const char *conn,
2183         uint16_t *vid, uint16_t *pid, uint8_t *bus, uint8_t *addr);
2184 #ifdef HAVE_LIBUSB_1_0
2185 SR_PRIV GSList *sr_usb_find(libusb_context *usb_ctx, const char *conn);
2186 SR_PRIV int sr_usb_open(libusb_context *usb_ctx, struct sr_usb_dev_inst *usb);
2187 SR_PRIV void sr_usb_close(struct sr_usb_dev_inst *usb);
2188 SR_PRIV int usb_source_add(struct sr_session *session, struct sr_context *ctx,
2189                 int timeout, sr_receive_data_callback cb, void *cb_data);
2190 SR_PRIV int usb_source_remove(struct sr_session *session, struct sr_context *ctx);
2191 SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len);
2192 SR_PRIV gboolean usb_match_manuf_prod(libusb_device *dev,
2193                 const char *manufacturer, const char *product);
2194 #endif
2195
2196 /*--- binary_helpers.c ------------------------------------------------------*/
2197
2198 /** Binary value type */
2199 enum binary_value_type {
2200         BVT_INVALID,
2201
2202         BVT_UINT8,
2203         BVT_BE_UINT8 = BVT_UINT8,
2204         BVT_LE_UINT8 = BVT_UINT8,
2205
2206         BVT_BE_UINT16,
2207         BVT_BE_UINT32,
2208         BVT_BE_UINT64,
2209         BVT_BE_FLOAT,
2210
2211         BVT_LE_UINT16,
2212         BVT_LE_UINT32,
2213         BVT_LE_UINT64,
2214         BVT_LE_FLOAT,
2215 };
2216
2217 /** Binary value specification */
2218 struct binary_value_spec {
2219         size_t offset;                  /**!< Offset into binary image */
2220         enum binary_value_type type;    /**!< Data type to decode */
2221         float scale;                    /**!< Scale factor to native units */
2222 };
2223
2224 /**
2225  * Read extract a value from a binary data image.
2226  *
2227  * @param[out] out Pointer to output buffer (conversion result)
2228  * @param[in] spec Binary value specification
2229  * @param[in] data Pointer to binary input data
2230  * @param[in] length Size of binary input data
2231  *
2232  * @return SR_OK on success, SR_ERR_* error code on failure.
2233  */
2234 SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec,
2235         const void *data, size_t length);
2236
2237 /*--- crc.c -----------------------------------------------------------------*/
2238
2239 #define SR_CRC16_DEFAULT_INIT 0xffffU
2240
2241 /**
2242  * Calculate a CRC16 checksum using the 0x8005 polynomial.
2243  *
2244  * This CRC16 flavor is also known as CRC16-ANSI or CRC16-MODBUS.
2245  *
2246  * @param crc Initial value (typically 0xffff)
2247  * @param buffer Input buffer
2248  * @param len Buffer length
2249  * @return Checksum
2250  */
2251 SR_PRIV uint16_t sr_crc16(uint16_t crc, const uint8_t *buffer, int len);
2252
2253 /*--- modbus/modbus.c -------------------------------------------------------*/
2254
2255 struct sr_modbus_dev_inst {
2256         const char *name;
2257         const char *prefix;
2258         int priv_size;
2259         GSList *(*scan)(int modbusaddr);
2260         int (*dev_inst_new)(void *priv, const char *resource,
2261                 char **params, const char *serialcomm, int modbusaddr);
2262         int (*open)(void *priv);
2263         int (*source_add)(struct sr_session *session, void *priv, int events,
2264                 int timeout, sr_receive_data_callback cb, void *cb_data);
2265         int (*source_remove)(struct sr_session *session, void *priv);
2266         int (*send)(void *priv, const uint8_t *buffer, int buffer_size);
2267         int (*read_begin)(void *priv, uint8_t *function_code);
2268         int (*read_data)(void *priv, uint8_t *buf, int maxlen);
2269         int (*read_end)(void *priv);
2270         int (*close)(void *priv);
2271         void (*free)(void *priv);
2272         unsigned int read_timeout_ms;
2273         void *priv;
2274 };
2275
2276 SR_PRIV GSList *sr_modbus_scan(struct drv_context *drvc, GSList *options,
2277                 struct sr_dev_inst *(*probe_device)(struct sr_modbus_dev_inst *modbus));
2278 SR_PRIV struct sr_modbus_dev_inst *modbus_dev_inst_new(const char *resource,
2279                 const char *serialcomm, int modbusaddr);
2280 SR_PRIV int sr_modbus_open(struct sr_modbus_dev_inst *modbus);
2281 SR_PRIV int sr_modbus_source_add(struct sr_session *session,
2282                 struct sr_modbus_dev_inst *modbus, int events, int timeout,
2283                 sr_receive_data_callback cb, void *cb_data);
2284 SR_PRIV int sr_modbus_source_remove(struct sr_session *session,
2285                 struct sr_modbus_dev_inst *modbus);
2286 SR_PRIV int sr_modbus_request(struct sr_modbus_dev_inst *modbus,
2287                               uint8_t *request, int request_size);
2288 SR_PRIV int sr_modbus_reply(struct sr_modbus_dev_inst *modbus,
2289                             uint8_t *reply, int reply_size);
2290 SR_PRIV int sr_modbus_request_reply(struct sr_modbus_dev_inst *modbus,
2291                                     uint8_t *request, int request_size,
2292                                     uint8_t *reply, int reply_size);
2293 SR_PRIV int sr_modbus_read_coils(struct sr_modbus_dev_inst *modbus,
2294                                  int address, int nb_coils, uint8_t *coils);
2295 SR_PRIV int sr_modbus_read_holding_registers(struct sr_modbus_dev_inst *modbus,
2296                                              int address, int nb_registers,
2297                                              uint16_t *registers);
2298 SR_PRIV int sr_modbus_write_coil(struct sr_modbus_dev_inst *modbus,
2299                                  int address, int value);
2300 SR_PRIV int sr_modbus_write_multiple_registers(struct sr_modbus_dev_inst*modbus,
2301                                                int address, int nb_registers,
2302                                                uint16_t *registers);
2303 SR_PRIV int sr_modbus_close(struct sr_modbus_dev_inst *modbus);
2304 SR_PRIV void sr_modbus_free(struct sr_modbus_dev_inst *modbus);
2305
2306 /*--- dmm/es519xx.c ---------------------------------------------------------*/
2307
2308 /**
2309  * All 11-byte es519xx chips repeat each block twice for each conversion cycle
2310  * so always read 2 blocks at a time.
2311  */
2312 #define ES519XX_11B_PACKET_SIZE (11 * 2)
2313 #define ES519XX_14B_PACKET_SIZE 14
2314
2315 struct es519xx_info {
2316         gboolean is_judge, is_voltage, is_auto, is_micro, is_current;
2317         gboolean is_milli, is_resistance, is_continuity, is_diode;
2318         gboolean is_frequency, is_rpm, is_capacitance, is_duty_cycle;
2319         gboolean is_temperature, is_celsius, is_fahrenheit;
2320         gboolean is_adp0, is_adp1, is_adp2, is_adp3;
2321         gboolean is_sign, is_batt, is_ol, is_pmax, is_pmin, is_apo;
2322         gboolean is_dc, is_ac, is_vahz, is_min, is_max, is_rel, is_hold;
2323         gboolean is_digit4, is_ul, is_vasel, is_vbar, is_lpf1, is_lpf0, is_rmr;
2324         uint32_t baudrate;
2325         int packet_size;
2326         gboolean alt_functions, fivedigits, clampmeter, selectable_lpf;
2327         int digits;
2328 };
2329
2330 SR_PRIV gboolean sr_es519xx_2400_11b_packet_valid(const uint8_t *buf);
2331 SR_PRIV int sr_es519xx_2400_11b_parse(const uint8_t *buf, float *floatval,
2332                 struct sr_datafeed_analog *analog, void *info);
2333 SR_PRIV gboolean sr_es519xx_2400_11b_altfn_packet_valid(const uint8_t *buf);
2334 SR_PRIV int sr_es519xx_2400_11b_altfn_parse(const uint8_t *buf,
2335                 float *floatval, struct sr_datafeed_analog *analog, void *info);
2336 SR_PRIV gboolean sr_es519xx_19200_11b_5digits_packet_valid(const uint8_t *buf);
2337 SR_PRIV int sr_es519xx_19200_11b_5digits_parse(const uint8_t *buf,
2338                 float *floatval, struct sr_datafeed_analog *analog, void *info);
2339 SR_PRIV gboolean sr_es519xx_19200_11b_clamp_packet_valid(const uint8_t *buf);
2340 SR_PRIV int sr_es519xx_19200_11b_clamp_parse(const uint8_t *buf,
2341                 float *floatval, struct sr_datafeed_analog *analog, void *info);
2342 SR_PRIV gboolean sr_es519xx_19200_11b_packet_valid(const uint8_t *buf);
2343 SR_PRIV int sr_es519xx_19200_11b_parse(const uint8_t *buf, float *floatval,
2344                 struct sr_datafeed_analog *analog, void *info);
2345 SR_PRIV gboolean sr_es519xx_19200_14b_packet_valid(const uint8_t *buf);
2346 SR_PRIV int sr_es519xx_19200_14b_parse(const uint8_t *buf, float *floatval,
2347                 struct sr_datafeed_analog *analog, void *info);
2348 SR_PRIV gboolean sr_es519xx_19200_14b_sel_lpf_packet_valid(const uint8_t *buf);
2349 SR_PRIV int sr_es519xx_19200_14b_sel_lpf_parse(const uint8_t *buf,
2350                 float *floatval, struct sr_datafeed_analog *analog, void *info);
2351
2352 /*--- dmm/fs9922.c ----------------------------------------------------------*/
2353
2354 #define FS9922_PACKET_SIZE 14
2355
2356 struct fs9922_info {
2357         gboolean is_auto, is_dc, is_ac, is_rel, is_hold, is_bpn, is_z1, is_z2;
2358         gboolean is_max, is_min, is_apo, is_bat, is_nano, is_z3, is_micro;
2359         gboolean is_milli, is_kilo, is_mega, is_beep, is_diode, is_percent;
2360         gboolean is_z4, is_volt, is_ampere, is_ohm, is_hfe, is_hertz, is_farad;
2361         gboolean is_celsius, is_fahrenheit;
2362         int bargraph_sign, bargraph_value;
2363 };
2364
2365 SR_PRIV gboolean sr_fs9922_packet_valid(const uint8_t *buf);
2366 SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
2367                             struct sr_datafeed_analog *analog, void *info);
2368 SR_PRIV void sr_fs9922_z1_diode(struct sr_datafeed_analog *analog, void *info);
2369
2370 /*--- dmm/fs9721.c ----------------------------------------------------------*/
2371
2372 #define FS9721_PACKET_SIZE 14
2373
2374 struct fs9721_info {
2375         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
2376         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
2377         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
2378         gboolean is_c2c1_11, is_c2c1_10, is_c2c1_01, is_c2c1_00, is_sign;
2379 };
2380
2381 SR_PRIV gboolean sr_fs9721_packet_valid(const uint8_t *buf);
2382 SR_PRIV int sr_fs9721_parse(const uint8_t *buf, float *floatval,
2383                             struct sr_datafeed_analog *analog, void *info);
2384 SR_PRIV void sr_fs9721_00_temp_c(struct sr_datafeed_analog *analog, void *info);
2385 SR_PRIV void sr_fs9721_01_temp_c(struct sr_datafeed_analog *analog, void *info);
2386 SR_PRIV void sr_fs9721_10_temp_c(struct sr_datafeed_analog *analog, void *info);
2387 SR_PRIV void sr_fs9721_01_10_temp_f_c(struct sr_datafeed_analog *analog, void *info);
2388 SR_PRIV void sr_fs9721_max_c_min(struct sr_datafeed_analog *analog, void *info);
2389
2390 /*--- dmm/mm38xr.c ---------------------------------------------------------*/
2391
2392 #define METERMAN_38XR_PACKET_SIZE 15
2393
2394 struct meterman_38xr_info { int dummy; };
2395
2396 SR_PRIV gboolean meterman_38xr_packet_valid(const uint8_t *buf);
2397 SR_PRIV int meterman_38xr_parse(const uint8_t *buf, float *floatval,
2398         struct sr_datafeed_analog *analog, void *info);
2399
2400 /*--- dmm/ms2115b.c ---------------------------------------------------------*/
2401
2402 #define MS2115B_PACKET_SIZE 9
2403
2404 enum ms2115b_display {
2405         MS2115B_DISPLAY_MAIN,
2406         MS2115B_DISPLAY_SUB,
2407         MS2115B_DISPLAY_COUNT,
2408 };
2409
2410 struct ms2115b_info {
2411         /* Selected channel. */
2412         size_t ch_idx;
2413         gboolean is_ac, is_dc, is_auto;
2414         gboolean is_diode, is_beep, is_farad;
2415         gboolean is_ohm, is_ampere, is_volt, is_hz;
2416         gboolean is_duty_cycle, is_percent;
2417 };
2418
2419 extern SR_PRIV const char *ms2115b_channel_formats[];
2420 SR_PRIV gboolean sr_ms2115b_packet_valid(const uint8_t *buf);
2421 SR_PRIV int sr_ms2115b_parse(const uint8_t *buf, float *floatval,
2422         struct sr_datafeed_analog *analog, void *info);
2423
2424 /*--- dmm/ms8250d.c ---------------------------------------------------------*/
2425
2426 #define MS8250D_PACKET_SIZE 18
2427
2428 struct ms8250d_info {
2429         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
2430         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
2431         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
2432         gboolean is_ncv, is_min, is_max, is_sign, is_autotimer;
2433 };
2434
2435 SR_PRIV gboolean sr_ms8250d_packet_valid(const uint8_t *buf);
2436 SR_PRIV int sr_ms8250d_parse(const uint8_t *buf, float *floatval,
2437                              struct sr_datafeed_analog *analog, void *info);
2438
2439 /*--- dmm/dtm0660.c ---------------------------------------------------------*/
2440
2441 #define DTM0660_PACKET_SIZE 15
2442
2443 struct dtm0660_info {
2444         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
2445         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
2446         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
2447         gboolean is_degf, is_degc, is_c2c1_01, is_c2c1_00, is_apo, is_min;
2448         gboolean is_minmax, is_max, is_sign;
2449 };
2450
2451 SR_PRIV gboolean sr_dtm0660_packet_valid(const uint8_t *buf);
2452 SR_PRIV int sr_dtm0660_parse(const uint8_t *buf, float *floatval,
2453                         struct sr_datafeed_analog *analog, void *info);
2454
2455 /*--- dmm/m2110.c -----------------------------------------------------------*/
2456
2457 #define BBCGM_M2110_PACKET_SIZE 9
2458
2459 /* Dummy info struct. The parser does not use it. */
2460 struct m2110_info { int dummy; };
2461
2462 SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf);
2463 SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
2464                              struct sr_datafeed_analog *analog, void *info);
2465
2466 /*--- dmm/metex14.c ---------------------------------------------------------*/
2467
2468 #define METEX14_PACKET_SIZE 14
2469
2470 struct metex14_info {
2471         size_t ch_idx;
2472         gboolean is_ac, is_dc, is_resistance, is_capacity, is_temperature;
2473         gboolean is_diode, is_frequency, is_ampere, is_volt, is_farad;
2474         gboolean is_hertz, is_ohm, is_celsius, is_fahrenheit, is_watt;
2475         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
2476         gboolean is_gain, is_decibel, is_power, is_decibel_mw, is_power_factor;
2477         gboolean is_hfe, is_unitless, is_logic, is_min, is_max, is_avg;
2478 };
2479
2480 #ifdef HAVE_SERIAL_COMM
2481 SR_PRIV int sr_metex14_packet_request(struct sr_serial_dev_inst *serial);
2482 #endif
2483 SR_PRIV gboolean sr_metex14_packet_valid(const uint8_t *buf);
2484 SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval,
2485                              struct sr_datafeed_analog *analog, void *info);
2486 SR_PRIV gboolean sr_metex14_4packets_valid(const uint8_t *buf);
2487 SR_PRIV int sr_metex14_4packets_parse(const uint8_t *buf, float *floatval,
2488                              struct sr_datafeed_analog *analog, void *info);
2489
2490 /*--- dmm/rs9lcd.c ----------------------------------------------------------*/
2491
2492 #define RS9LCD_PACKET_SIZE 9
2493
2494 /* Dummy info struct. The parser does not use it. */
2495 struct rs9lcd_info { int dummy; };
2496
2497 SR_PRIV gboolean sr_rs9lcd_packet_valid(const uint8_t *buf);
2498 SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,
2499                             struct sr_datafeed_analog *analog, void *info);
2500
2501 /*--- dmm/bm25x.c -----------------------------------------------------------*/
2502
2503 #define BRYMEN_BM25X_PACKET_SIZE 15
2504
2505 /* Dummy info struct. The parser does not use it. */
2506 struct bm25x_info { int dummy; };
2507
2508 SR_PRIV gboolean sr_brymen_bm25x_packet_valid(const uint8_t *buf);
2509 SR_PRIV int sr_brymen_bm25x_parse(const uint8_t *buf, float *floatval,
2510                              struct sr_datafeed_analog *analog, void *info);
2511
2512 /*--- dmm/bm52x.c -----------------------------------------------------------*/
2513
2514 #define BRYMEN_BM52X_PACKET_SIZE 24
2515 #define BRYMEN_BM52X_DISPLAY_COUNT 2
2516
2517 struct brymen_bm52x_info { size_t ch_idx; };
2518
2519 #ifdef HAVE_SERIAL_COMM
2520 SR_PRIV int sr_brymen_bm52x_packet_request(struct sr_serial_dev_inst *serial);
2521 SR_PRIV int sr_brymen_bm82x_packet_request(struct sr_serial_dev_inst *serial);
2522 #endif
2523 SR_PRIV gboolean sr_brymen_bm52x_packet_valid(const uint8_t *buf);
2524 SR_PRIV gboolean sr_brymen_bm82x_packet_valid(const uint8_t *buf);
2525 /* BM520s and BM820s protocols are similar, the parse routine is shared. */
2526 SR_PRIV int sr_brymen_bm52x_parse(const uint8_t *buf, float *floatval,
2527                 struct sr_datafeed_analog *analog, void *info);
2528
2529 struct brymen_bm52x_state;
2530
2531 SR_PRIV void *brymen_bm52x_state_init(void);
2532 SR_PRIV void brymen_bm52x_state_free(void *state);
2533 SR_PRIV int brymen_bm52x_config_get(void *state, uint32_t key, GVariant **data,
2534         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2535 SR_PRIV int brymen_bm52x_config_set(void *state, uint32_t key, GVariant *data,
2536         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2537 SR_PRIV int brymen_bm52x_config_list(void *state, uint32_t key, GVariant **data,
2538         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2539 SR_PRIV int brymen_bm52x_acquire_start(void *state,
2540         const struct sr_dev_inst *sdi,
2541         sr_receive_data_callback *cb, void **cb_data);
2542
2543 /*--- dmm/bm85x.c -----------------------------------------------------------*/
2544
2545 #define BRYMEN_BM85x_PACKET_SIZE_MIN 4
2546
2547 struct brymen_bm85x_info { int dummy; };
2548
2549 #ifdef HAVE_SERIAL_COMM
2550 SR_PRIV int brymen_bm85x_after_open(struct sr_serial_dev_inst *serial);
2551 SR_PRIV int brymen_bm85x_packet_request(struct sr_serial_dev_inst *serial);
2552 #endif
2553 SR_PRIV gboolean brymen_bm85x_packet_valid(void *state,
2554         const uint8_t *buf, size_t len, size_t *pkt_len);
2555 SR_PRIV int brymen_bm85x_parse(void *state, const uint8_t *buf, size_t len,
2556         double *floatval, struct sr_datafeed_analog *analog, void *info);
2557
2558 /*--- dmm/bm86x.c -----------------------------------------------------------*/
2559
2560 #define BRYMEN_BM86X_PACKET_SIZE 24
2561 #define BRYMEN_BM86X_DISPLAY_COUNT 2
2562
2563 struct brymen_bm86x_info { size_t ch_idx; };
2564
2565 #ifdef HAVE_SERIAL_COMM
2566 SR_PRIV int sr_brymen_bm86x_packet_request(struct sr_serial_dev_inst *serial);
2567 #endif
2568 SR_PRIV gboolean sr_brymen_bm86x_packet_valid(const uint8_t *buf);
2569 SR_PRIV int sr_brymen_bm86x_parse(const uint8_t *buf, float *floatval,
2570                 struct sr_datafeed_analog *analog, void *info);
2571
2572 /*--- dmm/ut71x.c -----------------------------------------------------------*/
2573
2574 #define UT71X_PACKET_SIZE 11
2575
2576 struct ut71x_info {
2577         gboolean is_voltage, is_resistance, is_capacitance, is_temperature;
2578         gboolean is_celsius, is_fahrenheit, is_current, is_continuity;
2579         gboolean is_diode, is_frequency, is_duty_cycle, is_dc, is_ac;
2580         gboolean is_auto, is_manual, is_sign, is_power, is_loop_current;
2581 };
2582
2583 SR_PRIV gboolean sr_ut71x_packet_valid(const uint8_t *buf);
2584 SR_PRIV int sr_ut71x_parse(const uint8_t *buf, float *floatval,
2585                 struct sr_datafeed_analog *analog, void *info);
2586
2587 /*--- dmm/vc870.c -----------------------------------------------------------*/
2588
2589 #define VC870_PACKET_SIZE 23
2590
2591 struct vc870_info {
2592         gboolean is_voltage, is_dc, is_ac, is_temperature, is_resistance;
2593         gboolean is_continuity, is_capacitance, is_diode, is_loop_current;
2594         gboolean is_current, is_micro, is_milli, is_power;
2595         gboolean is_power_factor_freq, is_power_apparent_power, is_v_a_rms_value;
2596         gboolean is_sign2, is_sign1, is_batt, is_ol1, is_max, is_min;
2597         gboolean is_maxmin, is_rel, is_ol2, is_open, is_manu, is_hold;
2598         gboolean is_light, is_usb, is_warning, is_auto_power, is_misplug_warn;
2599         gboolean is_lo, is_hi, is_open2;
2600
2601         gboolean is_frequency, is_dual_display, is_auto;
2602 };
2603
2604 SR_PRIV gboolean sr_vc870_packet_valid(const uint8_t *buf);
2605 SR_PRIV int sr_vc870_parse(const uint8_t *buf, float *floatval,
2606                 struct sr_datafeed_analog *analog, void *info);
2607
2608 /*--- dmm/vc96.c ------------------------------------------------------------*/
2609
2610 #define VC96_PACKET_SIZE 13
2611
2612 struct vc96_info {
2613         size_t ch_idx;
2614         gboolean is_ac, is_dc, is_resistance, is_diode, is_ampere, is_volt;
2615         gboolean is_ohm, is_micro, is_milli, is_kilo, is_mega, is_hfe;
2616         gboolean is_unitless;
2617 };
2618
2619 SR_PRIV gboolean sr_vc96_packet_valid(const uint8_t *buf);
2620 SR_PRIV int sr_vc96_parse(const uint8_t *buf, float *floatval,
2621                 struct sr_datafeed_analog *analog, void *info);
2622
2623 /*--- lcr/es51919.c ---------------------------------------------------------*/
2624
2625 /* Acquisition details which apply to all supported serial-lcr devices. */
2626 struct lcr_parse_info {
2627         size_t ch_idx;
2628         uint64_t output_freq;
2629         const char *circuit_model;
2630 };
2631
2632 #define ES51919_PACKET_SIZE     17
2633 #define ES51919_CHANNEL_COUNT   2
2634 #define ES51919_COMM_PARAM      "9600/8n1/rts=1/dtr=1"
2635
2636 SR_PRIV int es51919_config_get(uint32_t key, GVariant **data,
2637         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2638 SR_PRIV int es51919_config_set(uint32_t key, GVariant *data,
2639         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2640 SR_PRIV int es51919_config_list(uint32_t key, GVariant **data,
2641         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2642 SR_PRIV gboolean es51919_packet_valid(const uint8_t *pkt);
2643 SR_PRIV int es51919_packet_parse(const uint8_t *pkt, float *floatval,
2644         struct sr_datafeed_analog *analog, void *info);
2645
2646 /*--- lcr/vc4080.c ----------------------------------------------------------*/
2647
2648 /* Note: Also uses 'struct lcr_parse_info' from es51919 above. */
2649
2650 #define VC4080_PACKET_SIZE      39
2651 #define VC4080_COMM_PARAM       "1200/8n1"
2652 #define VC4080_WITH_DQ_CHANS    0 /* Enable separate D/Q channels? */
2653
2654 enum vc4080_display {
2655         VC4080_DISPLAY_PRIMARY,
2656         VC4080_DISPLAY_SECONDARY,
2657 #if VC4080_WITH_DQ_CHANS
2658         VC4080_DISPLAY_D_VALUE,
2659         VC4080_DISPLAY_Q_VALUE,
2660 #endif
2661         VC4080_CHANNEL_COUNT,
2662 };
2663
2664 extern SR_PRIV const char *vc4080_channel_formats[VC4080_CHANNEL_COUNT];
2665
2666 SR_PRIV int vc4080_config_list(uint32_t key, GVariant **data,
2667         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg);
2668 SR_PRIV int vc4080_packet_request(struct sr_serial_dev_inst *serial);
2669 SR_PRIV gboolean vc4080_packet_valid(const uint8_t *pkt);
2670 SR_PRIV int vc4080_packet_parse(const uint8_t *pkt, float *floatval,
2671         struct sr_datafeed_analog *analog, void *info);
2672
2673 /*--- dmm/ut372.c -----------------------------------------------------------*/
2674
2675 #define UT372_PACKET_SIZE 27
2676
2677 struct ut372_info {
2678         int dummy;
2679 };
2680
2681 SR_PRIV gboolean sr_ut372_packet_valid(const uint8_t *buf);
2682 SR_PRIV int sr_ut372_parse(const uint8_t *buf, float *floatval,
2683                 struct sr_datafeed_analog *analog, void *info);
2684
2685 /*--- dmm/asycii.c ----------------------------------------------------------*/
2686
2687 #define ASYCII_PACKET_SIZE 16
2688
2689 struct asycii_info {
2690         gboolean is_ac, is_dc, is_ac_and_dc;
2691         gboolean is_resistance, is_capacitance, is_diode, is_gain;
2692         gboolean is_frequency, is_duty_cycle, is_duty_pos, is_duty_neg;
2693         gboolean is_pulse_width, is_period_pos, is_period_neg;
2694         gboolean is_pulse_count, is_count_pos, is_count_neg;
2695         gboolean is_ampere, is_volt, is_volt_ampere, is_farad, is_ohm;
2696         gboolean is_hertz, is_percent, is_seconds, is_decibel;
2697         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
2698         gboolean is_unitless;
2699         gboolean is_peak_min, is_peak_max;
2700         gboolean is_invalid;
2701 };
2702
2703 #ifdef HAVE_SERIAL_COMM
2704 SR_PRIV int sr_asycii_packet_request(struct sr_serial_dev_inst *serial);
2705 #endif
2706 SR_PRIV gboolean sr_asycii_packet_valid(const uint8_t *buf);
2707 SR_PRIV int sr_asycii_parse(const uint8_t *buf, float *floatval,
2708                             struct sr_datafeed_analog *analog, void *info);
2709
2710 /*--- dmm/eev121gw.c --------------------------------------------------------*/
2711
2712 #define EEV121GW_PACKET_SIZE 19
2713
2714 enum eev121gw_display {
2715         EEV121GW_DISPLAY_MAIN,
2716         EEV121GW_DISPLAY_SUB,
2717         EEV121GW_DISPLAY_BAR,
2718         EEV121GW_DISPLAY_COUNT,
2719 };
2720
2721 struct eev121gw_info {
2722         /* Selected channel. */
2723         size_t ch_idx;
2724         /*
2725          * Measured value, number and sign/overflow flags, scale factor
2726          * and significant digits.
2727          */
2728         uint32_t uint_value;
2729         gboolean is_ofl, is_neg;
2730         int factor, digits;
2731         /* Currently active mode (meter's function). */
2732         gboolean is_ac, is_dc, is_voltage, is_current, is_power, is_gain;
2733         gboolean is_resistance, is_capacitance, is_diode, is_temperature;
2734         gboolean is_continuity, is_frequency, is_period, is_duty_cycle;
2735         /* Quantities associated with mode/function. */
2736         gboolean is_ampere, is_volt, is_volt_ampere, is_dbm;
2737         gboolean is_ohm, is_farad, is_celsius, is_fahrenheit;
2738         gboolean is_hertz, is_seconds, is_percent, is_loop_current;
2739         gboolean is_unitless, is_logic;
2740         /* Other indicators. */
2741         gboolean is_min, is_max, is_avg, is_1ms_peak, is_rel, is_hold;
2742         gboolean is_low_pass, is_mem, is_bt, is_auto_range, is_test;
2743         gboolean is_auto_poweroff, is_low_batt;
2744 };
2745
2746 extern SR_PRIV const char *eev121gw_channel_formats[];
2747 SR_PRIV gboolean sr_eev121gw_packet_valid(const uint8_t *buf);
2748 SR_PRIV int sr_eev121gw_3displays_parse(const uint8_t *buf, float *floatval,
2749                 struct sr_datafeed_analog *analog, void *info);
2750
2751 /*--- scale/kern.c ----------------------------------------------------------*/
2752
2753 struct kern_info {
2754         gboolean is_gram, is_carat, is_ounce, is_pound, is_troy_ounce;
2755         gboolean is_pennyweight, is_grain, is_tael, is_momme, is_tola;
2756         gboolean is_percentage, is_piece, is_unstable, is_stable, is_error;
2757         int buflen;
2758 };
2759
2760 SR_PRIV gboolean sr_kern_packet_valid(const uint8_t *buf);
2761 SR_PRIV int sr_kern_parse(const uint8_t *buf, float *floatval,
2762                 struct sr_datafeed_analog *analog, void *info);
2763
2764 /*--- sw_limits.c -----------------------------------------------------------*/
2765
2766 struct sr_sw_limits {
2767         uint64_t limit_samples;
2768         uint64_t limit_frames;
2769         uint64_t limit_msec;
2770         uint64_t samples_read;
2771         uint64_t frames_read;
2772         uint64_t start_time;
2773 };
2774
2775 SR_PRIV int sr_sw_limits_config_get(const struct sr_sw_limits *limits, uint32_t key,
2776         GVariant **data);
2777 SR_PRIV int sr_sw_limits_config_set(struct sr_sw_limits *limits, uint32_t key,
2778         GVariant *data);
2779 SR_PRIV void sr_sw_limits_acquisition_start(struct sr_sw_limits *limits);
2780 SR_PRIV gboolean sr_sw_limits_check(struct sr_sw_limits *limits);
2781 SR_PRIV int sr_sw_limits_get_remain(const struct sr_sw_limits *limits,
2782         uint64_t *samples, uint64_t *frames, uint64_t *msecs,
2783         gboolean *exceeded);
2784 SR_PRIV void sr_sw_limits_update_samples_read(struct sr_sw_limits *limits,
2785         uint64_t samples_read);
2786 SR_PRIV void sr_sw_limits_update_frames_read(struct sr_sw_limits *limits,
2787         uint64_t frames_read);
2788 SR_PRIV void sr_sw_limits_init(struct sr_sw_limits *limits);
2789
2790 /*--- feed_queue.h ----------------------------------------------------------*/
2791
2792 struct feed_queue_logic;
2793 struct feed_queue_analog;
2794
2795 SR_API struct feed_queue_logic *feed_queue_logic_alloc(
2796         const struct sr_dev_inst *sdi,
2797         size_t sample_count, size_t unit_size);
2798 SR_API int feed_queue_logic_submit(struct feed_queue_logic *q,
2799         const uint8_t *data, size_t count);
2800 SR_API int feed_queue_logic_flush(struct feed_queue_logic *q);
2801 SR_API int feed_queue_logic_send_trigger(struct feed_queue_logic *q);
2802 SR_API void feed_queue_logic_free(struct feed_queue_logic *q);
2803
2804 SR_API struct feed_queue_analog *feed_queue_analog_alloc(
2805         const struct sr_dev_inst *sdi,
2806         size_t sample_count, int digits, struct sr_channel *ch);
2807 SR_API int feed_queue_analog_mq_unit(struct feed_queue_analog *q,
2808         enum sr_mq mq, enum sr_mqflag mq_flag, enum sr_unit unit);
2809 SR_API int feed_queue_analog_scale_offset(struct feed_queue_analog *q,
2810         const struct sr_rational *scale, const struct sr_rational *offset);
2811 SR_API int feed_queue_analog_submit(struct feed_queue_analog *q,
2812         float data, size_t count);
2813 SR_API int feed_queue_analog_flush(struct feed_queue_analog *q);
2814 SR_API void feed_queue_analog_free(struct feed_queue_analog *q);
2815
2816 #endif