]> sigrok.org Git - libsigrok.git/blame - src/hardware/hameg-hmo/api.c
hameg-hmo: Add missing 1ns timebase for some models.
[libsigrok.git] / src / hardware / hameg-hmo / api.c
CommitLineData
06a3e78a
DJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@gmail.com>
e131be0a 5 * Copyright (C) 2018 Guido Trentalancia <guido@trentalancia.com>
06a3e78a
DJ
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>
13f2b9d7 22#include <stdlib.h>
5a1afc09 23#include "scpi.h"
06a3e78a
DJ
24#include "protocol.h"
25
dd5c48a6 26static struct sr_dev_driver hameg_hmo_driver_info;
e9a62139
DJ
27
28static const char *manufacturers[] = {
29 "HAMEG",
da1726cc 30 "Rohde&Schwarz",
e9a62139
DJ
31};
32
584560f1 33static const uint32_t scanopts[] = {
13f2b9d7
DJ
34 SR_CONF_CONN,
35 SR_CONF_SERIALCOMM,
36};
37
55fb76b3
UH
38static const uint32_t drvopts[] = {
39 SR_CONF_OSCILLOSCOPE,
3a247d03 40 SR_CONF_LOGIC_ANALYZER,
55fb76b3
UH
41};
42
719eff68 43enum {
61e77667
UH
44 CG_INVALID = -1,
45 CG_NONE,
46 CG_ANALOG,
47 CG_DIGITAL,
719eff68
UH
48};
49
373e92a4 50static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
e9a62139
DJ
51{
52 struct sr_dev_inst *sdi;
53 struct dev_context *devc;
54 struct sr_scpi_hw_info *hw_info;
e9a62139
DJ
55
56 sdi = NULL;
57 devc = NULL;
e9a62139
DJ
58 hw_info = NULL;
59
e9a62139
DJ
60 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
61 sr_info("Couldn't get IDN response.");
62 goto fail;
63 }
64
697fb6dd 65 if (std_str_idx_s(hw_info->manufacturer, ARRAY_AND_SIZE(manufacturers)) < 0)
e9a62139
DJ
66 goto fail;
67
aac29cc1 68 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
69 sdi->vendor = g_strdup(hw_info->manufacturer);
70 sdi->model = g_strdup(hw_info->model);
71 sdi->version = g_strdup(hw_info->firmware_version);
72 sdi->serial_num = g_strdup(hw_info->serial_number);
4f840ce9 73 sdi->driver = &hameg_hmo_driver_info;
b33db61c
SA
74 sdi->inst_type = SR_INST_SCPI;
75 sdi->conn = scpi;
b33db61c 76
e9a62139
DJ
77 sr_scpi_hw_info_free(hw_info);
78 hw_info = NULL;
79
f57d8ffe 80 devc = g_malloc0(sizeof(struct dev_context));
e9a62139 81
e9a62139 82 sdi->priv = devc;
e9a62139
DJ
83
84 if (hmo_init_device(sdi) != SR_OK)
85 goto fail;
86
87 return sdi;
88
89fail:
7b365c47 90 sr_scpi_hw_info_free(hw_info);
4bf93988 91 sr_dev_inst_free(sdi);
b1f83103 92 g_free(devc);
e9a62139
DJ
93
94 return NULL;
95}
96
4f840ce9 97static GSList *scan(struct sr_dev_driver *di, GSList *options)
06a3e78a 98{
373e92a4 99 return sr_scpi_scan(di->context, options, probe_device);
06a3e78a
DJ
100}
101
3553451f 102static void clear_helper(struct dev_context *devc)
13f2b9d7 103{
719eff68 104 hmo_scope_state_free(devc->model_state);
13f2b9d7
DJ
105 g_free(devc->analog_groups);
106 g_free(devc->digital_groups);
13f2b9d7
DJ
107}
108
4f840ce9 109static int dev_clear(const struct sr_dev_driver *di)
06a3e78a 110{
3553451f 111 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
06a3e78a
DJ
112}
113
114static int dev_open(struct sr_dev_inst *sdi)
115{
6402c379 116 if (sr_scpi_open(sdi->conn) != SR_OK)
13f2b9d7 117 return SR_ERR;
06a3e78a 118
719eff68 119 if (hmo_scope_state_get(sdi) != SR_OK)
13f2b9d7 120 return SR_ERR;
06a3e78a 121
06a3e78a
DJ
122 return SR_OK;
123}
124
125static int dev_close(struct sr_dev_inst *sdi)
126{
f1ba6b4b 127 return sr_scpi_close(sdi->conn);
06a3e78a
DJ
128}
129
660e398f 130static int check_channel_group(struct dev_context *devc,
53b4680f 131 const struct sr_channel_group *cg)
13f2b9d7 132{
329733d9 133 const struct scope_config *model;
13f2b9d7
DJ
134
135 model = devc->model_config;
136
53b4680f 137 if (!cg)
61e77667 138 return CG_NONE;
13f2b9d7 139
fcd6a8bd
UH
140 if (std_cg_idx(cg, devc->analog_groups, model->analog_channels) >= 0)
141 return CG_ANALOG;
13f2b9d7 142
fcd6a8bd
UH
143 if (std_cg_idx(cg, devc->digital_groups, model->digital_pods) >= 0)
144 return CG_DIGITAL;
13f2b9d7 145
660e398f 146 sr_err("Invalid channel group specified.");
89280b1a 147
61e77667 148 return CG_INVALID;
13f2b9d7
DJ
149}
150
dd7a72ea
UH
151static int config_get(uint32_t key, GVariant **data,
152 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
06a3e78a 153{
aac30633 154 int cg_type, idx, i;
13f2b9d7 155 struct dev_context *devc;
329733d9 156 const struct scope_config *model;
14a2f74d 157 struct scope_state *state;
13f2b9d7 158
709468ba 159 if (!sdi)
13f2b9d7
DJ
160 return SR_ERR_ARG;
161
709468ba
UH
162 devc = sdi->priv;
163
61e77667 164 if ((cg_type = check_channel_group(devc, cg)) == CG_INVALID)
13f2b9d7 165 return SR_ERR;
06a3e78a 166
13f2b9d7 167 model = devc->model_config;
14a2f74d 168 state = devc->model_state;
06a3e78a 169
06a3e78a 170 switch (key) {
bf622e6d 171 case SR_CONF_NUM_HDIV:
13f2b9d7 172 *data = g_variant_new_int32(model->num_xdivs);
13f2b9d7 173 break;
3fd2dca2
DJ
174 case SR_CONF_TIMEBASE:
175 *data = g_variant_new("(tt)", (*model->timebases)[state->timebase][0],
176 (*model->timebases)[state->timebase][1]);
3fd2dca2 177 break;
13f2b9d7 178 case SR_CONF_NUM_VDIV:
3782e571 179 if (!cg)
660e398f 180 return SR_ERR_CHANNEL_GROUP;
3782e571 181 if (cg_type != CG_ANALOG)
758906aa 182 return SR_ERR_NA;
3782e571
UH
183 if (std_cg_idx(cg, devc->analog_groups, model->analog_channels) < 0)
184 return SR_ERR_ARG;
185 *data = g_variant_new_int32(model->num_ydivs);
3fd2dca2
DJ
186 break;
187 case SR_CONF_VDIV:
3782e571 188 if (!cg)
61e77667 189 return SR_ERR_CHANNEL_GROUP;
3782e571 190 if (cg_type != CG_ANALOG)
758906aa 191 return SR_ERR_NA;
3782e571
UH
192 if ((idx = std_cg_idx(cg, devc->analog_groups, model->analog_channels)) < 0)
193 return SR_ERR_ARG;
194 *data = g_variant_new("(tt)",
195 (*model->vdivs)[state->analog_channels[idx].vdiv][0],
196 (*model->vdivs)[state->analog_channels[idx].vdiv][1]);
ccf14618
DJ
197 break;
198 case SR_CONF_TRIGGER_SOURCE:
199 *data = g_variant_new_string((*model->trigger_sources)[state->trigger_source]);
ccf14618 200 break;
3fd2dca2
DJ
201 case SR_CONF_TRIGGER_SLOPE:
202 *data = g_variant_new_string((*model->trigger_slopes)[state->trigger_slope]);
3fd2dca2 203 break;
4fa4db2c
GT
204 case SR_CONF_TRIGGER_PATTERN:
205 *data = g_variant_new_string(state->trigger_pattern);
206 break;
3fd2dca2
DJ
207 case SR_CONF_HORIZ_TRIGGERPOS:
208 *data = g_variant_new_double(state->horiz_triggerpos);
3fd2dca2 209 break;
ccf14618 210 case SR_CONF_COUPLING:
3782e571 211 if (!cg)
660e398f 212 return SR_ERR_CHANNEL_GROUP;
3782e571 213 if (cg_type != CG_ANALOG)
758906aa 214 return SR_ERR_NA;
3782e571
UH
215 if ((idx = std_cg_idx(cg, devc->analog_groups, model->analog_channels)) < 0)
216 return SR_ERR_ARG;
217 *data = g_variant_new_string((*model->coupling_options)[state->analog_channels[idx].coupling]);
13f2b9d7 218 break;
14a2f74d
DJ
219 case SR_CONF_SAMPLERATE:
220 *data = g_variant_new_uint64(state->sample_rate);
14a2f74d 221 break;
e131be0a
GT
222 case SR_CONF_LOGIC_THRESHOLD:
223 if (!cg)
224 return SR_ERR_CHANNEL_GROUP;
225 if (cg_type != CG_DIGITAL)
226 return SR_ERR_NA;
227 if (!model)
228 return SR_ERR_ARG;
229 if ((idx = std_cg_idx(cg, devc->digital_groups, model->digital_pods)) < 0)
230 return SR_ERR_ARG;
231 *data = g_variant_new_string((*model->logic_threshold)[state->digital_pods[idx].threshold]);
232 break;
233 case SR_CONF_LOGIC_THRESHOLD_CUSTOM:
234 if (!cg)
235 return SR_ERR_CHANNEL_GROUP;
236 if (cg_type != CG_DIGITAL)
237 return SR_ERR_NA;
238 if (!model)
239 return SR_ERR_ARG;
240 if ((idx = std_cg_idx(cg, devc->digital_groups, model->digital_pods)) < 0)
241 return SR_ERR_ARG;
aac30633
GT
242 /* Check if the oscilloscope is currently in custom threshold mode. */
243 for (i = 0; i < model->num_logic_threshold; i++) {
244 if (!strcmp("USER2", (*model->logic_threshold)[i]))
245 if (strcmp("USER2", (*model->logic_threshold)[state->digital_pods[idx].threshold]))
246 return SR_ERR_NA;
247 if (!strcmp("USER", (*model->logic_threshold)[i]))
248 if (strcmp("USER", (*model->logic_threshold)[state->digital_pods[idx].threshold]))
249 return SR_ERR_NA;
250 if (!strcmp("MAN", (*model->logic_threshold)[i]))
251 if (strcmp("MAN", (*model->logic_threshold)[state->digital_pods[idx].threshold]))
252 return SR_ERR_NA;
253 }
e131be0a
GT
254 *data = g_variant_new_double(state->digital_pods[idx].user_threshold);
255 break;
06a3e78a 256 default:
758906aa 257 return SR_ERR_NA;
06a3e78a
DJ
258 }
259
758906aa 260 return SR_OK;
06a3e78a
DJ
261}
262
dd7a72ea
UH
263static int config_set(uint32_t key, GVariant *data,
264 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
06a3e78a 265{
aac30633
GT
266 int ret, cg_type, idx, i, j;
267 char command[MAX_COMMAND_SIZE], command2[MAX_COMMAND_SIZE];
268 char float_str[30], *tmp_str;
13f2b9d7 269 struct dev_context *devc;
329733d9 270 const struct scope_config *model;
13f2b9d7 271 struct scope_state *state;
1203acc7 272 double tmp_d, tmp_d2;
23e1ea7a 273 gboolean update_sample_rate;
06a3e78a 274
b0baddef 275 if (!sdi)
13f2b9d7
DJ
276 return SR_ERR_ARG;
277
b0baddef
UH
278 devc = sdi->priv;
279
61e77667 280 if ((cg_type = check_channel_group(devc, cg)) == CG_INVALID)
13f2b9d7
DJ
281 return SR_ERR;
282
283 model = devc->model_config;
284 state = devc->model_state;
23e1ea7a 285 update_sample_rate = FALSE;
13f2b9d7 286
06a3e78a 287 switch (key) {
d779dcac
GT
288 case SR_CONF_LIMIT_SAMPLES:
289 devc->samples_limit = g_variant_get_uint64(data);
290 ret = SR_OK;
291 break;
13f2b9d7
DJ
292 case SR_CONF_LIMIT_FRAMES:
293 devc->frame_limit = g_variant_get_uint64(data);
294 ret = SR_OK;
295 break;
13f2b9d7 296 case SR_CONF_TRIGGER_SOURCE:
bd633efa
UH
297 if ((idx = std_str_idx(data, *model->trigger_sources, model->num_trigger_sources)) < 0)
298 return SR_ERR_ARG;
bd633efa
UH
299 g_snprintf(command, sizeof(command),
300 (*model->scpi_dialect)[SCPI_CMD_SET_TRIGGER_SOURCE],
301 (*model->trigger_sources)[idx]);
38839344
GT
302 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
303 sr_scpi_get_opc(sdi->conn) != SR_OK)
304 return SR_ERR;
1203acc7 305 state->trigger_source = idx;
38839344 306 ret = SR_OK;
89280b1a 307 break;
13f2b9d7 308 case SR_CONF_VDIV:
61233697 309 if (!cg)
660e398f 310 return SR_ERR_CHANNEL_GROUP;
697fb6dd
UH
311 if ((idx = std_u64_tuple_idx(data, *model->vdivs, model->num_vdivs)) < 0)
312 return SR_ERR_ARG;
fcd6a8bd
UH
313 if ((j = std_cg_idx(cg, devc->analog_groups, model->analog_channels)) < 0)
314 return SR_ERR_ARG;
fcd6a8bd
UH
315 g_ascii_formatd(float_str, sizeof(float_str), "%E",
316 (float) (*model->vdivs)[idx][0] / (*model->vdivs)[idx][1]);
317 g_snprintf(command, sizeof(command),
318 (*model->scpi_dialect)[SCPI_CMD_SET_VERTICAL_DIV],
319 j + 1, float_str);
320 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
321 sr_scpi_get_opc(sdi->conn) != SR_OK)
322 return SR_ERR;
1203acc7 323 state->analog_channels[j].vdiv = idx;
697fb6dd 324 ret = SR_OK;
89280b1a 325 break;
13f2b9d7 326 case SR_CONF_TIMEBASE:
697fb6dd
UH
327 if ((idx = std_u64_tuple_idx(data, *model->timebases, model->num_timebases)) < 0)
328 return SR_ERR_ARG;
697fb6dd
UH
329 g_ascii_formatd(float_str, sizeof(float_str), "%E",
330 (float) (*model->timebases)[idx][0] / (*model->timebases)[idx][1]);
331 g_snprintf(command, sizeof(command),
332 (*model->scpi_dialect)[SCPI_CMD_SET_TIMEBASE],
333 float_str);
38839344
GT
334 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
335 sr_scpi_get_opc(sdi->conn) != SR_OK)
336 return SR_ERR;
1203acc7 337 state->timebase = idx;
38839344 338 ret = SR_OK;
697fb6dd 339 update_sample_rate = TRUE;
89280b1a 340 break;
13f2b9d7 341 case SR_CONF_HORIZ_TRIGGERPOS:
89280b1a 342 tmp_d = g_variant_get_double(data);
89280b1a 343 if (tmp_d < 0.0 || tmp_d > 1.0)
13f2b9d7 344 return SR_ERR;
1203acc7 345 tmp_d2 = -(tmp_d - 0.5) *
422a1c0d
DJ
346 ((double) (*model->timebases)[state->timebase][0] /
347 (*model->timebases)[state->timebase][1])
348 * model->num_xdivs;
1203acc7 349 g_ascii_formatd(float_str, sizeof(float_str), "%E", tmp_d2);
13f2b9d7
DJ
350 g_snprintf(command, sizeof(command),
351 (*model->scpi_dialect)[SCPI_CMD_SET_HORIZ_TRIGGERPOS],
422a1c0d 352 float_str);
38839344
GT
353 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
354 sr_scpi_get_opc(sdi->conn) != SR_OK)
355 return SR_ERR;
1203acc7 356 state->horiz_triggerpos = tmp_d;
38839344 357 ret = SR_OK;
89280b1a 358 break;
13f2b9d7 359 case SR_CONF_TRIGGER_SLOPE:
bd633efa
UH
360 if ((idx = std_str_idx(data, *model->trigger_slopes, model->num_trigger_slopes)) < 0)
361 return SR_ERR_ARG;
bd633efa
UH
362 g_snprintf(command, sizeof(command),
363 (*model->scpi_dialect)[SCPI_CMD_SET_TRIGGER_SLOPE],
364 (*model->trigger_slopes)[idx]);
38839344
GT
365 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
366 sr_scpi_get_opc(sdi->conn) != SR_OK)
367 return SR_ERR;
1203acc7 368 state->trigger_slope = idx;
38839344 369 ret = SR_OK;
89280b1a 370 break;
4fa4db2c
GT
371 case SR_CONF_TRIGGER_PATTERN:
372 tmp_str = (char *)g_variant_get_string(data, 0);
373 idx = strlen(tmp_str);
374 if (idx == 0 || idx > model->analog_channels + model->digital_channels)
375 return SR_ERR_ARG;
376 g_snprintf(command, sizeof(command),
377 (*model->scpi_dialect)[SCPI_CMD_SET_TRIGGER_PATTERN],
378 tmp_str);
379 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
380 sr_scpi_get_opc(sdi->conn) != SR_OK)
381 return SR_ERR;
382 g_free(state->trigger_pattern);
383 state->trigger_pattern = g_strdup(tmp_str);
384 ret = SR_OK;
385 break;
13f2b9d7 386 case SR_CONF_COUPLING:
61233697 387 if (!cg)
660e398f 388 return SR_ERR_CHANNEL_GROUP;
bd633efa
UH
389 if ((idx = std_str_idx(data, *model->coupling_options, model->num_coupling_options)) < 0)
390 return SR_ERR_ARG;
fcd6a8bd
UH
391 if ((j = std_cg_idx(cg, devc->analog_groups, model->analog_channels)) < 0)
392 return SR_ERR_ARG;
fcd6a8bd
UH
393 g_snprintf(command, sizeof(command),
394 (*model->scpi_dialect)[SCPI_CMD_SET_COUPLING],
395 j + 1, (*model->coupling_options)[idx]);
396 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
397 sr_scpi_get_opc(sdi->conn) != SR_OK)
398 return SR_ERR;
1203acc7 399 state->analog_channels[j].coupling = idx;
bd633efa 400 ret = SR_OK;
89280b1a 401 break;
e131be0a
GT
402 case SR_CONF_LOGIC_THRESHOLD:
403 if (!cg)
404 return SR_ERR_CHANNEL_GROUP;
405 if (cg_type != CG_DIGITAL)
406 return SR_ERR_NA;
407 if (!model)
408 return SR_ERR_ARG;
409 if ((idx = std_str_idx(data, *model->logic_threshold, model->num_logic_threshold)) < 0)
410 return SR_ERR_ARG;
411 if ((j = std_cg_idx(cg, devc->digital_groups, model->digital_pods)) < 0)
412 return SR_ERR_ARG;
aac30633
GT
413 /* Check if the threshold command is based on the POD or digital channel index. */
414 if (model->logic_threshold_for_pod)
415 i = j + 1;
416 else
417 i = j * 8;
e131be0a
GT
418 g_snprintf(command, sizeof(command),
419 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_THRESHOLD],
aac30633 420 i, (*model->logic_threshold)[idx]);
e131be0a
GT
421 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
422 sr_scpi_get_opc(sdi->conn) != SR_OK)
423 return SR_ERR;
424 state->digital_pods[j].threshold = idx;
425 ret = SR_OK;
426 break;
427 case SR_CONF_LOGIC_THRESHOLD_CUSTOM:
428 if (!cg)
429 return SR_ERR_CHANNEL_GROUP;
430 if (cg_type != CG_DIGITAL)
431 return SR_ERR_NA;
432 if (!model)
433 return SR_ERR_ARG;
434 if ((j = std_cg_idx(cg, devc->digital_groups, model->digital_pods)) < 0)
435 return SR_ERR_ARG;
436 tmp_d = g_variant_get_double(data);
437 if (tmp_d < -2.0 || tmp_d > 8.0)
438 return SR_ERR;
439 g_ascii_formatd(float_str, sizeof(float_str), "%E", tmp_d);
aac30633
GT
440 /* Check if the threshold command is based on the POD or digital channel index. */
441 if (model->logic_threshold_for_pod)
442 idx = j + 1;
443 else
444 idx = j * 8;
445 /* Try to support different dialects exhaustively. */
446 for (i = 0; i < model->num_logic_threshold; i++) {
447 if (!strcmp("USER2", (*model->logic_threshold)[i])) {
448 g_snprintf(command, sizeof(command),
449 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_USER_THRESHOLD],
450 idx, 2, float_str); /* USER2 */
451 g_snprintf(command2, sizeof(command2),
452 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_THRESHOLD],
453 idx, "USER2");
454 break;
455 }
456 if (!strcmp("USER", (*model->logic_threshold)[i])) {
457 g_snprintf(command, sizeof(command),
458 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_USER_THRESHOLD],
459 idx, float_str);
460 g_snprintf(command2, sizeof(command2),
461 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_THRESHOLD],
462 idx, "USER");
463 break;
464 }
465 if (!strcmp("MAN", (*model->logic_threshold)[i])) {
466 g_snprintf(command, sizeof(command),
467 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_USER_THRESHOLD],
468 idx, float_str);
469 g_snprintf(command2, sizeof(command2),
470 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_THRESHOLD],
471 idx, "MAN");
472 break;
473 }
474 }
e131be0a
GT
475 if (sr_scpi_send(sdi->conn, command) != SR_OK ||
476 sr_scpi_get_opc(sdi->conn) != SR_OK)
477 return SR_ERR;
aac30633 478 if (sr_scpi_send(sdi->conn, command2) != SR_OK ||
e131be0a
GT
479 sr_scpi_get_opc(sdi->conn) != SR_OK)
480 return SR_ERR;
481 state->digital_pods[j].user_threshold = tmp_d;
482 ret = SR_OK;
483 break;
06a3e78a
DJ
484 default:
485 ret = SR_ERR_NA;
13f2b9d7 486 break;
06a3e78a
DJ
487 }
488
23e1ea7a
DJ
489 if (ret == SR_OK && update_sample_rate)
490 ret = hmo_update_sample_rate(sdi);
491
06a3e78a
DJ
492 return ret;
493}
494
dd7a72ea
UH
495static int config_list(uint32_t key, GVariant **data,
496 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
06a3e78a 497{
6ec3ef9b
AJ
498 int cg_type = CG_NONE;
499 struct dev_context *devc = NULL;
329733d9 500 const struct scope_config *model = NULL;
13f2b9d7 501
4d399734
UH
502 if (sdi) {
503 devc = sdi->priv;
6ec3ef9b
AJ
504 if ((cg_type = check_channel_group(devc, cg)) == CG_INVALID)
505 return SR_ERR;
13f2b9d7 506
6ec3ef9b
AJ
507 model = devc->model_config;
508 }
06a3e78a 509
06a3e78a 510 switch (key) {
226363c4 511 case SR_CONF_SCAN_OPTIONS:
53012da6 512 *data = std_gvar_array_u32(ARRAY_AND_SIZE(scanopts));
226363c4 513 break;
13f2b9d7 514 case SR_CONF_DEVICE_OPTIONS:
61233697 515 if (!cg) {
6ec3ef9b 516 if (model)
769561cb 517 *data = std_gvar_array_u32(*model->devopts, model->num_devopts);
6ec3ef9b 518 else
53012da6 519 *data = std_gvar_array_u32(ARRAY_AND_SIZE(drvopts));
61e77667 520 } else if (cg_type == CG_ANALOG) {
769561cb 521 *data = std_gvar_array_u32(*model->devopts_cg_analog, model->num_devopts_cg_analog);
e131be0a
GT
522 } else if (cg_type == CG_DIGITAL) {
523 *data = std_gvar_array_u32(*model->devopts_cg_digital, model->num_devopts_cg_digital);
13f2b9d7 524 } else {
105df674 525 *data = std_gvar_array_u32(NULL, 0);
13f2b9d7
DJ
526 }
527 break;
13f2b9d7 528 case SR_CONF_COUPLING:
61233697 529 if (!cg)
660e398f 530 return SR_ERR_CHANNEL_GROUP;
b0e80e9a
GS
531 if (!model)
532 return SR_ERR_ARG;
692716f5 533 *data = g_variant_new_strv(*model->coupling_options, model->num_coupling_options);
13f2b9d7 534 break;
13f2b9d7 535 case SR_CONF_TRIGGER_SOURCE:
6ec3ef9b
AJ
536 if (!model)
537 return SR_ERR_ARG;
692716f5 538 *data = g_variant_new_strv(*model->trigger_sources, model->num_trigger_sources);
13f2b9d7 539 break;
bbabdaf1 540 case SR_CONF_TRIGGER_SLOPE:
6ec3ef9b
AJ
541 if (!model)
542 return SR_ERR_ARG;
692716f5 543 *data = g_variant_new_strv(*model->trigger_slopes, model->num_trigger_slopes);
bbabdaf1 544 break;
13f2b9d7 545 case SR_CONF_TIMEBASE:
6ec3ef9b
AJ
546 if (!model)
547 return SR_ERR_ARG;
58ffcf97 548 *data = std_gvar_tuple_array(*model->timebases, model->num_timebases);
13f2b9d7 549 break;
13f2b9d7 550 case SR_CONF_VDIV:
61233697 551 if (!cg)
660e398f 552 return SR_ERR_CHANNEL_GROUP;
b0e80e9a
GS
553 if (!model)
554 return SR_ERR_ARG;
58ffcf97 555 *data = std_gvar_tuple_array(*model->vdivs, model->num_vdivs);
13f2b9d7 556 break;
e131be0a
GT
557 case SR_CONF_LOGIC_THRESHOLD:
558 if (!cg)
559 return SR_ERR_CHANNEL_GROUP;
560 if (!model)
561 return SR_ERR_ARG;
562 *data = g_variant_new_strv(*model->logic_threshold, model->num_logic_threshold);
563 break;
06a3e78a
DJ
564 default:
565 return SR_ERR_NA;
566 }
567
13f2b9d7 568 return SR_OK;
06a3e78a
DJ
569}
570
13f2b9d7 571SR_PRIV int hmo_request_data(const struct sr_dev_inst *sdi)
06a3e78a 572{
13f2b9d7 573 char command[MAX_COMMAND_SIZE];
ba7dd8bb 574 struct sr_channel *ch;
13f2b9d7 575 struct dev_context *devc;
329733d9 576 const struct scope_config *model;
13f2b9d7
DJ
577
578 devc = sdi->priv;
579 model = devc->model_config;
580
ba7dd8bb 581 ch = devc->current_channel->data;
13f2b9d7 582
ba7dd8bb 583 switch (ch->type) {
3f239f08 584 case SR_CHANNEL_ANALOG:
13f2b9d7
DJ
585 g_snprintf(command, sizeof(command),
586 (*model->scpi_dialect)[SCPI_CMD_GET_ANALOG_DATA],
65a6794e
GS
587#ifdef WORDS_BIGENDIAN
588 "MSBF",
589#else
590 "LSBF",
591#endif
ba7dd8bb 592 ch->index + 1);
13f2b9d7 593 break;
3f239f08 594 case SR_CHANNEL_LOGIC:
13f2b9d7
DJ
595 g_snprintf(command, sizeof(command),
596 (*model->scpi_dialect)[SCPI_CMD_GET_DIG_DATA],
ba7dd8bb 597 ch->index < 8 ? 1 : 2);
13f2b9d7
DJ
598 break;
599 default:
ba7dd8bb 600 sr_err("Invalid channel type.");
13f2b9d7
DJ
601 break;
602 }
603
604 return sr_scpi_send(sdi->conn, command);
605}
606
ba7dd8bb 607static int hmo_check_channels(GSList *channels)
13f2b9d7
DJ
608{
609 GSList *l;
ba7dd8bb 610 struct sr_channel *ch;
4889acef
GS
611 gboolean enabled_chan[MAX_ANALOG_CHANNEL_COUNT];
612 gboolean enabled_pod[MAX_DIGITAL_GROUP_COUNT];
613 size_t idx;
614
615 /* Preset "not enabled" for all channels / pods. */
616 for (idx = 0; idx < ARRAY_SIZE(enabled_chan); idx++)
617 enabled_chan[idx] = FALSE;
618 for (idx = 0; idx < ARRAY_SIZE(enabled_pod); idx++)
619 enabled_pod[idx] = FALSE;
620
621 /*
622 * Determine which channels / pods are required for the caller's
623 * specified configuration.
624 */
ba7dd8bb
UH
625 for (l = channels; l; l = l->next) {
626 ch = l->data;
627 switch (ch->type) {
3f239f08 628 case SR_CHANNEL_ANALOG:
4889acef
GS
629 idx = ch->index;
630 if (idx < ARRAY_SIZE(enabled_chan))
631 enabled_chan[idx] = TRUE;
13f2b9d7 632 break;
3f239f08 633 case SR_CHANNEL_LOGIC:
4889acef
GS
634 idx = ch->index / 8;
635 if (idx < ARRAY_SIZE(enabled_pod))
636 enabled_pod[idx] = TRUE;
13f2b9d7 637 break;
13f2b9d7
DJ
638 default:
639 return SR_ERR;
640 }
641 }
642
4889acef
GS
643 /*
644 * Check for resource conflicts. Some channels can be either
645 * analog or digital, but never both at the same time.
646 *
647 * Note that the constraints might depend on the specific model.
648 * These tests might need some adjustment when support for more
649 * models gets added to the driver.
650 */
651 if (enabled_pod[0] && enabled_chan[2])
652 return SR_ERR;
653 if (enabled_pod[1] && enabled_chan[3])
13f2b9d7 654 return SR_ERR;
13f2b9d7
DJ
655 return SR_OK;
656}
657
ba7dd8bb 658static int hmo_setup_channels(const struct sr_dev_inst *sdi)
13f2b9d7
DJ
659{
660 GSList *l;
661 unsigned int i;
23e1ea7a 662 gboolean *pod_enabled, setup_changed;
13f2b9d7 663 char command[MAX_COMMAND_SIZE];
13f2b9d7 664 struct scope_state *state;
329733d9 665 const struct scope_config *model;
ba7dd8bb 666 struct sr_channel *ch;
13f2b9d7 667 struct dev_context *devc;
23f43dff 668 struct sr_scpi_dev_inst *scpi;
addbb09b 669 int ret;
13f2b9d7
DJ
670
671 devc = sdi->priv;
23f43dff 672 scpi = sdi->conn;
13f2b9d7
DJ
673 state = devc->model_state;
674 model = devc->model_config;
23e1ea7a 675 setup_changed = FALSE;
13f2b9d7
DJ
676
677 pod_enabled = g_try_malloc0(sizeof(gboolean) * model->digital_pods);
678
ba7dd8bb
UH
679 for (l = sdi->channels; l; l = l->next) {
680 ch = l->data;
681 switch (ch->type) {
3f239f08 682 case SR_CHANNEL_ANALOG:
ba7dd8bb 683 if (ch->enabled == state->analog_channels[ch->index].state)
082972e8
UH
684 break;
685 g_snprintf(command, sizeof(command),
686 (*model->scpi_dialect)[SCPI_CMD_SET_ANALOG_CHAN_STATE],
ba7dd8bb 687 ch->index + 1, ch->enabled);
13f2b9d7 688
4fc4b8e7
UH
689 if (sr_scpi_send(scpi, command) != SR_OK) {
690 g_free(pod_enabled);
082972e8 691 return SR_ERR;
4fc4b8e7 692 }
ba7dd8bb 693 state->analog_channels[ch->index].state = ch->enabled;
23e1ea7a 694 setup_changed = TRUE;
89280b1a 695 break;
3f239f08 696 case SR_CHANNEL_LOGIC:
13f2b9d7
DJ
697 /*
698 * A digital POD needs to be enabled for every group of
ba7dd8bb 699 * 8 channels.
13f2b9d7 700 */
ba7dd8bb
UH
701 if (ch->enabled)
702 pod_enabled[ch->index < 8 ? 0 : 1] = TRUE;
13f2b9d7 703
ba7dd8bb 704 if (ch->enabled == state->digital_channels[ch->index])
082972e8
UH
705 break;
706 g_snprintf(command, sizeof(command),
707 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_CHAN_STATE],
ba7dd8bb 708 ch->index, ch->enabled);
13f2b9d7 709
4fc4b8e7
UH
710 if (sr_scpi_send(scpi, command) != SR_OK) {
711 g_free(pod_enabled);
082972e8 712 return SR_ERR;
4fc4b8e7 713 }
13f2b9d7 714
ba7dd8bb 715 state->digital_channels[ch->index] = ch->enabled;
23e1ea7a 716 setup_changed = TRUE;
89280b1a 717 break;
13f2b9d7 718 default:
b0e80e9a 719 g_free(pod_enabled);
13f2b9d7
DJ
720 return SR_ERR;
721 }
722 }
723
addbb09b 724 ret = SR_OK;
d1ac53cc 725 for (i = 0; i < model->digital_pods; i++) {
e131be0a 726 if (state->digital_pods[i].state == pod_enabled[i])
082972e8
UH
727 continue;
728 g_snprintf(command, sizeof(command),
729 (*model->scpi_dialect)[SCPI_CMD_SET_DIG_POD_STATE],
d1ac53cc 730 i + 1, pod_enabled[i]);
addbb09b
GS
731 if (sr_scpi_send(scpi, command) != SR_OK) {
732 ret = SR_ERR;
733 break;
734 }
e131be0a 735 state->digital_pods[i].state = pod_enabled[i];
23e1ea7a 736 setup_changed = TRUE;
13f2b9d7 737 }
13f2b9d7 738 g_free(pod_enabled);
addbb09b
GS
739 if (ret != SR_OK)
740 return ret;
13f2b9d7 741
23e1ea7a
DJ
742 if (setup_changed && hmo_update_sample_rate(sdi) != SR_OK)
743 return SR_ERR;
744
13f2b9d7
DJ
745 return SR_OK;
746}
747
695dc859 748static int dev_acquisition_start(const struct sr_dev_inst *sdi)
13f2b9d7
DJ
749{
750 GSList *l;
1b0f62df 751 gboolean digital_added[MAX_DIGITAL_GROUP_COUNT];
e06875b2 752 size_t group, pod_count;
ba7dd8bb 753 struct sr_channel *ch;
13f2b9d7 754 struct dev_context *devc;
23f43dff 755 struct sr_scpi_dev_inst *scpi;
40a75c8e 756 int ret;
06a3e78a 757
23f43dff 758 scpi = sdi->conn;
13f2b9d7 759 devc = sdi->priv;
13f2b9d7 760
d779dcac
GT
761 devc->num_samples = 0;
762 devc->num_frames = 0;
763
1b0f62df
GS
764 /* Preset empty results. */
765 for (group = 0; group < ARRAY_SIZE(digital_added); group++)
766 digital_added[group] = FALSE;
db81fbb5
SA
767 g_slist_free(devc->enabled_channels);
768 devc->enabled_channels = NULL;
769
1b0f62df 770 /*
e06875b2
GS
771 * Contruct the list of enabled channels. Determine the highest
772 * number of digital pods involved in the acquisition.
1b0f62df 773 */
e06875b2 774 pod_count = 0;
ba7dd8bb
UH
775 for (l = sdi->channels; l; l = l->next) {
776 ch = l->data;
777 if (!ch->enabled)
082972e8 778 continue;
1b0f62df
GS
779 /* Only add a single digital channel per group (pod). */
780 group = ch->index / 8;
781 if (ch->type != SR_CHANNEL_LOGIC || !digital_added[group]) {
ba7dd8bb
UH
782 devc->enabled_channels = g_slist_append(
783 devc->enabled_channels, ch);
e06875b2 784 if (ch->type == SR_CHANNEL_LOGIC) {
1b0f62df 785 digital_added[group] = TRUE;
e06875b2
GS
786 if (pod_count < group + 1)
787 pod_count = group + 1;
788 }
13f2b9d7
DJ
789 }
790 }
ba7dd8bb 791 if (!devc->enabled_channels)
13f2b9d7 792 return SR_ERR;
e06875b2
GS
793 devc->pod_count = pod_count;
794 devc->logic_data = NULL;
13f2b9d7 795
1b0f62df
GS
796 /*
797 * Check constraints. Some channels can be either analog or
798 * digital, but not both at the same time.
799 */
ba7dd8bb
UH
800 if (hmo_check_channels(devc->enabled_channels) != SR_OK) {
801 sr_err("Invalid channel configuration specified!");
40a75c8e
GS
802 ret = SR_ERR_NA;
803 goto free_enabled;
13f2b9d7
DJ
804 }
805
1b0f62df
GS
806 /*
807 * Configure the analog and digital channels and the
808 * corresponding digital pods.
809 */
ba7dd8bb
UH
810 if (hmo_setup_channels(sdi) != SR_OK) {
811 sr_err("Failed to setup channel configuration!");
40a75c8e
GS
812 ret = SR_ERR;
813 goto free_enabled;
13f2b9d7
DJ
814 }
815
1b0f62df
GS
816 /*
817 * Start acquisition on the first enabled channel. The
818 * receive routine will continue driving the acquisition.
819 */
102f1239
BV
820 sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 50,
821 hmo_receive_data, (void *)sdi);
13f2b9d7 822
bee2b016 823 std_session_send_df_header(sdi);
13f2b9d7 824
ba7dd8bb 825 devc->current_channel = devc->enabled_channels;
13f2b9d7
DJ
826
827 return hmo_request_data(sdi);
40a75c8e
GS
828
829free_enabled:
830 g_slist_free(devc->enabled_channels);
831 devc->enabled_channels = NULL;
832 return ret;
06a3e78a
DJ
833}
834
695dc859 835static int dev_acquisition_stop(struct sr_dev_inst *sdi)
06a3e78a 836{
13f2b9d7 837 struct dev_context *devc;
23f43dff 838 struct sr_scpi_dev_inst *scpi;
13f2b9d7 839
bee2b016 840 std_session_send_df_end(sdi);
66e3219d 841
13f2b9d7
DJ
842 devc = sdi->priv;
843
d779dcac 844 devc->num_samples = 0;
ef1a346b 845 devc->num_frames = 0;
ba7dd8bb
UH
846 g_slist_free(devc->enabled_channels);
847 devc->enabled_channels = NULL;
23f43dff 848 scpi = sdi->conn;
102f1239 849 sr_scpi_source_remove(sdi->session, scpi);
06a3e78a
DJ
850
851 return SR_OK;
852}
853
dd5c48a6 854static struct sr_dev_driver hameg_hmo_driver_info = {
06a3e78a 855 .name = "hameg-hmo",
89280b1a 856 .longname = "Hameg HMO",
06a3e78a 857 .api_version = 1,
c2fdcc25 858 .init = std_init,
700d6b64 859 .cleanup = std_cleanup,
06a3e78a 860 .scan = scan,
c01bf34c 861 .dev_list = std_dev_list,
06a3e78a
DJ
862 .dev_clear = dev_clear,
863 .config_get = config_get,
864 .config_set = config_set,
865 .config_list = config_list,
866 .dev_open = dev_open,
867 .dev_close = dev_close,
868 .dev_acquisition_start = dev_acquisition_start,
869 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 870 .context = NULL,
06a3e78a 871};
dd5c48a6 872SR_REGISTER_DEV_DRIVER(hameg_hmo_driver_info);