]> sigrok.org Git - libsigrok.git/blob - src/hardware/motech-lps-30x/api.c
Change sr_dev_inst_new() to take no parameters.
[libsigrok.git] / src / hardware / motech-lps-30x / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
5  * Copyright (C) 2014 Bert Vermeulen <bert@biot.com> (code from atten-pps3xxx)
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 /** @file
22  *  <em>Motech LPS-30x series</em> power supply driver
23  *  @internal
24  */
25
26 #include <ctype.h>
27 #include <errno.h>
28 #include <math.h>
29 #include <string.h>
30
31 #include "protocol.h"
32
33 /* Forward declarations */
34 SR_PRIV struct sr_dev_driver motech_lps_301_driver_info;
35 SR_PRIV int lps_read_reply(struct sr_serial_dev_inst *serial, char **buf, int *buflen);
36 SR_PRIV int lps_send_va(struct sr_serial_dev_inst *serial, const char* fmt, va_list args);
37 SR_PRIV int lps_cmd_ok(struct sr_serial_dev_inst *serial, const char* fmt, ...);
38 SR_PRIV int lps_cmd_reply(char* reply, struct sr_serial_dev_inst *serial, const char* fmt, ...);
39 SR_PRIV int lps_query_status(struct sr_dev_inst* sdi);
40
41 /* Serial communication parameters */
42 #define SERIALCOMM "2400/8n1/dtr=1/rts=1/flow=0"
43
44 #define VENDOR_MOTECH "Motech"
45
46 /** Driver scanning options. */
47 static const uint32_t scanopts[] = {
48         SR_CONF_CONN,
49         SR_CONF_SERIALCOMM,
50 };
51
52 /** Hardware capabilities generic. */
53 static const uint32_t devopts[] = {
54         /* Device class */
55         SR_CONF_POWER_SUPPLY,
56         /* Aquisition modes. */
57         SR_CONF_CONTINUOUS,
58         SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
59         SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
60         /* Device configuration */
61         SR_CONF_OUTPUT_CHANNEL_CONFIG | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
62 };
63
64 /** Hardware capabilities channel 1, 2. */
65 static const uint32_t devopts_ch12[] = {
66         SR_CONF_OUTPUT_VOLTAGE | SR_CONF_GET,
67         SR_CONF_OUTPUT_VOLTAGE_TARGET | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
68         SR_CONF_OUTPUT_CURRENT | SR_CONF_GET,
69         SR_CONF_OUTPUT_CURRENT_LIMIT | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
70         SR_CONF_OUTPUT_ENABLED | SR_CONF_GET | SR_CONF_SET,
71 };
72
73 /** Hardware capabilities channel 3. (LPS-304/305 only). */
74 static const uint32_t devopts_ch3[] = {
75         SR_CONF_OUTPUT_VOLTAGE | SR_CONF_GET,
76         SR_CONF_OUTPUT_ENABLED | SR_CONF_GET | SR_CONF_SET,
77 };
78
79 static const char *channel_modes[] = {
80         "Independent",
81         "Track1",
82         "Track2",
83 };
84
85 static struct lps_modelspec models[] = {
86         { LPS_UNKNOWN, "Dummy", 0,
87                 {
88
89                 }
90         },
91         { LPS_301, "LPS-301", 1,
92                 {
93                         /* Channel 1 */
94                         { { 0, 32, 0.01 }, { 0.005, 2, 0.001 } },
95                 },
96         },
97         { LPS_302, "LPS-302", 1,
98                 {
99                         /* Channel 1 */
100                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
101                 },
102         },
103         { LPS_303, "LPS-303", 1,
104                 {
105                         /* Channel 1 */
106                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
107                 },
108         },
109         { LPS_304, "LPS-304", 3,
110                 {
111                         /* Channel 1 */
112                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
113                         /* Channel 2 */
114                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
115                         /* Channel 3 */
116                         { { 5, 5, 0.0 }, { 0.005, 3, 0.001 } },
117                 },
118         },
119         { LPS_305, "LPS-305", 3,
120                 {
121                         /* Channel 1 */
122                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
123                         /* Channel 2 */
124                         { { 0, 32, 0.01 }, { 0.005, 3, 0.001 } },
125                         /* Channel 3 */
126                         { { 3.3, 5, 1.7 }, { 0.005, 3, 0.001 } },
127                 },
128         },
129 };
130
131 static int init_lps301(struct sr_context *sr_ctx)
132 {
133         return std_init(sr_ctx, &motech_lps_301_driver_info, LOG_PREFIX);
134 }
135
136 /** Send command to device with va_list.
137  */
138 SR_PRIV int lps_send_va(struct sr_serial_dev_inst *serial, const char* fmt, va_list args)
139 {
140         int retc;
141         char auxfmt[LINELEN_MAX];
142         char buf[LINELEN_MAX];
143
144         snprintf(auxfmt, sizeof(auxfmt), "%s\r\n", fmt);
145         vsnprintf(buf, sizeof(buf), auxfmt, args);
146
147         sr_spew("lps_send_va: \"%s\"", buf);
148
149         retc = serial_write_blocking(serial, buf, strlen(buf), 0);
150
151         if (retc < 0)
152                 return SR_ERR;
153
154         return SR_OK;
155 }
156
157 /** Send command to device.
158  */
159 SR_PRIV int lps_send_req(struct sr_serial_dev_inst *serial, const char* fmt, ...)
160 {
161         int retc;
162         va_list args;
163
164         va_start(args, fmt);
165         retc = lps_send_va(serial, fmt, args);
166         va_end(args);
167
168         return retc;
169 }
170
171 /** Send command and consume simple OK reply. */
172 SR_PRIV int lps_cmd_ok(struct sr_serial_dev_inst *serial, const char* fmt, ...)
173 {
174         int retc;
175         va_list args;
176         char buf[LINELEN_MAX];
177         char* bufptr;
178         int  buflen;
179
180         /* Send command */
181         va_start(args, fmt);
182         retc = lps_send_va(serial, fmt, args);
183         va_end(args);
184
185         if (retc != SR_OK)
186                 return SR_ERR;
187
188         /* Read reply */
189         buf[0] = '\0';
190         bufptr = buf;
191         buflen = sizeof(buf);
192         retc = lps_read_reply(serial, &bufptr, &buflen);
193         if ((retc == SR_OK) && (buflen == 0))
194                 return SR_OK;
195
196         return SR_ERR;
197 }
198
199 /** Send command and read reply string.
200  *  \param reply Pointer to buffer of size LINELEN_MAX. Will be NUL-terminated.
201  */
202 SR_PRIV int lps_cmd_reply(char* reply, struct sr_serial_dev_inst *serial, const char* fmt, ...)
203 {
204         int retc;
205         va_list args;
206         char buf[LINELEN_MAX];
207         char* bufptr;
208         int  buflen;
209
210         reply[0] = '\0';
211
212         /* Send command */
213         va_start(args, fmt);
214         retc = lps_send_va(serial, fmt, args);
215         va_end(args);
216
217         if (retc != SR_OK)
218                 return SR_ERR;
219
220         /* Read reply */
221         buf[0] = '\0';
222         bufptr = buf;
223         buflen = sizeof(buf);
224         retc = lps_read_reply(serial, &bufptr, &buflen);
225         if ((retc == SR_OK) && (buflen > 0)) {
226                 strcpy(reply, buf);
227                 return SR_OK;
228         }
229
230         return SR_ERR;
231 }
232
233 /** Process integer value returned by STATUS command. */
234 SR_PRIV int lps_process_status(struct sr_dev_inst* sdi, int stat)
235 {
236         struct dev_context* devc;
237         int tracking_mode;
238
239         devc = (struct dev_context*)sdi->priv;
240
241         sr_spew("Status: %d", stat);
242         devc->channel_status[0].cc_mode = (stat & 0x01) != 0;
243         sr_spew("Channel 1 %s mode", devc->channel_status[0].cc_mode?"CC":"CV");
244         if (devc->model->num_channels > 1) {
245                 devc->channel_status[1].cc_mode = (stat & 0x02) != 0;
246                 sr_spew("Channel 2 %s mode", devc->channel_status[1].cc_mode?"CC":"CV");
247
248                 tracking_mode = (stat & 0x0c) >> 2;
249                 switch (tracking_mode) {
250                 case 0: devc->tracking_mode = 0;
251                         break;
252                 case 2: devc->tracking_mode = 1;
253                         break;
254                 case 3: devc->tracking_mode = 2;
255                         break;
256                 default:
257                         sr_err("Illegal channel tracking mode %d!", tracking_mode);
258                         devc->tracking_mode = 0;
259                         break;
260                 }
261
262                 sr_spew("Channel tracking: %d", devc->tracking_mode);
263         }
264         devc->channel_status[0].output_enabled = devc->channel_status[1].output_enabled = stat&0x040?TRUE:FALSE;
265         sr_spew("Channel 1%s output: %s", devc->model->num_channels > 1?"+2":"", devc->channel_status[0].output_enabled?"ON":"OFF");
266         if (devc->model->num_channels > 2) {
267                 devc->channel_status[2].output_enabled = stat&0x010?TRUE:FALSE;
268                 devc->channel_status[2].output_voltage_last = stat&0x020?3.3:5;
269                 sr_spew("Channel 3 output: %s, U=%02f V, overload=%d",
270                         devc->channel_status[2].output_enabled?"ON":"OFF",
271                         devc->channel_status[2].output_voltage_last,
272                         stat&0x080?1:0);
273         }
274         sr_spew("Fan=%d, beep=%d, CC output compensated=%d", stat&0x0100?1:0, stat&0x0200?1:0, stat&0x0400?1:0);
275
276         return SR_OK;
277 }
278
279 /** Send STATUS commend and process status string. */
280 SR_PRIV int lps_query_status(struct sr_dev_inst* sdi)
281 {
282         char buf[LINELEN_MAX];
283         int stat;
284         struct dev_context* devc;
285
286         devc = (struct dev_context*)sdi->priv;
287
288         devc->req_sent_at = g_get_real_time();
289
290         if (lps_cmd_reply(buf, sdi->conn, "STATUS") < 0) {
291                 sr_err("%s: Failed to read status: %d %s", __func__, errno, strerror(errno));
292                 return SR_ERR;
293         }
294
295         if (sr_atoi(buf, &stat) != SR_OK)
296                 return SR_ERR;
297
298         return lps_process_status(sdi, stat);
299 }
300
301 static gint64 calc_timeout_ms(gint64 start_us)
302 {
303         gint64 result = REQ_TIMEOUT_MS - ((g_get_real_time() - start_us) / 1000);
304
305         if (result < 0)
306                 return 0;
307
308         return result;
309 }
310
311 /** Read message into buf until "OK" received.
312  *  \retval SR_OK Msg received; buf and buflen contain result, if any except OK.
313  *  \retval SR_ERR Error, including timeout.
314 */
315 SR_PRIV int lps_read_reply(struct sr_serial_dev_inst *serial, char **buf, int *buflen)
316 {
317         int retries;
318         char buf2[LINELEN_MAX];
319         char *buf2ptr;
320         int buf2len;
321         gint64 timeout_start;
322
323         *buf[0] = '\0';
324
325         /* Read one line. It is either a data message or "OK". */
326         timeout_start = g_get_real_time();
327         buf2len = *buflen;
328         /* Up to 5 tries because serial_readline() will consume only one CR or LF per
329          * call, but device sends up to 4 in a row. */
330         for (retries = 0; retries < 5; retries++) {
331                 *buflen = buf2len;
332                 if (serial_readline(serial, buf, buflen, calc_timeout_ms(timeout_start)) != SR_OK)
333                         return SR_ERR;
334                 if (!strcmp(*buf, "OK")) { /* We got an OK! */
335                         *buf[0] = '\0';
336                         *buflen = 0;
337                         return SR_OK;
338                 }
339                 if (*buflen > 0) /* We got a msg! */
340                         break;
341         }
342
343         /* A data msg is in buf (possibly ERROR), need to consume "OK". */
344         buf2[0] = '\0';
345         buf2ptr = buf2;
346         for (retries = 0; retries < 5; retries++) {
347                 buf2len = sizeof(buf2);
348                 if (serial_readline(serial, &buf2ptr, &buf2len, calc_timeout_ms(timeout_start)) != SR_OK)
349                         return SR_ERR;
350
351                 if (!strcmp(buf2ptr, "OK")) { /* We got an OK! */
352                         if (!strcmp(*buf, "ERROR")) { /* OK came after msg ERROR! */
353                                 sr_spew("ERROR found!");
354                                 *buf[0] = '\0';
355                                 *buflen = 0;
356                                 return SR_ERR;
357                         }
358                         return SR_OK;
359                 }
360         }
361
362         return SR_ERR; /* Timeout! */
363 }
364
365 /** Scan for LPS-300 series device.
366  */
367 static GSList *do_scan(lps_modelid modelid, struct sr_dev_driver *drv, GSList *options)
368 {
369         struct sr_dev_inst *sdi;
370         struct drv_context *drvc;
371         struct dev_context *devc;
372         struct sr_serial_dev_inst *serial;
373         struct sr_channel *ch;
374         struct sr_channel_group *cg;
375         GSList *devices;
376         const char *conn, *serialcomm;
377         int cnt;
378         gchar buf[LINELEN_MAX];
379         gchar channel[10];
380         char *verstr;
381
382         sdi = NULL;
383         devc = NULL;
384         conn = serialcomm = NULL;
385         devices = NULL;
386
387         drvc = drv->priv;
388         drvc->instances = NULL;
389
390         sr_spew("scan() called!");
391
392         /* Process and check options. */
393         if (sr_serial_extract_options(options, &conn, &serialcomm) != SR_OK)
394                 return NULL;
395         if (!serialcomm)
396                 serialcomm = SERIALCOMM;
397
398         /* Init serial port. */
399         if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
400                 return NULL;
401
402         if (serial_open(serial, SERIAL_RDWR) != SR_OK)
403                 goto exit_err;
404
405         /* Query and verify model string. */
406         serial_flush(serial);
407         if (lps_cmd_reply(buf, serial, "MODEL") != SR_OK)
408                 return NULL;
409
410         /* Check model string. */
411         if (strncmp(buf, "LPS-", 4)) {
412                 sr_spew("Unknown model code \"%s\"!", buf);
413                 return NULL;
414         }
415
416         /* Bug in device FW 1.17, model number is empty, so this can't work with this FW! */
417         if (modelid == LPS_UNKNOWN) {
418                 g_strstrip(buf);
419                 for (cnt = LPS_301; cnt <= LPS_305; cnt++) {
420                         if (!strcmp(buf, models[cnt].modelstr)) {
421                                 modelid = cnt;
422                                 break;
423                         }
424                 }
425                 if (modelid == LPS_UNKNOWN) {
426                         sr_err("Unable to detect model from model string '%s'!", buf);
427                         return NULL;
428                 }
429         }
430
431         /* Query version */
432         verstr = NULL;
433         if (lps_cmd_reply(buf, serial, "VERSION") == SR_OK) {
434                 if (strncmp(buf, "Ver-", 4)) {
435                         sr_spew("Version string %s not recognized.", buf);
436                         goto exit_err;
437                 }
438
439
440                 g_strstrip(buf);
441                 verstr = buf + 4;
442         }
443         else  /* Bug in device FW 1.17: Quering version string fails while output is active.
444                 Therefore just print an error message, but do not exit with error. */
445                 sr_err("Failed to query for hardware version: %d %s", errno, strerror(errno));
446
447         sdi = sr_dev_inst_new();
448         sdi->status = SR_ST_INACTIVE;
449         sdi->vendor = g_strdup(VENDOR_MOTECH);
450         sdi->model = g_strdup(models[modelid].modelstr);
451         sdi->version = g_strdup(verstr);
452         sdi->driver = drv;
453         sdi->inst_type = SR_INST_SERIAL;
454         sdi->conn = serial;
455
456         devc = g_malloc0(sizeof(struct dev_context));
457         devc->model = &models[modelid];
458         devc->limit_samples = 0;
459         devc->limit_msec = 0;
460         devc->num_samples = 0;
461         devc->elapsed_msec = g_timer_new();
462
463         sdi->priv = devc;
464
465         /* Setup channels and channel groups. */
466         for (cnt = 0; cnt < models[modelid].num_channels; cnt++) {
467                 snprintf(channel, sizeof(channel), "CH%d", cnt + 1);
468                 ch = sr_channel_new(cnt, SR_CHANNEL_ANALOG, TRUE, channel);
469                 sdi->channels = g_slist_append(sdi->channels, ch);
470
471                 devc->channel_status[cnt].info = g_slist_append(NULL, ch);
472
473                 cg = g_malloc(sizeof(struct sr_channel_group));
474                 snprintf(channel, sizeof(channel), "CG%d", cnt+1);
475                 cg->name = g_strdup(channel);
476                 cg->priv = NULL;
477                 cg->channels = g_slist_append(NULL, ch);
478
479                 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
480         }
481
482         drvc->instances = g_slist_append(drvc->instances, sdi);
483         devices = g_slist_append(devices, sdi);
484
485         /* Query status */
486         if (lps_query_status(sdi) != SR_OK)
487                 goto exit_err;
488
489         serial_close(serial);
490         if (!devices)
491                 sr_serial_dev_inst_free(serial);
492
493         return devices;
494
495 exit_err:
496         sr_info("%s: Error!", __func__);
497
498         if (serial) {
499                 serial_close(serial);
500                 sr_serial_dev_inst_free(serial);
501         }
502         if (devc)
503                 g_free(devc);
504         if (sdi)
505                 sr_dev_inst_free(sdi);
506
507         return NULL;
508 }
509
510 /** Scan for LPS-301 device. */
511 static GSList *scan_lps301(GSList *options)
512 {
513         return do_scan(LPS_301, &motech_lps_301_driver_info, options);
514 }
515
516 static GSList *doDevList(struct sr_dev_driver *drv)
517 {
518         return ((struct drv_context *)(drv->priv))->instances;
519 }
520
521 static GSList *dev_list_lps301(void)
522 {
523         return doDevList(&motech_lps_301_driver_info);
524 }
525
526 static void dev_clear_private(struct dev_context* devc)
527 {
528         int ch_idx;
529
530         /* Free channel_status.info (list only, data owned by sdi). */
531         for (ch_idx = 0; ch_idx < devc->model->num_channels; ch_idx++)
532                 g_slist_free(devc->channel_status[ch_idx].info);
533
534         g_timer_destroy(devc->elapsed_msec);
535 }
536
537 static int dev_clear_lps301(void)
538 {
539         return std_dev_clear(&motech_lps_301_driver_info, (std_dev_clear_callback)dev_clear_private);
540 }
541
542 static int cleanup(void)
543 {
544         return dev_clear_lps301();
545 }
546
547 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
548                 const struct sr_channel_group *cg)
549 {
550         struct dev_context *devc;
551         struct sr_channel *ch;
552         int ch_idx;
553
554         if (!sdi)
555                 return SR_ERR_ARG;
556
557         devc = sdi->priv;
558
559         if (!cg) {
560                 /* No channel group: global options. */
561                 switch (key) {
562                 case SR_CONF_LIMIT_SAMPLES:
563                         *data = g_variant_new_uint64(devc->limit_samples);
564                         break;
565                 case SR_CONF_LIMIT_MSEC:
566                         *data = g_variant_new_uint64(devc->limit_msec);
567                         break;
568                 case SR_CONF_OUTPUT_CHANNEL_CONFIG:
569                         *data = g_variant_new_string(channel_modes[devc->tracking_mode]);
570                         break;
571                 default:
572                         return SR_ERR_NA;
573                 }
574         } else {
575                 /* We only ever have one channel per channel group in this driver. */
576                 ch = cg->channels->data;
577                 ch_idx = ch->index;
578                 switch (key) {
579                 case SR_CONF_OUTPUT_VOLTAGE:
580                         *data = g_variant_new_double(devc->channel_status[ch_idx].output_voltage_last);
581                         break;
582                 case SR_CONF_OUTPUT_VOLTAGE_TARGET:
583                         *data = g_variant_new_double(devc->channel_status[ch_idx].output_voltage_max);
584                         break;
585                 case SR_CONF_OUTPUT_CURRENT:
586                         *data = g_variant_new_double(devc->channel_status[ch_idx].output_current_last);
587                         break;
588                 case SR_CONF_OUTPUT_CURRENT_LIMIT:
589                         *data = g_variant_new_double(devc->channel_status[ch_idx].output_current_max);
590                         break;
591                 case SR_CONF_OUTPUT_ENABLED:
592                         *data = g_variant_new_boolean(devc->channel_status[ch_idx].output_enabled);
593                         break;
594                 default:
595                         return SR_ERR_NA;
596                 }
597         }
598
599         return SR_OK;
600 }
601
602 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
603                 const struct sr_channel_group *cg)
604 {
605         struct dev_context *devc;
606         struct sr_channel *ch;
607         gdouble dval;
608         int ch_idx;
609         const char *sval;
610         gboolean bval;
611         int idx;
612         gboolean found;
613
614         if (sdi->status != SR_ST_ACTIVE)
615                 return SR_ERR_DEV_CLOSED;
616
617         devc = sdi->priv;
618
619         /* Cannot change settings while acquisition active, would cause a mess with commands.
620          * Changing this would be possible, but tricky. */
621         if (devc->acq_running)
622                 return SR_ERR_NA;
623
624         if (!cg) {
625                 /* No channel group: global options. */
626                 switch (key) {
627                 case SR_CONF_LIMIT_MSEC:
628                         if (g_variant_get_uint64(data) == 0) {
629                                 sr_err("LIMIT_MSEC can't be 0.");
630                                 return SR_ERR;
631                         }
632                         devc->limit_msec = g_variant_get_uint64(data);
633                         sr_dbg("Setting time limit to %" PRIu64 "ms.",
634                                 devc->limit_msec);
635                         break;
636                 case SR_CONF_LIMIT_SAMPLES:
637                         devc->limit_samples = g_variant_get_uint64(data);
638                         sr_dbg("Setting sample limit to %" PRIu64 ".",
639                                 devc->limit_samples);
640                         break;
641                 case SR_CONF_OUTPUT_CHANNEL_CONFIG:
642                         sval = g_variant_get_string(data, NULL);
643                         found = FALSE;
644                         for (idx = 0; idx < (int)ARRAY_SIZE(channel_modes); idx++)
645                         {
646                                 if (!strcmp(sval, channel_modes[idx])) {
647                                         found = TRUE;
648                                         if (devc->tracking_mode == idx)
649                                                 break;  /* Nothing to do! */
650                                         devc->tracking_mode = idx;
651                                         if (devc->model->modelid >= LPS_304) /* No use to set anything in the smaller models. */
652                                                 return lps_cmd_ok(sdi->conn, "TRACK%1d", devc->tracking_mode);
653                                 }
654                                 if (devc->model->modelid <= LPS_303) /* Only first setting possible for smaller models. */
655                                         break;
656                         }
657                         if (!found) {
658                                 return SR_ERR_ARG;
659                         }
660                         break;
661                 default:
662                         return SR_ERR_NA;
663                 }
664         } else {
665                 /* Channel group specified: per-channel options. */
666                 /* We only ever have one channel per channel group in this driver. */
667                 ch = cg->channels->data;
668                 ch_idx = ch->index;
669
670                 switch (key) {
671                 case SR_CONF_OUTPUT_VOLTAGE_TARGET:
672                         dval = g_variant_get_double(data);
673                         if (dval < 0 || dval > devc->model->channels[ch_idx].voltage[1])
674                                 return SR_ERR_ARG;
675                         if (ch_idx == 2) {
676                                 if (devc->model->modelid < LPS_304)
677                                         return SR_ERR_ARG;
678
679                                 if (fabs(dval - 5.000) <= 0.001)
680                                         dval = 5.0;
681                                 else if ((devc->model->modelid >= LPS_305) && (fabs(dval - 3.300) <= 0.001))
682                                         dval = 3.3;
683                                 else return SR_ERR_ARG;
684                         }
685
686                         devc->channel_status[ch_idx].output_voltage_max = dval;
687                         if (ch_idx == 2)
688                                 return lps_cmd_ok(sdi->conn, "VDD%1.0f", trunc(dval));
689                         else
690                                 return lps_cmd_ok(sdi->conn, "VSET%d %05.3f", ch_idx+1, dval);
691                         break;
692                 case SR_CONF_OUTPUT_CURRENT_LIMIT:
693                         dval = g_variant_get_double(data);
694                         if (dval < 0 || dval > devc->model->channels[ch_idx].current[1])
695                                 return SR_ERR_ARG;
696                         if (ch_idx == 2) /* No current setting for CH3. */
697                                 return SR_ERR_NA;
698                         devc->channel_status[ch_idx].output_current_max = dval;
699                         return lps_cmd_ok(sdi->conn, "ISET%d %05.4f", ch_idx+1, dval);
700                         break;
701                 case SR_CONF_OUTPUT_ENABLED:
702                         bval = g_variant_get_boolean(data);
703                         if (bval == devc->channel_status[ch_idx].output_enabled) /* Nothing to do. */
704                                 break;
705                         devc->channel_status[ch_idx].output_enabled = bval;
706                         if (ch_idx != 2) { /* Channels 1,2 can be set only together. */
707                                 devc->channel_status[ch_idx^1].output_enabled = bval;
708                                 return lps_cmd_ok(sdi->conn, "OUT%1d", (int)bval);
709                         } else { /* Channel 3: No command to disable output, set voltage to 0 instead. */
710                                 if (bval)
711                                         return lps_cmd_ok(sdi->conn, "VDD%1.0f", devc->channel_status[ch_idx].output_voltage_max);
712                                 else
713                                         return lps_cmd_ok(sdi->conn, "VDD0");
714                         }
715                         break;
716                 default:
717                         return SR_ERR_NA;
718                 }
719         }
720
721         return SR_OK;
722 }
723
724 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
725                 const struct sr_channel_group *cg)
726 {
727         struct dev_context *devc;
728         struct sr_channel *ch;
729         int ch_idx, i;
730         GVariant *gvar;
731         GVariantBuilder gvb;
732
733         (void)data;
734
735         /* Driver options, no device instance necessary. */
736         switch (key) {
737         case SR_CONF_SCAN_OPTIONS:
738                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
739                                                   scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
740                 return SR_OK;
741         default:
742                 if (sdi == NULL)
743                         return SR_ERR_ARG;
744
745                 devc = sdi->priv;
746         }
747
748         /* Device options, independent from channel groups. */
749         if (cg == NULL) {
750                 switch (key) {
751                 case SR_CONF_DEVICE_OPTIONS:
752                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
753                                         devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
754                         return SR_OK;
755                 case SR_CONF_OUTPUT_CHANNEL_CONFIG:
756                         if (devc->model->modelid <= LPS_303) {
757                                 /* The 1-channel models. */
758                                 *data = g_variant_new_strv(channel_modes, 1);
759                         } else {
760                                 /* The other models support all modes. */
761                                 *data = g_variant_new_strv(channel_modes, ARRAY_SIZE(channel_modes));
762                         }
763                         return SR_OK;
764                         break;
765                 default:
766                         return SR_ERR_NA;
767                 }
768         }
769
770         /* Device options, depending on channel groups. */
771         ch = cg->channels->data;
772         ch_idx = ch->index;
773         switch (key) {
774         case SR_CONF_DEVICE_OPTIONS:
775                 if ((ch_idx == 0) || (ch_idx == 1)) /* CH1, CH2 */
776                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
777                                   devopts_ch12, ARRAY_SIZE(devopts_ch12), sizeof(uint32_t));
778                 else /* Must be CH3 */
779                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
780                                   devopts_ch3, ARRAY_SIZE(devopts_ch3), sizeof(uint32_t));
781                 break;
782         case SR_CONF_OUTPUT_VOLTAGE_TARGET:
783                 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
784                 /* Min, max, step. */
785                 for (i = 0; i < 3; i++) {
786                         gvar = g_variant_new_double(devc->model->channels[ch_idx].voltage[i]);
787                         g_variant_builder_add_value(&gvb, gvar);
788                 }
789                 *data = g_variant_builder_end(&gvb);
790                 break;
791         case SR_CONF_OUTPUT_CURRENT_LIMIT:
792                 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
793                 /* Min, max, step. */
794                 for (i = 0; i < 3; i++) {
795                         gvar = g_variant_new_double(devc->model->channels[ch_idx].current[i]);
796                         g_variant_builder_add_value(&gvb, gvar);
797                 }
798                 *data = g_variant_builder_end(&gvb);
799                 break;
800         default:
801                 return SR_ERR_NA;
802         }
803
804         return SR_OK;
805 }
806
807 static int dev_acquisition_start(const struct sr_dev_inst *sdi,
808                                     void *cb_data)
809 {
810         struct dev_context *devc;
811         struct sr_serial_dev_inst *serial;
812
813         if (sdi->status != SR_ST_ACTIVE)
814                 return SR_ERR_DEV_CLOSED;
815
816         devc = sdi->priv;
817
818         devc->acq_running = TRUE;
819
820         serial = sdi->conn;
821         serial_source_add(sdi->session, serial, G_IO_IN, 50,
822                         motech_lps_30x_receive_data, (void *)sdi);
823         std_session_send_df_header(cb_data, LOG_PREFIX);
824
825         /* Start timer, if required. */
826         if (devc->limit_msec)
827                 g_timer_start(devc->elapsed_msec);
828
829         devc->acq_req = AQ_NONE;
830         /* Do not start polling device here, the read function will do it in 50 ms. */
831
832         return SR_OK;
833 }
834
835 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
836 {
837         struct dev_context *devc;
838
839         /* Stop timer, if required. */
840         if (sdi && (devc = sdi->priv) && devc->limit_msec)
841                 g_timer_stop(devc->elapsed_msec);
842
843         return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
844                         sdi->conn, LOG_PREFIX);
845 }
846
847 SR_PRIV struct sr_dev_driver motech_lps_301_driver_info = {
848         .name = "motech-lps-301",
849         .longname = "Motech LPS-301",
850         .api_version = 1,
851         .init = init_lps301,
852         .cleanup = cleanup,
853         .scan = scan_lps301,
854         .dev_list = dev_list_lps301,
855         .dev_clear = dev_clear_lps301,
856         .config_get = config_get,
857         .config_set = config_set,
858         .config_list = config_list,
859         .dev_open = std_serial_dev_open,
860         .dev_close = std_serial_dev_close,
861         .dev_acquisition_start = dev_acquisition_start,
862         .dev_acquisition_stop = dev_acquisition_stop,
863         .priv = NULL,
864 };