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