]> sigrok.org Git - libsigrok.git/blame - src/hardware/manson-hcs-3xxx/api.c
drivers: Provide proper drvopts.
[libsigrok.git] / src / hardware / manson-hcs-3xxx / api.c
CommitLineData
8f4e922f
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
25abc8dd 5 * Copyright (C) 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
8f4e922f
UH
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 2 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
2ea1fdf1 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
8f4e922f
UH
19 */
20
d9251a2c
UH
21/**
22 * @file
23 *
24 * <em>Manson HCS-3xxx series</em> power supply driver
25 *
26 * @internal
27 */
9740d9bf 28
6ec6c43b 29#include <config.h>
8f4e922f
UH
30#include "protocol.h"
31
a0e0bb41 32static const uint32_t scanopts[] = {
b5e92647
UH
33 SR_CONF_CONN,
34 SR_CONF_SERIALCOMM,
35};
36
55fb76b3
UH
37static const uint32_t drvopts[] = {
38 /* Device class */
39 SR_CONF_POWER_SUPPLY,
40};
41
584560f1 42static const uint32_t devopts[] = {
811d6255 43 /* Device class */
f3f19d11 44 /* Acquisition modes. */
b5e92647 45 SR_CONF_CONTINUOUS,
5827f61b
BV
46 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
47 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
811d6255 48 /* Device configuration */
7a0b98b5
AJ
49 SR_CONF_VOLTAGE | SR_CONF_GET,
50 SR_CONF_VOLTAGE_TARGET | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
51 SR_CONF_CURRENT | SR_CONF_GET,
52 SR_CONF_CURRENT_LIMIT | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
53 SR_CONF_ENABLED | SR_CONF_GET | SR_CONF_SET,
b5e92647
UH
54};
55
56/* Note: All models have one power supply output only. */
329733d9 57static const struct hcs_model models[] = {
25abc8dd
MH
58 { MANSON_HCS_3100, "HCS-3100", "3100", { 1, 18, 0.1 }, { 0, 10, 0.10 } },
59 { MANSON_HCS_3102, "HCS-3102", "3102", { 1, 36, 0.1 }, { 0, 5, 0.01 } },
60 { MANSON_HCS_3104, "HCS-3104", "3104", { 1, 60, 0.1 }, { 0, 2.5, 0.01 } },
61 { MANSON_HCS_3150, "HCS-3150", "3150", { 1, 18, 0.1 }, { 0, 15, 0.10 } },
62 { MANSON_HCS_3200, "HCS-3200", "3200", { 1, 18, 0.1 }, { 0, 20, 0.10 } },
63 { MANSON_HCS_3202, "HCS-3202", "3202", { 1, 36, 0.1 }, { 0, 10, 0.10 } },
64 { MANSON_HCS_3204, "HCS-3204", "3204", { 1, 60, 0.1 }, { 0, 5, 0.01 } },
65 { MANSON_HCS_3300, "HCS-3300-USB", "3300", { 1, 16, 0.1 }, { 0, 30, 0.10 } },
66 { MANSON_HCS_3302, "HCS-3302-USB", "3302", { 1, 32, 0.1 }, { 0, 15, 0.10 } },
67 { MANSON_HCS_3304, "HCS-3304-USB", "3304", { 1, 60, 0.1 }, { 0, 8, 0.10 } },
68 { MANSON_HCS_3400, "HCS-3400-USB", "3400", { 1, 16, 0.1 }, { 0, 40, 0.10 } },
69 { MANSON_HCS_3402, "HCS-3402-USB", "3402", { 1, 32, 0.1 }, { 0, 20, 0.10 } },
70 { MANSON_HCS_3404, "HCS-3404-USB", "3404", { 1, 60, 0.1 }, { 0, 10, 0.10 } },
71 { MANSON_HCS_3600, "HCS-3600-USB", "3600", { 1, 16, 0.1 }, { 0, 60, 0.10 } },
72 { MANSON_HCS_3602, "HCS-3602-USB", "3602", { 1, 32, 0.1 }, { 0, 30, 0.10 } },
73 { MANSON_HCS_3604, "HCS-3604-USB", "3604", { 1, 60, 0.1 }, { 0, 15, 0.10 } },
9e9dba7b 74 ALL_ZERO
b5e92647
UH
75};
76
4f840ce9 77static GSList *scan(struct sr_dev_driver *di, GSList *options)
8f4e922f 78{
b5e92647 79 int i, model_id;
b5e92647
UH
80 struct dev_context *devc;
81 struct sr_dev_inst *sdi;
82 struct sr_config *src;
43376f33 83 GSList *l;
b5e92647
UH
84 const char *conn, *serialcomm;
85 struct sr_serial_dev_inst *serial;
5437a0ad 86 char reply[50], **tokens, *dummy;
8f4e922f 87
b5e92647
UH
88 conn = NULL;
89 serialcomm = NULL;
9740d9bf 90 devc = NULL;
b5e92647
UH
91
92 for (l = options; l; l = l->next) {
93 src = l->data;
94 switch (src->key) {
95 case SR_CONF_CONN:
96 conn = g_variant_get_string(src->data, NULL);
97 break;
98 case SR_CONF_SERIALCOMM:
99 serialcomm = g_variant_get_string(src->data, NULL);
100 break;
101 default:
102 sr_err("Unknown option %d, skipping.", src->key);
103 break;
104 }
105 }
8f4e922f 106
b5e92647
UH
107 if (!conn)
108 return NULL;
109 if (!serialcomm)
110 serialcomm = "9600/8n1";
8f4e922f 111
91219afc 112 serial = sr_serial_dev_inst_new(conn, serialcomm);
8f4e922f 113
b5e92647
UH
114 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
115 return NULL;
8f4e922f 116
b5e92647 117 serial_flush(serial);
8f4e922f 118
b5e92647 119 sr_info("Probing serial port %s.", conn);
8f4e922f 120
b5e92647
UH
121 /* Get the device model. */
122 memset(&reply, 0, sizeof(reply));
9740d9bf
MH
123 if ((hcs_send_cmd(serial, "GMOD\r") < 0) ||
124 (hcs_read_reply(serial, 2, reply, sizeof(reply)) < 0))
125 return NULL;
b5e92647 126 tokens = g_strsplit((const gchar *)&reply, "\r", 2);
8f4e922f 127
b5e92647 128 model_id = -1;
25abc8dd
MH
129 for (i = 0; models[i].id != NULL; i++) {
130 if (!strcmp(models[i].id, tokens[0]))
b5e92647
UH
131 model_id = i;
132 }
133 if (model_id < 0) {
6e799d07
UH
134 sr_err("Unknown model ID '%s' detected, aborting.", tokens[0]);
135 g_strfreev(tokens);
b5e92647
UH
136 return NULL;
137 }
6e799d07 138 g_strfreev(tokens);
b5e92647 139
9740d9bf 140 /* Init device instance, etc. */
aac29cc1 141 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
142 sdi->status = SR_ST_INACTIVE;
143 sdi->vendor = g_strdup("Manson");
144 sdi->model = g_strdup(models[model_id].name);
b5e92647
UH
145 sdi->inst_type = SR_INST_SERIAL;
146 sdi->conn = serial;
b5e92647 147
5e23fcab 148 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "CH1");
b5e92647
UH
149
150 devc = g_malloc0(sizeof(struct dev_context));
a655b3fd 151 sr_sw_limits_init(&devc->limits);
b5e92647
UH
152 devc->model = &models[model_id];
153
154 sdi->priv = devc;
155
5437a0ad 156 /* Get current voltage, current, status. */
9740d9bf
MH
157 if ((hcs_send_cmd(serial, "GETD\r") < 0) ||
158 (hcs_read_reply(serial, 2, reply, sizeof(reply)) < 0))
5437a0ad 159 goto exit_err;
9740d9bf 160 tokens = g_strsplit((const gchar *)&reply, "\r", 2);
6e799d07
UH
161 if (hcs_parse_volt_curr_mode(sdi, tokens) < 0) {
162 g_strfreev(tokens);
9740d9bf 163 goto exit_err;
6e799d07 164 }
5437a0ad
MH
165 g_strfreev(tokens);
166
167 /* Get max. voltage and current. */
168 if ((hcs_send_cmd(serial, "GMAX\r") < 0) ||
169 (hcs_read_reply(serial, 2, reply, sizeof(reply)) < 0))
170 goto exit_err;
171 tokens = g_strsplit((const gchar *)&reply, "\r", 2);
172 devc->current_max_device = g_strtod(&tokens[0][3], &dummy) * devc->model->current[2];
173 tokens[0][3] = '\0';
174 devc->voltage_max_device = g_strtod(tokens[0], &dummy) * devc->model->voltage[2];
175 g_strfreev(tokens);
9740d9bf 176
b5e92647 177 serial_close(serial);
b5e92647 178
43376f33 179 return std_scan_complete(di, g_slist_append(NULL, sdi));
9740d9bf
MH
180
181exit_err:
182 sr_dev_inst_free(sdi);
b1f83103
UH
183 g_free(devc);
184
9740d9bf 185 return NULL;
b5e92647
UH
186}
187
584560f1 188static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
8f4e922f
UH
189 const struct sr_channel_group *cg)
190{
b5e92647 191 struct dev_context *devc;
8f4e922f 192
8f4e922f
UH
193 (void)cg;
194
b5e92647
UH
195 if (!sdi)
196 return SR_ERR_ARG;
197
198 devc = sdi->priv;
199
8f4e922f 200 switch (key) {
b5e92647 201 case SR_CONF_LIMIT_SAMPLES:
b5e92647 202 case SR_CONF_LIMIT_MSEC:
a655b3fd 203 return sr_sw_limits_config_get(&devc->limits, key, data);
7a0b98b5 204 case SR_CONF_VOLTAGE:
ca95e90f
BV
205 *data = g_variant_new_double(devc->voltage);
206 break;
7a0b98b5 207 case SR_CONF_VOLTAGE_TARGET:
ca95e90f
BV
208 *data = g_variant_new_double(devc->voltage_max);
209 break;
7a0b98b5 210 case SR_CONF_CURRENT:
811d6255
MH
211 *data = g_variant_new_double(devc->current);
212 break;
7a0b98b5 213 case SR_CONF_CURRENT_LIMIT:
811d6255
MH
214 *data = g_variant_new_double(devc->current_max);
215 break;
7a0b98b5 216 case SR_CONF_ENABLED:
811d6255
MH
217 *data = g_variant_new_boolean(devc->output_enabled);
218 break;
8f4e922f
UH
219 default:
220 return SR_ERR_NA;
221 }
222
b5e92647 223 return SR_OK;
8f4e922f
UH
224}
225
584560f1 226static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
8f4e922f
UH
227 const struct sr_channel_group *cg)
228{
b5e92647 229 struct dev_context *devc;
811d6255
MH
230 gboolean bval;
231 gdouble dval;
8f4e922f 232
8f4e922f
UH
233 (void)cg;
234
b5e92647
UH
235 devc = sdi->priv;
236
8f4e922f 237 switch (key) {
b5e92647 238 case SR_CONF_LIMIT_MSEC:
cd04f641 239 case SR_CONF_LIMIT_SAMPLES:
a655b3fd 240 return sr_sw_limits_config_set(&devc->limits, key, data);
7a0b98b5 241 case SR_CONF_VOLTAGE_TARGET:
ca95e90f
BV
242 dval = g_variant_get_double(data);
243 if (dval < devc->model->voltage[0] || dval > devc->voltage_max_device)
244 return SR_ERR_ARG;
245
246 if ((hcs_send_cmd(sdi->conn, "VOLT%03.0f\r",
247 (dval / devc->model->voltage[2])) < 0) ||
248 (hcs_read_reply(sdi->conn, 1, devc->buf, sizeof(devc->buf)) < 0))
249 return SR_ERR;
250 devc->voltage_max = dval;
251 break;
7a0b98b5 252 case SR_CONF_CURRENT_LIMIT:
811d6255 253 dval = g_variant_get_double(data);
5437a0ad 254 if (dval < devc->model->current[0] || dval > devc->current_max_device)
811d6255
MH
255 return SR_ERR_ARG;
256
257 if ((hcs_send_cmd(sdi->conn, "CURR%03.0f\r",
258 (dval / devc->model->current[2])) < 0) ||
259 (hcs_read_reply(sdi->conn, 1, devc->buf, sizeof(devc->buf)) < 0))
260 return SR_ERR;
261 devc->current_max = dval;
262 break;
7a0b98b5 263 case SR_CONF_ENABLED:
811d6255
MH
264 bval = g_variant_get_boolean(data);
265 if (bval == devc->output_enabled) /* Nothing to do. */
266 break;
267 if ((hcs_send_cmd(sdi->conn, "SOUT%1d\r", !bval) < 0) ||
268 (hcs_read_reply(sdi->conn, 1, devc->buf, sizeof(devc->buf)) < 0))
269 return SR_ERR;
270 devc->output_enabled = bval;
271 break;
8f4e922f 272 default:
b5e92647 273 return SR_ERR_NA;
8f4e922f
UH
274 }
275
b5e92647 276 return SR_OK;
8f4e922f
UH
277}
278
584560f1 279static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
8f4e922f
UH
280 const struct sr_channel_group *cg)
281{
811d6255
MH
282 struct dev_context *devc;
283 GVariant *gvar;
284 GVariantBuilder gvb;
5437a0ad 285 double dval;
811d6255
MH
286 int idx;
287
e66d1892 288 devc = (sdi) ? sdi->priv : NULL;
811d6255 289
8f4e922f 290 switch (key) {
e66d1892 291 case SR_CONF_SCAN_OPTIONS:
b5e92647 292 case SR_CONF_DEVICE_OPTIONS:
e66d1892 293 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
7a0b98b5 294 case SR_CONF_VOLTAGE_TARGET:
811d6255
MH
295 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
296 /* Min, max, step. */
297 for (idx = 0; idx < 3; idx++) {
5437a0ad 298 if (idx == 1)
ca95e90f 299 dval = devc->voltage_max_device;
5437a0ad 300 else
ca95e90f 301 dval = devc->model->voltage[idx];
5437a0ad 302 gvar = g_variant_new_double(dval);
811d6255
MH
303 g_variant_builder_add_value(&gvb, gvar);
304 }
305 *data = g_variant_builder_end(&gvb);
306 break;
7a0b98b5 307 case SR_CONF_CURRENT_LIMIT:
811d6255
MH
308 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
309 /* Min, max, step. */
310 for (idx = 0; idx < 3; idx++) {
5437a0ad 311 if (idx == 1)
ca95e90f 312 dval = devc->current_max_device;
5437a0ad 313 else
ca95e90f 314 dval = devc->model->current[idx];
5437a0ad 315 gvar = g_variant_new_double(dval);
811d6255
MH
316 g_variant_builder_add_value(&gvb, gvar);
317 }
318 *data = g_variant_builder_end(&gvb);
319 break;
8f4e922f
UH
320 default:
321 return SR_ERR_NA;
322 }
323
b5e92647 324 return SR_OK;
8f4e922f
UH
325}
326
695dc859 327static int dev_acquisition_start(const struct sr_dev_inst *sdi)
8f4e922f 328{
b5e92647
UH
329 struct dev_context *devc;
330 struct sr_serial_dev_inst *serial;
8f4e922f 331
b5e92647 332 devc = sdi->priv;
b5e92647 333
a655b3fd 334 sr_sw_limits_acquisition_start(&devc->limits);
bee2b016 335 std_session_send_df_header(sdi);
b5e92647 336
b5e92647
UH
337 devc->reply_pending = FALSE;
338 devc->req_sent_at = 0;
339
340 /* Poll every 10ms, or whenever some data comes in. */
341 serial = sdi->conn;
102f1239
BV
342 serial_source_add(sdi->session, serial, G_IO_IN, 10,
343 hcs_receive_data, (void *)sdi);
b5e92647 344
8f4e922f
UH
345 return SR_OK;
346}
347
dd5c48a6 348static struct sr_dev_driver manson_hcs_3xxx_driver_info = {
8f4e922f
UH
349 .name = "manson-hcs-3xxx",
350 .longname = "Manson HCS-3xxx",
351 .api_version = 1,
c2fdcc25 352 .init = std_init,
700d6b64 353 .cleanup = std_cleanup,
8f4e922f 354 .scan = scan,
c01bf34c 355 .dev_list = std_dev_list,
f778bf02 356 .dev_clear = std_dev_clear,
8f4e922f
UH
357 .config_get = config_get,
358 .config_set = config_set,
359 .config_list = config_list,
b5e92647
UH
360 .dev_open = std_serial_dev_open,
361 .dev_close = std_serial_dev_close,
8f4e922f 362 .dev_acquisition_start = dev_acquisition_start,
4b1a9d5d 363 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 364 .context = NULL,
8f4e922f 365};
dd5c48a6 366SR_REGISTER_DEV_DRIVER(manson_hcs_3xxx_driver_info);