]> sigrok.org Git - libsigrok.git/blame - src/hardware/scpi-pps/api.c
scpi-pps: Add support for Owon P4000 series.
[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{
257 return sr_scpi_scan(di->context, options, probe_hpib_pps_device);
ca1a7cb5
BV
258}
259
ca1a7cb5
BV
260static int dev_open(struct sr_dev_inst *sdi)
261{
ee2860ee 262 struct dev_context *devc;
9e45cd41 263 struct sr_scpi_dev_inst *scpi;
ee2860ee 264 GVariant *beeper;
9e45cd41 265
9e45cd41
BV
266 scpi = sdi->conn;
267 if (sr_scpi_open(scpi) < 0)
268 return SR_ERR;
ca1a7cb5 269
91ef511d 270 devc = sdi->priv;
26e96658 271
b89e6db9 272 /* Don't send SCPI_CMD_REMOTE for HP 66xxB using SCPI over GPIB. */
26e96658
FS
273 if (!(devc->device->dialect == SCPI_DIALECT_HP_66XXB &&
274 scpi->transport == SCPI_TRANSPORT_LIBGPIB))
275 sr_scpi_cmd(sdi, devc->device->commands, 0, NULL, SCPI_CMD_REMOTE);
276
ee2860ee 277 devc->beeper_was_set = FALSE;
17a82e83
FS
278 if (sr_scpi_cmd_resp(sdi, devc->device->commands, 0, NULL,
279 &beeper, G_VARIANT_TYPE_BOOLEAN, SCPI_CMD_BEEPER) == SR_OK) {
ee2860ee
BV
280 if (g_variant_get_boolean(beeper)) {
281 devc->beeper_was_set = TRUE;
17a82e83
FS
282 sr_scpi_cmd(sdi, devc->device->commands,
283 0, NULL, SCPI_CMD_BEEPER_DISABLE);
ee2860ee
BV
284 }
285 g_variant_unref(beeper);
286 }
60475cd7 287
ca1a7cb5
BV
288 return SR_OK;
289}
290
291static int dev_close(struct sr_dev_inst *sdi)
292{
9e45cd41 293 struct sr_scpi_dev_inst *scpi;
ee2860ee 294 struct dev_context *devc;
ca1a7cb5 295
ee2860ee 296 devc = sdi->priv;
9e45cd41 297 scpi = sdi->conn;
ca1a7cb5 298
f1ba6b4b
UH
299 if (!scpi)
300 return SR_ERR_BUG;
301
302 if (devc->beeper_was_set)
17a82e83
FS
303 sr_scpi_cmd(sdi, devc->device->commands,
304 0, NULL, SCPI_CMD_BEEPER_ENABLE);
26e96658 305
b89e6db9 306 /* Don't send SCPI_CMD_LOCAL for HP 66xxB using SCPI over GPIB. */
26e96658
FS
307 if (!(devc->device->dialect == SCPI_DIALECT_HP_66XXB &&
308 scpi->transport == SCPI_TRANSPORT_LIBGPIB))
309 sr_scpi_cmd(sdi, devc->device->commands, 0, NULL, SCPI_CMD_LOCAL);
f1ba6b4b
UH
310
311 return sr_scpi_close(scpi);
ca1a7cb5
BV
312}
313
3553451f 314static void clear_helper(struct dev_context *devc)
4a471029 315{
4a471029
BV
316 g_free(devc->channels);
317 g_free(devc->channel_groups);
4a471029
BV
318}
319
1e726f56 320static int dev_clear(const struct sr_dev_driver *di)
ca1a7cb5 321{
3553451f 322 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
ca1a7cb5
BV
323}
324
dd7a72ea
UH
325static int config_get(uint32_t key, GVariant **data,
326 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 327{
9e45cd41 328 struct dev_context *devc;
478c8d92
BV
329 const GVariantType *gvtype;
330 unsigned int i;
17a82e83
FS
331 int channel_group_cmd;
332 char *channel_group_name;
478c8d92 333 int cmd, ret;
069d9f25 334 const char *s;
8b5eadf4 335 int reg;
bd5f0a14 336 gboolean is_hmp_sqii;
ca1a7cb5 337
9e45cd41
BV
338 if (!sdi)
339 return SR_ERR_ARG;
340
341 devc = sdi->priv;
ca1a7cb5 342
478c8d92 343 if (cg) {
9e45cd41
BV
344 /*
345 * These options only apply to channel groups with a single
346 * channel -- they're per-channel settings for the device.
347 */
478c8d92
BV
348
349 /*
350 * Config keys are handled below depending on whether a channel
351 * group was provided by the frontend. However some of these
352 * take a CG on one PPS but not on others. Check the device's
353 * profile for that here, and NULL out the channel group as needed.
354 */
355 for (i = 0; i < devc->device->num_devopts; i++) {
356 if (devc->device->devopts[i] == key) {
357 cg = NULL;
358 break;
359 }
360 }
478c8d92 361 }
9e45cd41 362
478c8d92
BV
363 gvtype = NULL;
364 cmd = -1;
365 switch (key) {
7a0b98b5 366 case SR_CONF_ENABLED:
478c8d92
BV
367 gvtype = G_VARIANT_TYPE_BOOLEAN;
368 cmd = SCPI_CMD_GET_OUTPUT_ENABLED;
369 break;
7a0b98b5 370 case SR_CONF_VOLTAGE:
478c8d92
BV
371 gvtype = G_VARIANT_TYPE_DOUBLE;
372 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
373 break;
7a0b98b5 374 case SR_CONF_VOLTAGE_TARGET:
478c8d92 375 gvtype = G_VARIANT_TYPE_DOUBLE;
ca95e90f 376 cmd = SCPI_CMD_GET_VOLTAGE_TARGET;
478c8d92 377 break;
4264f1c0
AG
378 case SR_CONF_OUTPUT_FREQUENCY:
379 gvtype = G_VARIANT_TYPE_DOUBLE;
380 cmd = SCPI_CMD_GET_MEAS_FREQUENCY;
381 break;
382 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
383 gvtype = G_VARIANT_TYPE_DOUBLE;
384 cmd = SCPI_CMD_GET_FREQUENCY_TARGET;
385 break;
7a0b98b5 386 case SR_CONF_CURRENT:
478c8d92
BV
387 gvtype = G_VARIANT_TYPE_DOUBLE;
388 cmd = SCPI_CMD_GET_MEAS_CURRENT;
389 break;
7a0b98b5 390 case SR_CONF_CURRENT_LIMIT:
478c8d92 391 gvtype = G_VARIANT_TYPE_DOUBLE;
ca95e90f 392 cmd = SCPI_CMD_GET_CURRENT_LIMIT;
478c8d92
BV
393 break;
394 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
bd5f0a14
FS
395 if (devc->device->dialect == SCPI_DIALECT_HMP) {
396 /* OVP is always enabled. */
397 *data = g_variant_new_boolean(TRUE);
398 return 0;
399 }
478c8d92
BV
400 gvtype = G_VARIANT_TYPE_BOOLEAN;
401 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ENABLED;
402 break;
403 case SR_CONF_OVER_VOLTAGE_PROTECTION_ACTIVE:
f083ae63
FS
404 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
405 devc->device->dialect == SCPI_DIALECT_HP_COMP)
8b5eadf4
FS
406 gvtype = G_VARIANT_TYPE_STRING;
407 else
408 gvtype = G_VARIANT_TYPE_BOOLEAN;
478c8d92
BV
409 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ACTIVE;
410 break;
411 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
412 gvtype = G_VARIANT_TYPE_DOUBLE;
413 cmd = SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_THRESHOLD;
414 break;
415 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
416 gvtype = G_VARIANT_TYPE_BOOLEAN;
417 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ENABLED;
418 break;
419 case SR_CONF_OVER_CURRENT_PROTECTION_ACTIVE:
f083ae63
FS
420 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
421 devc->device->dialect == SCPI_DIALECT_HP_COMP)
8b5eadf4
FS
422 gvtype = G_VARIANT_TYPE_STRING;
423 else
424 gvtype = G_VARIANT_TYPE_BOOLEAN;
478c8d92
BV
425 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE;
426 break;
427 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
428 gvtype = G_VARIANT_TYPE_DOUBLE;
429 cmd = SCPI_CMD_GET_OVER_CURRENT_PROTECTION_THRESHOLD;
430 break;
431 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
bd5f0a14
FS
432 if (devc->device->dialect == SCPI_DIALECT_HMP) {
433 /* OTP is always enabled. */
434 *data = g_variant_new_boolean(TRUE);
435 return 0;
436 }
478c8d92
BV
437 gvtype = G_VARIANT_TYPE_BOOLEAN;
438 cmd = SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION;
439 break;
8b5eadf4 440 case SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE:
f083ae63 441 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
bd5f0a14
FS
442 devc->device->dialect == SCPI_DIALECT_HP_COMP ||
443 devc->device->dialect == SCPI_DIALECT_HMP)
8b5eadf4
FS
444 gvtype = G_VARIANT_TYPE_STRING;
445 else
446 gvtype = G_VARIANT_TYPE_BOOLEAN;
447 cmd = SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE;
448 break;
7a0b98b5 449 case SR_CONF_REGULATION:
60475cd7
BV
450 gvtype = G_VARIANT_TYPE_STRING;
451 cmd = SCPI_CMD_GET_OUTPUT_REGULATION;
755793e9 452 break;
88e4daa9
ML
453 default:
454 return sr_sw_limits_config_get(&devc->limits, key, data);
478c8d92 455 }
91ef511d
BV
456 if (!gvtype)
457 return SR_ERR_NA;
458
17a82e83
FS
459 channel_group_cmd = 0;
460 channel_group_name = NULL;
461 if (cg) {
462 channel_group_cmd = SCPI_CMD_SELECT_CHANNEL;
463 channel_group_name = g_strdup(cg->name);
464 }
465
bd5f0a14
FS
466 is_hmp_sqii = FALSE;
467 is_hmp_sqii |= cmd == SCPI_CMD_GET_OUTPUT_REGULATION;
468 is_hmp_sqii |= cmd == SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE;
469 is_hmp_sqii &= devc->device->dialect == SCPI_DIALECT_HMP;
470 if (is_hmp_sqii) {
471 if (!cg) {
472 /* STAT:QUES:INST:ISUMx query requires channel spec. */
473 sr_err("Need a channel group for regulation or OTP-active query.");
474 return SR_ERR_NA;
475 }
476 ret = sr_scpi_cmd_resp(sdi, devc->device->commands,
477 0, NULL, data, gvtype, cmd, channel_group_name);
478 } else {
479 ret = sr_scpi_cmd_resp(sdi, devc->device->commands,
480 channel_group_cmd, channel_group_name, data, gvtype, cmd);
481 }
17a82e83 482 g_free(channel_group_name);
91ef511d 483
43ff1110
FS
484 /*
485 * Handle special cases
486 */
487
91ef511d 488 if (cmd == SCPI_CMD_GET_OUTPUT_REGULATION) {
43ff1110
FS
489 if (devc->device->dialect == SCPI_DIALECT_PHILIPS) {
490 /*
491 * The Philips PM2800 series returns VOLT/CURR. We always return
492 * a GVariant string in the Rigol notation (CV/CC/UR).
493 */
494 s = g_variant_get_string(*data, NULL);
495 if (!g_strcmp0(s, "VOLT")) {
496 g_variant_unref(*data);
497 *data = g_variant_new_string("CV");
498 } else if (!g_strcmp0(s, "CURR")) {
499 g_variant_unref(*data);
500 *data = g_variant_new_string("CC");
501 }
502 }
0ad7074c
FS
503 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
504 /* Evaluate Status Register from a HP 66xx in COMP mode. */
505 s = g_variant_get_string(*data, NULL);
506 sr_atoi(s, &reg);
507 g_variant_unref(*data);
508 if (reg & (1 << 0))
509 *data = g_variant_new_string("CV");
510 else if (reg & (1 << 1))
511 *data = g_variant_new_string("CC");
512 else if (reg & (1 << 2))
513 *data = g_variant_new_string("UR");
514 else if (reg & (1 << 9))
515 *data = g_variant_new_string("CC-");
516 else
517 *data = g_variant_new_string("");
518 }
43ff1110
FS
519 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
520 /* Evaluate Operational Status Register from a HP 66xxB. */
521 s = g_variant_get_string(*data, NULL);
8b5eadf4 522 sr_atoi(s, &reg);
069d9f25 523 g_variant_unref(*data);
8b5eadf4 524 if (reg & (1 << 8))
43ff1110 525 *data = g_variant_new_string("CV");
8b5eadf4 526 else if (reg & (1 << 10))
43ff1110 527 *data = g_variant_new_string("CC");
8b5eadf4 528 else if (reg & (1 << 11))
43ff1110
FS
529 *data = g_variant_new_string("CC-");
530 else
531 *data = g_variant_new_string("UR");
069d9f25 532 }
bd5f0a14
FS
533 if (devc->device->dialect == SCPI_DIALECT_HMP) {
534 /* Evaluate Condition Status Register from a HMP series device. */
535 s = g_variant_get_string(*data, NULL);
536 sr_atoi(s, &reg);
537 g_variant_unref(*data);
538 if (reg & (1 << 0))
539 *data = g_variant_new_string("CC");
540 else if (reg & (1 << 1))
541 *data = g_variant_new_string("CV");
542 else
543 *data = g_variant_new_string("UR");
544 }
069d9f25
AJ
545
546 s = g_variant_get_string(*data, NULL);
0ad7074c
FS
547 if (g_strcmp0(s, "CV") && g_strcmp0(s, "CC") && g_strcmp0(s, "CC-") &&
548 g_strcmp0(s, "UR") && g_strcmp0(s, "")) {
43ff1110
FS
549
550 sr_err("Unknown response to SCPI_CMD_GET_OUTPUT_REGULATION: %s", s);
91ef511d
BV
551 ret = SR_ERR_DATA;
552 }
91ef511d 553 }
ca1a7cb5 554
8b5eadf4 555 if (cmd == SCPI_CMD_GET_OVER_VOLTAGE_PROTECTION_ACTIVE) {
f083ae63
FS
556 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
557 /* Evaluate Status Register from a HP 66xx in COMP mode. */
558 s = g_variant_get_string(*data, NULL);
559 sr_atoi(s, &reg);
560 g_variant_unref(*data);
561 *data = g_variant_new_boolean(reg & (1 << 3));
562 }
8b5eadf4
FS
563 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
564 /* Evaluate Questionable Status Register bit 0 from a HP 66xxB. */
565 s = g_variant_get_string(*data, NULL);
566 sr_atoi(s, &reg);
567 g_variant_unref(*data);
568 *data = g_variant_new_boolean(reg & (1 << 0));
569 }
570 }
571
572 if (cmd == SCPI_CMD_GET_OVER_CURRENT_PROTECTION_ACTIVE) {
f083ae63
FS
573 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
574 /* Evaluate Status Register from a HP 66xx in COMP mode. */
575 s = g_variant_get_string(*data, NULL);
576 sr_atoi(s, &reg);
577 g_variant_unref(*data);
578 *data = g_variant_new_boolean(reg & (1 << 6));
579 }
8b5eadf4
FS
580 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB) {
581 /* Evaluate Questionable Status Register bit 1 from a HP 66xxB. */
582 s = g_variant_get_string(*data, NULL);
583 sr_atoi(s, &reg);
584 g_variant_unref(*data);
585 *data = g_variant_new_boolean(reg & (1 << 1));
586 }
587 }
588
589 if (cmd == SCPI_CMD_GET_OVER_TEMPERATURE_PROTECTION_ACTIVE) {
f083ae63
FS
590 if (devc->device->dialect == SCPI_DIALECT_HP_COMP) {
591 /* Evaluate Status Register from a HP 66xx in COMP mode. */
592 s = g_variant_get_string(*data, NULL);
593 sr_atoi(s, &reg);
594 g_variant_unref(*data);
595 *data = g_variant_new_boolean(reg & (1 << 4));
596 }
bd5f0a14
FS
597 if (devc->device->dialect == SCPI_DIALECT_HP_66XXB ||
598 devc->device->dialect == SCPI_DIALECT_HMP) {
8b5eadf4
FS
599 /* Evaluate Questionable Status Register bit 4 from a HP 66xxB. */
600 s = g_variant_get_string(*data, NULL);
601 sr_atoi(s, &reg);
602 g_variant_unref(*data);
603 *data = g_variant_new_boolean(reg & (1 << 4));
604 }
605 }
606
ca1a7cb5
BV
607 return ret;
608}
609
dd7a72ea
UH
610static int config_set(uint32_t key, GVariant *data,
611 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 612{
91ef511d 613 struct dev_context *devc;
9e45cd41 614 double d;
17a82e83
FS
615 int channel_group_cmd;
616 char *channel_group_name;
617 int ret;
ca1a7cb5 618
fdedbfcd
BV
619 if (!sdi)
620 return SR_ERR_ARG;
621
17a82e83
FS
622 channel_group_cmd = 0;
623 channel_group_name = NULL;
624 if (cg) {
625 channel_group_cmd = SCPI_CMD_SELECT_CHANNEL;
626 channel_group_name = g_strdup(cg->name);
627 }
60475cd7 628
91ef511d 629 devc = sdi->priv;
e57057ae 630
60475cd7 631 switch (key) {
7a0b98b5 632 case SR_CONF_ENABLED:
60475cd7 633 if (g_variant_get_boolean(data))
17a82e83
FS
634 ret = sr_scpi_cmd(sdi, devc->device->commands,
635 channel_group_cmd, channel_group_name,
91ef511d 636 SCPI_CMD_SET_OUTPUT_ENABLE);
60475cd7 637 else
17a82e83
FS
638 ret = sr_scpi_cmd(sdi, devc->device->commands,
639 channel_group_cmd, channel_group_name,
91ef511d 640 SCPI_CMD_SET_OUTPUT_DISABLE);
60475cd7 641 break;
7a0b98b5 642 case SR_CONF_VOLTAGE_TARGET:
60475cd7 643 d = g_variant_get_double(data);
17a82e83
FS
644 ret = sr_scpi_cmd(sdi, devc->device->commands,
645 channel_group_cmd, channel_group_name,
91ef511d 646 SCPI_CMD_SET_VOLTAGE_TARGET, d);
60475cd7 647 break;
4264f1c0
AG
648 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
649 d = g_variant_get_double(data);
17a82e83
FS
650 ret = sr_scpi_cmd(sdi, devc->device->commands,
651 channel_group_cmd, channel_group_name,
91ef511d 652 SCPI_CMD_SET_FREQUENCY_TARGET, d);
4264f1c0 653 break;
7a0b98b5 654 case SR_CONF_CURRENT_LIMIT:
60475cd7 655 d = g_variant_get_double(data);
17a82e83
FS
656 ret = sr_scpi_cmd(sdi, devc->device->commands,
657 channel_group_cmd, channel_group_name,
91ef511d 658 SCPI_CMD_SET_CURRENT_LIMIT, d);
60475cd7
BV
659 break;
660 case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
661 if (g_variant_get_boolean(data))
17a82e83
FS
662 ret = sr_scpi_cmd(sdi, devc->device->commands,
663 channel_group_cmd, channel_group_name,
91ef511d 664 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_ENABLE);
60475cd7 665 else
17a82e83
FS
666 ret = sr_scpi_cmd(sdi, devc->device->commands,
667 channel_group_cmd, channel_group_name,
91ef511d 668 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_DISABLE);
60475cd7
BV
669 break;
670 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
671 d = g_variant_get_double(data);
17a82e83
FS
672 ret = sr_scpi_cmd(sdi, devc->device->commands,
673 channel_group_cmd, channel_group_name,
91ef511d 674 SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_THRESHOLD, d);
60475cd7
BV
675 break;
676 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
677 if (g_variant_get_boolean(data))
17a82e83
FS
678 ret = sr_scpi_cmd(sdi, devc->device->commands,
679 channel_group_cmd, channel_group_name,
91ef511d 680 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_ENABLE);
60475cd7 681 else
17a82e83
FS
682 ret = sr_scpi_cmd(sdi, devc->device->commands,
683 channel_group_cmd, channel_group_name,
91ef511d 684 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_DISABLE);
60475cd7
BV
685 break;
686 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
687 d = g_variant_get_double(data);
17a82e83
FS
688 ret = sr_scpi_cmd(sdi, devc->device->commands,
689 channel_group_cmd, channel_group_name,
91ef511d 690 SCPI_CMD_SET_OVER_CURRENT_PROTECTION_THRESHOLD, d);
60475cd7
BV
691 break;
692 case SR_CONF_OVER_TEMPERATURE_PROTECTION:
693 if (g_variant_get_boolean(data))
17a82e83
FS
694 ret = sr_scpi_cmd(sdi, devc->device->commands,
695 channel_group_cmd, channel_group_name,
91ef511d 696 SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_ENABLE);
60475cd7 697 else
17a82e83
FS
698 ret = sr_scpi_cmd(sdi, devc->device->commands,
699 channel_group_cmd, channel_group_name,
91ef511d 700 SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_DISABLE);
60475cd7
BV
701 break;
702 default:
88e4daa9 703 ret = sr_sw_limits_config_set(&devc->limits, key, data);
ca1a7cb5
BV
704 }
705
17a82e83
FS
706 g_free(channel_group_name);
707
708 return ret;
ca1a7cb5
BV
709}
710
dd7a72ea
UH
711static int config_list(uint32_t key, GVariant **data,
712 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
ca1a7cb5 713{
9e45cd41
BV
714 struct dev_context *devc;
715 struct sr_channel *ch;
8f3c77db 716 struct pps_channel *pch;
329733d9 717 const struct channel_spec *ch_spec;
a9010323 718 int i;
9e45cd41
BV
719 const char *s[16];
720
e66d1892 721 devc = (sdi) ? sdi->priv : NULL;
ca1a7cb5 722
9e45cd41 723 if (!cg) {
9e45cd41 724 switch (key) {
e66d1892 725 case SR_CONF_SCAN_OPTIONS:
9e45cd41 726 case SR_CONF_DEVICE_OPTIONS:
e66d1892 727 return std_opts_config_list(key, data, sdi, cg,
53012da6
UH
728 ARRAY_AND_SIZE(scanopts),
729 ARRAY_AND_SIZE(drvopts),
08eba2d3
GS
730 (devc && devc->device) ? devc->device->devopts : NULL,
731 (devc && devc->device) ? devc->device->num_devopts : 0);
9e45cd41 732 break;
7a0b98b5 733 case SR_CONF_CHANNEL_CONFIG:
08eba2d3
GS
734 if (!devc || !devc->device)
735 return SR_ERR_ARG;
478c8d92 736 /* Not used. */
9e45cd41
BV
737 i = 0;
738 if (devc->device->features & PPS_INDEPENDENT)
739 s[i++] = "Independent";
740 if (devc->device->features & PPS_SERIES)
741 s[i++] = "Series";
742 if (devc->device->features & PPS_PARALLEL)
743 s[i++] = "Parallel";
744 if (i == 0) {
745 /*
746 * Shouldn't happen: independent-only devices
747 * shouldn't advertise this option at all.
748 */
749 return SR_ERR_NA;
750 }
751 *data = g_variant_new_strv(s, i);
752 break;
753 default:
754 return SR_ERR_NA;
755 }
756 } else {
9e45cd41
BV
757 /*
758 * Per-channel-group options depending on a channel are actually
759 * done with the first channel. Channel groups in PPS can have
760 * more than one channel, but they will typically be of equal
01b0257a 761 * specification for use in series or parallel mode.
9e45cd41 762 */
9e45cd41 763 ch = cg->channels->data;
8f3c77db 764 pch = ch->priv;
08eba2d3
GS
765 if (!devc || !devc->device)
766 return SR_ERR_ARG;
8f3c77db 767 ch_spec = &(devc->device->channels[pch->hw_output_idx]);
9e45cd41
BV
768
769 switch (key) {
770 case SR_CONF_DEVICE_OPTIONS:
105df674 771 *data = std_gvar_array_u32(devc->device->devopts_cg, devc->device->num_devopts_cg);
9e45cd41 772 break;
7a0b98b5 773 case SR_CONF_VOLTAGE_TARGET:
54d471f4 774 *data = std_gvar_min_max_step_array(ch_spec->voltage);
9e45cd41 775 break;
4264f1c0 776 case SR_CONF_OUTPUT_FREQUENCY_TARGET:
54d471f4 777 *data = std_gvar_min_max_step_array(ch_spec->frequency);
4264f1c0 778 break;
7a0b98b5 779 case SR_CONF_CURRENT_LIMIT:
54d471f4 780 *data = std_gvar_min_max_step_array(ch_spec->current);
9e45cd41 781 break;
49a468ed
FS
782 case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
783 *data = std_gvar_min_max_step_array(ch_spec->ovp);
784 break;
785 case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
786 *data = std_gvar_min_max_step_array(ch_spec->ocp);
787 break;
9e45cd41
BV
788 default:
789 return SR_ERR_NA;
790 }
ca1a7cb5
BV
791 }
792
a9010323 793 return SR_OK;
ca1a7cb5
BV
794}
795
695dc859 796static int dev_acquisition_start(const struct sr_dev_inst *sdi)
ca1a7cb5 797{
9e45cd41
BV
798 struct dev_context *devc;
799 struct sr_scpi_dev_inst *scpi;
fa2ce8c7 800 int ret;
ca1a7cb5 801
9e45cd41
BV
802 devc = sdi->priv;
803 scpi = sdi->conn;
9e45cd41 804
17a82e83
FS
805 /* Prime the pipe with the first channel. */
806 devc->cur_acquisition_channel = sr_next_enabled_channel(sdi, NULL);
807
fd243315
UH
808 /* Device specific initialization before acquisition starts. */
809 if (devc->device->init_acquisition)
810 devc->device->init_acquisition(sdi);
7e66bf05 811
01b0257a 812 if ((ret = sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 10,
9e45cd41
BV
813 scpi_pps_receive_data, (void *)sdi)) != SR_OK)
814 return ret;
bee2b016 815 std_session_send_df_header(sdi);
88e4daa9 816 sr_sw_limits_acquisition_start(&devc->limits);
9e45cd41 817
ca1a7cb5
BV
818 return SR_OK;
819}
820
695dc859 821static int dev_acquisition_stop(struct sr_dev_inst *sdi)
ca1a7cb5 822{
9e45cd41 823 struct sr_scpi_dev_inst *scpi;
9e45cd41 824
9e45cd41
BV
825 scpi = sdi->conn;
826
9e45cd41
BV
827 sr_scpi_source_remove(sdi->session, scpi);
828
bee2b016 829 std_session_send_df_end(sdi);
bf48cceb 830
ca1a7cb5
BV
831 return SR_OK;
832}
833
dd5c48a6 834static struct sr_dev_driver scpi_pps_driver_info = {
ca1a7cb5
BV
835 .name = "scpi-pps",
836 .longname = "SCPI PPS",
837 .api_version = 1,
c2fdcc25 838 .init = std_init,
700d6b64 839 .cleanup = std_cleanup,
c2af709b
AG
840 .scan = scan_scpi_pps,
841 .dev_list = std_dev_list,
842 .dev_clear = dev_clear,
843 .config_get = config_get,
844 .config_set = config_set,
845 .config_list = config_list,
846 .dev_open = dev_open,
847 .dev_close = dev_close,
848 .dev_acquisition_start = dev_acquisition_start,
849 .dev_acquisition_stop = dev_acquisition_stop,
850 .context = NULL,
851};
852
853static struct sr_dev_driver hp_ib_pps_driver_info = {
854 .name = "hpib-pps",
855 .longname = "HP-IB PPS",
856 .api_version = 1,
857 .init = std_init,
858 .cleanup = std_cleanup,
859 .scan = scan_hpib_pps,
c01bf34c 860 .dev_list = std_dev_list,
ca1a7cb5
BV
861 .dev_clear = dev_clear,
862 .config_get = config_get,
863 .config_set = config_set,
864 .config_list = config_list,
865 .dev_open = dev_open,
866 .dev_close = dev_close,
867 .dev_acquisition_start = dev_acquisition_start,
868 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 869 .context = NULL,
ca1a7cb5 870};
dd5c48a6 871SR_REGISTER_DEV_DRIVER(scpi_pps_driver_info);
c2af709b 872SR_REGISTER_DEV_DRIVER(hp_ib_pps_driver_info);