]> sigrok.org Git - libsigrok.git/blame - src/hardware/hantek-6xxx/api.c
hantek-6xxx: add coupling support
[libsigrok.git] / src / hardware / hantek-6xxx / api.c
CommitLineData
6c6bc80a
C
1/*
2 * This file is part of the libsigrok project.
3 *
f2a66a8e 4 * Copyright (C) 2015 Christer Ekholm <christerekholm@gmail.com>
6c6bc80a
C
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <config.h>
21#include "protocol.h"
22
f2a66a8e
C
23/* Max time in ms before we want to check on USB events */
24#define TICK 200
25
26#define RANGE(ch) (((float)vdivs[devc->voltage[ch]][0] / vdivs[devc->voltage[ch]][1]) * VDIV_MULTIPLIER)
27
28static const uint32_t scanopts[] = {
29 SR_CONF_CONN,
30};
31
32static const uint32_t drvopts[] = {
33 SR_CONF_OSCILLOSCOPE,
34};
35
36static const uint32_t devopts[] = {
37 SR_CONF_CONN | SR_CONF_GET,
38 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
39 SR_CONF_NUM_VDIV | SR_CONF_GET,
40 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
41 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
42};
43
44static const uint32_t devopts_cg[] = {
45 SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
cc5ebc8a 46 SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
f2a66a8e
C
47};
48
49static const char *channel_names[] = {
50 "CH1", "CH2",
51};
52
cc5ebc8a
BL
53static const char *coupling[] = {
54 "AC", "DC",
55};
56
f2a66a8e
C
57static const struct hantek_6xxx_profile dev_profiles[] = {
58 {
59 0x04b4, 0x6022, 0x04b5, 0x6022,
60 "Hantek", "6022BE", "hantek-6022be.fw",
61 },
692c3b22
BL
62 {
63 0x8102, 0x8102, 0x04b5, 0x6022,
64 "Sainsmart", "DDS120", "sainsmart-dds120.fw",
65 },
f2a66a8e
C
66 ALL_ZERO
67};
68
69static const uint64_t samplerates[] = {
70 SAMPLERATE_VALUES
71};
72
73static const uint64_t vdivs[][2] = {
74 VDIV_VALUES
75};
76
6c6bc80a
C
77SR_PRIV struct sr_dev_driver hantek_6xxx_driver_info;
78
f2a66a8e
C
79static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount);
80
81static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
82
83static struct sr_dev_inst *hantek_6xxx_dev_new(const struct hantek_6xxx_profile *prof)
84{
85 struct sr_dev_inst *sdi;
86 struct sr_channel *ch;
87 struct sr_channel_group *cg;
88 struct drv_context *drvc;
89 struct dev_context *devc;
90 unsigned int i;
91
92 sdi = g_malloc0(sizeof(struct sr_dev_inst));
93 sdi->status = SR_ST_INITIALIZING;
94 sdi->vendor = g_strdup(prof->vendor);
95 sdi->model = g_strdup(prof->model);
96 sdi->driver = &hantek_6xxx_driver_info;
97
98 for (i = 0; i < ARRAY_SIZE(channel_names); i++) {
99 ch = sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
100 cg = g_malloc0(sizeof(struct sr_channel_group));
101 cg->name = g_strdup(channel_names[i]);
102 cg->channels = g_slist_append(cg->channels, ch);
103 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
104 }
105
106 devc = g_malloc0(sizeof(struct dev_context));
107
108 for (i = 0; i < NUM_CHANNELS; i++) {
109 devc->ch_enabled[i] = TRUE;
110 devc->voltage[i] = DEFAULT_VOLTAGE;
cc5ebc8a 111 devc->coupling[i] = DEFAULT_COUPLING;
f2a66a8e
C
112 }
113
114 devc->sample_buf = NULL;
115 devc->sample_buf_write = 0;
116 devc->sample_buf_size = 0;
117
118 devc->profile = prof;
119 devc->dev_state = IDLE;
120 devc->samplerate = DEFAULT_SAMPLERATE;
121
122 sdi->priv = devc;
123 drvc = sdi->driver->context;
124 drvc->instances = g_slist_append(drvc->instances, sdi);
125
126 return sdi;
127}
128
129static int configure_channels(const struct sr_dev_inst *sdi)
130{
131 struct dev_context *devc;
132 const GSList *l;
133 int p;
134 struct sr_channel *ch;
135 devc = sdi->priv;
136
137 g_slist_free(devc->enabled_channels);
138 devc->enabled_channels = NULL;
139 memset(devc->ch_enabled, 0, sizeof(devc->ch_enabled));
140
141 for (l = sdi->channels, p = 0; l; l = l->next, p++) {
142 ch = l->data;
143 if (p < NUM_CHANNELS) {
144 devc->ch_enabled[p] = ch->enabled;
145 devc->enabled_channels = g_slist_append(devc->enabled_channels, ch);
146 }
147 }
148
149 return SR_OK;
150}
151
152static void clear_dev_context(void *priv)
153{
154 struct dev_context *devc;
155
156 devc = priv;
157 g_slist_free(devc->enabled_channels);
158}
159
160static int dev_clear(const struct sr_dev_driver *di)
161{
162 return std_dev_clear(di, clear_dev_context);
163}
164
6c6bc80a
C
165static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
166{
167 return std_init(sr_ctx, di, LOG_PREFIX);
168}
169
170static GSList *scan(struct sr_dev_driver *di, GSList *options)
171{
172 struct drv_context *drvc;
f2a66a8e
C
173 struct dev_context *devc;
174 struct sr_dev_inst *sdi;
175 struct sr_usb_dev_inst *usb;
176 struct sr_config *src;
177 const struct hantek_6xxx_profile *prof;
178 GSList *l, *devices, *conn_devices;
179 struct libusb_device_descriptor des;
180 libusb_device **devlist;
181 int i, j;
182 const char *conn;
183 char connection_id[64];
6c6bc80a 184
6c6bc80a 185 drvc = di->context;
6c6bc80a 186
f2a66a8e
C
187 devices = 0;
188
189 conn = NULL;
190 for (l = options; l; l = l->next) {
191 src = l->data;
192 if (src->key == SR_CONF_CONN) {
193 conn = g_variant_get_string(src->data, NULL);
194 break;
195 }
196 }
197 if (conn)
198 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
199 else
200 conn_devices = NULL;
201
202 /* Find all Hantek 60xx devices and upload firmware to all of them. */
203 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
204 for (i = 0; devlist[i]; i++) {
205 if (conn) {
206 usb = NULL;
207 for (l = conn_devices; l; l = l->next) {
208 usb = l->data;
209 if (usb->bus == libusb_get_bus_number(devlist[i])
210 && usb->address == libusb_get_device_address(devlist[i]))
211 break;
212 }
213 if (!l)
214 /* This device matched none of the ones that
215 * matched the conn specification. */
216 continue;
217 }
218
c940b7a3 219 libusb_get_device_descriptor(devlist[i], &des);
f2a66a8e
C
220
221 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
222
223 prof = NULL;
224 for (j = 0; j < (int)ARRAY_SIZE(dev_profiles); j++) {
225 if (des.idVendor == dev_profiles[j].orig_vid
226 && des.idProduct == dev_profiles[j].orig_pid) {
227 /* Device matches the pre-firmware profile. */
228 prof = &dev_profiles[j];
229 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
230 sdi = hantek_6xxx_dev_new(prof);
231 sdi->connection_id = g_strdup(connection_id);
232 devices = g_slist_append(devices, sdi);
233 devc = sdi->priv;
234 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
235 USB_CONFIGURATION, prof->firmware) == SR_OK)
236 /* Remember when the firmware on this device was updated. */
237 devc->fw_updated = g_get_monotonic_time();
238 else
239 sr_err("Firmware upload failed.");
240 /* Dummy USB address of 0xff will get overwritten later. */
241 sdi->conn = sr_usb_dev_inst_new(
242 libusb_get_bus_number(devlist[i]), 0xff, NULL);
243 break;
244 } else if (des.idVendor == dev_profiles[j].fw_vid
245 && des.idProduct == dev_profiles[j].fw_pid) {
246 /* Device matches the post-firmware profile. */
247 prof = &dev_profiles[j];
248 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
249 sdi = hantek_6xxx_dev_new(prof);
250 sdi->connection_id = g_strdup(connection_id);
251 sdi->status = SR_ST_INACTIVE;
252 devices = g_slist_append(devices, sdi);
253 sdi->inst_type = SR_INST_USB;
254 sdi->conn = sr_usb_dev_inst_new(
255 libusb_get_bus_number(devlist[i]),
256 libusb_get_device_address(devlist[i]), NULL);
257 break;
258 }
259 }
260 if (!prof)
261 /* Not a supported VID/PID. */
262 continue;
263 }
264 libusb_free_device_list(devlist, 1);
6c6bc80a
C
265
266 return devices;
267}
268
269static GSList *dev_list(const struct sr_dev_driver *di)
270{
271 return ((struct drv_context *)(di->context))->instances;
272}
273
6c6bc80a
C
274static int dev_open(struct sr_dev_inst *sdi)
275{
f2a66a8e
C
276 struct dev_context *devc;
277 struct sr_usb_dev_inst *usb;
278 int64_t timediff_us, timediff_ms;
279 int err;
280
281 devc = sdi->priv;
282 usb = sdi->conn;
283
284 /*
285 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
286 * for the FX2 to renumerate.
287 */
288 err = SR_ERR;
289 if (devc->fw_updated > 0) {
290 sr_info("Waiting for device to reset.");
291 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
292 g_usleep(300 * 1000);
293 timediff_ms = 0;
294 while (timediff_ms < MAX_RENUM_DELAY_MS) {
295 if ((err = hantek_6xxx_open(sdi)) == SR_OK)
296 break;
297 g_usleep(100 * 1000);
298 timediff_us = g_get_monotonic_time() - devc->fw_updated;
299 timediff_ms = timediff_us / 1000;
300 sr_spew("Waited %" PRIi64 " ms.", timediff_ms);
301 }
302 if (timediff_ms < MAX_RENUM_DELAY_MS)
303 sr_info("Device came back after %"PRIu64" ms.", timediff_ms);
304 } else {
305 err = hantek_6xxx_open(sdi);
306 }
6c6bc80a 307
f2a66a8e
C
308 if (err != SR_OK) {
309 sr_err("Unable to open device.");
310 return SR_ERR;
311 }
6c6bc80a 312
f2a66a8e
C
313 err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
314 if (err != 0) {
315 sr_err("Unable to claim interface: %s.",
316 libusb_error_name(err));
317 return SR_ERR;
318 }
6c6bc80a
C
319
320 return SR_OK;
321}
322
323static int dev_close(struct sr_dev_inst *sdi)
324{
f2a66a8e 325 hantek_6xxx_close(sdi);
6c6bc80a
C
326
327 return SR_OK;
328}
329
330static int cleanup(const struct sr_dev_driver *di)
331{
f2a66a8e 332 return dev_clear(di);
6c6bc80a
C
333}
334
335static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
336 const struct sr_channel_group *cg)
337{
f2a66a8e
C
338 struct dev_context *devc;
339 struct sr_usb_dev_inst *usb;
340 char str[128];
341 const uint64_t *vdiv;
342 int ch_idx;
6c6bc80a 343
6c6bc80a 344 switch (key) {
f2a66a8e
C
345 case SR_CONF_NUM_VDIV:
346 *data = g_variant_new_int32(ARRAY_SIZE(vdivs));
347 break;
6c6bc80a
C
348 }
349
f2a66a8e
C
350 if (!sdi)
351 return SR_ERR_ARG;
352
353 devc = sdi->priv;
354 if (!cg) {
355 switch (key) {
356 case SR_CONF_SAMPLERATE:
357 *data = g_variant_new_uint64(devc->samplerate);
358 break;
359 case SR_CONF_LIMIT_MSEC:
360 *data = g_variant_new_uint64(devc->limit_msec);
361 break;
362 case SR_CONF_LIMIT_SAMPLES:
363 *data = g_variant_new_uint64(devc->limit_samples);
364 break;
365 case SR_CONF_CONN:
366 if (!sdi->conn)
367 return SR_ERR_ARG;
368 usb = sdi->conn;
369 if (usb->address == 255)
370 /* Device still needs to re-enumerate after firmware
371 * upload, so we don't know its (future) address. */
372 return SR_ERR;
373 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
374 *data = g_variant_new_string(str);
375 break;
376 default:
377 return SR_ERR_NA;
378 }
379 } else {
380 if (sdi->channel_groups->data == cg)
381 ch_idx = 0;
382 else if (sdi->channel_groups->next->data == cg)
383 ch_idx = 1;
384 else
385 return SR_ERR_ARG;
386 switch (key) {
387 case SR_CONF_VDIV:
388 vdiv = vdivs[devc->voltage[ch_idx]];
389 *data = g_variant_new("(tt)", vdiv[0], vdiv[1]);
390 break;
cc5ebc8a
BL
391 case SR_CONF_COUPLING:
392 *data = g_variant_new_string(coupling[devc->coupling[ch_idx]]);
393 break;
f2a66a8e
C
394 }
395 }
396
397 return SR_OK;
6c6bc80a
C
398}
399
400static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
401 const struct sr_channel_group *cg)
402{
f2a66a8e
C
403 struct dev_context *devc;
404 uint64_t p, q;
405 int tmp_int, ch_idx, ret;
406 unsigned int i;
cc5ebc8a 407 const char *tmp_str;
6c6bc80a
C
408
409 if (sdi->status != SR_ST_ACTIVE)
410 return SR_ERR_DEV_CLOSED;
411
412 ret = SR_OK;
f2a66a8e
C
413 devc = sdi->priv;
414 if (!cg) {
415 switch (key) {
416 case SR_CONF_SAMPLERATE:
417 devc->samplerate = g_variant_get_uint64(data);
418 hantek_6xxx_update_samplerate(sdi);
419 break;
420 case SR_CONF_LIMIT_MSEC:
421 devc->limit_msec = g_variant_get_uint64(data);
422 break;
423 case SR_CONF_LIMIT_SAMPLES:
424 devc->limit_samples = g_variant_get_uint64(data);
425 break;
426 default:
427 ret = SR_ERR_NA;
428 break;
429 }
430 } else {
431 if (sdi->channel_groups->data == cg)
432 ch_idx = 0;
433 else if (sdi->channel_groups->next->data == cg)
434 ch_idx = 1;
435 else
436 return SR_ERR_ARG;
437 switch (key) {
438 case SR_CONF_VDIV:
439 g_variant_get(data, "(tt)", &p, &q);
440 tmp_int = -1;
441 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
442 if (vdivs[i][0] == p && vdivs[i][1] == q) {
443 tmp_int = i;
444 break;
445 }
446 }
447 if (tmp_int >= 0) {
448 devc->voltage[ch_idx] = tmp_int;
449 hantek_6xxx_update_vdiv(sdi);
450 } else
451 ret = SR_ERR_ARG;
452 break;
cc5ebc8a
BL
453 case SR_CONF_COUPLING:
454 tmp_str = g_variant_get_string(data, NULL);
455 for (i = 0; coupling[i]; i++) {
456 if (!strcmp(tmp_str, coupling[i])) {
457 devc->coupling[ch_idx] = i;
458 break;
459 }
460 }
461 if (coupling[i] == 0)
462 ret = SR_ERR_ARG;
463 break;
f2a66a8e
C
464 default:
465 ret = SR_ERR_NA;
466 break;
467 }
6c6bc80a
C
468 }
469
470 return ret;
471}
472
473static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
474 const struct sr_channel_group *cg)
475{
f2a66a8e
C
476 GVariant *tuple, *rational[2];
477 GVariantBuilder gvb;
478 unsigned int i;
479 GVariant *gvar;
480
481 if (key == SR_CONF_SCAN_OPTIONS) {
482 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
483 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
484 return SR_OK;
485 } else if (key == SR_CONF_DEVICE_OPTIONS && !sdi) {
486 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
487 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
488 return SR_OK;
489 }
6c6bc80a 490
f2a66a8e
C
491 if (!sdi)
492 return SR_ERR_ARG;
493
494 if (!cg) {
495 switch (key) {
496 case SR_CONF_DEVICE_OPTIONS:
497 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
498 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
499 break;
500 case SR_CONF_SAMPLERATE:
501 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
502 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
503 samplerates, ARRAY_SIZE(samplerates),
504 sizeof(uint64_t));
505 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
506 *data = g_variant_builder_end(&gvb);
507 break;
508 default:
509 return SR_ERR_NA;
510 }
511 } else {
512 switch (key) {
513 case SR_CONF_DEVICE_OPTIONS:
514 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
515 devopts_cg, ARRAY_SIZE(devopts_cg), sizeof(uint32_t));
516 break;
cc5ebc8a
BL
517 case SR_CONF_COUPLING:
518 *data = g_variant_new_strv(coupling, ARRAY_SIZE(coupling));
519 break;
f2a66a8e
C
520 case SR_CONF_VDIV:
521 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
522 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
523 rational[0] = g_variant_new_uint64(vdivs[i][0]);
524 rational[1] = g_variant_new_uint64(vdivs[i][1]);
525 tuple = g_variant_new_tuple(rational, 2);
526 g_variant_builder_add_value(&gvb, tuple);
527 }
528 *data = g_variant_builder_end(&gvb);
529 break;
530 default:
531 return SR_ERR_NA;
532 }
533 }
6c6bc80a 534
f2a66a8e
C
535 return SR_OK;
536}
537
538/* Minimise data amount for limit_samples and limit_msec limits. */
539static uint32_t data_amount(const struct sr_dev_inst *sdi)
540{
541 struct dev_context *devc = sdi->priv;
542 uint32_t data_left;
543 int32_t time_left;
544
545 if (devc->limit_msec) {
546 time_left = devc->limit_msec - (g_get_monotonic_time() - devc->aq_started) / 1000;
547 data_left = devc->samplerate * MAX(time_left, 0) * NUM_CHANNELS / 1000;
548 } else if (devc->limit_samples) {
549 data_left = (devc->limit_samples - devc->samp_received) * NUM_CHANNELS;
550 } else {
551 data_left = devc->samplerate * NUM_CHANNELS;
552 }
553
554 data_left += MIN_PACKET_SIZE; /* Driver does not handle small buffers. */
555
556 sr_spew("data_amount %u", data_left);
557
558 return data_left;
559}
560
561static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
562 int num_samples)
563{
564 struct sr_datafeed_packet packet;
565 struct sr_datafeed_analog_old analog;
566 struct dev_context *devc = sdi->priv;
567 int num_channels, data_offset, i;
568
569 const float ch1_bit = RANGE(0) / 255;
570 const float ch2_bit = RANGE(1) / 255;
571 const float ch1_center = RANGE(0) / 2;
572 const float ch2_center = RANGE(1) / 2;
573
574 const gboolean ch1_ena = !!devc->ch_enabled[0];
575 const gboolean ch2_ena = !!devc->ch_enabled[1];
576
577 num_channels = (ch1_ena && ch2_ena) ? 2 : 1;
578 packet.type = SR_DF_ANALOG_OLD;
579 packet.payload = &analog;
580
581 analog.channels = devc->enabled_channels;
582 analog.num_samples = num_samples;
583 analog.mq = SR_MQ_VOLTAGE;
584 analog.unit = SR_UNIT_VOLT;
585 analog.mqflags = 0;
586
587 analog.data = g_try_malloc(analog.num_samples * sizeof(float) * num_channels);
588 if (!analog.data) {
589 sr_err("Analog data buffer malloc failed.");
590 devc->dev_state = STOPPING;
591 return;
592 }
593
594 data_offset = 0;
595 for (i = 0; i < num_samples; i++) {
596 /*
597 * The device always sends data for both channels. If a channel
598 * is disabled, it contains a copy of the enabled channel's
599 * data. However, we only send the requested channels to
600 * the bus.
601 *
602 * Voltage values are encoded as a value 0-255, where the
603 * value is a point in the range represented by the vdiv
604 * setting. There are 10 vertical divs, so e.g. 500mV/div
605 * represents 5V peak-to-peak where 0 = -2.5V and 255 = +2.5V.
606 */
607 if (ch1_ena)
608 analog.data[data_offset++] = (ch1_bit * *(buf + i * 2) - ch1_center);
609 if (ch2_ena)
610 analog.data[data_offset++] = (ch2_bit * *(buf + i * 2 + 1) - ch2_center);
611 }
612
613 sr_session_send(devc->cb_data, &packet);
614 g_free(analog.data);
615}
616
617static void send_data(struct sr_dev_inst *sdi, struct libusb_transfer *buf[], uint64_t samples)
618{
619 int i = 0;
620 uint64_t send = 0;
621 uint32_t chunk;
622
623 while (send < samples) {
624 chunk = MIN(samples - send, (uint64_t)(buf[i]->actual_length / NUM_CHANNELS));
625 send += chunk;
626 send_chunk(sdi, buf[i]->buffer, chunk);
627
628 /*
629 * Everything in this transfer was either copied to the buffer
630 * or sent to the session bus.
631 */
632 g_free(buf[i]->buffer);
633 libusb_free_transfer(buf[i]);
634 i++;
635 }
636}
637
638/*
639 * Called by libusb (as triggered by handle_event()) when a transfer comes in.
640 * Only channel data comes in asynchronously, and all transfers for this are
641 * queued up beforehand, so this just needs to chuck the incoming data onto
642 * the libsigrok session bus.
643 */
644static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
645{
646 struct sr_dev_inst *sdi;
647 struct dev_context *devc;
648
649 sdi = transfer->user_data;
650 devc = sdi->priv;
651
652 if (devc->dev_state == FLUSH) {
653 devc->dev_state = CAPTURE;
654 devc->aq_started = g_get_monotonic_time();
655 read_channel(sdi, data_amount(sdi));
656 return;
657 }
658
659 if (devc->dev_state != CAPTURE)
660 return;
661
662 if (!devc->sample_buf) {
663 devc->sample_buf_size = 10;
664 devc->sample_buf = g_try_malloc(devc->sample_buf_size * sizeof(transfer));
665 devc->sample_buf_write = 0;
666 }
667
668 if (devc->sample_buf_write >= devc->sample_buf_size) {
669 devc->sample_buf_size += 10;
670 devc->sample_buf = g_try_realloc(devc->sample_buf,
671 devc->sample_buf_size * sizeof(transfer));
672 if (!devc->sample_buf) {
673 sr_err("Sample buffer malloc failed.");
674 devc->dev_state = STOPPING;
675 return;
676 }
6c6bc80a
C
677 }
678
f2a66a8e 679 devc->sample_buf[devc->sample_buf_write++] = transfer;
10e0d374 680 devc->samp_received += transfer->actual_length / NUM_CHANNELS;
f2a66a8e
C
681
682 sr_spew("receive_transfer(): calculated samplerate == %" PRIu64 "ks/s",
683 (uint64_t)(transfer->actual_length * 1000 /
684 (g_get_monotonic_time() - devc->read_start_ts + 1) /
685 NUM_CHANNELS));
686
687 sr_spew("receive_transfer(): status %s received %d bytes.",
688 libusb_error_name(transfer->status), transfer->actual_length);
689
690 if (transfer->actual_length == 0)
691 /* Nothing to send to the bus. */
692 return;
693
694 if (devc->limit_samples && devc->samp_received >= devc->limit_samples) {
695 sr_info("Requested number of samples reached, stopping. %"
696 PRIu64 " <= %" PRIu64, devc->limit_samples,
697 devc->samp_received);
698 send_data(sdi, devc->sample_buf, devc->limit_samples);
699 sdi->driver->dev_acquisition_stop(sdi, NULL);
700 } else if (devc->limit_msec && (g_get_monotonic_time() -
701 devc->aq_started) / 1000 >= devc->limit_msec) {
702 sr_info("Requested time limit reached, stopping. %d <= %d",
703 (uint32_t)devc->limit_msec,
704 (uint32_t)(g_get_monotonic_time() - devc->aq_started) / 1000);
705 send_data(sdi, devc->sample_buf, devc->samp_received);
706 g_free(devc->sample_buf);
707 devc->sample_buf = NULL;
708 sdi->driver->dev_acquisition_stop(sdi, NULL);
709 } else {
710 read_channel(sdi, data_amount(sdi));
711 }
712}
713
714static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount)
715{
716 int ret;
717 struct dev_context *devc;
718
719 devc = sdi->priv;
720
721 amount = MIN(amount, MAX_PACKET_SIZE);
722 ret = hantek_6xxx_get_channeldata(sdi, receive_transfer, amount);
723 devc->read_start_ts = g_get_monotonic_time();
724 devc->read_data_amount = amount;
725
6c6bc80a
C
726 return ret;
727}
728
f2a66a8e 729static int handle_event(int fd, int revents, void *cb_data)
6c6bc80a 730{
f2a66a8e
C
731 const struct sr_dev_inst *sdi;
732 struct sr_datafeed_packet packet;
733 struct timeval tv;
734 struct sr_dev_driver *di;
735 struct dev_context *devc;
736 struct drv_context *drvc;
737
738 (void)fd;
739 (void)revents;
740
741 sdi = cb_data;
742 di = sdi->driver;
743 drvc = di->context;
744 devc = sdi->priv;
745
746 /* Always handle pending libusb events. */
747 tv.tv_sec = tv.tv_usec = 0;
748 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
749
750 if (devc->dev_state == STOPPING) {
751 /* We've been told to wind up the acquisition. */
752 sr_dbg("Stopping acquisition.");
753
754 hantek_6xxx_stop_data_collecting(sdi);
755 /*
756 * TODO: Doesn't really cancel pending transfers so they might
757 * come in after SR_DF_END is sent.
758 */
759 usb_source_remove(sdi->session, drvc->sr_ctx);
760
761 packet.type = SR_DF_END;
762 packet.payload = NULL;
763 sr_session_send(sdi, &packet);
764
765 devc->dev_state = IDLE;
766
767 return TRUE;
768 }
769
770 return TRUE;
771}
772
773static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
774{
775 struct dev_context *devc;
776 struct sr_dev_driver *di = sdi->driver;
777 struct drv_context *drvc = di->context;
6c6bc80a
C
778
779 if (sdi->status != SR_ST_ACTIVE)
780 return SR_ERR_DEV_CLOSED;
781
f2a66a8e
C
782 devc = sdi->priv;
783 devc->cb_data = cb_data;
784
785 if (configure_channels(sdi) != SR_OK) {
786 sr_err("Failed to configure channels.");
787 return SR_ERR;
788 }
789
790 if (hantek_6xxx_init(sdi) != SR_OK)
791 return SR_ERR;
792
793 /* Send header packet to the session bus. */
794 std_session_send_df_header(cb_data, LOG_PREFIX);
795
796 devc->samp_received = 0;
797 devc->dev_state = FLUSH;
798
799 usb_source_add(sdi->session, drvc->sr_ctx, TICK,
800 handle_event, (void *)sdi);
801
802 hantek_6xxx_start_data_collecting(sdi);
803
804 read_channel(sdi, FLUSH_PACKET_SIZE);
6c6bc80a
C
805
806 return SR_OK;
807}
808
809static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
810{
f2a66a8e
C
811 struct dev_context *devc;
812
6c6bc80a
C
813 (void)cb_data;
814
815 if (sdi->status != SR_ST_ACTIVE)
f2a66a8e
C
816 return SR_ERR;
817
818 devc = sdi->priv;
819 devc->dev_state = STOPPING;
6c6bc80a 820
f2a66a8e 821 g_free(devc->sample_buf); devc->sample_buf = NULL;
6c6bc80a
C
822
823 return SR_OK;
824}
825
826SR_PRIV struct sr_dev_driver hantek_6xxx_driver_info = {
827 .name = "hantek-6xxx",
828 .longname = "Hantek 6xxx",
829 .api_version = 1,
830 .init = init,
831 .cleanup = cleanup,
832 .scan = scan,
833 .dev_list = dev_list,
834 .dev_clear = dev_clear,
835 .config_get = config_get,
836 .config_set = config_set,
837 .config_list = config_list,
838 .dev_open = dev_open,
839 .dev_close = dev_close,
840 .dev_acquisition_start = dev_acquisition_start,
841 .dev_acquisition_stop = dev_acquisition_stop,
842 .context = NULL,
843};