]> sigrok.org Git - libsigrok.git/blame - src/hardware/scpi-pps/api.c
uni-t-ut181a: silence compiler warning, use of uninitialized variable
[libsigrok.git] / src / hardware / scpi-pps / api.c
CommitLineData
ca1a7cb5
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
7e66bf05 5 * Copyright (C) 2017,2019 Frank Stettner <frank-stettner@gmx.net>
ca1a7cb5
BV
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
6ec6c43b 21#include <config.h>
9e45cd41 22#include <string.h>
ba464a12 23#include <strings.h>
91ef511d 24#include "scpi.h"
ca1a7cb5
BV
25#include "protocol.h"
26
dd5c48a6 27static struct sr_dev_driver scpi_pps_driver_info;
c2af709b 28static struct sr_dev_driver hp_ib_pps_driver_info;
9e45cd41 29
584560f1 30static const uint32_t scanopts[] = {
9e45cd41
BV
31 SR_CONF_CONN,
32 SR_CONF_SERIALCOMM,
33};
ca1a7cb5 34
9d9cf1c4 35static const uint32_t drvopts[] = {
a258204e 36 SR_CONF_POWER_SUPPLY,
a258204e
BV
37};
38
329733d9 39static const struct pps_channel_instance pci[] = {
01b0257a
BV
40 { SR_MQ_VOLTAGE, SCPI_CMD_GET_MEAS_VOLTAGE, "V" },
41 { SR_MQ_CURRENT, SCPI_CMD_GET_MEAS_CURRENT, "I" },
42 { SR_MQ_POWER, SCPI_CMD_GET_MEAS_POWER, "P" },
4264f1c0 43 { SR_MQ_FREQUENCY, SCPI_CMD_GET_MEAS_FREQUENCY, "F" },
01b0257a
BV
44};
45
c2af709b 46static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi,
d9251a2c
UH
47 int (*get_hw_id)(struct sr_scpi_dev_inst *scpi,
48 struct sr_scpi_hw_info **scpi_response))
ca1a7cb5 49{
9e45cd41
BV
50 struct dev_context *devc;
51 struct sr_dev_inst *sdi;
52 struct sr_scpi_hw_info *hw_info;
53 struct sr_channel_group *cg;
54 struct sr_channel *ch;
55 const struct scpi_pps *device;
01b0257a 56 struct pps_channel *pch;
4a471029
BV
57 struct channel_spec *channels;
58 struct channel_group_spec *channel_groups, *cgs;
9e45cd41 59 struct pps_channel_group *pcg;
58b77c41
BV
60 GRegex *model_re;
61 GMatchInfo *model_mi;
01b0257a 62 GSList *l;
9e45cd41 63 uint64_t mask;
4a471029
BV
64 unsigned int num_channels, num_channel_groups, ch_num, ch_idx, i, j;
65 int ret;
22c18b03 66 const char *vendor;
01b0257a 67 char ch_name[16];
9e45cd41 68
c2af709b 69 if (get_hw_id(scpi, &hw_info) != SR_OK) {
9e45cd41
BV
70 sr_info("Couldn't get IDN response.");
71 return NULL;
72 }
73
74 device = NULL;
75 for (i = 0; i < num_pps_profiles; i++) {
91ef511d 76 vendor = sr_vendor_alias(hw_info->manufacturer);
34577da6 77 if (g_ascii_strcasecmp(vendor, pps_profiles[i].vendor))
22c18b03 78 continue;
58b77c41
BV
79 model_re = g_regex_new(pps_profiles[i].model, 0, 0, NULL);
80 if (g_regex_match(model_re, hw_info->model, 0, &model_mi))
9e45cd41 81 device = &pps_profiles[i];
58b77c41
BV
82 g_match_info_unref(model_mi);
83 g_regex_unref(model_re);
84 if (device)
9e45cd41 85 break;
9e45cd41
BV
86 }
87 if (!device) {
88 sr_scpi_hw_info_free(hw_info);
89 return NULL;
90 }
91
aac29cc1 92 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
93 sdi->vendor = g_strdup(vendor);
94 sdi->model = g_strdup(hw_info->model);
95 sdi->version = g_strdup(hw_info->firmware_version);
9e45cd41 96 sdi->conn = scpi;
4f840ce9 97 sdi->driver = &scpi_pps_driver_info;
9e45cd41 98 sdi->inst_type = SR_INST_SCPI;
d08667c5
SA
99 sdi->serial_num = g_strdup(hw_info->serial_number);
100
9e45cd41
BV
101 devc = g_malloc0(sizeof(struct dev_context));
102 devc->device = device;
88e4daa9 103 sr_sw_limits_init(&devc->limits);
9e45cd41
BV
104 sdi->priv = devc;
105
4a471029
BV
106 if (device->num_channels) {
107 /* Static channels and groups. */
329733d9 108 channels = (struct channel_spec *)device->channels;
4a471029 109 num_channels = device->num_channels;
329733d9 110 channel_groups = (struct channel_group_spec *)device->channel_groups;
4a471029
BV
111 num_channel_groups = device->num_channel_groups;
112 } else {
113 /* Channels and groups need to be probed. */
114 ret = device->probe_channels(sdi, hw_info, &channels, &num_channels,
115 &channel_groups, &num_channel_groups);
116 if (ret != SR_OK) {
117 sr_err("Failed to probe for channels.");
118 return NULL;
119 }
120 /*
121 * Since these were dynamically allocated, we'll need to free them
122 * later.
123 */
124 devc->channels = channels;
125 devc->channel_groups = channel_groups;
126 }
127
01b0257a 128 ch_idx = 0;
4a471029 129 for (ch_num = 0; ch_num < num_channels; ch_num++) {
01b0257a 130 /* Create one channel per measurable output unit. */
01b0257a 131 for (i = 0; i < ARRAY_SIZE(pci); i++) {
fa2ce8c7 132 if (!sr_scpi_cmd_get(devc->device->commands, pci[i].command))
01b0257a
BV
133 continue;
134 g_snprintf(ch_name, 16, "%s%s", pci[i].prefix,
4a471029 135 channels[ch_num].name);
5e23fcab
ML
136 ch = sr_channel_new(sdi, ch_idx++, SR_CHANNEL_ANALOG, TRUE,
137 ch_name);
01b0257a
BV
138 pch = g_malloc0(sizeof(struct pps_channel));
139 pch->hw_output_idx = ch_num;
4a471029 140 pch->hwname = channels[ch_num].name;
01b0257a
BV
141 pch->mq = pci[i].mq;
142 ch->priv = pch;
01b0257a 143 }
9e45cd41 144 }
ca1a7cb5 145
4a471029
BV
146 for (i = 0; i < num_channel_groups; i++) {
147 cgs = &channel_groups[i];
9e45cd41
BV
148 cg = g_malloc0(sizeof(struct sr_channel_group));
149 cg->name = g_strdup(cgs->name);
150 for (j = 0, mask = 1; j < 64; j++, mask <<= 1) {
151 if (cgs->channel_index_mask & mask) {
01b0257a
BV
152 for (l = sdi->channels; l; l = l->next) {
153 ch = l->data;
154 pch = ch->priv;
f2bbcc33 155 /* Add mqflags from channel_group_spec only to voltage
b89e6db9 156 * and current channels.
f2bbcc33
FS
157 */
158 if (pch->mq == SR_MQ_VOLTAGE || pch->mq == SR_MQ_CURRENT)
159 pch->mqflags = cgs->mqflags;
160 else
161 pch->mqflags = 0;
01b0257a
BV
162 if (pch->hw_output_idx == j)
163 cg->channels = g_slist_append(cg->channels, ch);
164 }
9e45cd41
BV
165 }
166 }
167 pcg = g_malloc0(sizeof(struct pps_channel_group));
168 pcg->features = cgs->features;
169 cg->priv = pcg;
170 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
171 }
ca1a7cb5 172
4a471029
BV
173 sr_scpi_hw_info_free(hw_info);
174 hw_info = NULL;
175
b89e6db9 176 /* Don't send SCPI_CMD_LOCAL for HP 66xxB using SCPI over GPIB. */
26e96658
FS
177 if (!(devc->device->dialect == SCPI_DIALECT_HP_66XXB &&
178 scpi->transport == SCPI_TRANSPORT_LIBGPIB))
179 sr_scpi_cmd(sdi, devc->device->commands, 0, NULL, SCPI_CMD_LOCAL);
ca1a7cb5 180
9e45cd41
BV
181 return sdi;
182}
ca1a7cb5 183
c2af709b 184static gchar *hpib_get_revision(struct sr_scpi_dev_inst *scpi)
9e45cd41 185{
c2af709b
AG
186 int ret;
187 gboolean matches;
188 char *response;
189 GRegex *version_regex;
190
191 ret = sr_scpi_get_string(scpi, "ROM?", &response);
192 if (ret != SR_OK && !response)
193 return NULL;
194
195 /* Example version string: "B01 B01" */
196 version_regex = g_regex_new("[A-Z][0-9]{2} [A-Z][0-9]{2}", 0, 0, NULL);
197 matches = g_regex_match(version_regex, response, 0, NULL);
198 g_regex_unref(version_regex);
199
200 if (!matches) {
201 /* Not a valid version string. Ignore it. */
202 g_free(response);
203 response = NULL;
204 } else {
205 /* Replace space with dot. */
206 response[3] = '.';
207 }
208
209 return response;
210}
211
212/*
213 * This function assumes the response is in the form "HP<model_number>"
214 *
215 * HP made many GPIB (then called HP-IB) instruments before the SCPI command
216 * set was introduced into the standard. We haven't seen any non-HP instruments
217 * which respond to the "ID?" query, so assume all are HP for now.
218 */
219static int hpib_get_hw_id(struct sr_scpi_dev_inst *scpi,
220 struct sr_scpi_hw_info **scpi_response)
221{
222 int ret;
223 char *response;
224 struct sr_scpi_hw_info *hw_info;
225
226 ret = sr_scpi_get_string(scpi, "ID?", &response);
227 if ((ret != SR_OK) || !response)
228 return SR_ERR;
229
230 hw_info = g_malloc0(sizeof(struct sr_scpi_hw_info));
231
232 *scpi_response = hw_info;
233 hw_info->model = response;
234 hw_info->firmware_version = hpib_get_revision(scpi);
235 hw_info->manufacturer = g_strdup("HP");
236
237 return SR_OK;
238}
239
240static struct sr_dev_inst *probe_scpi_pps_device(struct sr_scpi_dev_inst *scpi)
241{
242 return probe_device(scpi, sr_scpi_get_hw_id);
243}
244
245static struct sr_dev_inst *probe_hpib_pps_device(struct sr_scpi_dev_inst *scpi)
246{
247 return probe_device(scpi, hpib_get_hw_id);
248}
249
250static GSList *scan_scpi_pps(struct sr_dev_driver *di, GSList *options)
251{
252 return sr_scpi_scan(di->context, options, probe_scpi_pps_device);
253}
254
255static GSList *scan_hpib_pps(struct sr_dev_driver *di, GSList *options)
256{
7f046384
GS
257 const char *conn;
258
259 /*
260 * Only scan for HP-IB devices when conn= was specified, to not
261 * break SCPI devices' operation.
262 */
263 conn = NULL;
264 (void)sr_serial_extract_options(options, &conn, NULL);
265 if (!conn)
266 return NULL;
267
c2af709b 268 return sr_scpi_scan(di->context, options, probe_hpib_pps_device);
ca1a7cb5
BV
269}
270
ca1a7cb5
BV
271static int dev_open(struct sr_dev_inst *sdi)
272{
ee2860ee 273 struct dev_context *devc;
9e45cd41 274 struct sr_scpi_dev_inst *scpi;
ee2860ee 275 GVariant *beeper;
9e45cd41 276
9e45cd41
BV
277 scpi = sdi->conn;
278 if (sr_scpi_open(scpi) < 0)
279 return SR_ERR;
ca1a7cb5 280
91ef511d 281 devc = sdi->priv;
26e96658 282
b89e6db9 283 /* Don't send SCPI_CMD_REMOTE for HP 66xxB using SCPI over GPIB. */
26e96658
FS
284 if (!(devc->device->dialect == SCPI_DIALECT_HP_66XXB &&
285 scpi->transport == SCPI_TRANSPORT_LIBGPIB))
286 sr_scpi_cmd(sdi, devc->device->commands, 0, NULL, SCPI_CMD_REMOTE);
287
ee2860ee 288 devc->beeper_was_set = FALSE;
17a82e83
FS
289 if (sr_scpi_cmd_resp(sdi, devc->device->commands, 0, NULL,
290 &beeper, G_VARIANT_TYPE_BOOLEAN, SCPI_CMD_BEEPER) == SR_OK) {
ee2860ee
BV
291 if (g_variant_get_boolean(beeper)) {
292 devc->beeper_was_set = TRUE;
17a82e83
FS
293 sr_scpi_cmd(sdi, devc->device->commands,
294 0, NULL, SCPI_CMD_BEEPER_DISABLE);
ee2860ee
BV
295 }
296 g_variant_unref(beeper);
297 }
60475cd7 298
ca1a7cb5
BV
299 return SR_OK;
300}
301
302static int dev_close(struct sr_dev_inst *sdi)
303{
9e45cd41 304 struct sr_scpi_dev_inst *scpi;
ee2860ee 305 struct dev_context *devc;
ca1a7cb5 306
ee2860ee 307 devc = sdi->priv;
9e45cd41 308 scpi = sdi->conn;
ca1a7cb5 309
f1ba6b4b
UH
310 if (!scpi)
311 return SR_ERR_BUG;
312
313 if (devc->beeper_was_set)
17a82e83
FS
314 sr_scpi_cmd(sdi, devc->device->commands,
315 0, NULL, SCPI_CMD_BEEPER_ENABLE);
26e96658 316
b89e6db9 317 /* Don't send SCPI_CMD_LOCAL for HP 66xxB using SCPI over GPIB. */
26e96658
FS
318 if (!(devc->device->dialect == SCPI_DIALECT_HP_66XXB &&
319 scpi->transport == SCPI_TRANSPORT_LIBGPIB))
320 sr_scpi_cmd(sdi, devc->device->commands, 0, NULL, SCPI_CMD_LOCAL);
f1ba6b4b
UH
321
322 return sr_scpi_close(scpi);
ca1a7cb5
BV
323}
324
3553451f 325static void clear_helper(struct dev_context *devc)
4a471029 326{
4a471029
BV
327 g_free(devc->channels);
328 g_free(devc->channel_groups);
4a471029
BV
329}
330
1e726f56 331static int dev_clear(const struct sr_dev_driver *di)
ca1a7cb5 332{
3553451f 333 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
ca1a7cb5
BV
334}
335
dd7a72ea
UH
336static int config_get(uint32_t key, GVariant **data,
337 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 338{
9e45cd41 339 struct dev_context *devc;
478c8d92
BV
340 const GVariantType *gvtype;
341 unsigned int i;
17a82e83
FS
342 int channel_group_cmd;
343 char *channel_group_name;
478c8d92 344 int cmd, ret;
069d9f25 345 const char *s;
8b5eadf4 346 int reg;
bd5f0a14 347 gboolean is_hmp_sqii;
ca1a7cb5 348
9e45cd41
BV
349 if (!sdi)
350 return SR_ERR_ARG;
351
352 devc = sdi->priv;
ca1a7cb5 353
478c8d92 354 if (cg) {
9e45cd41
BV
355 /*
356 * These options only apply to channel groups with a single
357 * channel -- they're per-channel settings for the device.
358 */
478c8d92
BV
359
360 /*
361 * Config keys are handled below depending on whether a channel
362 * group was provided by the frontend. However some of these
363 * take a CG on one PPS but not on others. Check the device's
364 * profile for that here, and NULL out the channel group as needed.
365 */
366 for (i = 0; i < devc->device->num_devopts; i++) {
367 if (devc->device->devopts[i] == key) {
368 cg = NULL;
369 break;
370 }
371 }
478c8d92 372 }
9e45cd41 373
478c8d92
BV
374 gvtype = NULL;
375 cmd = -1;
376 switch (key) {
7a0b98b5 377 case SR_CONF_ENABLED:
478c8d92
BV
378 gvtype = G_VARIANT_TYPE_BOOLEAN;
379 cmd = SCPI_CMD_GET_OUTPUT_ENABLED;
380 break;
7a0b98b5 381 case SR_CONF_VOLTAGE:
478c8d92
BV
382 gvtype = G_VARIANT_TYPE_DOUBLE;
383 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
384 break;
7a0b98b5 385 case SR_CONF_VOLTAGE_TARGET:
478c8d92 386 gvtype = G_VARIANT_TYPE_DOUBLE;
ca95e90f 387 cmd = SCPI_CMD_GET_VOLTAGE_TARGET;
478c8d92 388 break;
4264f1c0
AG
389 case SR_CONF_OUTPUT_FREQUENCY:
390 gvtype = G_VARIANT_TYPE_DOUBLE;
391 cmd = SCPI_CMD_GET_MEAS_FREQUENCY;
392 break;
393 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
394 gvtype = G_VARIANT_TYPE_DOUBLE;
395 cmd = SCPI_CMD_GET_FREQUENCY_TARGET;
396 break;
7a0b98b5 397 case SR_CONF_CURRENT:
478c8d92
BV
398 gvtype = G_VARIANT_TYPE_DOUBLE;
399 cmd = SCPI_CMD_GET_MEAS_CURRENT;
400 break;
7a0b98b5 401 case SR_CONF_CURRENT_LIMIT:
478c8d92 402 gvtype = G_VARIANT_TYPE_DOUBLE;
ca95e90f 403 cmd = SCPI_CMD_GET_CURRENT_LIMIT;
478c8d92
BV
404 break;
405 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
bd5f0a14
FS
406 if (devc->device->dialect == SCPI_DIALECT_HMP) {
407 /* OVP is always enabled. */
408 *data = g_variant_new_boolean(TRUE);
409 return 0;
410 }
478c8d92
BV
411 gvtype = G_VARIANT_TYPE_BOOLEAN;
412 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ENABLED;
413 break;
414 case SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE:
f083ae63
FS
415 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
416 devc->device->dialect == SCPI_DIALECT_HP_COMP)
8b5eadf4
FS
417 gvtype = G_VARIANT_TYPE_STRING;
418 else
419 gvtype = G_VARIANT_TYPE_BOOLEAN;
478c8d92
BV
420 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ACTIVE;
421 break;
422 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
423 gvtype = G_VARIANT_TYPE_DOUBLE;
424 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_THRESHOLD;
425 break;
426 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
427 gvtype = G_VARIANT_TYPE_BOOLEAN;
428 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ENABLED;
429 break;
430 case SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE:
f083ae63
FS
431 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
432 devc->device->dialect == SCPI_DIALECT_HP_COMP)
8b5eadf4
FS
433 gvtype = G_VARIANT_TYPE_STRING;
434 else
435 gvtype = G_VARIANT_TYPE_BOOLEAN;
478c8d92
BV
436 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE;
437 break;
438 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
439 gvtype = G_VARIANT_TYPE_DOUBLE;
440 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_THRESHOLD;
441 break;
442 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
bd5f0a14
FS
443 if (devc->device->dialect == SCPI_DIALECT_HMP) {
444 /* OTP is always enabled. */
445 *data = g_variant_new_boolean(TRUE);
446 return 0;
447 }
478c8d92
BV
448 gvtype = G_VARIANT_TYPE_BOOLEAN;
449 cmd = SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION;
450 break;
8b5eadf4 451 case SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE:
f083ae63 452 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
bd5f0a14
FS
453 devc->device->dialect == SCPI_DIALECT_HP_COMP ||
454 devc->device->dialect == SCPI_DIALECT_HMP)
8b5eadf4
FS
455 gvtype = G_VARIANT_TYPE_STRING;
456 else
457 gvtype = G_VARIANT_TYPE_BOOLEAN;
458 cmd = SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE;
459 break;
7a0b98b5 460 case SR_CONF_REGULATION:
60475cd7
BV
461 gvtype = G_VARIANT_TYPE_STRING;
462 cmd = SCPI_CMD_GET_OUTPUT_REGULATION;
755793e9 463 break;
88e4daa9
ML
464 default:
465 return sr_sw_limits_config_get(&devc->limits, key, data);
478c8d92 466 }
91ef511d
BV
467 if (!gvtype)
468 return SR_ERR_NA;
469
17a82e83
FS
470 channel_group_cmd = 0;
471 channel_group_name = NULL;
472 if (cg) {
473 channel_group_cmd = SCPI_CMD_SELECT_CHANNEL;
474 channel_group_name = g_strdup(cg->name);
475 }
476
bd5f0a14
FS
477 is_hmp_sqii = FALSE;
478 is_hmp_sqii |= cmd == SCPI_CMD_GET_OUTPUT_REGULATION;
479 is_hmp_sqii |= cmd == SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE;
480 is_hmp_sqii &= devc->device->dialect == SCPI_DIALECT_HMP;
481 if (is_hmp_sqii) {
482 if (!cg) {
483 /* STAT:QUES:INST:ISUMx query requires channel spec. */
484 sr_err("Need a channel group for regulation or OTP-active query.");
485 return SR_ERR_NA;
486 }
487 ret = sr_scpi_cmd_resp(sdi, devc->device->commands,
488 0, NULL, data, gvtype, cmd, channel_group_name);
489 } else {
490 ret = sr_scpi_cmd_resp(sdi, devc->device->commands,
491 channel_group_cmd, channel_group_name, data, gvtype, cmd);
492 }
17a82e83 493 g_free(channel_group_name);
91ef511d 494
43ff1110
FS
495 /*
496 * Handle special cases
497 */
498
91ef511d 499 if (cmd == SCPI_CMD_GET_OUTPUT_REGULATION) {
43ff1110
FS
500 if (devc->device->dialect == SCPI_DIALECT_PHILIPS) {
501 /*
502 * The Philips PM2800 series returns VOLT/CURR. We always return
503 * a GVariant string in the Rigol notation (CV/CC/UR).
504 */
505 s = g_variant_get_string(*data, NULL);
506 if (!g_strcmp0(s, "VOLT")) {
507 g_variant_unref(*data);
508 *data = g_variant_new_string("CV");
509 } else if (!g_strcmp0(s, "CURR")) {
510 g_variant_unref(*data);
511 *data = g_variant_new_string("CC");
512 }
513 }
0ad7074c
FS
514 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
515 /* Evaluate Status Register from a HP 66xx in COMP mode. */
516 s = g_variant_get_string(*data, NULL);
517 sr_atoi(s, &reg);
518 g_variant_unref(*data);
519 if (reg & (1 << 0))
520 *data = g_variant_new_string("CV");
521 else if (reg & (1 << 1))
522 *data = g_variant_new_string("CC");
523 else if (reg & (1 << 2))
524 *data = g_variant_new_string("UR");
525 else if (reg & (1 << 9))
526 *data = g_variant_new_string("CC-");
527 else
528 *data = g_variant_new_string("");
529 }
43ff1110
FS
530 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
531 /* Evaluate Operational Status Register from a HP 66xxB. */
532 s = g_variant_get_string(*data, NULL);
8b5eadf4 533 sr_atoi(s, &reg);
069d9f25 534 g_variant_unref(*data);
8b5eadf4 535 if (reg & (1 << 8))
43ff1110 536 *data = g_variant_new_string("CV");
8b5eadf4 537 else if (reg & (1 << 10))
43ff1110 538 *data = g_variant_new_string("CC");
8b5eadf4 539 else if (reg & (1 << 11))
43ff1110
FS
540 *data = g_variant_new_string("CC-");
541 else
542 *data = g_variant_new_string("UR");
069d9f25 543 }
bd5f0a14
FS
544 if (devc->device->dialect == SCPI_DIALECT_HMP) {
545 /* Evaluate Condition Status Register from a HMP series device. */
546 s = g_variant_get_string(*data, NULL);
547 sr_atoi(s, &reg);
548 g_variant_unref(*data);
549 if (reg & (1 << 0))
550 *data = g_variant_new_string("CC");
551 else if (reg & (1 << 1))
552 *data = g_variant_new_string("CV");
553 else
554 *data = g_variant_new_string("UR");
555 }
069d9f25
AJ
556
557 s = g_variant_get_string(*data, NULL);
0ad7074c
FS
558 if (g_strcmp0(s, "CV") && g_strcmp0(s, "CC") && g_strcmp0(s, "CC-") &&
559 g_strcmp0(s, "UR") && g_strcmp0(s, "")) {
43ff1110
FS
560
561 sr_err("Unknown response to SCPI_CMD_GET_OUTPUT_REGULATION: %s", s);
91ef511d
BV
562 ret = SR_ERR_DATA;
563 }
91ef511d 564 }
ca1a7cb5 565
8b5eadf4 566 if (cmd == SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ACTIVE) {
f083ae63
FS
567 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
568 /* Evaluate Status Register from a HP 66xx in COMP mode. */
569 s = g_variant_get_string(*data, NULL);
570 sr_atoi(s, &reg);
571 g_variant_unref(*data);
572 *data = g_variant_new_boolean(reg & (1 << 3));
573 }
8b5eadf4
FS
574 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
575 /* Evaluate Questionable Status Register bit 0 from a HP 66xxB. */
576 s = g_variant_get_string(*data, NULL);
577 sr_atoi(s, &reg);
578 g_variant_unref(*data);
579 *data = g_variant_new_boolean(reg & (1 << 0));
580 }
581 }
582
583 if (cmd == SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE) {
f083ae63
FS
584 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
585 /* Evaluate Status Register from a HP 66xx in COMP mode. */
586 s = g_variant_get_string(*data, NULL);
587 sr_atoi(s, &reg);
588 g_variant_unref(*data);
589 *data = g_variant_new_boolean(reg & (1 << 6));
590 }
8b5eadf4
FS
591 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
592 /* Evaluate Questionable Status Register bit 1 from a HP 66xxB. */
593 s = g_variant_get_string(*data, NULL);
594 sr_atoi(s, &reg);
595 g_variant_unref(*data);
596 *data = g_variant_new_boolean(reg & (1 << 1));
597 }
598 }
599
600 if (cmd == SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE) {
f083ae63
FS
601 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
602 /* Evaluate Status Register from a HP 66xx in COMP mode. */
603 s = g_variant_get_string(*data, NULL);
604 sr_atoi(s, &reg);
605 g_variant_unref(*data);
606 *data = g_variant_new_boolean(reg & (1 << 4));
607 }
bd5f0a14
FS
608 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
609 devc->device->dialect == SCPI_DIALECT_HMP) {
8b5eadf4
FS
610 /* Evaluate Questionable Status Register bit 4 from a HP 66xxB. */
611 s = g_variant_get_string(*data, NULL);
612 sr_atoi(s, &reg);
613 g_variant_unref(*data);
614 *data = g_variant_new_boolean(reg & (1 << 4));
615 }
616 }
617
ca1a7cb5
BV
618 return ret;
619}
620
dd7a72ea
UH
621static int config_set(uint32_t key, GVariant *data,
622 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 623{
91ef511d 624 struct dev_context *devc;
9e45cd41 625 double d;
17a82e83
FS
626 int channel_group_cmd;
627 char *channel_group_name;
628 int ret;
ca1a7cb5 629
fdedbfcd
BV
630 if (!sdi)
631 return SR_ERR_ARG;
632
17a82e83
FS
633 channel_group_cmd = 0;
634 channel_group_name = NULL;
635 if (cg) {
636 channel_group_cmd = SCPI_CMD_SELECT_CHANNEL;
637 channel_group_name = g_strdup(cg->name);
638 }
60475cd7 639
91ef511d 640 devc = sdi->priv;
e57057ae 641
60475cd7 642 switch (key) {
7a0b98b5 643 case SR_CONF_ENABLED:
60475cd7 644 if (g_variant_get_boolean(data))
17a82e83
FS
645 ret = sr_scpi_cmd(sdi, devc->device->commands,
646 channel_group_cmd, channel_group_name,
91ef511d 647 SCPI_CMD_SET_OUTPUT_ENABLE);
60475cd7 648 else
17a82e83
FS
649 ret = sr_scpi_cmd(sdi, devc->device->commands,
650 channel_group_cmd, channel_group_name,
91ef511d 651 SCPI_CMD_SET_OUTPUT_DISABLE);
60475cd7 652 break;
7a0b98b5 653 case SR_CONF_VOLTAGE_TARGET:
60475cd7 654 d = g_variant_get_double(data);
17a82e83
FS
655 ret = sr_scpi_cmd(sdi, devc->device->commands,
656 channel_group_cmd, channel_group_name,
91ef511d 657 SCPI_CMD_SET_VOLTAGE_TARGET, d);
60475cd7 658 break;
4264f1c0
AG
659 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
660 d = g_variant_get_double(data);
17a82e83
FS
661 ret = sr_scpi_cmd(sdi, devc->device->commands,
662 channel_group_cmd, channel_group_name,
91ef511d 663 SCPI_CMD_SET_FREQUENCY_TARGET, d);
4264f1c0 664 break;
7a0b98b5 665 case SR_CONF_CURRENT_LIMIT:
60475cd7 666 d = g_variant_get_double(data);
17a82e83
FS
667 ret = sr_scpi_cmd(sdi, devc->device->commands,
668 channel_group_cmd, channel_group_name,
91ef511d 669 SCPI_CMD_SET_CURRENT_LIMIT, d);
60475cd7
BV
670 break;
671 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
672 if (g_variant_get_boolean(data))
17a82e83
FS
673 ret = sr_scpi_cmd(sdi, devc->device->commands,
674 channel_group_cmd, channel_group_name,
91ef511d 675 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_ENABLE);
60475cd7 676 else
17a82e83
FS
677 ret = sr_scpi_cmd(sdi, devc->device->commands,
678 channel_group_cmd, channel_group_name,
91ef511d 679 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_DISABLE);
60475cd7
BV
680 break;
681 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
682 d = g_variant_get_double(data);
17a82e83
FS
683 ret = sr_scpi_cmd(sdi, devc->device->commands,
684 channel_group_cmd, channel_group_name,
91ef511d 685 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_THRESHOLD, d);
60475cd7
BV
686 break;
687 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
688 if (g_variant_get_boolean(data))
17a82e83
FS
689 ret = sr_scpi_cmd(sdi, devc->device->commands,
690 channel_group_cmd, channel_group_name,
91ef511d 691 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_ENABLE);
60475cd7 692 else
17a82e83
FS
693 ret = sr_scpi_cmd(sdi, devc->device->commands,
694 channel_group_cmd, channel_group_name,
91ef511d 695 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_DISABLE);
60475cd7
BV
696 break;
697 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
698 d = g_variant_get_double(data);
17a82e83
FS
699 ret = sr_scpi_cmd(sdi, devc->device->commands,
700 channel_group_cmd, channel_group_name,
91ef511d 701 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_THRESHOLD, d);
60475cd7
BV
702 break;
703 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
704 if (g_variant_get_boolean(data))
17a82e83
FS
705 ret = sr_scpi_cmd(sdi, devc->device->commands,
706 channel_group_cmd, channel_group_name,
91ef511d 707 SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_ENABLE);
60475cd7 708 else
17a82e83
FS
709 ret = sr_scpi_cmd(sdi, devc->device->commands,
710 channel_group_cmd, channel_group_name,
91ef511d 711 SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_DISABLE);
60475cd7
BV
712 break;
713 default:
88e4daa9 714 ret = sr_sw_limits_config_set(&devc->limits, key, data);
ca1a7cb5
BV
715 }
716
17a82e83
FS
717 g_free(channel_group_name);
718
719 return ret;
ca1a7cb5
BV
720}
721
dd7a72ea
UH
722static int config_list(uint32_t key, GVariant **data,
723 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 724{
9e45cd41
BV
725 struct dev_context *devc;
726 struct sr_channel *ch;
8f3c77db 727 struct pps_channel *pch;
329733d9 728 const struct channel_spec *ch_spec;
a9010323 729 int i;
9e45cd41
BV
730 const char *s[16];
731
e66d1892 732 devc = (sdi) ? sdi->priv : NULL;
ca1a7cb5 733
9e45cd41 734 if (!cg) {
9e45cd41 735 switch (key) {
e66d1892 736 case SR_CONF_SCAN_OPTIONS:
9e45cd41 737 case SR_CONF_DEVICE_OPTIONS:
e66d1892 738 return std_opts_config_list(key, data, sdi, cg,
53012da6
UH
739 ARRAY_AND_SIZE(scanopts),
740 ARRAY_AND_SIZE(drvopts),
08eba2d3
GS
741 (devc && devc->device) ? devc->device->devopts : NULL,
742 (devc && devc->device) ? devc->device->num_devopts : 0);
9e45cd41 743 break;
7a0b98b5 744 case SR_CONF_CHANNEL_CONFIG:
08eba2d3
GS
745 if (!devc || !devc->device)
746 return SR_ERR_ARG;
478c8d92 747 /* Not used. */
9e45cd41
BV
748 i = 0;
749 if (devc->device->features & PPS_INDEPENDENT)
750 s[i++] = "Independent";
751 if (devc->device->features & PPS_SERIES)
752 s[i++] = "Series";
753 if (devc->device->features & PPS_PARALLEL)
754 s[i++] = "Parallel";
755 if (i == 0) {
756 /*
757 * Shouldn't happen: independent-only devices
758 * shouldn't advertise this option at all.
759 */
760 return SR_ERR_NA;
761 }
762 *data = g_variant_new_strv(s, i);
763 break;
764 default:
765 return SR_ERR_NA;
766 }
767 } else {
9e45cd41
BV
768 /*
769 * Per-channel-group options depending on a channel are actually
770 * done with the first channel. Channel groups in PPS can have
771 * more than one channel, but they will typically be of equal
01b0257a 772 * specification for use in series or parallel mode.
9e45cd41 773 */
9e45cd41 774 ch = cg->channels->data;
8f3c77db 775 pch = ch->priv;
08eba2d3
GS
776 if (!devc || !devc->device)
777 return SR_ERR_ARG;
8f3c77db 778 ch_spec = &(devc->device->channels[pch->hw_output_idx]);
9e45cd41
BV
779
780 switch (key) {
781 case SR_CONF_DEVICE_OPTIONS:
105df674 782 *data = std_gvar_array_u32(devc->device->devopts_cg, devc->device->num_devopts_cg);
9e45cd41 783 break;
7a0b98b5 784 case SR_CONF_VOLTAGE_TARGET:
54d471f4 785 *data = std_gvar_min_max_step_array(ch_spec->voltage);
9e45cd41 786 break;
4264f1c0 787 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
54d471f4 788 *data = std_gvar_min_max_step_array(ch_spec->frequency);
4264f1c0 789 break;
7a0b98b5 790 case SR_CONF_CURRENT_LIMIT:
54d471f4 791 *data = std_gvar_min_max_step_array(ch_spec->current);
9e45cd41 792 break;
49a468ed
FS
793 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
794 *data = std_gvar_min_max_step_array(ch_spec->ovp);
795 break;
796 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
797 *data = std_gvar_min_max_step_array(ch_spec->ocp);
798 break;
9e45cd41
BV
799 default:
800 return SR_ERR_NA;
801 }
ca1a7cb5
BV
802 }
803
a9010323 804 return SR_OK;
ca1a7cb5
BV
805}
806
695dc859 807static int dev_acquisition_start(const struct sr_dev_inst *sdi)
ca1a7cb5 808{
9e45cd41
BV
809 struct dev_context *devc;
810 struct sr_scpi_dev_inst *scpi;
fa2ce8c7 811 int ret;
ca1a7cb5 812
9e45cd41
BV
813 devc = sdi->priv;
814 scpi = sdi->conn;
9e45cd41 815
17a82e83
FS
816 /* Prime the pipe with the first channel. */
817 devc->cur_acquisition_channel = sr_next_enabled_channel(sdi, NULL);
818
fd243315
UH
819 /* Device specific initialization before acquisition starts. */
820 if (devc->device->init_acquisition)
821 devc->device->init_acquisition(sdi);
7e66bf05 822
01b0257a 823 if ((ret = sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 10,
9e45cd41
BV
824 scpi_pps_receive_data, (void *)sdi)) != SR_OK)
825 return ret;
bee2b016 826 std_session_send_df_header(sdi);
88e4daa9 827 sr_sw_limits_acquisition_start(&devc->limits);
9e45cd41 828
ca1a7cb5
BV
829 return SR_OK;
830}
831
695dc859 832static int dev_acquisition_stop(struct sr_dev_inst *sdi)
ca1a7cb5 833{
9e45cd41 834 struct sr_scpi_dev_inst *scpi;
9e45cd41 835
9e45cd41
BV
836 scpi = sdi->conn;
837
9e45cd41
BV
838 sr_scpi_source_remove(sdi->session, scpi);
839
bee2b016 840 std_session_send_df_end(sdi);
bf48cceb 841
ca1a7cb5
BV
842 return SR_OK;
843}
844
dd5c48a6 845static struct sr_dev_driver scpi_pps_driver_info = {
ca1a7cb5
BV
846 .name = "scpi-pps",
847 .longname = "SCPI PPS",
848 .api_version = 1,
c2fdcc25 849 .init = std_init,
700d6b64 850 .cleanup = std_cleanup,
c2af709b
AG
851 .scan = scan_scpi_pps,
852 .dev_list = std_dev_list,
853 .dev_clear = dev_clear,
854 .config_get = config_get,
855 .config_set = config_set,
856 .config_list = config_list,
857 .dev_open = dev_open,
858 .dev_close = dev_close,
859 .dev_acquisition_start = dev_acquisition_start,
860 .dev_acquisition_stop = dev_acquisition_stop,
861 .context = NULL,
862};
863
864static struct sr_dev_driver hp_ib_pps_driver_info = {
865 .name = "hpib-pps",
866 .longname = "HP-IB PPS",
867 .api_version = 1,
868 .init = std_init,
869 .cleanup = std_cleanup,
870 .scan = scan_hpib_pps,
c01bf34c 871 .dev_list = std_dev_list,
ca1a7cb5
BV
872 .dev_clear = dev_clear,
873 .config_get = config_get,
874 .config_set = config_set,
875 .config_list = config_list,
876 .dev_open = dev_open,
877 .dev_close = dev_close,
878 .dev_acquisition_start = dev_acquisition_start,
879 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 880 .context = NULL,
ca1a7cb5 881};
dd5c48a6 882SR_REGISTER_DEV_DRIVER(scpi_pps_driver_info);
c2af709b 883SR_REGISTER_DEV_DRIVER(hp_ib_pps_driver_info);