]> sigrok.org Git - libsigrok.git/blame - src/hardware/hantek-dso/protocol.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / hantek-dso / protocol.c
CommitLineData
3b533202 1/*
50985c20 2 * This file is part of the libsigrok project.
3b533202
BV
3 *
4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
5 * With protocol information from the hantekdso project,
6 * Copyright (C) 2008 Oleg Khudyakov <prcoder@gmail.com>
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>
3b533202
BV
23#include <string.h>
24#include <glib.h>
25#include <libusb.h>
c1aae900 26#include <libsigrok/libsigrok.h>
515ab088 27#include "libsigrok-internal.h"
caeb8d7a 28#include "protocol.h"
3b533202 29
c118080b 30static int send_begin(const struct sr_dev_inst *sdi)
3b533202 31{
c118080b 32 struct sr_usb_dev_inst *usb;
3b533202
BV
33 int ret;
34 unsigned char buffer[] = {0x0f, 0x03, 0x03, 0x03, 0x68, 0xac, 0xfe,
35 0x00, 0x01, 0x00};
36
e98b7f1b 37 sr_dbg("Sending CTRL_BEGINCOMMAND.");
3b533202 38
c118080b
BV
39 usb = sdi->conn;
40 if ((ret = libusb_control_transfer(usb->devhdl,
3b533202
BV
41 LIBUSB_REQUEST_TYPE_VENDOR, CTRL_BEGINCOMMAND,
42 0, 0, buffer, sizeof(buffer), 200)) != sizeof(buffer)) {
d4928d71
PS
43 sr_err("Failed to send begincommand: %s.",
44 libusb_error_name(ret));
3b533202
BV
45 return SR_ERR;
46 }
47
48 return SR_OK;
49}
50
c118080b 51static int send_bulkcmd(const struct sr_dev_inst *sdi, uint8_t *cmdstring, int cmdlen)
3b533202 52{
c118080b 53 struct sr_usb_dev_inst *usb;
3b533202
BV
54 int ret, tmp;
55
c118080b
BV
56 usb = sdi->conn;
57
58 if (send_begin(sdi) != SR_OK)
3b533202
BV
59 return SR_ERR;
60
c118080b
BV
61 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT, cmdstring,
62 cmdlen, &tmp, 200)) != 0)
3b533202
BV
63 return SR_ERR;
64
65 return SR_OK;
66}
67
d87c1766 68static int dso_getmps(libusb_device *dev)
3b533202
BV
69{
70 struct libusb_device_descriptor des;
71 struct libusb_config_descriptor *conf_dsc;
72 const struct libusb_interface_descriptor *intf_dsc;
73 int mps;
74
2a8f2d41 75 libusb_get_device_descriptor(dev, &des);
3b533202
BV
76
77 if (des.bNumConfigurations != 1)
78 return 0;
79
80 if (libusb_get_config_descriptor(dev, 0, &conf_dsc) != 0)
81 return 0;
82
83 mps = 0;
84 intf_dsc = &(conf_dsc->interface[0].altsetting[0]);
85 if (intf_dsc->bNumEndpoints != 2)
86 goto err;
87
88 if ((intf_dsc->endpoint[0].bEndpointAddress & 0x8f) !=
89 (2 | LIBUSB_ENDPOINT_OUT))
90 /* The first endpoint should be 2 (outbound). */
91 goto err;
92
93 if ((intf_dsc->endpoint[1].bEndpointAddress & 0x8f) !=
94 (6 | LIBUSB_ENDPOINT_IN))
95 /* The second endpoint should be 6 (inbound). */
96 goto err;
97
98 mps = intf_dsc->endpoint[1].wMaxPacketSize;
99
100err:
101 if (conf_dsc)
102 libusb_free_config_descriptor(conf_dsc);
103
104 return mps;
105}
106
25a0f108 107SR_PRIV int dso_open(struct sr_dev_inst *sdi)
3b533202 108{
269971dd 109 struct dev_context *devc;
e32862eb 110 struct drv_context *drvc = sdi->driver->context;
c118080b
BV
111 struct sr_usb_dev_inst *usb;
112 struct libusb_device_descriptor des;
113 libusb_device **devlist;
395206f4
SA
114 int err, i;
115 char connection_id[64];
3b533202 116
269971dd 117 devc = sdi->priv;
c118080b 118 usb = sdi->conn;
3b533202 119
d4abb463 120 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
3b533202 121 for (i = 0; devlist[i]; i++) {
2a8f2d41 122 libusb_get_device_descriptor(devlist[i], &des);
3b533202 123
269971dd
BV
124 if (des.idVendor != devc->profile->fw_vid
125 || des.idProduct != devc->profile->fw_pid)
3b533202
BV
126 continue;
127
395206f4
SA
128 if ((sdi->status == SR_ST_INITIALIZING) ||
129 (sdi->status == SR_ST_INACTIVE)) {
3b533202 130 /*
395206f4 131 * Check device by its physical USB bus/port address.
3b533202 132 */
6c1a76d1
RT
133 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
134 continue;
135
395206f4
SA
136 if (strcmp(sdi->connection_id, connection_id))
137 /* This is not the one. */
3b533202
BV
138 continue;
139 }
140
c118080b
BV
141 if (!(err = libusb_open(devlist[i], &usb->devhdl))) {
142 if (usb->address == 0xff)
3b533202
BV
143 /*
144 * first time we touch this device after firmware upload,
145 * so we don't know the address yet.
146 */
c118080b 147 usb->address = libusb_get_device_address(devlist[i]);
3b533202 148
e98b7f1b
UH
149 if (!(devc->epin_maxpacketsize = dso_getmps(devlist[i])))
150 sr_err("Wrong endpoint profile.");
3b533202
BV
151 else {
152 sdi->status = SR_ST_ACTIVE;
395206f4
SA
153 sr_info("Opened device on %d.%d (logical) / "
154 "%s (physical) interface %d.",
155 usb->bus, usb->address,
156 sdi->connection_id, USB_INTERFACE);
3b533202
BV
157 }
158 } else {
d4928d71
PS
159 sr_err("Failed to open device: %s.",
160 libusb_error_name(err));
3b533202
BV
161 }
162
e98b7f1b 163 /* If we made it here, we handled the device (somehow). */
3b533202
BV
164 break;
165 }
166 libusb_free_device_list(devlist, 1);
167
168 if (sdi->status != SR_ST_ACTIVE)
169 return SR_ERR;
170
171 return SR_OK;
172}
173
174SR_PRIV void dso_close(struct sr_dev_inst *sdi)
175{
c118080b 176 struct sr_usb_dev_inst *usb;
3b533202 177
c118080b 178 usb = sdi->conn;
3b533202 179
98fec29e 180 if (!usb->devhdl)
3b533202
BV
181 return;
182
395206f4
SA
183 sr_info("Closing device on %d.%d (logical) / %s (physical) interface %d.",
184 usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
c118080b
BV
185 libusb_release_interface(usb->devhdl, USB_INTERFACE);
186 libusb_close(usb->devhdl);
187 usb->devhdl = NULL;
3b533202 188 sdi->status = SR_ST_INACTIVE;
3b533202
BV
189}
190
c118080b 191static int get_channel_offsets(const struct sr_dev_inst *sdi)
3b533202 192{
c118080b
BV
193 struct dev_context *devc;
194 struct sr_usb_dev_inst *usb;
2715c0b8
BV
195 GString *gs;
196 int chan, v, ret;
3b533202 197
e98b7f1b 198 sr_dbg("Getting channel offsets.");
3b533202 199
c118080b
BV
200 devc = sdi->priv;
201 usb = sdi->conn;
202
203 ret = libusb_control_transfer(usb->devhdl,
3b533202
BV
204 LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_VENDOR,
205 CTRL_READ_EEPROM, EEPROM_CHANNEL_OFFSETS, 0,
269971dd
BV
206 (unsigned char *)&devc->channel_levels,
207 sizeof(devc->channel_levels), 200);
208 if (ret != sizeof(devc->channel_levels)) {
d4928d71
PS
209 sr_err("Failed to get channel offsets: %s.",
210 libusb_error_name(ret));
3b533202
BV
211 return SR_ERR;
212 }
213
2715c0b8
BV
214 /* Comes in as 16-bit numbers with the second byte always 0 on
215 * the DSO-2090. Guessing this is supposed to be big-endian,
216 * since that's how voltage offsets are submitted back to the DSO.
217 * Convert to host order now, so we can use them natively.
218 */
07ffa5b3 219 for (chan = 0; chan < NUM_CHANNELS; chan++) {
2715c0b8 220 for (v = 0; v < 9; v++) {
e98b7f1b
UH
221 devc->channel_levels[chan][v][0] =
222 g_ntohs(devc->channel_levels[chan][v][0]);
223 devc->channel_levels[chan][v][1] =
224 g_ntohs(devc->channel_levels[chan][v][1]);
2715c0b8
BV
225 }
226 }
227
228 if (sr_log_loglevel_get() >= SR_LOG_DBG) {
229 gs = g_string_sized_new(128);
07ffa5b3 230 for (chan = 0; chan < NUM_CHANNELS; chan++) {
e98b7f1b 231 g_string_printf(gs, "CH%d:", chan + 1);
2715c0b8
BV
232 for (v = 0; v < 9; v++) {
233 g_string_append_printf(gs, " %.4x-%.4x",
e98b7f1b
UH
234 devc->channel_levels[chan][v][0],
235 devc->channel_levels[chan][v][1]);
2715c0b8 236 }
cbc6f3b2 237 sr_dbg("%s", gs->str);
2715c0b8
BV
238 }
239 g_string_free(gs, TRUE);
240 }
241
3b533202
BV
242 return SR_OK;
243}
244
95983cc3
PM
245static void dso2250_set_triggerpos(int value, int long_buffer, uint8_t dest[], int offset)
246{
247 uint32_t min, max;
248 uint32_t tmp, diff;
249
250 min = long_buffer ? 0 : 0x7d7ff;
251 max = 0x7ffff;
252
253 diff = max - min;
254 tmp = min + diff * value / 100;
255 sr_dbg("2250 trigger pos: %3d%% * [0x%x,0x%x] == 0x%x", value, min, max, tmp);
256
257 dest[offset + 0] = tmp & 0xff;
258 dest[offset + 1] = (tmp >> 8) & 0xff;
259 dest[offset + 2] = (tmp >> 16) & 0x7;
260}
261
87f56d01
PM
262/* See http://openhantek.sourceforge.net/doc/namespaceHantek.html#ac1cd181814cf3da74771c29800b39028 */
263static int dso2250_set_trigger_samplerate(const struct sr_dev_inst *sdi)
264{
265 struct dev_context *devc;
266 struct sr_usb_dev_inst *usb;
267 int ret, tmp;
6deb361b 268 uint64_t base;
87f56d01 269 uint8_t cmdstring[12];
95983cc3 270 int trig;
87f56d01 271
87f56d01
PM
272 devc = sdi->priv;
273 usb = sdi->conn;
274
275 memset(cmdstring, 0, sizeof(cmdstring));
276 /* Command */
277 cmdstring[0] = CMD_2250_SET_TRIGGERSOURCE;
5f50d6da
GS
278 sr_dbg("Trigger source %s.", devc->triggersource ? : "<none>");
279 if (!devc->triggersource)
280 tmp = 0;
281 else if (!strcmp("CH2", devc->triggersource))
87f56d01
PM
282 tmp = 3;
283 else if (!strcmp("CH1", devc->triggersource))
284 tmp = 2;
5f50d6da 285 else if (!strcmp("EXT", devc->triggersource))
87f56d01
PM
286 tmp = 0;
287 else {
288 sr_err("Invalid trigger source: '%s'.", devc->triggersource);
289 return SR_ERR_ARG;
290 }
291 cmdstring[2] = tmp;
292
87f56d01
PM
293 sr_dbg("Trigger slope: %d.", devc->triggerslope);
294 cmdstring[2] |= (devc->triggerslope == SLOPE_NEGATIVE ? 1 : 0) << 3;
295
296 if (send_begin(sdi) != SR_OK)
297 return SR_ERR;
298
299 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
300 cmdstring, 8, &tmp, 100)) != 0) {
301 sr_err("Failed to set trigger/samplerate: %s.",
302 libusb_error_name(ret));
303 return SR_ERR;
304 }
305
87f56d01
PM
306 /* Frame size */
307 sr_dbg("Frame size: %d.", devc->framesize);
308 cmdstring[0] = CMD_2250_SET_RECORD_LENGTH;
ab8df2b1 309 cmdstring[2] = (devc->framesize == FRAMESIZE_SMALL) ? 0x01 : 0x02;
87f56d01
PM
310
311 if (send_begin(sdi) != SR_OK)
312 return SR_ERR;
313
314 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
315 cmdstring, 4, &tmp, 100)) != 0) {
316 sr_err("Failed to set record length: %s.",
317 libusb_error_name(ret));
318 return SR_ERR;
319 }
320
87f56d01
PM
321 memset(cmdstring, 0, sizeof(cmdstring));
322 cmdstring[0] = CMD_2250_SET_SAMPLERATE;
87f56d01 323 base = 100e6;
11e33196
PM
324 if (devc->samplerate > base) {
325 /* Timebase fast */
326 sr_err("Sample rate > 100MHz not yet supported.");
327 return SR_ERR_ARG;
87f56d01
PM
328 }
329
11e33196 330 tmp = base / devc->samplerate;
fe185e49
AS
331 /* Downsample only if really necessary */
332 if (tmp > 1) {
11e33196
PM
333 /* Downsampling on */
334 cmdstring[2] |= 2;
335 /* Downsampler = 1comp((Base / Samplerate) - 2)
336 * Base == 100Msa resp. 200MSa
337 *
338 * Example for 500kSa/s:
339 * 100e6 / 500e3 => 200
340 * 200 - 2 => 198
341 * 1comp(198) => ff39 */
342 tmp -= 2;
343 tmp = ~tmp;
ab8df2b1 344 sr_dbg("Down sampler value: 0x%x.", tmp & 0xffff);
11e33196
PM
345 cmdstring[4] = (tmp >> 0) & 0xff;
346 cmdstring[5] = (tmp >> 8) & 0xff;
347 }
87f56d01
PM
348
349 if (send_begin(sdi) != SR_OK)
350 return SR_ERR;
351
352 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
353 cmdstring, 8, &tmp, 100)) != 0) {
354 sr_err("Failed to set sample rate: %s.",
355 libusb_error_name(ret));
356 return SR_ERR;
357 }
358 sr_dbg("Sent CMD_2250_SET_SAMPLERATE.");
359
ab8df2b1 360 /* Enabled channels: 00=CH1, 01=CH2, 10=both. */
87f56d01
PM
361 memset(cmdstring, 0, sizeof(cmdstring));
362 cmdstring[0] = CMD_2250_SET_CHANNELS;
ab8df2b1 363 sr_dbg("Channels: CH1=%d, CH2=%d.", devc->ch_enabled[0], devc->ch_enabled[1]);
87f56d01
PM
364 cmdstring[2] = (devc->ch_enabled[0] ? 0 : 1) + (devc->ch_enabled[1] ? 2 : 0);
365
366 if (send_begin(sdi) != SR_OK)
367 return SR_ERR;
368
369 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
370 cmdstring, 4, &tmp, 100)) != 0) {
371 sr_err("Failed to set channels: %s.",
372 libusb_error_name(ret));
373 return SR_ERR;
374 }
375 sr_dbg("Sent CMD_2250_SET_CHANNELS.");
376
ab8df2b1 377 /* Trigger slope: 0=positive, 1=negative. */
87f56d01
PM
378 memset(cmdstring, 0, sizeof(cmdstring));
379 cmdstring[0] = CMD_2250_SET_TRIGGERPOS_AND_BUFFER;
380
d3f14af7 381 sr_dbg("Capture ratio: %" PRIu64 ".", devc->capture_ratio);
95983cc3
PM
382 trig = devc->capture_ratio;
383 dso2250_set_triggerpos(trig,
384 devc->framesize != FRAMESIZE_SMALL, cmdstring, 2);
385 dso2250_set_triggerpos(100 - trig,
386 devc->framesize != FRAMESIZE_SMALL, cmdstring, 6);
87f56d01
PM
387
388 if (send_begin(sdi) != SR_OK)
389 return SR_ERR;
390
391 /* TODO: 12 bytes according to documentation? */
392 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
393 cmdstring, 10, &tmp, 100)) != 0) {
394 sr_err("Failed to set trigger position: %s.",
395 libusb_error_name(ret));
396 return SR_ERR;
397 }
398
399 return SR_OK;
400}
401
be702d16 402SR_PRIV int dso_set_trigger_samplerate(const struct sr_dev_inst *sdi)
3b533202 403{
c118080b
BV
404 struct dev_context *devc;
405 struct sr_usb_dev_inst *usb;
3b533202
BV
406 int ret, tmp;
407 uint8_t cmdstring[12];
3b533202 408 uint16_t timebase_small[] = { 0xffff, 0xfffc, 0xfff7, 0xffe8, 0xffce,
e98b7f1b 409 0xff9c, 0xff07, 0xfe0d, 0xfc19, 0xf63d, 0xec79, 0xd8f1 };
3b533202 410 uint16_t timebase_large[] = { 0xffff, 0x0000, 0xfffc, 0xfff7, 0xffe8,
e98b7f1b 411 0xffce, 0xff9d, 0xff07, 0xfe0d, 0xfc19, 0xf63d, 0xec79 };
3b533202 412
87f56d01
PM
413 devc = sdi->priv;
414 if (devc->profile->fw_pid == 0x2250)
415 return dso2250_set_trigger_samplerate(sdi);
416
e98b7f1b 417 sr_dbg("Preparing CMD_SET_TRIGGER_SAMPLERATE.");
3b533202 418
c118080b
BV
419 usb = sdi->conn;
420
3b533202
BV
421 memset(cmdstring, 0, sizeof(cmdstring));
422 /* Command */
423 cmdstring[0] = CMD_SET_TRIGGER_SAMPLERATE;
424
425 /* Trigger source */
5f50d6da
GS
426 sr_dbg("Trigger source %s.", devc->triggersource ? : "<none>");
427 if (!devc->triggersource)
428 tmp = 2;
429 else if (!strcmp("CH2", devc->triggersource))
a370ef19 430 tmp = 0;
269971dd 431 else if (!strcmp("CH1", devc->triggersource))
a370ef19 432 tmp = 1;
5f50d6da 433 else if (!strcmp("EXT", devc->triggersource))
a370ef19
BV
434 tmp = 2;
435 else {
e98b7f1b 436 sr_err("Invalid trigger source: '%s'.", devc->triggersource);
a370ef19
BV
437 return SR_ERR_ARG;
438 }
439 cmdstring[2] = tmp;
3b533202
BV
440
441 /* Frame size */
e98b7f1b 442 sr_dbg("Frame size: %d.", devc->framesize);
269971dd 443 cmdstring[2] |= (devc->framesize == FRAMESIZE_SMALL ? 0x01 : 0x02) << 2;
bc79e906
BV
444
445 /* Timebase fast */
e98b7f1b 446 sr_dbg("Time base index: %d.", devc->timebase);
034accb5 447 if (devc->framesize == FRAMESIZE_SMALL) {
269971dd 448 if (devc->timebase < TIME_20us)
bc79e906 449 tmp = 0;
269971dd 450 else if (devc->timebase == TIME_20us)
bc79e906 451 tmp = 1;
269971dd 452 else if (devc->timebase == TIME_40us)
bc79e906 453 tmp = 2;
269971dd 454 else if (devc->timebase == TIME_100us)
bc79e906 455 tmp = 3;
269971dd 456 else if (devc->timebase >= TIME_200us)
bc79e906 457 tmp = 4;
034accb5 458 } else {
269971dd 459 if (devc->timebase < TIME_40us) {
e98b7f1b 460 sr_err("Timebase < 40us only supported with 10K buffer.");
bc79e906
BV
461 return SR_ERR_ARG;
462 }
269971dd 463 else if (devc->timebase == TIME_40us)
bc79e906 464 tmp = 0;
269971dd 465 else if (devc->timebase == TIME_100us)
bc79e906 466 tmp = 2;
269971dd 467 else if (devc->timebase == TIME_200us)
bc79e906 468 tmp = 3;
269971dd 469 else if (devc->timebase >= TIME_400us)
bc79e906 470 tmp = 4;
3b533202 471 }
bc79e906
BV
472 cmdstring[2] |= (tmp & 0x07) << 5;
473
474 /* Enabled channels: 00=CH1 01=CH2 10=both */
417412c8
AJ
475 sr_dbg("Channels CH1=%d CH2=%d", devc->ch_enabled[0], devc->ch_enabled[1]);
476 tmp = (((devc->ch_enabled[1] ? 1 : 0) << 1) + (devc->ch_enabled[0] ? 1 : 0)) - 1;
6e71ef3b 477 cmdstring[3] = tmp;
3b533202 478
bc79e906 479 /* Fast rates channel */
e98b7f1b 480 /* TODO: Is this right? */
269971dd 481 tmp = devc->timebase < TIME_10us ? 1 : 0;
bc79e906 482 cmdstring[3] |= tmp << 2;
3b533202 483
bc79e906 484 /* Trigger slope: 0=positive 1=negative */
e98b7f1b
UH
485 /* TODO: Does this work? */
486 sr_dbg("Trigger slope: %d.", devc->triggerslope);
269971dd 487 cmdstring[3] |= (devc->triggerslope == SLOPE_NEGATIVE ? 1 : 0) << 3;
3b533202 488
a370ef19 489 /* Timebase slow */
269971dd 490 if (devc->timebase < TIME_100us)
3b533202 491 tmp = 0;
269971dd 492 else if (devc->timebase > TIME_400ms)
3b533202
BV
493 tmp = 0xffed;
494 else {
269971dd
BV
495 if (devc->framesize == FRAMESIZE_SMALL)
496 tmp = timebase_small[devc->timebase - 3];
3b533202 497 else
269971dd 498 tmp = timebase_large[devc->timebase - 3];
3b533202 499 }
bc79e906
BV
500 cmdstring[4] = tmp & 0xff;
501 cmdstring[5] = (tmp >> 8) & 0xff;
502
503 /* Horizontal trigger position */
d3f14af7 504 sr_dbg("Capture ratio: %" PRIu64 ".", devc->capture_ratio);
95983cc3 505 tmp = 0x77fff + 0x8000 * devc->capture_ratio / 100;
3b533202
BV
506 cmdstring[6] = tmp & 0xff;
507 cmdstring[7] = (tmp >> 8) & 0xff;
3b533202
BV
508 cmdstring[10] = (tmp >> 16) & 0xff;
509
c118080b 510 if (send_begin(sdi) != SR_OK)
3b533202
BV
511 return SR_ERR;
512
c118080b
BV
513 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
514 cmdstring, sizeof(cmdstring), &tmp, 100)) != 0) {
d4928d71
PS
515 sr_err("Failed to set trigger/samplerate: %s.",
516 libusb_error_name(ret));
3b533202
BV
517 return SR_ERR;
518 }
e98b7f1b 519 sr_dbg("Sent CMD_SET_TRIGGER_SAMPLERATE.");
3b533202
BV
520
521 return SR_OK;
522}
523
d87c1766 524static int dso_set_filters(const struct sr_dev_inst *sdi)
3b533202 525{
c118080b
BV
526 struct dev_context *devc;
527 struct sr_usb_dev_inst *usb;
3b533202
BV
528 int ret, tmp;
529 uint8_t cmdstring[8];
530
e98b7f1b 531 sr_dbg("Preparing CMD_SET_FILTERS.");
3b533202 532
c118080b
BV
533 devc = sdi->priv;
534 usb = sdi->conn;
535
3b533202
BV
536 memset(cmdstring, 0, sizeof(cmdstring));
537 cmdstring[0] = CMD_SET_FILTERS;
538 cmdstring[1] = 0x0f;
933defaa 539 if (devc->filter[0]) {
e98b7f1b 540 sr_dbg("Turning on CH1 filter.");
3b533202 541 cmdstring[2] |= 0x80;
ebb781a6 542 }
933defaa 543 if (devc->filter[1]) {
e98b7f1b 544 sr_dbg("Turning on CH2 filter.");
3b533202 545 cmdstring[2] |= 0x40;
ebb781a6 546 }
933defaa
BV
547 /*
548 * Not supported: filtering on the trigger
549 * cmdstring[2] |= 0x20;
550 */
3b533202 551
c118080b 552 if (send_begin(sdi) != SR_OK)
3b533202
BV
553 return SR_ERR;
554
c118080b
BV
555 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
556 cmdstring, sizeof(cmdstring), &tmp, 100)) != 0) {
1740429d 557 sr_err("Failed to set filters: %s.", libusb_error_name(ret));
3b533202
BV
558 return SR_ERR;
559 }
e98b7f1b 560 sr_dbg("Sent CMD_SET_FILTERS.");
3b533202
BV
561
562 return SR_OK;
563}
564
d87c1766 565static int dso_set_voltage(const struct sr_dev_inst *sdi)
3b533202 566{
c118080b
BV
567 struct dev_context *devc;
568 struct sr_usb_dev_inst *usb;
3b533202
BV
569 int ret, tmp;
570 uint8_t cmdstring[8];
571
e98b7f1b 572 sr_dbg("Preparing CMD_SET_VOLTAGE.");
3b533202 573
c118080b
BV
574 devc = sdi->priv;
575 usb = sdi->conn;
576
3b533202
BV
577 memset(cmdstring, 0, sizeof(cmdstring));
578 cmdstring[0] = CMD_SET_VOLTAGE;
87f56d01
PM
579
580 if (devc->profile->fw_pid == 0x2250) {
ab8df2b1 581 cmdstring[1] = 0x00;
87f56d01
PM
582 cmdstring[2] = 0x08;
583 } else {
584 cmdstring[1] = 0x0f;
585 cmdstring[2] = 0x30;
586 }
313deed2 587
ab8df2b1 588 /* CH1 volts/div is encoded in bits 0-1. */
933defaa
BV
589 sr_dbg("CH1 vdiv index: %d.", devc->voltage[0]);
590 switch (devc->voltage[0]) {
313deed2
BV
591 case VDIV_1V:
592 case VDIV_100MV:
593 case VDIV_10MV:
594 cmdstring[2] |= 0x00;
595 break;
596 case VDIV_2V:
597 case VDIV_200MV:
598 case VDIV_20MV:
599 cmdstring[2] |= 0x01;
600 break;
601 case VDIV_5V:
602 case VDIV_500MV:
603 case VDIV_50MV:
604 cmdstring[2] |= 0x02;
605 break;
606 }
607
ab8df2b1 608 /* CH2 volts/div is encoded in bits 2-3. */
933defaa
BV
609 sr_dbg("CH2 vdiv index: %d.", devc->voltage[1]);
610 switch (devc->voltage[1]) {
313deed2
BV
611 case VDIV_1V:
612 case VDIV_100MV:
613 case VDIV_10MV:
614 cmdstring[2] |= 0x00;
615 break;
616 case VDIV_2V:
617 case VDIV_200MV:
618 case VDIV_20MV:
1d97091e 619 cmdstring[2] |= 0x04;
313deed2
BV
620 break;
621 case VDIV_5V:
622 case VDIV_500MV:
623 case VDIV_50MV:
1d97091e 624 cmdstring[2] |= 0x08;
313deed2
BV
625 break;
626 }
3b533202 627
c118080b 628 if (send_begin(sdi) != SR_OK)
3b533202
BV
629 return SR_ERR;
630
c118080b
BV
631 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
632 cmdstring, sizeof(cmdstring), &tmp, 100)) != 0) {
1740429d 633 sr_err("Failed to set voltage: %s.", libusb_error_name(ret));
3b533202
BV
634 return SR_ERR;
635 }
e98b7f1b 636 sr_dbg("Sent CMD_SET_VOLTAGE.");
3b533202
BV
637
638 return SR_OK;
639}
640
d87c1766 641static int dso_set_relays(const struct sr_dev_inst *sdi)
3b533202 642{
c118080b
BV
643 struct dev_context *devc;
644 struct sr_usb_dev_inst *usb;
a217bcdf
BV
645 GString *gs;
646 int ret, i;
647 uint8_t relays[17] = { 0x00, 0x04, 0x08, 0x02, 0x20, 0x40, 0x10, 0x01,
3b533202
BV
648 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
649
e98b7f1b 650 sr_dbg("Preparing CTRL_SETRELAYS.");
3b533202 651
c118080b
BV
652 devc = sdi->priv;
653 usb = sdi->conn;
654
933defaa 655 if (devc->voltage[0] < VDIV_1V)
3b533202
BV
656 relays[1] = ~relays[1];
657
933defaa 658 if (devc->voltage[0] < VDIV_100MV)
3b533202
BV
659 relays[2] = ~relays[2];
660
933defaa
BV
661 sr_dbg("CH1 coupling: %d.", devc->coupling[0]);
662 if (devc->coupling[0] != COUPLING_AC)
3b533202
BV
663 relays[3] = ~relays[3];
664
933defaa 665 if (devc->voltage[1] < VDIV_1V)
3b533202
BV
666 relays[4] = ~relays[4];
667
933defaa 668 if (devc->voltage[1] < VDIV_100MV)
3b533202
BV
669 relays[5] = ~relays[5];
670
933defaa
BV
671 sr_dbg("CH2 coupling: %d.", devc->coupling[1]);
672 if (devc->coupling[1] != COUPLING_AC)
3b533202
BV
673 relays[6] = ~relays[6];
674
5f50d6da 675 if (devc->triggersource && strcmp(devc->triggersource, "EXT") == 0)
3b533202
BV
676 relays[7] = ~relays[7];
677
a217bcdf
BV
678 if (sr_log_loglevel_get() >= SR_LOG_DBG) {
679 gs = g_string_sized_new(128);
e98b7f1b 680 g_string_printf(gs, "Relays:");
a217bcdf
BV
681 for (i = 0; i < 17; i++)
682 g_string_append_printf(gs, " %.2x", relays[i]);
cbc6f3b2 683 sr_dbg("%s", gs->str);
a217bcdf
BV
684 g_string_free(gs, TRUE);
685 }
686
c118080b 687 if ((ret = libusb_control_transfer(usb->devhdl,
3b533202 688 LIBUSB_REQUEST_TYPE_VENDOR, CTRL_SETRELAYS,
a217bcdf 689 0, 0, relays, 17, 100)) != sizeof(relays)) {
1740429d 690 sr_err("Failed to set relays: %s.", libusb_error_name(ret));
3b533202
BV
691 return SR_ERR;
692 }
e98b7f1b 693 sr_dbg("Sent CTRL_SETRELAYS.");
3b533202
BV
694
695 return SR_OK;
696}
697
be702d16 698SR_PRIV int dso_set_voffsets(const struct sr_dev_inst *sdi)
3b533202 699{
c118080b
BV
700 struct dev_context *devc;
701 struct sr_usb_dev_inst *usb;
3b533202
BV
702 int offset, ret;
703 uint16_t *ch_levels;
2715c0b8
BV
704 uint8_t offsets[17];
705
e98b7f1b 706 sr_dbg("Preparing CTRL_SETOFFSET.");
2715c0b8 707
c118080b
BV
708 devc = sdi->priv;
709 usb = sdi->conn;
710
2715c0b8
BV
711 memset(offsets, 0, sizeof(offsets));
712 /* Channel 1 */
933defaa 713 ch_levels = devc->channel_levels[0][devc->voltage[0]];
269971dd 714 offset = (ch_levels[1] - ch_levels[0]) * devc->voffset_ch1 + ch_levels[0];
2715c0b8
BV
715 offsets[0] = (offset >> 8) | 0x20;
716 offsets[1] = offset & 0xff;
e98b7f1b
UH
717 sr_dbg("CH1 offset: %3.2f (%.2x%.2x).", devc->voffset_ch1,
718 offsets[0], offsets[1]);
2715c0b8
BV
719
720 /* Channel 2 */
933defaa 721 ch_levels = devc->channel_levels[1][devc->voltage[1]];
269971dd 722 offset = (ch_levels[1] - ch_levels[0]) * devc->voffset_ch2 + ch_levels[0];
2715c0b8
BV
723 offsets[2] = (offset >> 8) | 0x20;
724 offsets[3] = offset & 0xff;
e98b7f1b
UH
725 sr_dbg("CH2 offset: %3.2f (%.2x%.2x).", devc->voffset_ch2,
726 offsets[2], offsets[3]);
2715c0b8
BV
727
728 /* Trigger */
269971dd 729 offset = MAX_VERT_TRIGGER * devc->voffset_trigger;
2715c0b8
BV
730 offsets[4] = (offset >> 8) | 0x20;
731 offsets[5] = offset & 0xff;
e98b7f1b 732 sr_dbg("Trigger offset: %3.2f (%.2x%.2x).", devc->voffset_trigger,
2715c0b8 733 offsets[4], offsets[5]);
3b533202 734
c118080b 735 if ((ret = libusb_control_transfer(usb->devhdl,
3b533202
BV
736 LIBUSB_REQUEST_TYPE_VENDOR, CTRL_SETOFFSET,
737 0, 0, offsets, sizeof(offsets), 100)) != sizeof(offsets)) {
1740429d 738 sr_err("Failed to set offsets: %s.", libusb_error_name(ret));
3b533202
BV
739 return SR_ERR;
740 }
e98b7f1b 741 sr_dbg("Sent CTRL_SETOFFSET.");
3b533202
BV
742
743 return SR_OK;
744}
745
c118080b 746SR_PRIV int dso_enable_trigger(const struct sr_dev_inst *sdi)
3b533202 747{
c118080b 748 struct sr_usb_dev_inst *usb;
3b533202
BV
749 int ret, tmp;
750 uint8_t cmdstring[2];
751
e98b7f1b 752 sr_dbg("Sending CMD_ENABLE_TRIGGER.");
3b533202 753
c118080b
BV
754 usb = sdi->conn;
755
3b533202
BV
756 memset(cmdstring, 0, sizeof(cmdstring));
757 cmdstring[0] = CMD_ENABLE_TRIGGER;
758 cmdstring[1] = 0x00;
759
c118080b 760 if (send_begin(sdi) != SR_OK)
3b533202
BV
761 return SR_ERR;
762
c118080b
BV
763 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
764 cmdstring, sizeof(cmdstring), &tmp, 100)) != 0) {
1740429d 765 sr_err("Failed to enable trigger: %s.", libusb_error_name(ret));
3b533202
BV
766 return SR_ERR;
767 }
768
769 return SR_OK;
770}
771
c118080b 772SR_PRIV int dso_force_trigger(const struct sr_dev_inst *sdi)
3b533202 773{
c118080b 774 struct sr_usb_dev_inst *usb;
3b533202
BV
775 int ret, tmp;
776 uint8_t cmdstring[2];
777
e98b7f1b 778 sr_dbg("Sending CMD_FORCE_TRIGGER.");
3b533202 779
c118080b
BV
780 usb = sdi->conn;
781
3b533202
BV
782 memset(cmdstring, 0, sizeof(cmdstring));
783 cmdstring[0] = CMD_FORCE_TRIGGER;
784 cmdstring[1] = 0x00;
785
c118080b 786 if (send_begin(sdi) != SR_OK)
3b533202
BV
787 return SR_ERR;
788
c118080b
BV
789 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_OUT,
790 cmdstring, sizeof(cmdstring), &tmp, 100)) != 0) {
1740429d 791 sr_err("Failed to force trigger: %s.", libusb_error_name(ret));
3b533202
BV
792 return SR_ERR;
793 }
794
795 return SR_OK;
796}
797
c118080b 798SR_PRIV int dso_init(const struct sr_dev_inst *sdi)
3b533202 799{
e98b7f1b 800 sr_dbg("Initializing DSO.");
3b533202 801
c118080b 802 if (get_channel_offsets(sdi) != SR_OK)
3b533202
BV
803 return SR_ERR;
804
c118080b 805 if (dso_set_trigger_samplerate(sdi) != SR_OK)
3b533202
BV
806 return SR_ERR;
807
c118080b 808 if (dso_set_filters(sdi) != SR_OK)
3b533202
BV
809 return SR_ERR;
810
c118080b 811 if (dso_set_voltage(sdi) != SR_OK)
3b533202
BV
812 return SR_ERR;
813
c118080b 814 if (dso_set_relays(sdi) != SR_OK)
3b533202
BV
815 return SR_ERR;
816
c118080b 817 if (dso_set_voffsets(sdi) != SR_OK)
3b533202
BV
818 return SR_ERR;
819
c118080b 820 if (dso_enable_trigger(sdi) != SR_OK)
3b533202
BV
821 return SR_ERR;
822
3b533202
BV
823 return SR_OK;
824}
825
c118080b
BV
826SR_PRIV int dso_get_capturestate(const struct sr_dev_inst *sdi,
827 uint8_t *capturestate, uint32_t *trigger_offset)
3b533202 828{
c118080b 829 struct sr_usb_dev_inst *usb;
e05a174b
BV
830 int ret, tmp, i;
831 unsigned int bitvalue, toff;
3b533202
BV
832 uint8_t cmdstring[2], inbuf[512];
833
e98b7f1b 834 sr_dbg("Sending CMD_GET_CAPTURESTATE.");
3b533202 835
c118080b
BV
836 usb = sdi->conn;
837
3b533202
BV
838 cmdstring[0] = CMD_GET_CAPTURESTATE;
839 cmdstring[1] = 0;
840
c118080b 841 if ((ret = send_bulkcmd(sdi, cmdstring, sizeof(cmdstring))) != SR_OK) {
d4928d71
PS
842 sr_dbg("Failed to send get_capturestate command: %s.",
843 libusb_error_name(ret));
6e6eeff4 844 return SR_ERR;
3b533202
BV
845 }
846
c118080b 847 if ((ret = libusb_bulk_transfer(usb->devhdl, DSO_EP_IN,
3b533202 848 inbuf, 512, &tmp, 100)) != 0) {
d4928d71
PS
849 sr_dbg("Failed to get capturestate: %s.",
850 libusb_error_name(ret));
6e6eeff4 851 return SR_ERR;
3b533202 852 }
6e6eeff4 853 *capturestate = inbuf[0];
e05a174b
BV
854 toff = (inbuf[1] << 16) | (inbuf[3] << 8) | inbuf[2];
855
e98b7f1b
UH
856 /*
857 * This conversion comes from the openhantek project.
e05a174b
BV
858 * Each set bit in the 24-bit value inverts all bits with a lower
859 * value. No idea why the device reports the trigger point this way.
860 */
861 bitvalue = 1;
862 for (i = 0; i < 24; i++) {
e749a8cb 863 /* Each set bit inverts all bits with a lower value. */
0c5f2abc 864 if (toff & bitvalue)
e05a174b
BV
865 toff ^= bitvalue - 1;
866 bitvalue <<= 1;
867 }
868 *trigger_offset = toff;
3b533202 869
6e6eeff4 870 return SR_OK;
3b533202
BV
871}
872
c118080b 873SR_PRIV int dso_capture_start(const struct sr_dev_inst *sdi)
3b533202
BV
874{
875 int ret;
876 uint8_t cmdstring[2];
877
e98b7f1b 878 sr_dbg("Sending CMD_CAPTURE_START.");
3b533202
BV
879
880 cmdstring[0] = CMD_CAPTURE_START;
881 cmdstring[1] = 0;
882
c118080b 883 if ((ret = send_bulkcmd(sdi, cmdstring, sizeof(cmdstring))) != SR_OK) {
d4928d71
PS
884 sr_err("Failed to send capture_start command: %s.",
885 libusb_error_name(ret));
3b533202
BV
886 return SR_ERR;
887 }
888
889 return SR_OK;
890}
891
69e19dd7
BV
892SR_PRIV int dso_get_channeldata(const struct sr_dev_inst *sdi,
893 libusb_transfer_cb_fn cb)
3b533202 894{
69e19dd7 895 struct dev_context *devc;
c118080b 896 struct sr_usb_dev_inst *usb;
3b533202
BV
897 struct libusb_transfer *transfer;
898 int num_transfers, ret, i;
899 uint8_t cmdstring[2];
900 unsigned char *buf;
901
e98b7f1b 902 sr_dbg("Sending CMD_GET_CHANNELDATA.");
3b533202 903
c118080b
BV
904 devc = sdi->priv;
905 usb = sdi->conn;
906
3b533202
BV
907 cmdstring[0] = CMD_GET_CHANNELDATA;
908 cmdstring[1] = 0;
909
c118080b 910 if ((ret = send_bulkcmd(sdi, cmdstring, sizeof(cmdstring))) != SR_OK) {
d4928d71
PS
911 sr_err("Failed to get channel data: %s.",
912 libusb_error_name(ret));
3b533202
BV
913 return SR_ERR;
914 }
915
e98b7f1b
UH
916 /* TODO: DSO-2xxx only. */
917 num_transfers = devc->framesize *
918 sizeof(unsigned short) / devc->epin_maxpacketsize;
919 sr_dbg("Queueing up %d transfers.", num_transfers);
3b533202 920 for (i = 0; i < num_transfers; i++) {
269971dd 921 if (!(buf = g_try_malloc(devc->epin_maxpacketsize))) {
e98b7f1b 922 sr_err("Failed to malloc USB endpoint buffer.");
3b533202
BV
923 return SR_ERR_MALLOC;
924 }
925 transfer = libusb_alloc_transfer(0);
c118080b 926 libusb_fill_bulk_transfer(transfer, usb->devhdl, DSO_EP_IN, buf,
69e19dd7 927 devc->epin_maxpacketsize, cb, (void *)sdi, 40);
3b533202 928 if ((ret = libusb_submit_transfer(transfer)) != 0) {
d4928d71
PS
929 sr_err("Failed to submit transfer: %s.",
930 libusb_error_name(ret));
3b533202
BV
931 /* TODO: Free them all. */
932 libusb_free_transfer(transfer);
933 g_free(buf);
934 return SR_ERR;
935 }
936 }
937
938 return SR_OK;
939}