]> sigrok.org Git - libsigrok.git/blob - src/lcr/es51919.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / lcr / es51919.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Janne Huttunen <jahuttun@gmail.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 #include <stdint.h>
21 #include <string.h>
22 #include <math.h>
23 #include <glib.h>
24 #include <libsigrok/libsigrok.h>
25 #include "libsigrok-internal.h"
26
27 #define LOG_PREFIX "es51919"
28
29 struct dev_buffer {
30         /** Total size of the buffer. */
31         size_t size;
32         /** Amount of data currently in the buffer. */
33         size_t len;
34         /** Offset where the data starts in the buffer. */
35         size_t offset;
36         /** Space for the data. */
37         uint8_t data[];
38 };
39
40 static struct dev_buffer *dev_buffer_new(size_t size)
41 {
42         struct dev_buffer *dbuf;
43
44         dbuf = g_malloc0(sizeof(struct dev_buffer) + size);
45         dbuf->size = size;
46         dbuf->len = 0;
47         dbuf->offset = 0;
48
49         return dbuf;
50 }
51
52 static void dev_buffer_destroy(struct dev_buffer *dbuf)
53 {
54         g_free(dbuf);
55 }
56
57 static int dev_buffer_fill_serial(struct dev_buffer *dbuf,
58                                   struct sr_dev_inst *sdi)
59 {
60         struct sr_serial_dev_inst *serial;
61         int len;
62
63         serial = sdi->conn;
64
65         /* If we already have data, move it to the beginning of the buffer. */
66         if (dbuf->len > 0 && dbuf->offset > 0)
67                 memmove(dbuf->data, dbuf->data + dbuf->offset, dbuf->len);
68
69         dbuf->offset = 0;
70
71         len = dbuf->size - dbuf->len;
72         len = serial_read_nonblocking(serial, dbuf->data + dbuf->len, len);
73         if (len < 0) {
74                 sr_err("Serial port read error: %d.", len);
75                 return len;
76         }
77
78         dbuf->len += len;
79
80         return SR_OK;
81 }
82
83 static uint8_t *dev_buffer_packet_find(struct dev_buffer *dbuf,
84                                 gboolean (*packet_valid)(const uint8_t *),
85                                 size_t packet_size)
86 {
87         size_t offset;
88
89         while (dbuf->len >= packet_size) {
90                 if (packet_valid(dbuf->data + dbuf->offset)) {
91                         offset = dbuf->offset;
92                         dbuf->offset += packet_size;
93                         dbuf->len -= packet_size;
94                         return dbuf->data + offset;
95                 }
96                 dbuf->offset++;
97                 dbuf->len--;
98         }
99
100         return NULL;
101 }
102
103 struct dev_limit_counter {
104         /** The current number of received samples/frames/etc. */
105         uint64_t count;
106         /** The limit (in number of samples/frames/etc.). */
107         uint64_t limit;
108 };
109
110 static void dev_limit_counter_start(struct dev_limit_counter *cnt)
111 {
112         cnt->count = 0;
113 }
114
115 static void dev_limit_counter_inc(struct dev_limit_counter *cnt)
116 {
117         cnt->count++;
118 }
119
120 static void dev_limit_counter_limit_set(struct dev_limit_counter *cnt,
121                                         uint64_t limit)
122 {
123         cnt->limit = limit;
124 }
125
126 static gboolean dev_limit_counter_limit_reached(struct dev_limit_counter *cnt)
127 {
128         if (cnt->limit && cnt->count >= cnt->limit) {
129                 sr_info("Requested counter limit reached.");
130                 return TRUE;
131         }
132
133         return FALSE;
134 }
135
136 struct dev_time_counter {
137         /** The starting time of current sampling run. */
138         int64_t starttime;
139         /** The time limit (in milliseconds). */
140         uint64_t limit;
141 };
142
143 static void dev_time_counter_start(struct dev_time_counter *cnt)
144 {
145         cnt->starttime = g_get_monotonic_time();
146 }
147
148 static void dev_time_limit_set(struct dev_time_counter *cnt, uint64_t limit)
149 {
150         cnt->limit = limit;
151 }
152
153 static gboolean dev_time_limit_reached(struct dev_time_counter *cnt)
154 {
155         int64_t time;
156
157         if (cnt->limit) {
158                 time = (g_get_monotonic_time() - cnt->starttime) / 1000;
159                 if (time > (int64_t)cnt->limit) {
160                         sr_info("Requested time limit reached.");
161                         return TRUE;
162                 }
163         }
164
165         return FALSE;
166 }
167
168 static void serial_conf_get(GSList *options, const char *def_serialcomm,
169                             const char **conn, const char **serialcomm)
170 {
171         struct sr_config *src;
172         GSList *l;
173
174         *conn = *serialcomm = NULL;
175         for (l = options; l; l = l->next) {
176                 src = l->data;
177                 switch (src->key) {
178                 case SR_CONF_CONN:
179                         *conn = g_variant_get_string(src->data, NULL);
180                         break;
181                 case SR_CONF_SERIALCOMM:
182                         *serialcomm = g_variant_get_string(src->data, NULL);
183                         break;
184                 }
185         }
186
187         if (*serialcomm == NULL)
188                 *serialcomm = def_serialcomm;
189 }
190
191 static struct sr_serial_dev_inst *serial_dev_new(GSList *options,
192                                                  const char *def_serialcomm)
193
194 {
195         const char *conn, *serialcomm;
196
197         serial_conf_get(options, def_serialcomm, &conn, &serialcomm);
198
199         if (!conn)
200                 return NULL;
201
202         return sr_serial_dev_inst_new(conn, serialcomm);
203 }
204
205 static int serial_stream_check_buf(struct sr_serial_dev_inst *serial,
206                                    uint8_t *buf, size_t buflen,
207                                    size_t packet_size,
208                                    packet_valid_callback is_valid,
209                                    uint64_t timeout_ms, int baudrate)
210 {
211         size_t len, dropped;
212         int ret;
213
214         if ((ret = serial_open(serial, SERIAL_RDWR)) != SR_OK)
215                 return ret;
216
217         serial_flush(serial);
218
219         len = buflen;
220         ret = serial_stream_detect(serial, buf, &len, packet_size,
221                                    is_valid, timeout_ms, baudrate);
222
223         serial_close(serial);
224
225         if (ret != SR_OK)
226                 return ret;
227
228         /*
229          * If we dropped more than two packets worth of data, something is
230          * wrong. We shouldn't quit however, since the dropped bytes might be
231          * just zeroes at the beginning of the stream. Those can occur as a
232          * combination of the nonstandard cable that ships with some devices
233          * and the serial port or USB to serial adapter.
234          */
235         dropped = len - packet_size;
236         if (dropped > 2 * packet_size)
237                 sr_warn("Had to drop too much data.");
238
239         return SR_OK;
240 }
241
242 static int serial_stream_check(struct sr_serial_dev_inst *serial,
243                                size_t packet_size,
244                                packet_valid_callback is_valid,
245                                uint64_t timeout_ms, int baudrate)
246 {
247         uint8_t buf[128];
248
249         return serial_stream_check_buf(serial, buf, sizeof(buf), packet_size,
250                                        is_valid, timeout_ms, baudrate);
251 }
252
253 struct std_opt_desc {
254         const uint32_t *scanopts;
255         const int num_scanopts;
256         const uint32_t *devopts;
257         const int num_devopts;
258 };
259
260 static int std_config_list(uint32_t key, GVariant **data,
261                            const struct std_opt_desc *d)
262 {
263         switch (key) {
264         case SR_CONF_SCAN_OPTIONS:
265                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
266                         d->scanopts, d->num_scanopts, sizeof(uint32_t));
267                 break;
268         case SR_CONF_DEVICE_OPTIONS:
269                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
270                         d->devopts, d->num_devopts, sizeof(uint32_t));
271                 break;
272         default:
273                 return SR_ERR_NA;
274         }
275
276         return SR_OK;
277 }
278
279 static int send_config_update(struct sr_dev_inst *sdi, struct sr_config *cfg)
280 {
281         struct sr_datafeed_packet packet;
282         struct sr_datafeed_meta meta;
283
284         memset(&meta, 0, sizeof(meta));
285
286         packet.type = SR_DF_META;
287         packet.payload = &meta;
288
289         meta.config = g_slist_append(meta.config, cfg);
290
291         return sr_session_send(sdi, &packet);
292 }
293
294 static int send_config_update_key(struct sr_dev_inst *sdi, uint32_t key,
295                                   GVariant *var)
296 {
297         struct sr_config *cfg;
298         int ret;
299
300         cfg = sr_config_new(key, var);
301         if (!cfg)
302                 return SR_ERR;
303
304         ret = send_config_update(sdi, cfg);
305         sr_config_free(cfg);
306
307         return ret;
308 }
309
310 /*
311  * Cyrustek ES51919 LCR chipset host protocol.
312  *
313  * Public official documentation does not contain the protocol
314  * description, so this is all based on reverse engineering.
315  *
316  * Packet structure (17 bytes):
317  *
318  * 0x00: header1 ?? (0x00)
319  * 0x01: header2 ?? (0x0d)
320  *
321  * 0x02: flags
322  *         bit 0 = hold enabled
323  *         bit 1 = reference shown (in delta mode)
324  *         bit 2 = delta mode
325  *         bit 3 = calibration mode
326  *         bit 4 = sorting mode
327  *         bit 5 = LCR mode
328  *         bit 6 = auto mode
329  *         bit 7 = parallel measurement (vs. serial)
330  *
331  * 0x03: config
332  *         bit 0-4 = ??? (0x10)
333  *         bit 5-7 = test frequency
334  *                     0 = 100 Hz
335  *                     1 = 120 Hz
336  *                     2 = 1 kHz
337  *                     3 = 10 kHz
338  *                     4 = 100 kHz
339  *                     5 = 0 Hz (DC)
340  *
341  * 0x04: tolerance (sorting mode)
342  *         0 = not set
343  *         3 = +-0.25%
344  *         4 = +-0.5%
345  *         5 = +-1%
346  *         6 = +-2%
347  *         7 = +-5%
348  *         8 = +-10%
349  *         9 = +-20%
350  *        10 = -20+80%
351  *
352  * 0x05-0x09: primary measurement
353  *   0x05: measured quantity
354  *           1 = inductance
355  *           2 = capacitance
356  *           3 = resistance
357  *           4 = DC resistance
358  *   0x06: measurement MSB  (0x4e20 = 20000 = outside limits)
359  *   0x07: measurement LSB
360  *   0x08: measurement info
361  *           bit 0-2 = decimal point multiplier (10^-val)
362  *           bit 3-7 = unit
363  *                       0 = no unit
364  *                       1 = Ohm
365  *                       2 = kOhm
366  *                       3 = MOhm
367  *                       5 = uH
368  *                       6 = mH
369  *                       7 = H
370  *                       8 = kH
371  *                       9 = pF
372  *                       10 = nF
373  *                       11 = uF
374  *                       12 = mF
375  *                       13 = %
376  *                       14 = degree
377  *   0x09: measurement status
378  *           bit 0-3 = status
379  *                       0 = normal (measurement shown)
380  *                       1 = blank (nothing shown)
381  *                       2 = lines ("----")
382  *                       3 = outside limits ("OL")
383  *                       7 = pass ("PASS")
384  *                       8 = fail ("FAIL")
385  *                       9 = open ("OPEn")
386  *                      10 = shorted ("Srt")
387  *           bit 4-6 = ??? (maybe part of same field with 0-3)
388  *           bit 7   = ??? (some independent flag)
389  *
390  * 0x0a-0x0e: secondary measurement
391  *   0x0a: measured quantity
392  *           0 = none
393  *           1 = dissipation factor
394  *           2 = quality factor
395  *           3 = parallel AC resistance / ESR
396  *           4 = phase angle
397  *   0x0b-0x0e: like primary measurement
398  *
399  * 0x0f: footer1 (0x0d) ?
400  * 0x10: footer2 (0x0a) ?
401  */
402
403 #define PACKET_SIZE 17
404
405 static const double frequencies[] = {
406         100, 120, 1000, 10000, 100000, 0,
407 };
408
409 enum { QUANT_AUTO = 5, };
410
411 static const char *const quantities1[] = {
412         "NONE", "INDUCTANCE", "CAPACITANCE", "RESISTANCE", "RESISTANCE", "AUTO",
413 };
414
415 static const char *const list_quantities1[] = {
416         "NONE", "INDUCTANCE", "CAPACITANCE", "RESISTANCE", "AUTO",
417 };
418
419 static const char *const quantities2[] = {
420         "NONE", "DISSIPATION", "QUALITY", "RESISTANCE", "ANGLE", "AUTO",
421 };
422
423 enum { MODEL_NONE, MODEL_PAR, MODEL_SER, MODEL_AUTO, };
424
425 static const char *const models[] = {
426         "NONE", "PARALLEL", "SERIES", "AUTO",
427 };
428
429 /** Private, per-device-instance driver context. */
430 struct dev_context {
431         /** Opaque pointer passed in by the frontend. */
432         void *cb_data;
433
434         /** The number of frames. */
435         struct dev_limit_counter frame_count;
436
437         /** The time limit counter. */
438         struct dev_time_counter time_count;
439
440         /** Data buffer. */
441         struct dev_buffer *buf;
442
443         /** The frequency of the test signal (index to frequencies[]). */
444         unsigned int freq;
445
446         /** Measured primary quantity (index to quantities1[]). */
447         unsigned int quant1;
448
449         /** Measured secondary quantity (index to quantities2[]). */
450         unsigned int quant2;
451
452         /** Equivalent circuit model (index to models[]). */
453         unsigned int model;
454 };
455
456 static const uint8_t *pkt_to_buf(const uint8_t *pkt, int is_secondary)
457 {
458         return is_secondary ? pkt + 10 : pkt + 5;
459 }
460
461 static int parse_mq(const uint8_t *pkt, int is_secondary, int is_parallel)
462 {
463         const uint8_t *buf;
464
465         buf = pkt_to_buf(pkt, is_secondary);
466
467         switch (is_secondary << 8 | buf[0]) {
468         case 0x001:
469                 return is_parallel ?
470                         SR_MQ_PARALLEL_INDUCTANCE : SR_MQ_SERIES_INDUCTANCE;
471         case 0x002:
472                 return is_parallel ?
473                         SR_MQ_PARALLEL_CAPACITANCE : SR_MQ_SERIES_CAPACITANCE;
474         case 0x003:
475         case 0x103:
476                 return is_parallel ?
477                         SR_MQ_PARALLEL_RESISTANCE : SR_MQ_SERIES_RESISTANCE;
478         case 0x004:
479                 return SR_MQ_RESISTANCE;
480         case 0x100:
481                 return SR_MQ_DIFFERENCE;
482         case 0x101:
483                 return SR_MQ_DISSIPATION_FACTOR;
484         case 0x102:
485                 return SR_MQ_QUALITY_FACTOR;
486         case 0x104:
487                 return SR_MQ_PHASE_ANGLE;
488         }
489
490         sr_err("Unknown quantity 0x%03x.", is_secondary << 8 | buf[0]);
491
492         return -1;
493 }
494
495 static float parse_value(const uint8_t *buf)
496 {
497         static const float decimals[] = {
498                 1, 1e-1, 1e-2, 1e-3, 1e-4, 1e-5, 1e-6, 1e-7
499         };
500         int16_t val;
501
502         val = (buf[1] << 8) | buf[2];
503         return (float)val * decimals[buf[3] & 7];
504 }
505
506 static void parse_measurement(const uint8_t *pkt, float *floatval,
507                               struct sr_datafeed_analog *analog,
508                               int is_secondary)
509 {
510         static const struct {
511                 int unit;
512                 float mult;
513         } units[] = {
514                 { SR_UNIT_UNITLESS, 1 },        /* no unit */
515                 { SR_UNIT_OHM, 1 },             /* Ohm     */
516                 { SR_UNIT_OHM, 1e3 },           /* kOhm    */
517                 { SR_UNIT_OHM, 1e6 },           /* MOhm    */
518                 { -1, 0 },                      /* ???     */
519                 { SR_UNIT_HENRY, 1e-6 },        /* uH      */
520                 { SR_UNIT_HENRY, 1e-3 },        /* mH      */
521                 { SR_UNIT_HENRY, 1 },           /* H       */
522                 { SR_UNIT_HENRY, 1e3 },         /* kH      */
523                 { SR_UNIT_FARAD, 1e-12 },       /* pF      */
524                 { SR_UNIT_FARAD, 1e-9 },        /* nF      */
525                 { SR_UNIT_FARAD, 1e-6 },        /* uF      */
526                 { SR_UNIT_FARAD, 1e-3 },        /* mF      */
527                 { SR_UNIT_PERCENTAGE, 1 },      /* %       */
528                 { SR_UNIT_DEGREE, 1 }           /* degree  */
529         };
530         const uint8_t *buf;
531         int state;
532
533         buf = pkt_to_buf(pkt, is_secondary);
534
535         analog->mq = -1;
536         analog->mqflags = 0;
537
538         state = buf[4] & 0xf;
539
540         if (state != 0 && state != 3)
541                 return;
542
543         if (pkt[2] & 0x18) {
544                 /* Calibration and Sorting modes not supported. */
545                 return;
546         }
547
548         if (!is_secondary) {
549                 if (pkt[2] & 0x01)
550                         analog->mqflags |= SR_MQFLAG_HOLD;
551                 if (pkt[2] & 0x02)
552                         analog->mqflags |= SR_MQFLAG_REFERENCE;
553         } else {
554                 if (pkt[2] & 0x04)
555                         analog->mqflags |= SR_MQFLAG_RELATIVE;
556         }
557
558         if ((analog->mq = parse_mq(pkt, is_secondary, pkt[2] & 0x80)) < 0)
559                 return;
560
561         if ((buf[3] >> 3) >= ARRAY_SIZE(units)) {
562                 sr_err("Unknown unit %u.", buf[3] >> 3);
563                 analog->mq = -1;
564                 return;
565         }
566
567         analog->unit = units[buf[3] >> 3].unit;
568
569         *floatval = parse_value(buf);
570         *floatval *= (state == 0) ? units[buf[3] >> 3].mult : INFINITY;
571 }
572
573 static unsigned int parse_freq(const uint8_t *pkt)
574 {
575         unsigned int freq;
576
577         freq = pkt[3] >> 5;
578
579         if (freq >= ARRAY_SIZE(frequencies)) {
580                 sr_err("Unknown frequency %u.", freq);
581                 freq = ARRAY_SIZE(frequencies) - 1;
582         }
583
584         return freq;
585 }
586
587 static unsigned int parse_quant(const uint8_t *pkt, int is_secondary)
588 {
589         const uint8_t *buf;
590
591         if (pkt[2] & 0x20)
592                 return QUANT_AUTO;
593
594         buf = pkt_to_buf(pkt, is_secondary);
595
596         return buf[0];
597 }
598
599 static unsigned int parse_model(const uint8_t *pkt)
600 {
601         if (pkt[2] & 0x40)
602                 return MODEL_AUTO;
603         else if (parse_mq(pkt, 0, 0) == SR_MQ_RESISTANCE)
604                 return MODEL_NONE;
605         else if (pkt[2] & 0x80)
606                 return MODEL_PAR;
607         else
608                 return MODEL_SER;
609 }
610
611 static gboolean packet_valid(const uint8_t *pkt)
612 {
613         /*
614          * If the first two bytes of the packet are indeed a constant
615          * header, they should be checked too. Since we don't know it
616          * for sure, we'll just check the last two for now since they
617          * seem to be constant just like in the other Cyrustek chipset
618          * protocols.
619          */
620         if (pkt[15] == 0xd && pkt[16] == 0xa)
621                 return TRUE;
622
623         return FALSE;
624 }
625
626 static int do_config_update(struct sr_dev_inst *sdi, uint32_t key,
627                             GVariant *var)
628 {
629         struct dev_context *devc;
630
631         devc = sdi->priv;
632
633         return send_config_update_key(devc->cb_data, key, var);
634 }
635
636 static int send_freq_update(struct sr_dev_inst *sdi, unsigned int freq)
637 {
638         return do_config_update(sdi, SR_CONF_OUTPUT_FREQUENCY,
639                                 g_variant_new_double(frequencies[freq]));
640 }
641
642 static int send_quant1_update(struct sr_dev_inst *sdi, unsigned int quant)
643 {
644         return do_config_update(sdi, SR_CONF_MEASURED_QUANTITY,
645                                 g_variant_new_string(quantities1[quant]));
646 }
647
648 static int send_quant2_update(struct sr_dev_inst *sdi, unsigned int quant)
649 {
650         return do_config_update(sdi, SR_CONF_MEASURED_2ND_QUANTITY,
651                                 g_variant_new_string(quantities2[quant]));
652 }
653
654 static int send_model_update(struct sr_dev_inst *sdi, unsigned int model)
655 {
656         return do_config_update(sdi, SR_CONF_EQUIV_CIRCUIT_MODEL,
657                                 g_variant_new_string(models[model]));
658 }
659
660 static void handle_packet(struct sr_dev_inst *sdi, const uint8_t *pkt)
661 {
662         struct sr_datafeed_packet packet;
663         struct sr_datafeed_analog analog;
664         struct dev_context *devc;
665         unsigned int val;
666         float floatval;
667         gboolean frame;
668
669         devc = sdi->priv;
670
671         val = parse_freq(pkt);
672         if (val != devc->freq) {
673                 if (send_freq_update(sdi, val) == SR_OK)
674                         devc->freq = val;
675                 else
676                         return;
677         }
678
679         val = parse_quant(pkt, 0);
680         if (val != devc->quant1) {
681                 if (send_quant1_update(sdi, val) == SR_OK)
682                         devc->quant1 = val;
683                 else
684                         return;
685         }
686
687         val = parse_quant(pkt, 1);
688         if (val != devc->quant2) {
689                 if (send_quant2_update(sdi, val) == SR_OK)
690                         devc->quant2 = val;
691                 else
692                         return;
693         }
694
695         val = parse_model(pkt);
696         if (val != devc->model) {
697                 if (send_model_update(sdi, val) == SR_OK)
698                         devc->model = val;
699                 else
700                         return;
701         }
702
703         frame = FALSE;
704
705         memset(&analog, 0, sizeof(analog));
706
707         analog.num_samples = 1;
708         analog.data = &floatval;
709
710         analog.channels = g_slist_append(NULL, sdi->channels->data);
711
712         parse_measurement(pkt, &floatval, &analog, 0);
713         if (analog.mq >= 0) {
714                 if (!frame) {
715                         packet.type = SR_DF_FRAME_BEGIN;
716                         sr_session_send(devc->cb_data, &packet);
717                         frame = TRUE;
718                 }
719
720                 packet.type = SR_DF_ANALOG;
721                 packet.payload = &analog;
722
723                 sr_session_send(devc->cb_data, &packet);
724         }
725
726         analog.channels = g_slist_append(NULL, sdi->channels->next->data);
727
728         parse_measurement(pkt, &floatval, &analog, 1);
729         if (analog.mq >= 0) {
730                 if (!frame) {
731                         packet.type = SR_DF_FRAME_BEGIN;
732                         sr_session_send(devc->cb_data, &packet);
733                         frame = TRUE;
734                 }
735
736                 packet.type = SR_DF_ANALOG;
737                 packet.payload = &analog;
738
739                 sr_session_send(devc->cb_data, &packet);
740         }
741
742         if (frame) {
743                 packet.type = SR_DF_FRAME_END;
744                 sr_session_send(devc->cb_data, &packet);
745                 dev_limit_counter_inc(&devc->frame_count);
746         }
747 }
748
749 static int handle_new_data(struct sr_dev_inst *sdi)
750 {
751         struct dev_context *devc;
752         uint8_t *pkt;
753         int ret;
754
755         devc = sdi->priv;
756
757         ret = dev_buffer_fill_serial(devc->buf, sdi);
758         if (ret < 0)
759                 return ret;
760
761         while ((pkt = dev_buffer_packet_find(devc->buf, packet_valid,
762                                              PACKET_SIZE)))
763                 handle_packet(sdi, pkt);
764
765         return SR_OK;
766 }
767
768 static int receive_data(int fd, int revents, void *cb_data)
769 {
770         struct sr_dev_inst *sdi;
771         struct dev_context *devc;
772
773         (void)fd;
774
775         if (!(sdi = cb_data))
776                 return TRUE;
777
778         if (!(devc = sdi->priv))
779                 return TRUE;
780
781         if (revents == G_IO_IN) {
782                 /* Serial data arrived. */
783                 handle_new_data(sdi);
784         }
785
786         if (dev_limit_counter_limit_reached(&devc->frame_count) ||
787             dev_time_limit_reached(&devc->time_count))
788                 sdi->driver->dev_acquisition_stop(sdi, cb_data);
789
790         return TRUE;
791 }
792
793 static const char *const channel_names[] = { "P1", "P2" };
794
795 static int setup_channels(struct sr_dev_inst *sdi)
796 {
797         unsigned int i;
798         int ret;
799
800         ret = SR_ERR_BUG;
801
802         for (i = 0; i < ARRAY_SIZE(channel_names); i++)
803                 sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
804
805         return ret;
806 }
807
808 SR_PRIV void es51919_serial_clean(void *priv)
809 {
810         struct dev_context *devc;
811
812         if (!(devc = priv))
813                 return;
814
815         dev_buffer_destroy(devc->buf);
816         g_free(devc);
817 }
818
819 SR_PRIV struct sr_dev_inst *es51919_serial_scan(GSList *options,
820                                                 const char *vendor,
821                                                 const char *model)
822 {
823         struct sr_serial_dev_inst *serial;
824         struct sr_dev_inst *sdi;
825         struct dev_context *devc;
826         int ret;
827
828         serial = NULL;
829         sdi = NULL;
830         devc = NULL;
831
832         if (!(serial = serial_dev_new(options, "9600/8n1/rts=1/dtr=1")))
833                 goto scan_cleanup;
834
835         ret = serial_stream_check(serial, PACKET_SIZE, packet_valid,
836                                   3000, 9600);
837         if (ret != SR_OK)
838                 goto scan_cleanup;
839
840         sr_info("Found device on port %s.", serial->port);
841
842         sdi = g_malloc0(sizeof(struct sr_dev_inst));
843         sdi->status = SR_ST_INACTIVE;
844         sdi->vendor = g_strdup(vendor);
845         sdi->model = g_strdup(model);
846         devc = g_malloc0(sizeof(struct dev_context));
847         devc->buf = dev_buffer_new(PACKET_SIZE * 8);
848         sdi->inst_type = SR_INST_SERIAL;
849         sdi->conn = serial;
850         sdi->priv = devc;
851
852         if (setup_channels(sdi) != SR_OK)
853                 goto scan_cleanup;
854
855         return sdi;
856
857 scan_cleanup:
858         es51919_serial_clean(devc);
859         if (sdi)
860                 sr_dev_inst_free(sdi);
861         if (serial)
862                 sr_serial_dev_inst_free(serial);
863
864         return NULL;
865 }
866
867 SR_PRIV int es51919_serial_config_get(uint32_t key, GVariant **data,
868                                       const struct sr_dev_inst *sdi,
869                                       const struct sr_channel_group *cg)
870 {
871         struct dev_context *devc;
872
873         (void)cg;
874
875         if (!(devc = sdi->priv))
876                 return SR_ERR_BUG;
877
878         switch (key) {
879         case SR_CONF_OUTPUT_FREQUENCY:
880                 *data = g_variant_new_double(frequencies[devc->freq]);
881                 break;
882         case SR_CONF_MEASURED_QUANTITY:
883                 *data = g_variant_new_string(quantities1[devc->quant1]);
884                 break;
885         case SR_CONF_MEASURED_2ND_QUANTITY:
886                 *data = g_variant_new_string(quantities2[devc->quant2]);
887                 break;
888         case SR_CONF_EQUIV_CIRCUIT_MODEL:
889                 *data = g_variant_new_string(models[devc->model]);
890                 break;
891         default:
892                 sr_spew("%s: Unsupported key %u", __func__, key);
893                 return SR_ERR_NA;
894         }
895
896         return SR_OK;
897 }
898
899 SR_PRIV int es51919_serial_config_set(uint32_t key, GVariant *data,
900                                       const struct sr_dev_inst *sdi,
901                                       const struct sr_channel_group *cg)
902 {
903         struct dev_context *devc;
904         uint64_t val;
905
906         (void)cg;
907
908         if (!(devc = sdi->priv))
909                 return SR_ERR_BUG;
910
911         switch (key) {
912         case SR_CONF_LIMIT_MSEC:
913                 val = g_variant_get_uint64(data);
914                 dev_time_limit_set(&devc->time_count, val);
915                 sr_dbg("Setting time limit to %" PRIu64 ".", val);
916                 break;
917         case SR_CONF_LIMIT_FRAMES:
918                 val = g_variant_get_uint64(data);
919                 dev_limit_counter_limit_set(&devc->frame_count, val);
920                 sr_dbg("Setting frame limit to %" PRIu64 ".", val);
921                 break;
922         default:
923                 sr_spew("%s: Unsupported key %u", __func__, key);
924                 return SR_ERR_NA;
925         }
926
927         return SR_OK;
928 }
929
930 static const uint32_t scanopts[] = {
931         SR_CONF_CONN,
932         SR_CONF_SERIALCOMM,
933 };
934
935 static const uint32_t devopts[] = {
936         SR_CONF_LCRMETER,
937         SR_CONF_CONTINUOUS,
938         SR_CONF_LIMIT_FRAMES | SR_CONF_SET,
939         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
940         SR_CONF_OUTPUT_FREQUENCY | SR_CONF_GET | SR_CONF_LIST,
941         SR_CONF_MEASURED_QUANTITY | SR_CONF_GET | SR_CONF_LIST,
942         SR_CONF_MEASURED_2ND_QUANTITY | SR_CONF_GET | SR_CONF_LIST,
943         SR_CONF_EQUIV_CIRCUIT_MODEL | SR_CONF_GET | SR_CONF_LIST,
944 };
945
946 static const struct std_opt_desc opts = {
947         scanopts, ARRAY_SIZE(scanopts),
948         devopts, ARRAY_SIZE(devopts),
949 };
950
951 SR_PRIV int es51919_serial_config_list(uint32_t key, GVariant **data,
952                                        const struct sr_dev_inst *sdi,
953                                        const struct sr_channel_group *cg)
954 {
955         (void)sdi;
956         (void)cg;
957
958         if (std_config_list(key, data, &opts) == SR_OK)
959                 return SR_OK;
960
961         switch (key) {
962         case SR_CONF_OUTPUT_FREQUENCY:
963                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_DOUBLE,
964                         frequencies, ARRAY_SIZE(frequencies), sizeof(double));
965                 break;
966         case SR_CONF_MEASURED_QUANTITY:
967                 *data = g_variant_new_strv(list_quantities1,
968                                            ARRAY_SIZE(list_quantities1));
969                 break;
970         case SR_CONF_MEASURED_2ND_QUANTITY:
971                 *data = g_variant_new_strv(quantities2,
972                                            ARRAY_SIZE(quantities2));
973                 break;
974         case SR_CONF_EQUIV_CIRCUIT_MODEL:
975                 *data = g_variant_new_strv(models, ARRAY_SIZE(models));
976                 break;
977         default:
978                 sr_spew("%s: Unsupported key %u", __func__, key);
979                 return SR_ERR_NA;
980         }
981
982         return SR_OK;
983 }
984
985 SR_PRIV int es51919_serial_acquisition_start(const struct sr_dev_inst *sdi,
986                                              void *cb_data)
987 {
988         struct dev_context *devc;
989         struct sr_serial_dev_inst *serial;
990
991         if (sdi->status != SR_ST_ACTIVE)
992                 return SR_ERR_DEV_CLOSED;
993
994         if (!(devc = sdi->priv))
995                 return SR_ERR_BUG;
996
997         devc->cb_data = cb_data;
998
999         dev_limit_counter_start(&devc->frame_count);
1000         dev_time_counter_start(&devc->time_count);
1001
1002         /* Send header packet to the session bus. */
1003         std_session_send_df_header(cb_data, LOG_PREFIX);
1004
1005         /* Poll every 50ms, or whenever some data comes in. */
1006         serial = sdi->conn;
1007         serial_source_add(sdi->session, serial, G_IO_IN, 50,
1008                           receive_data, (void *)sdi);
1009
1010         return SR_OK;
1011 }
1012
1013 SR_PRIV int es51919_serial_acquisition_stop(struct sr_dev_inst *sdi,
1014                                             void *cb_data)
1015 {
1016         return std_serial_dev_acquisition_stop(sdi, cb_data,
1017                         std_serial_dev_close, sdi->conn, LOG_PREFIX);
1018 }