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