]> sigrok.org Git - libsigrok.git/blame - src/hardware/rigol-ds/api.c
python bindings: Support passing in rational voltages for config_set
[libsigrok.git] / src / hardware / rigol-ds / api.c
CommitLineData
f4816ac6
ML
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Martin Ling <martin-git@earth.li>
88e429c9 5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
bafd4890 6 * Copyright (C) 2013 Mathias Grimmberger <mgri@zaphod.sax.de>
f4816ac6
ML
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
6ec6c43b 22#include <config.h>
e0b7d23c
ML
23#include <fcntl.h>
24#include <unistd.h>
25#include <stdlib.h>
26#include <string.h>
ba464a12 27#include <strings.h>
2b0e4a46 28#include <math.h>
f4816ac6 29#include <glib.h>
c1aae900 30#include <libsigrok/libsigrok.h>
f4816ac6 31#include "libsigrok-internal.h"
5a1afc09 32#include "scpi.h"
f4816ac6
ML
33#include "protocol.h"
34
a0e0bb41 35static const uint32_t scanopts[] = {
ca55277c 36 SR_CONF_CONN,
05199c0a 37 SR_CONF_SERIALCOMM,
ca55277c
ML
38};
39
d73aacf1 40static const uint32_t drvopts[] = {
1953564a 41 SR_CONF_OSCILLOSCOPE,
d73aacf1
SA
42};
43
44static const uint32_t devopts[] = {
1b8a37c6 45 SR_CONF_LIMIT_FRAMES | SR_CONF_GET | SR_CONF_SET,
86621306 46 SR_CONF_SAMPLERATE | SR_CONF_GET,
5827f61b 47 SR_CONF_TIMEBASE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
86621306
UH
48 SR_CONF_NUM_HDIV | SR_CONF_GET,
49 SR_CONF_HORIZ_TRIGGERPOS | SR_CONF_SET,
5827f61b 50 SR_CONF_TRIGGER_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
b0c9d1d1 51 SR_CONF_TRIGGER_SLOPE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
9ea62f2e 52 SR_CONF_TRIGGER_LEVEL | SR_CONF_GET | SR_CONF_SET,
f579d08b 53 SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
f48e0249
ML
54};
55
6b82c3e5 56static const uint32_t devopts_cg_analog[] = {
5827f61b
BV
57 SR_CONF_NUM_VDIV | SR_CONF_GET,
58 SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
59 SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
934cf6cf 60 SR_CONF_PROBE_FACTOR | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
e0b7d23c
ML
61};
62
f6a0ac9f 63static const uint64_t timebases[][2] = {
e0b7d23c 64 /* nanoseconds */
8e06edf5 65 { 1, 1000000000 },
e0b7d23c
ML
66 { 2, 1000000000 },
67 { 5, 1000000000 },
68 { 10, 1000000000 },
69 { 20, 1000000000 },
70 { 50, 1000000000 },
71 { 100, 1000000000 },
72 { 500, 1000000000 },
73 /* microseconds */
74 { 1, 1000000 },
75 { 2, 1000000 },
76 { 5, 1000000 },
77 { 10, 1000000 },
78 { 20, 1000000 },
79 { 50, 1000000 },
80 { 100, 1000000 },
81 { 200, 1000000 },
82 { 500, 1000000 },
83 /* milliseconds */
84 { 1, 1000 },
85 { 2, 1000 },
86 { 5, 1000 },
87 { 10, 1000 },
88 { 20, 1000 },
89 { 50, 1000 },
90 { 100, 1000 },
91 { 200, 1000 },
92 { 500, 1000 },
93 /* seconds */
94 { 1, 1 },
95 { 2, 1 },
96 { 5, 1 },
97 { 10, 1 },
98 { 20, 1 },
99 { 50, 1 },
bafd4890
ML
100 { 100, 1 },
101 { 200, 1 },
102 { 500, 1 },
8e06edf5 103 { 1000, 1 },
e0b7d23c
ML
104};
105
f6a0ac9f 106static const uint64_t vdivs[][2] = {
bafd4890
ML
107 /* microvolts */
108 { 500, 1000000 },
e0b7d23c 109 /* millivolts */
bafd4890 110 { 1, 1000 },
e0b7d23c
ML
111 { 2, 1000 },
112 { 5, 1000 },
113 { 10, 1000 },
114 { 20, 1000 },
115 { 50, 1000 },
116 { 100, 1000 },
117 { 200, 1000 },
118 { 500, 1000 },
119 /* volts */
120 { 1, 1 },
121 { 2, 1 },
122 { 5, 1 },
123 { 10, 1 },
d50725e0
UH
124 { 20, 1 },
125 { 50, 1 },
126 { 100, 1 },
e0b7d23c
ML
127};
128
6bcc81ac
VO
129static const char *trigger_sources_2_chans[] = {
130 "CH1", "CH2",
131 "EXT", "AC Line",
132 "D0", "D1", "D2", "D3", "D4", "D5", "D6", "D7",
133 "D8", "D9", "D10", "D11", "D12", "D13", "D14", "D15",
134};
643c8824 135
6bcc81ac 136static const char *trigger_sources_4_chans[] = {
f8195cb2
UH
137 "CH1", "CH2", "CH3", "CH4",
138 "EXT", "AC Line",
139 "D0", "D1", "D2", "D3", "D4", "D5", "D6", "D7",
140 "D8", "D9", "D10", "D11", "D12", "D13", "D14", "D15",
e0b7d23c
ML
141};
142
5d336f11 143static const char *trigger_slopes[] = {
f8195cb2 144 "r", "f",
5d336f11
AJ
145};
146
e0b7d23c 147static const char *coupling[] = {
f8195cb2 148 "AC", "DC", "GND",
e0b7d23c
ML
149};
150
934cf6cf 151static const uint64_t probe_factor[] = {
f8195cb2 152 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000,
934cf6cf
AJ
153};
154
babab622
ML
155/* Do not change the order of entries */
156static const char *data_sources[] = {
157 "Live",
158 "Memory",
159 "Segmented",
160};
161
0f523f2b
UH
162static const struct rigol_ds_command std_cmd[] = {
163 { CMD_GET_HORIZ_TRIGGERPOS, ":TIM:OFFS?" },
164 { CMD_SET_HORIZ_TRIGGERPOS, ":TIM:OFFS %s" },
165};
166
167static const struct rigol_ds_command mso7000a_cmd[] = {
168 { CMD_GET_HORIZ_TRIGGERPOS, ":TIM:POS?" },
169 { CMD_SET_HORIZ_TRIGGERPOS, ":TIM:POS %s" },
170};
171
569d4dbd
ML
172enum vendor {
173 RIGOL,
174 AGILENT,
175};
176
177enum series {
178 VS5000,
179 DS1000,
180 DS2000,
181 DS2000A,
182 DSO1000,
744d683c 183 DSO1000B,
702f42e8 184 DS1000Z,
6b04525b 185 DS4000,
f6129c8f 186 MSO5000,
0f523f2b 187 MSO7000A,
569d4dbd 188};
10afee13 189
569d4dbd
ML
190/* short name, full name */
191static const struct rigol_ds_vendor supported_vendors[] = {
192 [RIGOL] = {"Rigol", "Rigol Technologies"},
14e1aa6d 193 [AGILENT] = {"Agilent", "Agilent Technologies"},
569d4dbd
ML
194};
195
196#define VENDOR(x) &supported_vendors[x]
0f8bee71
UH
197/* vendor, series/name, protocol, data format, max timebase, min vdiv,
198 * number of horizontal divs, live waveform samples, memory buffer samples */
569d4dbd
ML
199static const struct rigol_ds_series supported_series[] = {
200 [VS5000] = {VENDOR(RIGOL), "VS5000", PROTOCOL_V1, FORMAT_RAW,
201 {50, 1}, {2, 1000}, 14, 2048, 0},
202 [DS1000] = {VENDOR(RIGOL), "DS1000", PROTOCOL_V2, FORMAT_IEEE488_2,
203 {50, 1}, {2, 1000}, 12, 600, 1048576},
204 [DS2000] = {VENDOR(RIGOL), "DS2000", PROTOCOL_V3, FORMAT_IEEE488_2,
96cb7faa 205 {500, 1}, {500, 1000000}, 14, 1400, 14000},
569d4dbd
ML
206 [DS2000A] = {VENDOR(RIGOL), "DS2000A", PROTOCOL_V3, FORMAT_IEEE488_2,
207 {1000, 1}, {500, 1000000}, 14, 1400, 14000},
208 [DSO1000] = {VENDOR(AGILENT), "DSO1000", PROTOCOL_V3, FORMAT_IEEE488_2,
209 {50, 1}, {2, 1000}, 12, 600, 20480},
744d683c
NM
210 [DSO1000B] = {VENDOR(AGILENT), "DSO1000", PROTOCOL_V3, FORMAT_IEEE488_2,
211 {50, 1}, {2, 1000}, 12, 600, 20480},
702f42e8
ML
212 [DS1000Z] = {VENDOR(RIGOL), "DS1000Z", PROTOCOL_V4, FORMAT_IEEE488_2,
213 {50, 1}, {1, 1000}, 12, 1200, 12000000},
6b04525b 214 [DS4000] = {VENDOR(RIGOL), "DS4000", PROTOCOL_V4, FORMAT_IEEE488_2,
47b821dc 215 {1000, 1}, {1, 1000}, 14, 1400, 0},
f6129c8f
SR
216 [MSO5000] = {VENDOR(RIGOL), "MSO5000", PROTOCOL_V5, FORMAT_IEEE488_2,
217 {1000, 1}, {500, 1000000}, 10, 1000, 0},
0f523f2b
UH
218 [MSO7000A] = {VENDOR(AGILENT), "MSO7000A", PROTOCOL_V4, FORMAT_IEEE488_2,
219 {50, 1}, {2, 1000}, 10, 1000, 8000000},
569d4dbd 220};
10afee13 221
569d4dbd 222#define SERIES(x) &supported_series[x]
643c8824
VO
223/*
224 * Use a macro to select the correct list of trigger sources and its length
225 * based on the number of analog channels and presence of digital channels.
226 */
227#define CH_INFO(num, digital) \
228 num, digital, trigger_sources_##num##_chans, \
229 digital ? ARRAY_SIZE(trigger_sources_##num##_chans) : (num + 2)
569d4dbd 230/* series, model, min timebase, analog channels, digital */
bafd4890 231static const struct rigol_ds_model supported_models[] = {
0f523f2b
UH
232 {SERIES(VS5000), "VS5022", {20, 1000000000}, CH_INFO(2, false), std_cmd},
233 {SERIES(VS5000), "VS5042", {10, 1000000000}, CH_INFO(2, false), std_cmd},
234 {SERIES(VS5000), "VS5062", {5, 1000000000}, CH_INFO(2, false), std_cmd},
235 {SERIES(VS5000), "VS5102", {2, 1000000000}, CH_INFO(2, false), std_cmd},
236 {SERIES(VS5000), "VS5202", {2, 1000000000}, CH_INFO(2, false), std_cmd},
237 {SERIES(VS5000), "VS5022D", {20, 1000000000}, CH_INFO(2, true), std_cmd},
238 {SERIES(VS5000), "VS5042D", {10, 1000000000}, CH_INFO(2, true), std_cmd},
239 {SERIES(VS5000), "VS5062D", {5, 1000000000}, CH_INFO(2, true), std_cmd},
240 {SERIES(VS5000), "VS5102D", {2, 1000000000}, CH_INFO(2, true), std_cmd},
241 {SERIES(VS5000), "VS5202D", {2, 1000000000}, CH_INFO(2, true), std_cmd},
242 {SERIES(DS1000), "DS1052E", {5, 1000000000}, CH_INFO(2, false), std_cmd},
243 {SERIES(DS1000), "DS1102E", {2, 1000000000}, CH_INFO(2, false), std_cmd},
244 {SERIES(DS1000), "DS1152E", {2, 1000000000}, CH_INFO(2, false), std_cmd},
c4a46475 245 {SERIES(DS1000), "DS1152E-EDU", {2, 1000000000}, CH_INFO(2, false), std_cmd},
0f523f2b
UH
246 {SERIES(DS1000), "DS1052D", {5, 1000000000}, CH_INFO(2, true), std_cmd},
247 {SERIES(DS1000), "DS1102D", {2, 1000000000}, CH_INFO(2, true), std_cmd},
248 {SERIES(DS1000), "DS1152D", {2, 1000000000}, CH_INFO(2, true), std_cmd},
249 {SERIES(DS2000), "DS2072", {5, 1000000000}, CH_INFO(2, false), std_cmd},
250 {SERIES(DS2000), "DS2102", {5, 1000000000}, CH_INFO(2, false), std_cmd},
251 {SERIES(DS2000), "DS2202", {2, 1000000000}, CH_INFO(2, false), std_cmd},
252 {SERIES(DS2000), "DS2302", {1, 1000000000}, CH_INFO(2, false), std_cmd},
253 {SERIES(DS2000A), "DS2072A", {5, 1000000000}, CH_INFO(2, false), std_cmd},
254 {SERIES(DS2000A), "DS2102A", {5, 1000000000}, CH_INFO(2, false), std_cmd},
255 {SERIES(DS2000A), "DS2202A", {2, 1000000000}, CH_INFO(2, false), std_cmd},
256 {SERIES(DS2000A), "DS2302A", {1, 1000000000}, CH_INFO(2, false), std_cmd},
257 {SERIES(DS2000A), "MSO2072A", {5, 1000000000}, CH_INFO(2, true), std_cmd},
258 {SERIES(DS2000A), "MSO2102A", {5, 1000000000}, CH_INFO(2, true), std_cmd},
259 {SERIES(DS2000A), "MSO2202A", {2, 1000000000}, CH_INFO(2, true), std_cmd},
260 {SERIES(DS2000A), "MSO2302A", {1, 1000000000}, CH_INFO(2, true), std_cmd},
261 {SERIES(DSO1000), "DSO1002A", {5, 1000000000}, CH_INFO(2, false), std_cmd},
262 {SERIES(DSO1000), "DSO1004A", {5, 1000000000}, CH_INFO(4, false), std_cmd},
263 {SERIES(DSO1000), "DSO1012A", {2, 1000000000}, CH_INFO(2, false), std_cmd},
264 {SERIES(DSO1000), "DSO1014A", {2, 1000000000}, CH_INFO(4, false), std_cmd},
265 {SERIES(DSO1000), "DSO1022A", {2, 1000000000}, CH_INFO(2, false), std_cmd},
266 {SERIES(DSO1000), "DSO1024A", {2, 1000000000}, CH_INFO(4, false), std_cmd},
744d683c
NM
267 {SERIES(DSO1000B), "DSO1052B", {2, 1000000000}, CH_INFO(2, false), std_cmd},
268 {SERIES(DSO1000B), "DSO1072B", {2, 1000000000}, CH_INFO(2, false), std_cmd},
269 {SERIES(DSO1000B), "DSO1102B", {2, 1000000000}, CH_INFO(2, false), std_cmd},
270 {SERIES(DSO1000B), "DSO1152B", {2, 1000000000}, CH_INFO(2, false), std_cmd},
0f523f2b
UH
271 {SERIES(DS1000Z), "DS1054Z", {5, 1000000000}, CH_INFO(4, false), std_cmd},
272 {SERIES(DS1000Z), "DS1074Z", {5, 1000000000}, CH_INFO(4, false), std_cmd},
273 {SERIES(DS1000Z), "DS1104Z", {5, 1000000000}, CH_INFO(4, false), std_cmd},
274 {SERIES(DS1000Z), "DS1074Z-S", {5, 1000000000}, CH_INFO(4, false), std_cmd},
275 {SERIES(DS1000Z), "DS1104Z-S", {5, 1000000000}, CH_INFO(4, false), std_cmd},
276 {SERIES(DS1000Z), "DS1074Z Plus", {5, 1000000000}, CH_INFO(4, false), std_cmd},
277 {SERIES(DS1000Z), "DS1104Z Plus", {5, 1000000000}, CH_INFO(4, false), std_cmd},
77f3c5e5 278 {SERIES(DS1000Z), "DS1202Z-E", {2, 1000000000}, CH_INFO(2, false), std_cmd},
0f523f2b
UH
279 {SERIES(DS1000Z), "MSO1074Z", {5, 1000000000}, CH_INFO(4, true), std_cmd},
280 {SERIES(DS1000Z), "MSO1104Z", {5, 1000000000}, CH_INFO(4, true), std_cmd},
281 {SERIES(DS1000Z), "MSO1074Z-S", {5, 1000000000}, CH_INFO(4, true), std_cmd},
282 {SERIES(DS1000Z), "MSO1104Z-S", {5, 1000000000}, CH_INFO(4, true), std_cmd},
283 {SERIES(DS4000), "DS4024", {1, 1000000000}, CH_INFO(4, false), std_cmd},
f6129c8f
SR
284 {SERIES(MSO5000), "MSO5072", {1, 1000000000}, CH_INFO(2, true), std_cmd},
285 {SERIES(MSO5000), "MSO5074", {1, 1000000000}, CH_INFO(4, true), std_cmd},
286 {SERIES(MSO5000), "MSO5102", {1, 1000000000}, CH_INFO(2, true), std_cmd},
287 {SERIES(MSO5000), "MSO5104", {1, 1000000000}, CH_INFO(4, true), std_cmd},
288 {SERIES(MSO5000), "MSO5204", {1, 1000000000}, CH_INFO(4, true), std_cmd},
289 {SERIES(MSO5000), "MSO5354", {1, 1000000000}, CH_INFO(4, true), std_cmd},
0f523f2b
UH
290 /* TODO: Digital channels are not yet supported on MSO7000A. */
291 {SERIES(MSO7000A), "MSO7034A", {2, 1000000000}, CH_INFO(4, false), mso7000a_cmd},
512bb890
BV
292};
293
dd5c48a6 294static struct sr_dev_driver rigol_ds_driver_info;
f4816ac6 295
16e96ca3
VO
296static int analog_frame_size(const struct sr_dev_inst *);
297
3553451f 298static void clear_helper(struct dev_context *devc)
f4816ac6 299{
effb9dd1 300 unsigned int i;
f4816ac6 301
babab622
ML
302 g_free(devc->data);
303 g_free(devc->buffer);
effb9dd1
AJ
304 for (i = 0; i < ARRAY_SIZE(devc->coupling); i++)
305 g_free(devc->coupling[i]);
fa85f376
UH
306 g_free(devc->trigger_source);
307 g_free(devc->trigger_slope);
562b7ae5 308 g_free(devc->analog_groups);
fa85f376 309}
f4816ac6 310
4f840ce9 311static int dev_clear(const struct sr_dev_driver *di)
fa85f376 312{
3553451f 313 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
f4816ac6
ML
314}
315
9d3ae01b 316static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
f4816ac6 317{
cc9fd2d2
BV
318 struct dev_context *devc;
319 struct sr_dev_inst *sdi;
ae1bc1cc 320 struct sr_scpi_hw_info *hw_info;
ba7dd8bb 321 struct sr_channel *ch;
8dd0b290 322 long n[3];
f6a0ac9f 323 unsigned int i;
bafd4890 324 const struct rigol_ds_model *model = NULL;
569d4dbd 325 gchar *channel_name, **version;
fb6e5ba8 326
ae1bc1cc 327 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
05238d28
ML
328 sr_info("Couldn't get IDN response, retrying.");
329 sr_scpi_close(scpi);
330 sr_scpi_open(scpi);
331 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
332 sr_info("Couldn't get IDN response.");
333 return NULL;
334 }
ca55277c 335 }
e0b7d23c 336
ca55277c 337 for (i = 0; i < ARRAY_SIZE(supported_models); i++) {
34577da6 338 if (!g_ascii_strcasecmp(hw_info->manufacturer,
569d4dbd 339 supported_models[i].series->vendor->full_name) &&
10afee13 340 !strcmp(hw_info->model, supported_models[i].name)) {
bafd4890 341 model = &supported_models[i];
ca55277c 342 break;
fb6e5ba8 343 }
ca55277c 344 }
fb6e5ba8 345
0af636be 346 if (!model) {
ae1bc1cc 347 sr_scpi_hw_info_free(hw_info);
9d3ae01b 348 return NULL;
ca55277c 349 }
fb6e5ba8 350
aac29cc1 351 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
352 sdi->vendor = g_strdup(model->series->vendor->name);
353 sdi->model = g_strdup(model->name);
354 sdi->version = g_strdup(hw_info->firmware_version);
ae1bc1cc 355 sdi->conn = scpi;
4f840ce9 356 sdi->driver = &rigol_ds_driver_info;
ae1bc1cc 357 sdi->inst_type = SR_INST_SCPI;
b3fccc85 358 sdi->serial_num = g_strdup(hw_info->serial_number);
f57d8ffe 359 devc = g_malloc0(sizeof(struct dev_context));
cc9fd2d2 360 devc->limit_frames = 0;
bafd4890 361 devc->model = model;
569d4dbd 362 devc->format = model->series->format;
8dd0b290 363
569d4dbd
ML
364 /* DS1000 models with firmware before 0.2.4 used the old data format. */
365 if (model->series == SERIES(DS1000)) {
8dd0b290
BV
366 version = g_strsplit(hw_info->firmware_version, ".", 0);
367 do {
368 if (!version[0] || !version[1] || !version[2])
369 break;
370 if (version[0][0] == 0 || version[1][0] == 0 || version[2][0] == 0)
371 break;
372 for (i = 0; i < 3; i++) {
373 if (sr_atol(version[i], &n[i]) != SR_OK)
374 break;
375 }
376 if (i != 3)
377 break;
de285cce
BV
378 scpi->firmware_version = n[0] * 100 + n[1] * 10 + n[2];
379 if (scpi->firmware_version < 24) {
380 sr_dbg("Found DS1000 firmware < 0.2.4, using raw data format.");
381 devc->format = FORMAT_RAW;
382 }
383 break;
0c5f2abc 384 } while (0);
8dd0b290
BV
385 g_strfreev(version);
386 }
387
388 sr_scpi_hw_info_free(hw_info);
512bb890 389
562b7ae5
SA
390 devc->analog_groups = g_malloc0(sizeof(struct sr_channel_group*) *
391 model->analog_channels);
392
821fbcad 393 for (i = 0; i < model->analog_channels; i++) {
eac0c613 394 channel_name = g_strdup_printf("CH%d", i + 1);
5e23fcab 395 ch = sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_name);
562b7ae5
SA
396
397 devc->analog_groups[i] = g_malloc0(sizeof(struct sr_channel_group));
398
399 devc->analog_groups[i]->name = channel_name;
400 devc->analog_groups[i]->channels = g_slist_append(NULL, ch);
660e398f 401 sdi->channel_groups = g_slist_append(sdi->channel_groups,
562b7ae5 402 devc->analog_groups[i]);
ca55277c 403 }
512bb890 404
bafd4890 405 if (devc->model->has_digital) {
16aca766 406 devc->digital_group = g_malloc0(sizeof(struct sr_channel_group));
562b7ae5 407
effb9dd1 408 for (i = 0; i < ARRAY_SIZE(devc->digital_channels); i++) {
eac0c613 409 channel_name = g_strdup_printf("D%d", i);
5e23fcab 410 ch = sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, channel_name);
ca55277c 411 g_free(channel_name);
562b7ae5
SA
412 devc->digital_group->channels = g_slist_append(
413 devc->digital_group->channels, ch);
512bb890 414 }
562b7ae5 415 devc->digital_group->name = g_strdup("LA");
660e398f 416 sdi->channel_groups = g_slist_append(sdi->channel_groups,
562b7ae5 417 devc->digital_group);
ca55277c 418 }
bafd4890 419
396cdca0 420 for (i = 0; i < ARRAY_SIZE(timebases); i++) {
bafd4890
ML
421 if (!memcmp(&devc->model->min_timebase, &timebases[i], sizeof(uint64_t[2])))
422 devc->timebases = &timebases[i];
569d4dbd 423 if (!memcmp(&devc->model->series->max_timebase, &timebases[i], sizeof(uint64_t[2])))
bafd4890
ML
424 devc->num_timebases = &timebases[i] - devc->timebases + 1;
425 }
426
396cdca0 427 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
a95f142e
UH
428 if (!memcmp(&devc->model->series->min_vdiv,
429 &vdivs[i], sizeof(uint64_t[2]))) {
6ff1394e 430 devc->vdivs = &vdivs[i];
396cdca0 431 devc->num_vdivs = ARRAY_SIZE(vdivs) - i;
81b85663 432 }
a95f142e 433 }
bafd4890 434
a95f142e
UH
435 devc->buffer = g_malloc(ACQ_BUFFER_SIZE);
436 devc->data = g_malloc(ACQ_BUFFER_SIZE * sizeof(float));
babab622
ML
437
438 devc->data_source = DATA_SOURCE_LIVE;
439
cc9fd2d2
BV
440 sdi->priv = devc;
441
9d3ae01b 442 return sdi;
ca55277c 443}
512bb890 444
4f840ce9 445static GSList *scan(struct sr_dev_driver *di, GSList *options)
ca55277c 446{
41812aca 447 return sr_scpi_scan(di->context, options, probe_device);
f4816ac6
ML
448}
449
6078d2c9 450static int dev_open(struct sr_dev_inst *sdi)
f4816ac6 451{
e1b5b7e7 452 int ret;
ae1bc1cc 453 struct sr_scpi_dev_inst *scpi = sdi->conn;
9bd4c956 454
e1b5b7e7
UH
455 if ((ret = sr_scpi_open(scpi)) < 0) {
456 sr_err("Failed to open SCPI device: %s.", sr_strerror(ret));
e0b7d23c 457 return SR_ERR;
e1b5b7e7 458 }
e0b7d23c 459
e1b5b7e7
UH
460 if ((ret = rigol_ds_get_dev_cfg(sdi)) < 0) {
461 sr_err("Failed to get device config: %s.", sr_strerror(ret));
254dd102 462 return SR_ERR;
e1b5b7e7 463 }
f4816ac6
ML
464
465 return SR_OK;
466}
467
6078d2c9 468static int dev_close(struct sr_dev_inst *sdi)
f4816ac6 469{
ae1bc1cc 470 struct sr_scpi_dev_inst *scpi;
22c19688 471 struct dev_context *devc;
ae1bc1cc
ML
472
473 scpi = sdi->conn;
22c19688
ML
474 devc = sdi->priv;
475
f1ba6b4b
UH
476 if (!scpi)
477 return SR_ERR_BUG;
478
6e94eb41 479 if (devc->model->series->protocol == PROTOCOL_V2)
38354d9d 480 rigol_ds_config_set(sdi, ":KEY:LOCK DISABLE");
e0b7d23c 481
f1ba6b4b 482 return sr_scpi_close(scpi);
f4816ac6
ML
483}
484
5415e602
ML
485static int analog_frame_size(const struct sr_dev_inst *sdi)
486{
487 struct dev_context *devc = sdi->priv;
ba7dd8bb
UH
488 struct sr_channel *ch;
489 int analog_channels = 0;
5415e602
ML
490 GSList *l;
491
ba7dd8bb
UH
492 for (l = sdi->channels; l; l = l->next) {
493 ch = l->data;
3f239f08 494 if (ch->type == SR_CHANNEL_ANALOG && ch->enabled)
ba7dd8bb 495 analog_channels++;
569d4dbd
ML
496 }
497
ba7dd8bb 498 if (analog_channels == 0)
824eb2ac
ML
499 return 0;
500
569d4dbd
ML
501 switch (devc->data_source) {
502 case DATA_SOURCE_LIVE:
503 return devc->model->series->live_samples;
504 case DATA_SOURCE_MEMORY:
8cbe5339 505 case DATA_SOURCE_SEGMENTED:
ba7dd8bb 506 return devc->model->series->buffer_samples / analog_channels;
470140fc 507 default:
569d4dbd 508 return 0;
5415e602
ML
509 }
510}
511
d22250a9
ML
512static int digital_frame_size(const struct sr_dev_inst *sdi)
513{
514 struct dev_context *devc = sdi->priv;
515
569d4dbd
ML
516 switch (devc->data_source) {
517 case DATA_SOURCE_LIVE:
518 return devc->model->series->live_samples * 2;
519 case DATA_SOURCE_MEMORY:
8cbe5339 520 case DATA_SOURCE_SEGMENTED:
569d4dbd 521 return devc->model->series->buffer_samples * 2;
d22250a9
ML
522 default:
523 return 0;
524 }
525}
526
dd7a72ea
UH
527static int config_get(uint32_t key, GVariant **data,
528 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
d62d7ad1 529{
e43fdd8d 530 struct dev_context *devc;
ba7dd8bb 531 struct sr_channel *ch;
2b0e4a46 532 const char *tmp_str;
2b0e4a46 533 int analog_channel = -1;
c33ff377 534 float smallest_diff = INFINITY;
2b0e4a46
AJ
535 int idx = -1;
536 unsigned i;
d62d7ad1 537
709468ba 538 if (!sdi)
e43fdd8d
BV
539 return SR_ERR_ARG;
540
709468ba
UH
541 devc = sdi->priv;
542
660e398f 543 /* If a channel group is specified, it must be a valid one. */
53b4680f 544 if (cg && !g_slist_find(sdi->channel_groups, cg)) {
660e398f 545 sr_err("Invalid channel group specified.");
969edf63 546 return SR_ERR;
be60a9e4
BV
547 }
548
53b4680f 549 if (cg) {
ba7dd8bb
UH
550 ch = g_slist_nth_data(cg->channels, 0);
551 if (!ch)
2b0e4a46 552 return SR_ERR;
3f239f08 553 if (ch->type == SR_CHANNEL_ANALOG) {
ba7dd8bb 554 if (ch->name[2] < '1' || ch->name[2] > '4')
2b0e4a46 555 return SR_ERR;
ba7dd8bb 556 analog_channel = ch->name[2] - '1';
2b0e4a46
AJ
557 }
558 }
559
584560f1 560 switch (key) {
bf622e6d 561 case SR_CONF_NUM_HDIV:
569d4dbd 562 *data = g_variant_new_int32(devc->model->series->num_horizontal_divs);
d62d7ad1
BV
563 break;
564 case SR_CONF_NUM_VDIV:
81b85663 565 *data = g_variant_new_int32(devc->num_vdivs);
f44f7e61 566 break;
babab622
ML
567 case SR_CONF_DATA_SOURCE:
568 if (devc->data_source == DATA_SOURCE_LIVE)
569 *data = g_variant_new_string("Live");
570 else if (devc->data_source == DATA_SOURCE_MEMORY)
571 *data = g_variant_new_string("Memory");
572 else
573 *data = g_variant_new_string("Segmented");
574 break;
1b8a37c6
VO
575 case SR_CONF_LIMIT_FRAMES:
576 *data = g_variant_new_uint64(devc->limit_frames);
577 break;
4914dd4b 578 case SR_CONF_SAMPLERATE:
1cbb3b1c 579 *data = g_variant_new_uint64(devc->sample_rate);
4914dd4b 580 break;
2b0e4a46
AJ
581 case SR_CONF_TRIGGER_SOURCE:
582 if (!strcmp(devc->trigger_source, "ACL"))
583 tmp_str = "AC Line";
584 else if (!strcmp(devc->trigger_source, "CHAN1"))
585 tmp_str = "CH1";
586 else if (!strcmp(devc->trigger_source, "CHAN2"))
587 tmp_str = "CH2";
588 else if (!strcmp(devc->trigger_source, "CHAN3"))
589 tmp_str = "CH3";
590 else if (!strcmp(devc->trigger_source, "CHAN4"))
591 tmp_str = "CH4";
592 else
593 tmp_str = devc->trigger_source;
594 *data = g_variant_new_string(tmp_str);
595 break;
5d336f11 596 case SR_CONF_TRIGGER_SLOPE:
e1b5b7e7 597 if (!strncmp(devc->trigger_slope, "POS", 3)) {
5d336f11 598 tmp_str = "r";
e1b5b7e7 599 } else if (!strncmp(devc->trigger_slope, "NEG", 3)) {
5d336f11 600 tmp_str = "f";
e1b5b7e7
UH
601 } else {
602 sr_dbg("Unknown trigger slope: '%s'.", devc->trigger_slope);
5d336f11 603 return SR_ERR_NA;
e1b5b7e7 604 }
5d336f11
AJ
605 *data = g_variant_new_string(tmp_str);
606 break;
9ea62f2e
AJ
607 case SR_CONF_TRIGGER_LEVEL:
608 *data = g_variant_new_double(devc->trigger_level);
609 break;
2b0e4a46
AJ
610 case SR_CONF_TIMEBASE:
611 for (i = 0; i < devc->num_timebases; i++) {
612 float tb = (float)devc->timebases[i][0] / devc->timebases[i][1];
613 float diff = fabs(devc->timebase - tb);
614 if (diff < smallest_diff) {
615 smallest_diff = diff;
616 idx = i;
617 }
618 }
e1b5b7e7
UH
619 if (idx < 0) {
620 sr_dbg("Negative timebase index: %d.", idx);
2b0e4a46 621 return SR_ERR_NA;
e1b5b7e7 622 }
2b0e4a46
AJ
623 *data = g_variant_new("(tt)", devc->timebases[idx][0],
624 devc->timebases[idx][1]);
625 break;
626 case SR_CONF_VDIV:
e1b5b7e7
UH
627 if (analog_channel < 0) {
628 sr_dbg("Negative analog channel: %d.", analog_channel);
2b0e4a46 629 return SR_ERR_NA;
e1b5b7e7 630 }
2b0e4a46
AJ
631 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
632 float vdiv = (float)vdivs[i][0] / vdivs[i][1];
633 float diff = fabs(devc->vdiv[analog_channel] - vdiv);
634 if (diff < smallest_diff) {
635 smallest_diff = diff;
636 idx = i;
637 }
638 }
e1b5b7e7
UH
639 if (idx < 0) {
640 sr_dbg("Negative vdiv index: %d.", idx);
2b0e4a46 641 return SR_ERR_NA;
e1b5b7e7 642 }
2b0e4a46
AJ
643 *data = g_variant_new("(tt)", vdivs[idx][0], vdivs[idx][1]);
644 break;
645 case SR_CONF_COUPLING:
e1b5b7e7
UH
646 if (analog_channel < 0) {
647 sr_dbg("Negative analog channel: %d.", analog_channel);
2b0e4a46 648 return SR_ERR_NA;
e1b5b7e7 649 }
2b0e4a46
AJ
650 *data = g_variant_new_string(devc->coupling[analog_channel]);
651 break;
934cf6cf
AJ
652 case SR_CONF_PROBE_FACTOR:
653 if (analog_channel < 0) {
654 sr_dbg("Negative analog channel: %d.", analog_channel);
655 return SR_ERR_NA;
656 }
657 *data = g_variant_new_uint64(devc->attenuation[analog_channel]);
658 break;
d62d7ad1 659 default:
bd6fbf62 660 return SR_ERR_NA;
d62d7ad1
BV
661 }
662
663 return SR_OK;
664}
665
dd7a72ea
UH
666static int config_set(uint32_t key, GVariant *data,
667 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
f4816ac6 668{
29d957ce 669 struct dev_context *devc;
697fb6dd 670 uint64_t p;
254dd102 671 double t_dbl;
fcd6a8bd 672 int ret, idx, i;
254dd102 673 const char *tmp_str;
889ef4a0 674 char buffer[16];
f4816ac6 675
b0baddef 676 devc = sdi->priv;
29d957ce 677
660e398f 678 /* If a channel group is specified, it must be a valid one. */
53b4680f 679 if (cg && !g_slist_find(sdi->channel_groups, cg)) {
660e398f 680 sr_err("Invalid channel group specified.");
969edf63 681 return SR_ERR;
be60a9e4
BV
682 }
683
584560f1 684 switch (key) {
1953564a 685 case SR_CONF_LIMIT_FRAMES:
f6a0ac9f 686 devc->limit_frames = g_variant_get_uint64(data);
e0b7d23c 687 break;
1953564a 688 case SR_CONF_TRIGGER_SLOPE:
697fb6dd 689 if ((idx = std_str_idx(data, ARRAY_AND_SIZE(trigger_slopes))) < 0)
ca9b9f48 690 return SR_ERR_ARG;
254dd102 691 g_free(devc->trigger_slope);
697fb6dd 692 devc->trigger_slope = g_strdup((trigger_slopes[idx][0] == 'r') ? "POS" : "NEG");
758906aa 693 return rigol_ds_config_set(sdi, ":TRIG:EDGE:SLOP %s", devc->trigger_slope);
1953564a 694 case SR_CONF_HORIZ_TRIGGERPOS:
254dd102 695 t_dbl = g_variant_get_double(data);
e1b5b7e7
UH
696 if (t_dbl < 0.0 || t_dbl > 1.0) {
697 sr_err("Invalid horiz. trigger position: %g.", t_dbl);
254dd102 698 return SR_ERR;
e1b5b7e7 699 }
254dd102
BV
700 devc->horiz_triggerpos = t_dbl;
701 /* We have the trigger offset as a percentage of the frame, but
702 * need to express this in seconds. */
bafd4890 703 t_dbl = -(devc->horiz_triggerpos - 0.5) * devc->timebase * devc->num_timebases;
889ef4a0 704 g_ascii_formatd(buffer, sizeof(buffer), "%.6f", t_dbl);
0f523f2b
UH
705 return rigol_ds_config_set(sdi,
706 devc->model->cmds[CMD_SET_HORIZ_TRIGGERPOS].str, buffer);
9ea62f2e
AJ
707 case SR_CONF_TRIGGER_LEVEL:
708 t_dbl = g_variant_get_double(data);
709 g_ascii_formatd(buffer, sizeof(buffer), "%.3f", t_dbl);
710 ret = rigol_ds_config_set(sdi, ":TRIG:EDGE:LEV %s", buffer);
711 if (ret == SR_OK)
712 devc->trigger_level = t_dbl;
758906aa 713 return ret;
1953564a 714 case SR_CONF_TIMEBASE:
697fb6dd
UH
715 if ((idx = std_u64_tuple_idx(data, devc->timebases, devc->num_timebases)) < 0)
716 return SR_ERR_ARG;
717 devc->timebase = (float)devc->timebases[idx][0] / devc->timebases[idx][1];
718 g_ascii_formatd(buffer, sizeof(buffer), "%.9f",
719 devc->timebase);
758906aa 720 return rigol_ds_config_set(sdi, ":TIM:SCAL %s", buffer);
1953564a 721 case SR_CONF_TRIGGER_SOURCE:
6bcc81ac 722 if ((idx = std_str_idx(data, devc->model->trigger_sources, devc->model->num_trigger_sources)) < 0)
697fb6dd
UH
723 return SR_ERR_ARG;
724 g_free(devc->trigger_source);
6bcc81ac 725 devc->trigger_source = g_strdup(devc->model->trigger_sources[idx]);
697fb6dd
UH
726 if (!strcmp(devc->trigger_source, "AC Line"))
727 tmp_str = "ACL";
728 else if (!strcmp(devc->trigger_source, "CH1"))
729 tmp_str = "CHAN1";
730 else if (!strcmp(devc->trigger_source, "CH2"))
731 tmp_str = "CHAN2";
732 else if (!strcmp(devc->trigger_source, "CH3"))
733 tmp_str = "CHAN3";
734 else if (!strcmp(devc->trigger_source, "CH4"))
735 tmp_str = "CHAN4";
736 else
737 tmp_str = (char *)devc->trigger_source;
758906aa 738 return rigol_ds_config_set(sdi, ":TRIG:EDGE:SOUR %s", tmp_str);
1953564a 739 case SR_CONF_VDIV:
9e411f4b 740 if (!cg)
660e398f 741 return SR_ERR_CHANNEL_GROUP;
fcd6a8bd
UH
742 if ((i = std_cg_idx(cg, devc->analog_groups, devc->model->analog_channels)) < 0)
743 return SR_ERR_ARG;
744 if ((idx = std_u64_tuple_idx(data, ARRAY_AND_SIZE(vdivs))) < 0)
745 return SR_ERR_ARG;
746 devc->vdiv[i] = (float)vdivs[idx][0] / vdivs[idx][1];
747 g_ascii_formatd(buffer, sizeof(buffer), "%.3f", devc->vdiv[i]);
748 return rigol_ds_config_set(sdi, ":CHAN%d:SCAL %s", i + 1, buffer);
1953564a 749 case SR_CONF_COUPLING:
9e411f4b 750 if (!cg)
660e398f 751 return SR_ERR_CHANNEL_GROUP;
fcd6a8bd
UH
752 if ((i = std_cg_idx(cg, devc->analog_groups, devc->model->analog_channels)) < 0)
753 return SR_ERR_ARG;
754 if ((idx = std_str_idx(data, ARRAY_AND_SIZE(coupling))) < 0)
755 return SR_ERR_ARG;
756 g_free(devc->coupling[i]);
757 devc->coupling[i] = g_strdup(coupling[idx]);
758 return rigol_ds_config_set(sdi, ":CHAN%d:COUP %s", i + 1, devc->coupling[i]);
934cf6cf 759 case SR_CONF_PROBE_FACTOR:
9e411f4b 760 if (!cg)
934cf6cf 761 return SR_ERR_CHANNEL_GROUP;
fcd6a8bd
UH
762 if ((i = std_cg_idx(cg, devc->analog_groups, devc->model->analog_channels)) < 0)
763 return SR_ERR_ARG;
764 if ((idx = std_u64_idx(data, ARRAY_AND_SIZE(probe_factor))) < 0)
765 return SR_ERR_ARG;
934cf6cf 766 p = g_variant_get_uint64(data);
fcd6a8bd
UH
767 devc->attenuation[i] = probe_factor[idx];
768 ret = rigol_ds_config_set(sdi, ":CHAN%d:PROB %"PRIu64, i + 1, p);
769 if (ret == SR_OK)
770 rigol_ds_get_dev_cfg_vertical(sdi);
771 return ret;
babab622
ML
772 case SR_CONF_DATA_SOURCE:
773 tmp_str = g_variant_get_string(data, NULL);
774 if (!strcmp(tmp_str, "Live"))
775 devc->data_source = DATA_SOURCE_LIVE;
569d4dbd
ML
776 else if (devc->model->series->protocol >= PROTOCOL_V2
777 && !strcmp(tmp_str, "Memory"))
babab622 778 devc->data_source = DATA_SOURCE_MEMORY;
569d4dbd 779 else if (devc->model->series->protocol >= PROTOCOL_V3
babab622
ML
780 && !strcmp(tmp_str, "Segmented"))
781 devc->data_source = DATA_SOURCE_SEGMENTED;
e1b5b7e7
UH
782 else {
783 sr_err("Unknown data source: '%s'.", tmp_str);
babab622 784 return SR_ERR;
e1b5b7e7 785 }
babab622 786 break;
f4816ac6 787 default:
dcd438ee 788 return SR_ERR_NA;
f4816ac6
ML
789 }
790
758906aa 791 return SR_OK;
f4816ac6
ML
792}
793
dd7a72ea
UH
794static int config_list(uint32_t key, GVariant **data,
795 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a1c743fc 796{
e66d1892 797 struct dev_context *devc;
e43fdd8d 798
e66d1892 799 devc = (sdi) ? sdi->priv : NULL;
be60a9e4 800
e43fdd8d 801 switch (key) {
e66d1892 802 case SR_CONF_SCAN_OPTIONS:
9a6517d1 803 case SR_CONF_DEVICE_OPTIONS:
e66d1892
UH
804 if (!cg)
805 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
0306ae30
GS
806 if (!devc)
807 return SR_ERR_ARG;
562b7ae5 808 if (cg == devc->digital_group) {
105df674 809 *data = std_gvar_array_u32(NULL, 0);
f48e0249
ML
810 return SR_OK;
811 } else {
fcd6a8bd
UH
812 if (std_cg_idx(cg, devc->analog_groups, devc->model->analog_channels) < 0)
813 return SR_ERR_ARG;
814 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg_analog));
815 return SR_OK;
f48e0249 816 }
5f77dffc 817 break;
2a7b113d 818 case SR_CONF_COUPLING:
e66d1892 819 if (!cg)
660e398f 820 return SR_ERR_CHANNEL_GROUP;
53012da6 821 *data = g_variant_new_strv(ARRAY_AND_SIZE(coupling));
58f43369 822 break;
934cf6cf 823 case SR_CONF_PROBE_FACTOR:
e66d1892 824 if (!cg)
934cf6cf 825 return SR_ERR_CHANNEL_GROUP;
53012da6 826 *data = std_gvar_array_u64(ARRAY_AND_SIZE(probe_factor));
934cf6cf 827 break;
e4f2b2ad 828 case SR_CONF_VDIV:
7cc1a550
ML
829 if (!devc)
830 /* Can't know this until we have the exact model. */
831 return SR_ERR_ARG;
e66d1892 832 if (!cg)
660e398f 833 return SR_ERR_CHANNEL_GROUP;
58ffcf97 834 *data = std_gvar_tuple_array(devc->vdivs, devc->num_vdivs);
58f43369 835 break;
41f5bd09 836 case SR_CONF_TIMEBASE:
7cc1a550
ML
837 if (!devc)
838 /* Can't know this until we have the exact model. */
839 return SR_ERR_ARG;
a31b2ccb
AJ
840 if (devc->num_timebases <= 0)
841 return SR_ERR_NA;
58ffcf97 842 *data = std_gvar_tuple_array(devc->timebases, devc->num_timebases);
41f5bd09 843 break;
328bafab 844 case SR_CONF_TRIGGER_SOURCE:
7cc1a550
ML
845 if (!devc)
846 /* Can't know this until we have the exact model. */
847 return SR_ERR_ARG;
6bcc81ac 848 *data = g_variant_new_strv(devc->model->trigger_sources, devc->model->num_trigger_sources);
328bafab 849 break;
5d336f11 850 case SR_CONF_TRIGGER_SLOPE:
53012da6 851 *data = g_variant_new_strv(ARRAY_AND_SIZE(trigger_slopes));
5d336f11 852 break;
babab622
ML
853 case SR_CONF_DATA_SOURCE:
854 if (!devc)
855 /* Can't know this until we have the exact model. */
856 return SR_ERR_ARG;
569d4dbd
ML
857 switch (devc->model->series->protocol) {
858 case PROTOCOL_V1:
859 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources) - 2);
860 break;
861 case PROTOCOL_V2:
babab622 862 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources) - 1);
569d4dbd
ML
863 break;
864 default:
53012da6 865 *data = g_variant_new_strv(ARRAY_AND_SIZE(data_sources));
569d4dbd
ML
866 break;
867 }
babab622 868 break;
a1c743fc 869 default:
bd6fbf62 870 return SR_ERR_NA;
a1c743fc
BV
871 }
872
873 return SR_OK;
874}
875
695dc859 876static int dev_acquisition_start(const struct sr_dev_inst *sdi)
f4816ac6 877{
ae1bc1cc 878 struct sr_scpi_dev_inst *scpi;
29d957ce 879 struct dev_context *devc;
ba7dd8bb 880 struct sr_channel *ch;
702f42e8 881 gboolean some_digital;
254dd102 882 GSList *l;
f6129c8f 883 char *cmd;
06ed999a 884 int protocol;
29d957ce 885
ae1bc1cc 886 scpi = sdi->conn;
29d957ce 887 devc = sdi->priv;
06ed999a 888 protocol = devc->model->series->protocol;
29d957ce 889
51b294cd 890 devc->num_frames = 0;
8cbe5339 891 devc->num_frames_segmented = 0;
51b294cd 892
702f42e8 893 some_digital = FALSE;
ba7dd8bb
UH
894 for (l = sdi->channels; l; l = l->next) {
895 ch = l->data;
896 sr_dbg("handling channel %s", ch->name);
3f239f08 897 if (ch->type == SR_CHANNEL_ANALOG) {
ba7dd8bb 898 if (ch->enabled)
702f42e8
ML
899 devc->enabled_channels = g_slist_append(
900 devc->enabled_channels, ch);
ba7dd8bb 901 if (ch->enabled != devc->analog_channels[ch->index]) {
6bb192bc 902 /* Enabled channel is currently disabled, or vice versa. */
ba7dd8bb
UH
903 if (rigol_ds_config_set(sdi, ":CHAN%d:DISP %s", ch->index + 1,
904 ch->enabled ? "ON" : "OFF") != SR_OK)
6bb192bc 905 return SR_ERR;
ba7dd8bb 906 devc->analog_channels[ch->index] = ch->enabled;
6bb192bc 907 }
3f239f08 908 } else if (ch->type == SR_CHANNEL_LOGIC) {
01dd7a4c
ML
909 /* Only one list entry for older protocols. All channels are
910 * retrieved together when this entry is processed. */
702f42e8 911 if (ch->enabled && (
06ed999a 912 protocol > PROTOCOL_V3 ||
702f42e8
ML
913 !some_digital))
914 devc->enabled_channels = g_slist_append(
915 devc->enabled_channels, ch);
ba7dd8bb 916 if (ch->enabled) {
702f42e8 917 some_digital = TRUE;
04e8e01e
ML
918 /* Turn on LA module if currently off. */
919 if (!devc->la_enabled) {
06ed999a 920 if (rigol_ds_config_set(sdi, protocol >= PROTOCOL_V3 ?
702f42e8 921 ":LA:STAT ON" : ":LA:DISP ON") != SR_OK)
04e8e01e
ML
922 return SR_ERR;
923 devc->la_enabled = TRUE;
924 }
925 }
ba7dd8bb 926 if (ch->enabled != devc->digital_channels[ch->index]) {
6bb192bc 927 /* Enabled channel is currently disabled, or vice versa. */
06ed999a 928 if (protocol >= PROTOCOL_V5)
f6129c8f 929 cmd = ":LA:DISP D%d,%s";
06ed999a 930 else if (protocol >= PROTOCOL_V3)
f6129c8f
SR
931 cmd = ":LA:DIG%d:DISP %s";
932 else
933 cmd = ":DIG%d:TURN %s";
934
935 if (rigol_ds_config_set(sdi, cmd, ch->index,
ba7dd8bb 936 ch->enabled ? "ON" : "OFF") != SR_OK)
6bb192bc 937 return SR_ERR;
ba7dd8bb 938 devc->digital_channels[ch->index] = ch->enabled;
6bb192bc 939 }
254dd102
BV
940 }
941 }
1fed20cb 942
702f42e8 943 if (!devc->enabled_channels)
254dd102 944 return SR_ERR;
e0b7d23c 945
ba7dd8bb 946 /* Turn off LA module if on and no digital channels selected. */
702f42e8
ML
947 if (devc->la_enabled && !some_digital)
948 if (rigol_ds_config_set(sdi,
01dd7a4c 949 devc->model->series->protocol >= PROTOCOL_V3 ?
702f42e8 950 ":LA:STAT OFF" : ":LA:DISP OFF") != SR_OK)
04e8e01e
ML
951 return SR_ERR;
952
e086b750
ML
953 /* Set memory mode. */
954 if (devc->data_source == DATA_SOURCE_SEGMENTED) {
06ed999a
VO
955 switch (protocol) {
956 case PROTOCOL_V1:
957 case PROTOCOL_V2:
958 /* V1 and V2 do not have segmented data */
959 sr_err("Data source 'Segmented' not supported on this model");
960 break;
961 case PROTOCOL_V3:
19f31c8a
VO
962 case PROTOCOL_V4:
963 {
8cbe5339 964 int frames = 0;
06ed999a
VO
965 if (sr_scpi_get_int(sdi->conn,
966 protocol == PROTOCOL_V4 ? "FUNC:WREP:FEND?" :
967 "FUNC:WREP:FMAX?", &frames) != SR_OK)
968 return SR_ERR;
8cbe5339
VO
969 if (frames <= 0) {
970 sr_err("No segmented data available");
971 return SR_ERR;
972 }
973 devc->num_frames_segmented = frames;
19f31c8a
VO
974 break;
975 }
976 case PROTOCOL_V5:
977 /* The frame limit has to be read on the fly, just set up
978 * reading of the first frame */
979 if (rigol_ds_config_set(sdi, "REC:CURR 1") != SR_OK)
980 return SR_ERR;
981 break;
982 default:
8cbe5339
VO
983 sr_err("Data source 'Segmented' not yet supported");
984 return SR_ERR;
985 }
e086b750
ML
986 }
987
988 devc->analog_frame_size = analog_frame_size(sdi);
989 devc->digital_frame_size = digital_frame_size(sdi);
990
569d4dbd
ML
991 switch (devc->model->series->protocol) {
992 case PROTOCOL_V2:
99af83b7 993 if (rigol_ds_config_set(sdi, ":ACQ:MEMD LONG") != SR_OK)
e086b750 994 return SR_ERR;
569d4dbd
ML
995 break;
996 case PROTOCOL_V3:
e086b750
ML
997 /* Apparently for the DS2000 the memory
998 * depth can only be set in Running state -
999 * this matches the behaviour of the UI. */
38354d9d 1000 if (rigol_ds_config_set(sdi, ":RUN") != SR_OK)
1fed20cb 1001 return SR_ERR;
e086b750
ML
1002 if (rigol_ds_config_set(sdi, ":ACQ:MDEP %d",
1003 devc->analog_frame_size) != SR_OK)
1004 return SR_ERR;
1005 if (rigol_ds_config_set(sdi, ":STOP") != SR_OK)
1fed20cb 1006 return SR_ERR;
569d4dbd
ML
1007 break;
1008 default:
1009 break;
1fed20cb
ML
1010 }
1011
e086b750
ML
1012 if (devc->data_source == DATA_SOURCE_LIVE)
1013 if (rigol_ds_config_set(sdi, ":RUN") != SR_OK)
1014 return SR_ERR;
1015
102f1239
BV
1016 sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 50,
1017 rigol_ds_receive, (void *)sdi);
e0b7d23c 1018
bee2b016 1019 std_session_send_df_header(sdi);
e0b7d23c 1020
702f42e8 1021 devc->channel_entry = devc->enabled_channels;
821fbcad 1022
1cbb3b1c
VO
1023 if (devc->data_source == DATA_SOURCE_LIVE)
1024 devc->sample_rate = analog_frame_size(sdi) /
1025 (devc->timebase * devc->model->series->num_horizontal_divs);
1026 else {
1027 float xinc;
1028 if (devc->model->series->protocol >= PROTOCOL_V3 &&
1029 sr_scpi_get_float(sdi->conn, "WAV:XINC?", &xinc) != SR_OK) {
1030 sr_err("Couldn't get sampling rate");
1031 return SR_ERR;
1032 }
1033 devc->sample_rate = 1. / xinc;
1034 }
1035
1036
e086b750
ML
1037 if (rigol_ds_capture_start(sdi) != SR_OK)
1038 return SR_ERR;
f4816ac6 1039
f76c24f6 1040 /* Start of first frame. */
4c5f7006 1041 std_session_send_df_frame_begin(sdi);
f76c24f6 1042
f4816ac6
ML
1043 return SR_OK;
1044}
1045
695dc859 1046static int dev_acquisition_stop(struct sr_dev_inst *sdi)
f4816ac6 1047{
29d957ce 1048 struct dev_context *devc;
ae1bc1cc 1049 struct sr_scpi_dev_inst *scpi;
29d957ce 1050
29d957ce
UH
1051 devc = sdi->priv;
1052
bee2b016 1053 std_session_send_df_end(sdi);
b751cf7a 1054
702f42e8
ML
1055 g_slist_free(devc->enabled_channels);
1056 devc->enabled_channels = NULL;
ae1bc1cc 1057 scpi = sdi->conn;
102f1239 1058 sr_scpi_source_remove(sdi->session, scpi);
f4816ac6
ML
1059
1060 return SR_OK;
1061}
1062
dd5c48a6 1063static struct sr_dev_driver rigol_ds_driver_info = {
3086efdd
ML
1064 .name = "rigol-ds",
1065 .longname = "Rigol DS",
f4816ac6 1066 .api_version = 1,
c2fdcc25 1067 .init = std_init,
700d6b64 1068 .cleanup = std_cleanup,
6078d2c9 1069 .scan = scan,
c01bf34c 1070 .dev_list = std_dev_list,
3b412e3a 1071 .dev_clear = dev_clear,
d62d7ad1 1072 .config_get = config_get,
035a1078 1073 .config_set = config_set,
a1c743fc 1074 .config_list = config_list,
6078d2c9
UH
1075 .dev_open = dev_open,
1076 .dev_close = dev_close,
254dd102
BV
1077 .dev_acquisition_start = dev_acquisition_start,
1078 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 1079 .context = NULL,
f4816ac6 1080};
dd5c48a6 1081SR_REGISTER_DEV_DRIVER(rigol_ds_driver_info);