]> sigrok.org Git - libsigrok.git/blob - src/hardware/scpi-pps/api.c
891236a81c655d7283159b167c502e79f34c5e16
[libsigrok.git] / src / hardware / scpi-pps / api.c
1 /*
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
20 #include <string.h>
21 #include "protocol.h"
22
23 SR_PRIV struct sr_dev_driver scpi_pps_driver_info;
24 static struct sr_dev_driver *di = &scpi_pps_driver_info;
25 extern unsigned int num_pps_profiles;
26 extern const struct scpi_pps pps_profiles[];
27
28 static const uint32_t scanopts[] = {
29         SR_CONF_CONN,
30         SR_CONF_SERIALCOMM,
31 };
32
33 static 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
39 static int init(struct sr_context *sr_ctx)
40 {
41         return std_init(sr_ctx, di, LOG_PREFIX);
42 }
43
44 static 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;
52         struct pps_channel *pch;
53         const struct channel_group_spec *cgs;
54         struct pps_channel_group *pcg;
55         GRegex *model_re;
56         GMatchInfo *model_mi;
57         GSList *l;
58         uint64_t mask;
59         unsigned int ch_num, ch_idx, i, j;
60         const char *vendor;
61         char ch_name[16];
62
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++) {
70                 vendor = get_vendor(hw_info->manufacturer);
71                 if (strcasecmp(vendor, pps_profiles[i].vendor))
72                         continue;
73                 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))
75                         device = &pps_profiles[i];
76                 g_match_info_unref(model_mi);
77                 g_regex_unref(model_re);
78                 if (device)
79                         break;
80         }
81         if (!device) {
82                 sr_scpi_hw_info_free(hw_info);
83                 return NULL;
84         }
85
86         sdi = sr_dev_inst_new(SR_ST_ACTIVE, vendor, hw_info->model,
87                         hw_info->firmware_version);
88         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
95         ch_idx = 0;
96         for (ch_num = 0; ch_num < device->num_channels; ch_num++) {
97                 /* Create one channel per measurable output unit. */
98                 for (i = 0; i < ARRAY_SIZE(pci); i++) {
99                         if (!scpi_cmd_get(sdi, pci[i].command))
100                                 continue;
101                         g_snprintf(ch_name, 16, "%s%s", pci[i].prefix,
102                                         device->channels[ch_num].name);
103                         ch = sr_channel_new(ch_idx++, SR_CHANNEL_ANALOG, TRUE, ch_name);
104                         pch = g_malloc0(sizeof(struct pps_channel));
105                         pch->hw_output_idx = ch_num;
106                         pch->hwname = device->channels[ch_num].name;
107                         pch->mq = pci[i].mq;
108                         ch->priv = pch;
109                         sdi->channels = g_slist_append(sdi->channels, ch);
110                 }
111         }
112
113         for (i = 0; i < device->num_channel_groups; i++) {
114                 cgs = &device->channel_groups[i];
115                 cg = g_malloc0(sizeof(struct sr_channel_group));
116                 cg->name = g_strdup(cgs->name);
117                 for (j = 0, mask = 1; j < 64; j++, mask <<= 1) {
118                         if (cgs->channel_index_mask & mask) {
119                                 for (l = sdi->channels; l; l = l->next) {
120                                         ch = l->data;
121                                         pch = ch->priv;
122                                         if (pch->hw_output_idx == j)
123                                                 cg->channels = g_slist_append(cg->channels, ch);
124                                 }
125                         }
126                 }
127                 pcg = g_malloc0(sizeof(struct pps_channel_group));
128                 pcg->features = cgs->features;
129                 cg->priv = pcg;
130                 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
131         }
132
133         scpi_cmd(sdi, SCPI_CMD_LOCAL);
134         sr_scpi_close(scpi);
135
136         return sdi;
137 }
138
139 static GSList *scan(GSList *options)
140 {
141         return sr_scpi_scan(di->priv, options, probe_device);
142 }
143
144 static GSList *dev_list(void)
145 {
146         return ((struct drv_context *)(di->priv))->instances;
147 }
148
149 static int dev_clear(void)
150 {
151         return std_dev_clear(di, NULL);
152 }
153
154 static int dev_open(struct sr_dev_inst *sdi)
155 {
156         struct dev_context *devc;
157         struct sr_scpi_dev_inst *scpi;
158         GVariant *beeper;
159
160         if (sdi->status != SR_ST_ACTIVE)
161                 return SR_ERR;
162
163         scpi = sdi->conn;
164         if (sr_scpi_open(scpi) < 0)
165                 return SR_ERR;
166
167         sdi->status = SR_ST_ACTIVE;
168
169         scpi_cmd(sdi, SCPI_CMD_REMOTE);
170         devc = sdi->priv;
171         devc->beeper_was_set = FALSE;
172         if (scpi_cmd_resp(sdi, &beeper, G_VARIANT_TYPE_BOOLEAN, SCPI_CMD_BEEPER) == SR_OK) {
173                 if (g_variant_get_boolean(beeper)) {
174                         devc->beeper_was_set = TRUE;
175                         scpi_cmd(sdi, SCPI_CMD_BEEPER_DISABLE);
176                 }
177                 g_variant_unref(beeper);
178         }
179
180         return SR_OK;
181 }
182
183 static int dev_close(struct sr_dev_inst *sdi)
184 {
185         struct sr_scpi_dev_inst *scpi;
186         struct dev_context *devc;
187
188         if (sdi->status != SR_ST_ACTIVE)
189                 return SR_ERR_DEV_CLOSED;
190
191         devc = sdi->priv;
192         scpi = sdi->conn;
193         if (scpi) {
194                 if (devc->beeper_was_set)
195                         scpi_cmd(sdi, SCPI_CMD_BEEPER_ENABLE);
196                 scpi_cmd(sdi, SCPI_CMD_LOCAL);
197                 sr_scpi_close(scpi);
198                 sdi->status = SR_ST_INACTIVE;
199         }
200
201         return SR_OK;
202 }
203
204 static int cleanup(void)
205 {
206         return std_dev_clear(di, NULL);
207 }
208
209 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
210                 const struct sr_channel_group *cg)
211 {
212         struct dev_context *devc;
213         const GVariantType *gvtype;
214         unsigned int i;
215         int cmd, ret;
216         const char *s;
217
218         if (!sdi)
219                 return SR_ERR_ARG;
220
221         devc = sdi->priv;
222
223         if (cg) {
224                 /*
225                  * These options only apply to channel groups with a single
226                  * channel -- they're per-channel settings for the device.
227                  */
228
229                 /*
230                  * Config keys are handled below depending on whether a channel
231                  * group was provided by the frontend. However some of these
232                  * take a CG on one PPS but not on others. Check the device's
233                  * profile for that here, and NULL out the channel group as needed.
234                  */
235                 for (i = 0; i < devc->device->num_devopts; i++) {
236                         if (devc->device->devopts[i] == key) {
237                                 cg = NULL;
238                                 break;
239                         }
240                 }
241         }
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_TARGET:
255                 gvtype = G_VARIANT_TYPE_DOUBLE;
256                 cmd = SCPI_CMD_GET_VOLTAGE_TARGET;
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_LIMIT:
263                 gvtype = G_VARIANT_TYPE_DOUBLE;
264                 cmd = SCPI_CMD_GET_CURRENT_LIMIT;
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         case SR_CONF_OUTPUT_REGULATION:
295                 gvtype = G_VARIANT_TYPE_STRING;
296                 cmd = SCPI_CMD_GET_OUTPUT_REGULATION;
297         }
298         if (gvtype) {
299                 if (cg)
300                         select_channel(sdi, cg->channels->data);
301                 ret = scpi_cmd_resp(sdi, data, gvtype, cmd);
302
303                 if (gvtype == G_VARIANT_TYPE_STRING && ret == SR_OK) {
304                         /* Non-standard data type responses. */
305                         switch (key) {
306                         case SCPI_CMD_GET_OUTPUT_REGULATION:
307                                 /*
308                                  * This is specific to the Rigol DP800 series.
309                                  * We return the same string for now until more
310                                  * models with this key are supported. Do a check
311                                  * just for the hell of it.
312                                  */
313                                 s = g_variant_get_string(*data, NULL);
314                                 if (strcmp(s, "CC") && strcmp(s, "CV") && strcmp(s, "UR")) {
315                                         sr_dbg("Unknown response to SCPI_CMD_GET_OUTPUT_REGULATION: %s", s);
316                                         ret = SR_ERR_DATA;
317                                 }
318                                 break;
319                         }
320                 }
321         } else
322                 ret = SR_ERR_NA;
323
324         return ret;
325 }
326
327 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
328                 const struct sr_channel_group *cg)
329 {
330         double d;
331         int ret;
332
333         if (!sdi)
334                 return SR_ERR_ARG;
335
336         if (sdi->status != SR_ST_ACTIVE)
337                 return SR_ERR_DEV_CLOSED;
338
339         if (cg)
340                 /* Channel group specified. */
341                 select_channel(sdi, cg->channels->data);
342
343         ret = SR_OK;
344         switch (key) {
345         case SR_CONF_OUTPUT_ENABLED:
346                 if (g_variant_get_boolean(data))
347                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OUTPUT_ENABLE);
348                 else
349                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OUTPUT_DISABLE);
350                 break;
351         case SR_CONF_OUTPUT_VOLTAGE_TARGET:
352                 d = g_variant_get_double(data);
353                 ret = scpi_cmd(sdi, SCPI_CMD_SET_VOLTAGE_TARGET, d);
354                 break;
355         case SR_CONF_OUTPUT_CURRENT_LIMIT:
356                 d = g_variant_get_double(data);
357                 ret = scpi_cmd(sdi, SCPI_CMD_SET_CURRENT_LIMIT, d);
358                 break;
359         case SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED:
360                 if (g_variant_get_boolean(data))
361                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_ENABLE);
362                 else
363                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_DISABLE);
364                 break;
365         case SR_CONF_OVER_VOLTAGE_PROTECTION_THRESHOLD:
366                 d = g_variant_get_double(data);
367                 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_VOLTAGE_PROTECTION_THRESHOLD, d);
368                 break;
369         case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
370                 if (g_variant_get_boolean(data))
371                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_CURRENT_PROTECTION_ENABLE);
372                 else
373                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_CURRENT_PROTECTION_DISABLE);
374                 break;
375         case SR_CONF_OVER_CURRENT_PROTECTION_THRESHOLD:
376                 d = g_variant_get_double(data);
377                 ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_CURRENT_PROTECTION_THRESHOLD, d);
378                 break;
379         case SR_CONF_OVER_TEMPERATURE_PROTECTION:
380                 if (g_variant_get_boolean(data))
381                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_ENABLE);
382                 else
383                         ret = scpi_cmd(sdi, SCPI_CMD_SET_OVER_TEMPERATURE_PROTECTION_DISABLE);
384                 break;
385         default:
386                 ret = SR_ERR_NA;
387         }
388
389         return ret;
390 }
391
392 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
393                 const struct sr_channel_group *cg)
394 {
395         struct dev_context *devc;
396         struct sr_channel *ch;
397         struct channel_spec *ch_spec;
398         GVariant *gvar;
399         GVariantBuilder gvb;
400         int ret, i;
401         const char *s[16];
402
403         /* Always available, even without sdi. */
404         if (key == SR_CONF_SCAN_OPTIONS) {
405                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
406                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
407                 return SR_OK;
408         }
409
410         if (!sdi)
411                 return SR_ERR_ARG;
412         devc = sdi->priv;
413
414         ret = SR_OK;
415         if (!cg) {
416                 /* No channel group: global options. */
417                 switch (key) {
418                 case SR_CONF_DEVICE_OPTIONS:
419                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
420                                         devc->device->devopts, devc->device->num_devopts,
421                                         sizeof(uint32_t));
422                         break;
423                 case SR_CONF_OUTPUT_CHANNEL_CONFIG:
424                         /* Not used. */
425                         i = 0;
426                         if (devc->device->features & PPS_INDEPENDENT)
427                                 s[i++] = "Independent";
428                         if (devc->device->features & PPS_SERIES)
429                                 s[i++] = "Series";
430                         if (devc->device->features & PPS_PARALLEL)
431                                 s[i++] = "Parallel";
432                         if (i == 0) {
433                                 /*
434                                  * Shouldn't happen: independent-only devices
435                                  * shouldn't advertise this option at all.
436                                  */
437                                 return SR_ERR_NA;
438                         }
439                         *data = g_variant_new_strv(s, i);
440                         break;
441                 default:
442                         return SR_ERR_NA;
443                 }
444         } else {
445                 /* Channel group specified. */
446                 /*
447                  * Per-channel-group options depending on a channel are actually
448                  * done with the first channel. Channel groups in PPS can have
449                  * more than one channel, but they will typically be of equal
450                  * specification for use in series or parallel mode.
451                  */
452                 ch = cg->channels->data;
453
454                 switch (key) {
455                 case SR_CONF_DEVICE_OPTIONS:
456                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
457                                         devc->device->devopts_cg, devc->device->num_devopts_cg,
458                                         sizeof(uint32_t));
459                         break;
460                 case SR_CONF_OUTPUT_VOLTAGE_TARGET:
461                         ch_spec = &(devc->device->channels[ch->index]);
462                         g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
463                         /* Min, max, write resolution. */
464                         for (i = 0; i < 3; i++) {
465                                 gvar = g_variant_new_double(ch_spec->voltage[i]);
466                                 g_variant_builder_add_value(&gvb, gvar);
467                         }
468                         *data = g_variant_builder_end(&gvb);
469                         break;
470                 case SR_CONF_OUTPUT_CURRENT_LIMIT:
471                         g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
472                         /* Min, max, step. */
473                         for (i = 0; i < 3; i++) {
474                                 ch_spec = &(devc->device->channels[ch->index]);
475                                 gvar = g_variant_new_double(ch_spec->current[i]);
476                                 g_variant_builder_add_value(&gvb, gvar);
477                         }
478                         *data = g_variant_builder_end(&gvb);
479                         break;
480                 default:
481                         return SR_ERR_NA;
482                 }
483         }
484
485         return ret;
486 }
487
488 static int dev_acquisition_start(const struct sr_dev_inst *sdi,
489                 void *cb_data)
490 {
491         struct dev_context *devc;
492         struct sr_scpi_dev_inst *scpi;
493         struct sr_channel *ch;
494         struct pps_channel *pch;
495         int cmd, ret;
496
497         if (sdi->status != SR_ST_ACTIVE)
498                 return SR_ERR_DEV_CLOSED;
499
500         devc = sdi->priv;
501         scpi = sdi->conn;
502         devc->cb_data = cb_data;
503
504         if ((ret = sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 10,
505                         scpi_pps_receive_data, (void *)sdi)) != SR_OK)
506                 return ret;
507         std_session_send_df_header(sdi, LOG_PREFIX);
508
509         /* Prime the pipe with the first channel's fetch. */
510         ch = next_enabled_channel(sdi, NULL);
511         pch = ch->priv;
512         if ((ret = select_channel(sdi, ch)) != SR_OK)
513                 return ret;
514         if (pch->mq == SR_MQ_VOLTAGE)
515                 cmd = SCPI_CMD_GET_MEAS_VOLTAGE;
516         else if (pch->mq == SR_MQ_CURRENT)
517                 cmd = SCPI_CMD_GET_MEAS_CURRENT;
518         else if (pch->mq == SR_MQ_POWER)
519                 cmd = SCPI_CMD_GET_MEAS_POWER;
520         else
521                 return SR_ERR;
522         scpi_cmd(sdi, cmd, pch->hwname);
523
524         return SR_OK;
525 }
526
527 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
528 {
529         struct sr_datafeed_packet packet;
530         struct sr_scpi_dev_inst *scpi;
531         float f;
532
533         (void)cb_data;
534
535         if (sdi->status != SR_ST_ACTIVE)
536                 return SR_ERR_DEV_CLOSED;
537
538         scpi = sdi->conn;
539
540         /*
541          * A requested value is certainly on the way. Retrieve it now,
542          * to avoid leaving the device in a state where it's not expecting
543          * commands.
544          */
545         sr_scpi_get_float(scpi, NULL, &f);
546         sr_scpi_source_remove(sdi->session, scpi);
547
548         packet.type = SR_DF_END;
549         sr_session_send(sdi, &packet);
550
551         return SR_OK;
552 }
553
554 SR_PRIV struct sr_dev_driver scpi_pps_driver_info = {
555         .name = "scpi-pps",
556         .longname = "SCPI PPS",
557         .api_version = 1,
558         .init = init,
559         .cleanup = cleanup,
560         .scan = scan,
561         .dev_list = dev_list,
562         .dev_clear = dev_clear,
563         .config_get = config_get,
564         .config_set = config_set,
565         .config_list = config_list,
566         .dev_open = dev_open,
567         .dev_close = dev_close,
568         .dev_acquisition_start = dev_acquisition_start,
569         .dev_acquisition_stop = dev_acquisition_stop,
570         .priv = NULL,
571 };