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