blob: 9ca71d3d01872f4d5103ac512e44cc3908273511 [file] [log] [blame]
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +02001/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.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
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020020#include <string.h>
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +020021#include "protocol.h"
22
23SR_PRIV struct sr_dev_driver scpi_pps_driver_info;
24static struct sr_dev_driver *di = &scpi_pps_driver_info;
Bert Vermeulend4eabea2014-09-05 03:23:32 +020025extern unsigned int num_pps_profiles;
26extern const struct scpi_pps pps_profiles[];
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020027
28static const int32_t scanopts[] = {
29 SR_CONF_CONN,
30 SR_CONF_SERIALCOMM,
31};
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +020032
Bert Vermeulen01b02572014-09-08 03:26:19 +020033static struct pps_channel_instance pci[] = {
34 { SR_MQ_VOLTAGE, SCPI_CMD_GET_MEAS_VOLTAGE, "V" },
35 { SR_MQ_CURRENT, SCPI_CMD_GET_MEAS_CURRENT, "I" },
36 { SR_MQ_POWER, SCPI_CMD_GET_MEAS_POWER, "P" },
37};
38
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +020039static int init(struct sr_context *sr_ctx)
40{
41 return std_init(sr_ctx, di, LOG_PREFIX);
42}
43
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020044static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
45{
46 struct dev_context *devc;
47 struct sr_dev_inst *sdi;
48 struct sr_scpi_hw_info *hw_info;
49 struct sr_channel_group *cg;
50 struct sr_channel *ch;
51 const struct scpi_pps *device;
Bert Vermeulen01b02572014-09-08 03:26:19 +020052 struct pps_channel *pch;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020053 const struct channel_group_spec *cgs;
54 struct pps_channel_group *pcg;
Bert Vermeulen58b77c42014-09-05 12:50:07 +020055 GRegex *model_re;
56 GMatchInfo *model_mi;
Bert Vermeulen01b02572014-09-08 03:26:19 +020057 GSList *l;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020058 uint64_t mask;
Bert Vermeulen01b02572014-09-08 03:26:19 +020059 unsigned int ch_num, ch_idx, old_idx, i, j;
Bert Vermeulen22c18b02014-09-05 03:49:25 +020060 const char *vendor;
Bert Vermeulen01b02572014-09-08 03:26:19 +020061 char ch_name[16];
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020062
63 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
64 sr_info("Couldn't get IDN response.");
65 return NULL;
66 }
67
68 device = NULL;
69 for (i = 0; i < num_pps_profiles; i++) {
Bert Vermeulen22c18b02014-09-05 03:49:25 +020070 vendor = get_vendor(hw_info->manufacturer);
Bert Vermeulen58b77c42014-09-05 12:50:07 +020071 if (strcasecmp(vendor, pps_profiles[i].vendor))
Bert Vermeulen22c18b02014-09-05 03:49:25 +020072 continue;
Bert Vermeulen58b77c42014-09-05 12:50:07 +020073 model_re = g_regex_new(pps_profiles[i].model, 0, 0, NULL);
74 if (g_regex_match(model_re, hw_info->model, 0, &model_mi))
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020075 device = &pps_profiles[i];
Bert Vermeulen58b77c42014-09-05 12:50:07 +020076 g_match_info_unref(model_mi);
77 g_regex_unref(model_re);
78 if (device)
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020079 break;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020080 }
81 if (!device) {
82 sr_scpi_hw_info_free(hw_info);
83 return NULL;
84 }
85
Bert Vermeulen58b77c42014-09-05 12:50:07 +020086 sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, vendor, hw_info->model,
87 hw_info->firmware_version);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +020088 sdi->conn = scpi;
89 sdi->driver = di;
90 sdi->inst_type = SR_INST_SCPI;
91 devc = g_malloc0(sizeof(struct dev_context));
92 devc->device = device;
93 sdi->priv = devc;
94
Bert Vermeulen01b02572014-09-08 03:26:19 +020095 ch_idx = 0;
96 for (ch_num = 0; ch_num < device->num_channels; ch_num++) {
97 /* Create one channel per measurable output unit. */
98 old_idx = ch_idx;
99 for (i = 0; i < ARRAY_SIZE(pci); i++) {
100 if (!scpi_cmd_get(sdi, pci[i].command))
101 continue;
102 g_snprintf(ch_name, 16, "%s%s", pci[i].prefix,
103 device->channels[ch_num].name);
104 ch = sr_channel_new(ch_idx++, SR_CHANNEL_ANALOG, TRUE, ch_name);
105 pch = g_malloc0(sizeof(struct pps_channel));
106 pch->hw_output_idx = ch_num;
107 pch->hwname = device->channels[ch_num].name;
108 pch->mq = pci[i].mq;
109 ch->priv = pch;
110 sdi->channels = g_slist_append(sdi->channels, ch);
111 }
112 if (ch_idx == old_idx) {
113 /*
114 * Didn't create any channels for this hardware output.
115 * This can happen if the device has no measurement capability.
116 */
117 g_free(pch);
118 continue;
119 }
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200120 }
121
122 for (i = 0; i < device->num_channel_groups; i++) {
123 cgs = &device->channel_groups[i];
124 cg = g_malloc0(sizeof(struct sr_channel_group));
125 cg->name = g_strdup(cgs->name);
126 for (j = 0, mask = 1; j < 64; j++, mask <<= 1) {
127 if (cgs->channel_index_mask & mask) {
Bert Vermeulen01b02572014-09-08 03:26:19 +0200128 for (l = sdi->channels; l; l = l->next) {
129 ch = l->data;
130 pch = ch->priv;
131 if (pch->hw_output_idx == j)
132 cg->channels = g_slist_append(cg->channels, ch);
133 }
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200134 }
135 }
136 pcg = g_malloc0(sizeof(struct pps_channel_group));
137 pcg->features = cgs->features;
138 cg->priv = pcg;
139 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
140 }
141
142 /* SCPI devices commonly lock the panel keys when accessed remotely. */
143 scpi_cmd(sdi, SCPI_CMD_KEY_UNLOCK);
144 sr_scpi_close(scpi);
145
146 return sdi;
147}
148
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200149static GSList *scan(GSList *options)
150{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200151 return sr_scpi_scan(di->priv, options, probe_device);
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200152}
153
154static GSList *dev_list(void)
155{
156 return ((struct drv_context *)(di->priv))->instances;
157}
158
159static int dev_clear(void)
160{
161 return std_dev_clear(di, NULL);
162}
163
164static int dev_open(struct sr_dev_inst *sdi)
165{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200166 struct sr_scpi_dev_inst *scpi;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200167
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200168 if (sdi->status != SR_ST_ACTIVE)
169 return SR_ERR;
170
171 scpi = sdi->conn;
172 if (sr_scpi_open(scpi) < 0)
173 return SR_ERR;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200174
175 sdi->status = SR_ST_ACTIVE;
176
177 return SR_OK;
178}
179
180static int dev_close(struct sr_dev_inst *sdi)
181{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200182 struct sr_scpi_dev_inst *scpi;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200183
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200184 if (sdi->status != SR_ST_ACTIVE)
185 return SR_ERR_DEV_CLOSED;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200186
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200187 scpi = sdi->conn;
188 if (scpi) {
189 scpi_cmd(sdi, SCPI_CMD_KEY_UNLOCK);
190 sr_scpi_close(scpi);
191 sdi->status = SR_ST_INACTIVE;
192 }
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200193
194 return SR_OK;
195}
196
197static int cleanup(void)
198{
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200199 return SR_OK;
200}
201
202static int config_get(int key, GVariant **data, const struct sr_dev_inst *sdi,
203 const struct sr_channel_group *cg)
204{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200205 struct dev_context *devc;
206 struct sr_scpi_dev_inst *scpi;
207 struct sr_channel *ch;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200208 struct pps_channel *pch;
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200209 const GVariantType *gvtype;
210 unsigned int i;
211 int cmd, ret;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200212 char *s;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200213
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200214 if (!sdi)
215 return SR_ERR_ARG;
216
217 devc = sdi->priv;
218 scpi = sdi->conn;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200219
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200220 if (cg) {
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200221 /*
222 * These options only apply to channel groups with a single
223 * channel -- they're per-channel settings for the device.
224 */
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200225
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200226 /*
227 * Config keys are handled below depending on whether a channel
228 * group was provided by the frontend. However some of these
229 * take a CG on one PPS but not on others. Check the device's
230 * profile for that here, and NULL out the channel group as needed.
231 */
232 for (i = 0; i < devc->device->num_devopts; i++) {
233 if (devc->device->devopts[i] == key) {
234 cg = NULL;
235 break;
236 }
237 }
238
239 ch = cg->channels->data;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200240 pch = ch->priv;
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200241 }
242
243 gvtype = NULL;
244 cmd = -1;
245 switch (key) {
246 case SR_CONF_OUTPUT_ENABLED:
247 gvtype = G_VARIANT_TYPE_BOOLEAN;
248 cmd = SCPI_CMD_GET_OUTPUT_ENABLED;
249 break;
250 case SR_CONF_OUTPUT_VOLTAGE:
251 gvtype = G_VARIANT_TYPE_DOUBLE;
252 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
253 break;
254 case SR_CONF_OUTPUT_VOLTAGE_MAX:
255 gvtype = G_VARIANT_TYPE_DOUBLE;
256 cmd = SCPI_CMD_GET_VOLTAGE_MAX;
257 break;
258 case SR_CONF_OUTPUT_CURRENT:
259 gvtype = G_VARIANT_TYPE_DOUBLE;
260 cmd = SCPI_CMD_GET_MEAS_CURRENT;
261 break;
262 case SR_CONF_OUTPUT_CURRENT_MAX:
263 gvtype = G_VARIANT_TYPE_DOUBLE;
264 cmd = SCPI_CMD_GET_CURRENT_MAX;
265 break;
266 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
267 gvtype = G_VARIANT_TYPE_BOOLEAN;
268 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ENABLED;
269 break;
270 case SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE:
271 gvtype = G_VARIANT_TYPE_BOOLEAN;
272 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ACTIVE;
273 break;
274 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
275 gvtype = G_VARIANT_TYPE_DOUBLE;
276 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_THRESHOLD;
277 break;
278 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
279 gvtype = G_VARIANT_TYPE_BOOLEAN;
280 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ENABLED;
281 break;
282 case SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE:
283 gvtype = G_VARIANT_TYPE_BOOLEAN;
284 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE;
285 break;
286 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
287 gvtype = G_VARIANT_TYPE_DOUBLE;
288 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_THRESHOLD;
289 break;
290 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
291 gvtype = G_VARIANT_TYPE_BOOLEAN;
292 cmd = SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION;
293 break;
294 }
295 if (gvtype) {
296 if (cg)
Bert Vermeulen01b02572014-09-08 03:26:19 +0200297 ret = scpi_cmd_resp(sdi, data, gvtype, cmd, pch->hwname);
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200298 else
299 ret = scpi_cmd_resp(sdi, data, gvtype, cmd);
300 } else if (cg) {
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200301 switch (key) {
302 case SR_CONF_OUTPUT_REGULATION:
303 ret = SR_ERR;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200304 if (scpi_cmd(sdi, SCPI_CMD_GET_OUTPUT_REGULATION, pch->hwname) == SR_OK) {
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200305 if (sr_scpi_get_string(scpi, NULL, &s) == SR_OK) {
306 if (strcmp(s, "CC") && strcmp(s, "CV") && strcmp(s, "UR")) {
307 sr_dbg("Unknown response to SCPI_CMD_GET_OUTPUT_REGULATION: %s", s);
308 } else {
309 *data = g_variant_new_string(s);
310 g_free(s);
311 ret = SR_OK;
312 }
313 }
314 }
315 break;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200316 default:
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200317 ret = SR_ERR_NA;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200318 }
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200319 } else
320 ret = SR_ERR_NA;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200321
322 return ret;
323}
324
325static int config_set(int key, GVariant *data, const struct sr_dev_inst *sdi,
326 const struct sr_channel_group *cg)
327{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200328 struct sr_channel *ch;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200329 struct pps_channel *pch;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200330 double d;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200331 int ret;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200332 const char *s;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200333
334 if (sdi->status != SR_ST_ACTIVE)
335 return SR_ERR_DEV_CLOSED;
336
337 ret = SR_OK;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200338 if (!cg) {
339 switch (key) {
340 /* No channel group: global options. */
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200341 case SR_CONF_OUTPUT_ENABLED:
342 s = g_variant_get_boolean(data) ? "ON" : "OFF";
343 ret = scpi_cmd(sdi, SCPI_CMD_SET_OUTPUT_ENABLED, s);
344 break;
345 case SR_CONF_OUTPUT_VOLTAGE_MAX:
346 d = g_variant_get_double(data);
347 ret = scpi_cmd(sdi, SCPI_CMD_SET_VOLTAGE_MAX, d);
348 break;
349 case SR_CONF_OUTPUT_CURRENT_MAX:
350 d = g_variant_get_double(data);
351 ret = scpi_cmd(sdi, SCPI_CMD_SET_CURRENT_MAX, d);
352 break;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200353 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
354 s = g_variant_get_boolean(data) ? "ON" : "OFF";
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200355 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION, s);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200356 break;
357 default:
358 ret = SR_ERR_NA;
359 }
360 } else {
361 /* Channel group specified. */
362 if (!sdi)
363 return SR_ERR_ARG;
364 if (g_slist_length(cg->channels) > 1)
365 return SR_ERR_NA;
366 ch = cg->channels->data;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200367 pch = ch->priv;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200368 switch (key) {
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200369 case SR_CONF_OUTPUT_ENABLED:
370 s = g_variant_get_boolean(data) ? "ON" : "OFF";
Bert Vermeulen01b02572014-09-08 03:26:19 +0200371 ret = scpi_cmd(sdi, SCPI_CMD_SET_OUTPUT_ENABLED, pch->hwname, s);
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200372 break;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200373 case SR_CONF_OUTPUT_VOLTAGE_MAX:
374 d = g_variant_get_double(data);
Bert Vermeulen01b02572014-09-08 03:26:19 +0200375 ret = scpi_cmd(sdi, SCPI_CMD_SET_VOLTAGE_MAX, pch->hwname, d);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200376 break;
377 case SR_CONF_OUTPUT_CURRENT_MAX:
378 d = g_variant_get_double(data);
Bert Vermeulen01b02572014-09-08 03:26:19 +0200379 ret = scpi_cmd(sdi, SCPI_CMD_SET_CURRENT_MAX, pch->hwname, d);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200380 break;
381 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
382 s = g_variant_get_boolean(data) ? "ON" : "OFF";
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200383 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_ENABLED,
Bert Vermeulen01b02572014-09-08 03:26:19 +0200384 pch->hwname, s);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200385 break;
386 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
387 d = g_variant_get_double(data);
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200388 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_THRESHOLD,
Bert Vermeulen01b02572014-09-08 03:26:19 +0200389 pch->hwname, d);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200390 break;
391 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
392 s = g_variant_get_boolean(data) ? "ON" : "OFF";
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200393 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_CURRENT_PROTECTION_ENABLED,
Bert Vermeulen01b02572014-09-08 03:26:19 +0200394 pch->hwname, s);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200395 break;
396 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
397 d = g_variant_get_double(data);
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200398 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_CURRENT_PROTECTION_THRESHOLD,
Bert Vermeulen01b02572014-09-08 03:26:19 +0200399 pch->hwname, d);
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200400 break;
401 default:
402 ret = SR_ERR_NA;
403 }
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200404 }
405
406 return ret;
407}
408
409static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
410 const struct sr_channel_group *cg)
411{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200412 struct dev_context *devc;
413 struct sr_channel *ch;
414 struct channel_spec *ch_spec;
415 GVariant *gvar;
416 GVariantBuilder gvb;
417 int ret, i;
418 const char *s[16];
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200419
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200420 /* Always available, even without sdi. */
421 if (key == SR_CONF_SCAN_OPTIONS) {
422 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
423 scanopts, ARRAY_SIZE(scanopts), sizeof(int32_t));
424 return SR_OK;
425 }
426
427 if (!sdi)
428 return SR_ERR_ARG;
429 devc = sdi->priv;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200430
431 ret = SR_OK;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200432 if (!cg) {
433 /* No channel group: global options. */
434 switch (key) {
435 case SR_CONF_DEVICE_OPTIONS:
436 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
437 devc->device->devopts, devc->device->num_devopts,
438 sizeof(int32_t));
439 break;
440 case SR_CONF_OUTPUT_CHANNEL_CONFIG:
Bert Vermeulen478c8d92014-09-08 00:02:03 +0200441 /* Not used. */
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200442 i = 0;
443 if (devc->device->features & PPS_INDEPENDENT)
444 s[i++] = "Independent";
445 if (devc->device->features & PPS_SERIES)
446 s[i++] = "Series";
447 if (devc->device->features & PPS_PARALLEL)
448 s[i++] = "Parallel";
449 if (i == 0) {
450 /*
451 * Shouldn't happen: independent-only devices
452 * shouldn't advertise this option at all.
453 */
454 return SR_ERR_NA;
455 }
456 *data = g_variant_new_strv(s, i);
457 break;
458 default:
459 return SR_ERR_NA;
460 }
461 } else {
462 /* Channel group specified. */
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200463 /*
464 * Per-channel-group options depending on a channel are actually
465 * done with the first channel. Channel groups in PPS can have
466 * more than one channel, but they will typically be of equal
Bert Vermeulen01b02572014-09-08 03:26:19 +0200467 * specification for use in series or parallel mode.
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200468 */
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200469 ch = cg->channels->data;
470
471 switch (key) {
472 case SR_CONF_DEVICE_OPTIONS:
473 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
474 devc->device->devopts_cg, devc->device->num_devopts_cg,
475 sizeof(int32_t));
476 break;
477 case SR_CONF_OUTPUT_VOLTAGE_MAX:
478 ch_spec = &(devc->device->channels[ch->index]);
479 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
480 /* Min, max, write resolution. */
481 for (i = 0; i < 3; i++) {
482 gvar = g_variant_new_double(ch_spec->voltage[i]);
483 g_variant_builder_add_value(&gvb, gvar);
484 }
485 *data = g_variant_builder_end(&gvb);
486 break;
487 case SR_CONF_OUTPUT_CURRENT_MAX:
488 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
489 /* Min, max, step. */
490 for (i = 0; i < 3; i++) {
491 ch_spec = &(devc->device->channels[ch->index]);
492 gvar = g_variant_new_double(ch_spec->current[i]);
493 g_variant_builder_add_value(&gvb, gvar);
494 }
495 *data = g_variant_builder_end(&gvb);
496 break;
497 default:
498 return SR_ERR_NA;
499 }
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200500 }
501
502 return ret;
503}
504
505static int dev_acquisition_start(const struct sr_dev_inst *sdi,
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200506 void *cb_data)
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200507{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200508 struct dev_context *devc;
509 struct sr_scpi_dev_inst *scpi;
510 struct sr_channel *ch;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200511 struct pps_channel *pch;
512 int cmd, ret;
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200513
514 if (sdi->status != SR_ST_ACTIVE)
515 return SR_ERR_DEV_CLOSED;
516
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200517 devc = sdi->priv;
518 scpi = sdi->conn;
519 devc->cb_data = cb_data;
520
Bert Vermeulen01b02572014-09-08 03:26:19 +0200521 if ((ret = sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 10,
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200522 scpi_pps_receive_data, (void *)sdi)) != SR_OK)
523 return ret;
524 std_session_send_df_header(sdi, LOG_PREFIX);
525
Bert Vermeulen01b02572014-09-08 03:26:19 +0200526 /* Prime the pipe with the first channel's fetch. */
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200527 ch = sdi->channels->data;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200528 pch = ch->priv;
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200529 devc->cur_channel = ch;
Bert Vermeulen01b02572014-09-08 03:26:19 +0200530 if (pch->mq == SR_MQ_VOLTAGE)
531 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
532 else if (pch->mq == SR_MQ_CURRENT)
533 cmd = SCPI_CMD_GET_MEAS_CURRENT;
534 else if (pch->mq == SR_MQ_POWER)
535 cmd = SCPI_CMD_GET_MEAS_POWER;
536 else
537 return SR_ERR;
538 scpi_cmd(sdi, cmd, pch->hwname);
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200539
540 return SR_OK;
541}
542
543static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
544{
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200545 struct sr_scpi_dev_inst *scpi;
546 float f;
547
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200548 (void)cb_data;
549
550 if (sdi->status != SR_ST_ACTIVE)
551 return SR_ERR_DEV_CLOSED;
552
Bert Vermeulen9e45cd42014-09-05 03:20:32 +0200553 scpi = sdi->conn;
554
555 /*
556 * A requested value is certainly on the way. Retrieve it now,
557 * to avoid leaving the device in a state where it's not expecting
558 * commands.
559 */
560 sr_scpi_get_float(scpi, NULL, &f);
561 sr_scpi_source_remove(sdi->session, scpi);
562
Bert Vermeulenca1a7cb2014-08-31 17:20:39 +0200563 return SR_OK;
564}
565
566SR_PRIV struct sr_dev_driver scpi_pps_driver_info = {
567 .name = "scpi-pps",
568 .longname = "SCPI PPS",
569 .api_version = 1,
570 .init = init,
571 .cleanup = cleanup,
572 .scan = scan,
573 .dev_list = dev_list,
574 .dev_clear = dev_clear,
575 .config_get = config_get,
576 .config_set = config_set,
577 .config_list = config_list,
578 .dev_open = dev_open,
579 .dev_close = dev_close,
580 .dev_acquisition_start = dev_acquisition_start,
581 .dev_acquisition_stop = dev_acquisition_stop,
582 .priv = NULL,
583};