]> sigrok.org Git - libsigrok.git/blame - src/hardware/hantek-6xxx/api.c
Consistently use the _WIN32 #define.
[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>
1e1fdbc9 21#include <math.h>
6c6bc80a
C
22#include "protocol.h"
23
f2a66a8e
C
24/* Max time in ms before we want to check on USB events */
25#define TICK 200
26
27#define RANGE(ch) (((float)vdivs[devc->voltage[ch]][0] / vdivs[devc->voltage[ch]][1]) * VDIV_MULTIPLIER)
28
29static const uint32_t scanopts[] = {
30 SR_CONF_CONN,
31};
32
33static const uint32_t drvopts[] = {
34 SR_CONF_OSCILLOSCOPE,
35};
36
37static const uint32_t devopts[] = {
38 SR_CONF_CONN | SR_CONF_GET,
f2a66a8e
C
39 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
40 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
86621306
UH
41 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
42 SR_CONF_NUM_VDIV | SR_CONF_GET,
f2a66a8e
C
43};
44
45static const uint32_t devopts_cg[] = {
46 SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
cc5ebc8a 47 SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
f2a66a8e
C
48};
49
50static const char *channel_names[] = {
51 "CH1", "CH2",
52};
53
5eb4ba29 54static const char *dc_coupling[] = {
64f628bf 55 "DC",
5eb4ba29
BL
56};
57
58static const char *acdc_coupling[] = {
cc5ebc8a
BL
59 "AC", "DC",
60};
61
f2a66a8e
C
62static const struct hantek_6xxx_profile dev_profiles[] = {
63 {
459324ac 64 0x04b4, 0x6022, 0x1d50, 0x608e, 0x0001,
7dc72c37 65 "Hantek", "6022BE", "fx2lafw-hantek-6022be.fw",
53012da6 66 ARRAY_AND_SIZE(dc_coupling), FALSE,
f2a66a8e 67 },
692c3b22 68 {
459324ac 69 0x8102, 0x8102, 0x1d50, 0x608e, 0x0002,
7dc72c37 70 "Sainsmart", "DDS120", "fx2lafw-sainsmart-dds120.fw",
53012da6 71 ARRAY_AND_SIZE(acdc_coupling), TRUE,
692c3b22 72 },
759f2ef7
STA
73 {
74 0x04b4, 0x602a, 0x1d50, 0x608e, 0x0003,
75 "Hantek", "6022BL", "fx2lafw-hantek-6022bl.fw",
53012da6 76 ARRAY_AND_SIZE(dc_coupling), FALSE,
759f2ef7 77 },
f2a66a8e
C
78 ALL_ZERO
79};
80
81static const uint64_t samplerates[] = {
82 SAMPLERATE_VALUES
83};
84
85static const uint64_t vdivs[][2] = {
86 VDIV_VALUES
87};
88
f2a66a8e
C
89static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount);
90
15a5bfe4 91static struct sr_dev_inst *hantek_6xxx_dev_new(const struct hantek_6xxx_profile *prof)
f2a66a8e
C
92{
93 struct sr_dev_inst *sdi;
94 struct sr_channel *ch;
95 struct sr_channel_group *cg;
f2a66a8e
C
96 struct dev_context *devc;
97 unsigned int i;
98
99 sdi = g_malloc0(sizeof(struct sr_dev_inst));
100 sdi->status = SR_ST_INITIALIZING;
101 sdi->vendor = g_strdup(prof->vendor);
102 sdi->model = g_strdup(prof->model);
f2a66a8e
C
103
104 for (i = 0; i < ARRAY_SIZE(channel_names); i++) {
105 ch = sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
106 cg = g_malloc0(sizeof(struct sr_channel_group));
107 cg->name = g_strdup(channel_names[i]);
108 cg->channels = g_slist_append(cg->channels, ch);
109 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
110 }
111
112 devc = g_malloc0(sizeof(struct dev_context));
113
114 for (i = 0; i < NUM_CHANNELS; i++) {
115 devc->ch_enabled[i] = TRUE;
116 devc->voltage[i] = DEFAULT_VOLTAGE;
cc5ebc8a 117 devc->coupling[i] = DEFAULT_COUPLING;
f2a66a8e 118 }
5eb4ba29
BL
119 devc->coupling_vals = prof->coupling_vals;
120 devc->coupling_tab_size = prof->coupling_tab_size;
364b09c2 121 devc->has_coupling = prof->has_coupling;
f2a66a8e 122
f2a66a8e
C
123 devc->profile = prof;
124 devc->dev_state = IDLE;
125 devc->samplerate = DEFAULT_SAMPLERATE;
126
127 sdi->priv = devc;
f2a66a8e
C
128
129 return sdi;
130}
131
132static int configure_channels(const struct sr_dev_inst *sdi)
133{
134 struct dev_context *devc;
135 const GSList *l;
136 int p;
137 struct sr_channel *ch;
138 devc = sdi->priv;
139
140 g_slist_free(devc->enabled_channels);
141 devc->enabled_channels = NULL;
142 memset(devc->ch_enabled, 0, sizeof(devc->ch_enabled));
143
144 for (l = sdi->channels, p = 0; l; l = l->next, p++) {
145 ch = l->data;
146 if (p < NUM_CHANNELS) {
147 devc->ch_enabled[p] = ch->enabled;
148 devc->enabled_channels = g_slist_append(devc->enabled_channels, ch);
149 }
150 }
151
152 return SR_OK;
153}
154
3553451f 155static void clear_helper(struct dev_context *devc)
f2a66a8e 156{
f2a66a8e
C
157 g_slist_free(devc->enabled_channels);
158}
159
160static int dev_clear(const struct sr_dev_driver *di)
161{
3553451f 162 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
f2a66a8e
C
163}
164
6c6bc80a
C
165static GSList *scan(struct sr_dev_driver *di, GSList *options)
166{
167 struct drv_context *drvc;
f2a66a8e
C
168 struct dev_context *devc;
169 struct sr_dev_inst *sdi;
170 struct sr_usb_dev_inst *usb;
171 struct sr_config *src;
172 const struct hantek_6xxx_profile *prof;
173 GSList *l, *devices, *conn_devices;
174 struct libusb_device_descriptor des;
175 libusb_device **devlist;
176 int i, j;
177 const char *conn;
178 char connection_id[64];
6c6bc80a 179
6c6bc80a 180 drvc = di->context;
6c6bc80a 181
f2a66a8e
C
182 devices = 0;
183
184 conn = NULL;
185 for (l = options; l; l = l->next) {
186 src = l->data;
187 if (src->key == SR_CONF_CONN) {
188 conn = g_variant_get_string(src->data, NULL);
189 break;
190 }
191 }
192 if (conn)
193 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
194 else
195 conn_devices = NULL;
196
197 /* Find all Hantek 60xx devices and upload firmware to all of them. */
198 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
199 for (i = 0; devlist[i]; i++) {
200 if (conn) {
201 usb = NULL;
202 for (l = conn_devices; l; l = l->next) {
203 usb = l->data;
204 if (usb->bus == libusb_get_bus_number(devlist[i])
205 && usb->address == libusb_get_device_address(devlist[i]))
206 break;
207 }
208 if (!l)
209 /* This device matched none of the ones that
210 * matched the conn specification. */
211 continue;
212 }
213
c940b7a3 214 libusb_get_device_descriptor(devlist[i], &des);
f2a66a8e 215
6c1a76d1
RT
216 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
217 continue;
f2a66a8e
C
218
219 prof = NULL;
0d8a3063 220 for (j = 0; dev_profiles[j].orig_vid; j++) {
f2a66a8e
C
221 if (des.idVendor == dev_profiles[j].orig_vid
222 && des.idProduct == dev_profiles[j].orig_pid) {
223 /* Device matches the pre-firmware profile. */
224 prof = &dev_profiles[j];
225 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 226 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
227 sdi->connection_id = g_strdup(connection_id);
228 devices = g_slist_append(devices, sdi);
229 devc = sdi->priv;
230 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
1372bdcd 231 USB_CONFIGURATION, prof->firmware) == SR_OK) {
f2a66a8e
C
232 /* Remember when the firmware on this device was updated. */
233 devc->fw_updated = g_get_monotonic_time();
1372bdcd
GS
234 } else {
235 sr_err("Firmware upload failed, name %s.", prof->firmware);
236 }
f2a66a8e
C
237 /* Dummy USB address of 0xff will get overwritten later. */
238 sdi->conn = sr_usb_dev_inst_new(
239 libusb_get_bus_number(devlist[i]), 0xff, NULL);
240 break;
241 } else if (des.idVendor == dev_profiles[j].fw_vid
459324ac
UH
242 && des.idProduct == dev_profiles[j].fw_pid
243 && des.bcdDevice == dev_profiles[j].fw_prod_ver) {
f2a66a8e
C
244 /* Device matches the post-firmware profile. */
245 prof = &dev_profiles[j];
246 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 247 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
248 sdi->connection_id = g_strdup(connection_id);
249 sdi->status = SR_ST_INACTIVE;
250 devices = g_slist_append(devices, sdi);
251 sdi->inst_type = SR_INST_USB;
252 sdi->conn = sr_usb_dev_inst_new(
253 libusb_get_bus_number(devlist[i]),
254 libusb_get_device_address(devlist[i]), NULL);
255 break;
256 }
257 }
258 if (!prof)
259 /* Not a supported VID/PID. */
260 continue;
261 }
262 libusb_free_device_list(devlist, 1);
6c6bc80a 263
15a5bfe4 264 return std_scan_complete(di, devices);
6c6bc80a
C
265}
266
6c6bc80a
C
267static int dev_open(struct sr_dev_inst *sdi)
268{
f2a66a8e
C
269 struct dev_context *devc;
270 struct sr_usb_dev_inst *usb;
271 int64_t timediff_us, timediff_ms;
272 int err;
273
274 devc = sdi->priv;
275 usb = sdi->conn;
276
277 /*
278 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
279 * for the FX2 to renumerate.
280 */
281 err = SR_ERR;
282 if (devc->fw_updated > 0) {
283 sr_info("Waiting for device to reset.");
284 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
285 g_usleep(300 * 1000);
286 timediff_ms = 0;
287 while (timediff_ms < MAX_RENUM_DELAY_MS) {
288 if ((err = hantek_6xxx_open(sdi)) == SR_OK)
289 break;
290 g_usleep(100 * 1000);
291 timediff_us = g_get_monotonic_time() - devc->fw_updated;
292 timediff_ms = timediff_us / 1000;
293 sr_spew("Waited %" PRIi64 " ms.", timediff_ms);
294 }
295 if (timediff_ms < MAX_RENUM_DELAY_MS)
296 sr_info("Device came back after %"PRIu64" ms.", timediff_ms);
297 } else {
298 err = hantek_6xxx_open(sdi);
299 }
6c6bc80a 300
f2a66a8e
C
301 if (err != SR_OK) {
302 sr_err("Unable to open device.");
303 return SR_ERR;
304 }
6c6bc80a 305
f2a66a8e
C
306 err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
307 if (err != 0) {
308 sr_err("Unable to claim interface: %s.",
d9251a2c 309 libusb_error_name(err));
f2a66a8e
C
310 return SR_ERR;
311 }
6c6bc80a
C
312
313 return SR_OK;
314}
315
316static int dev_close(struct sr_dev_inst *sdi)
317{
f2a66a8e 318 hantek_6xxx_close(sdi);
6c6bc80a
C
319
320 return SR_OK;
321}
322
dd7a72ea
UH
323static int config_get(uint32_t key, GVariant **data,
324 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 325{
f2a66a8e
C
326 struct dev_context *devc;
327 struct sr_usb_dev_inst *usb;
f2a66a8e
C
328 const uint64_t *vdiv;
329 int ch_idx;
6c6bc80a 330
6c6bc80a 331 switch (key) {
f2a66a8e
C
332 case SR_CONF_NUM_VDIV:
333 *data = g_variant_new_int32(ARRAY_SIZE(vdivs));
334 break;
6c6bc80a
C
335 }
336
f2a66a8e
C
337 if (!sdi)
338 return SR_ERR_ARG;
339
340 devc = sdi->priv;
341 if (!cg) {
342 switch (key) {
343 case SR_CONF_SAMPLERATE:
344 *data = g_variant_new_uint64(devc->samplerate);
345 break;
346 case SR_CONF_LIMIT_MSEC:
347 *data = g_variant_new_uint64(devc->limit_msec);
348 break;
349 case SR_CONF_LIMIT_SAMPLES:
350 *data = g_variant_new_uint64(devc->limit_samples);
351 break;
352 case SR_CONF_CONN:
353 if (!sdi->conn)
354 return SR_ERR_ARG;
355 usb = sdi->conn;
356 if (usb->address == 255)
357 /* Device still needs to re-enumerate after firmware
358 * upload, so we don't know its (future) address. */
359 return SR_ERR;
95c1fe62 360 *data = g_variant_new_printf("%d.%d", usb->bus, usb->address);
f2a66a8e
C
361 break;
362 default:
363 return SR_ERR_NA;
364 }
365 } else {
366 if (sdi->channel_groups->data == cg)
367 ch_idx = 0;
368 else if (sdi->channel_groups->next->data == cg)
369 ch_idx = 1;
370 else
371 return SR_ERR_ARG;
372 switch (key) {
373 case SR_CONF_VDIV:
374 vdiv = vdivs[devc->voltage[ch_idx]];
375 *data = g_variant_new("(tt)", vdiv[0], vdiv[1]);
376 break;
cc5ebc8a 377 case SR_CONF_COUPLING:
64f628bf
UH
378 *data = g_variant_new_string((devc->coupling[ch_idx] \
379 == COUPLING_DC) ? "DC" : "AC");
cc5ebc8a 380 break;
f2a66a8e
C
381 }
382 }
383
384 return SR_OK;
6c6bc80a
C
385}
386
dd7a72ea
UH
387static int config_set(uint32_t key, GVariant *data,
388 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 389{
f2a66a8e 390 struct dev_context *devc;
697fb6dd 391 int ch_idx, idx;
6c6bc80a 392
f2a66a8e
C
393 devc = sdi->priv;
394 if (!cg) {
395 switch (key) {
396 case SR_CONF_SAMPLERATE:
397 devc->samplerate = g_variant_get_uint64(data);
398 hantek_6xxx_update_samplerate(sdi);
399 break;
400 case SR_CONF_LIMIT_MSEC:
401 devc->limit_msec = g_variant_get_uint64(data);
402 break;
403 case SR_CONF_LIMIT_SAMPLES:
404 devc->limit_samples = g_variant_get_uint64(data);
405 break;
406 default:
a9010323 407 return SR_ERR_NA;
f2a66a8e
C
408 }
409 } else {
410 if (sdi->channel_groups->data == cg)
411 ch_idx = 0;
412 else if (sdi->channel_groups->next->data == cg)
413 ch_idx = 1;
414 else
415 return SR_ERR_ARG;
416 switch (key) {
417 case SR_CONF_VDIV:
697fb6dd 418 if ((idx = std_u64_tuple_idx(data, ARRAY_AND_SIZE(vdivs))) < 0)
a9010323 419 return SR_ERR_ARG;
697fb6dd
UH
420 devc->voltage[ch_idx] = idx;
421 hantek_6xxx_update_vdiv(sdi);
f2a66a8e 422 break;
cc5ebc8a 423 case SR_CONF_COUPLING:
697fb6dd
UH
424 if ((idx = std_str_idx(data, devc->coupling_vals,
425 devc->coupling_tab_size)) < 0)
a9010323 426 return SR_ERR_ARG;
697fb6dd 427 devc->coupling[ch_idx] = idx;
cc5ebc8a 428 break;
f2a66a8e 429 default:
a9010323 430 return SR_ERR_NA;
f2a66a8e 431 }
6c6bc80a
C
432 }
433
a9010323 434 return SR_OK;
6c6bc80a
C
435}
436
dd7a72ea
UH
437static int config_list(uint32_t key, GVariant **data,
438 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 439{
e66d1892 440 struct dev_context *devc;
6c6bc80a 441
e66d1892 442 devc = (sdi) ? sdi->priv : NULL;
7f46b27e 443
f2a66a8e
C
444 if (!cg) {
445 switch (key) {
e66d1892 446 case SR_CONF_SCAN_OPTIONS:
f2a66a8e 447 case SR_CONF_DEVICE_OPTIONS:
e66d1892 448 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
f2a66a8e 449 case SR_CONF_SAMPLERATE:
53012da6 450 *data = std_gvar_samplerates(ARRAY_AND_SIZE(samplerates));
f2a66a8e
C
451 break;
452 default:
453 return SR_ERR_NA;
454 }
455 } else {
456 switch (key) {
457 case SR_CONF_DEVICE_OPTIONS:
53012da6 458 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg));
f2a66a8e 459 break;
cc5ebc8a 460 case SR_CONF_COUPLING:
e93ca8a4
GS
461 if (!devc)
462 return SR_ERR_ARG;
5eb4ba29 463 *data = g_variant_new_strv(devc->coupling_vals, devc->coupling_tab_size);
cc5ebc8a 464 break;
f2a66a8e 465 case SR_CONF_VDIV:
58ffcf97 466 *data = std_gvar_tuple_array(ARRAY_AND_SIZE(vdivs));
f2a66a8e
C
467 break;
468 default:
469 return SR_ERR_NA;
470 }
471 }
6c6bc80a 472
f2a66a8e
C
473 return SR_OK;
474}
475
476/* Minimise data amount for limit_samples and limit_msec limits. */
477static uint32_t data_amount(const struct sr_dev_inst *sdi)
478{
479 struct dev_context *devc = sdi->priv;
af7f8824 480 uint32_t data_left, data_left_2, i;
f2a66a8e
C
481 int32_t time_left;
482
483 if (devc->limit_msec) {
484 time_left = devc->limit_msec - (g_get_monotonic_time() - devc->aq_started) / 1000;
485 data_left = devc->samplerate * MAX(time_left, 0) * NUM_CHANNELS / 1000;
486 } else if (devc->limit_samples) {
487 data_left = (devc->limit_samples - devc->samp_received) * NUM_CHANNELS;
488 } else {
489 data_left = devc->samplerate * NUM_CHANNELS;
490 }
491
af7f8824
UH
492 /* Round up to nearest power of two. */
493 for (i = MIN_PACKET_SIZE; i < data_left; i *= 2)
494 ;
495 data_left_2 = i;
f2a66a8e 496
af7f8824 497 sr_spew("data_amount: %u (rounded to power of 2: %u)", data_left, data_left_2);
f2a66a8e 498
af7f8824 499 return data_left_2;
f2a66a8e
C
500}
501
502static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
503 int num_samples)
504{
505 struct sr_datafeed_packet packet;
2938c9d1
UH
506 struct sr_datafeed_analog analog;
507 struct sr_analog_encoding encoding;
508 struct sr_analog_meaning meaning;
509 struct sr_analog_spec spec;
f2a66a8e 510 struct dev_context *devc = sdi->priv;
1e1fdbc9 511 GSList *channels = devc->enabled_channels;
f2a66a8e 512
1e1fdbc9
AJ
513 const float ch_bit[] = { RANGE(0) / 255, RANGE(1) / 255 };
514 const float ch_center[] = { RANGE(0) / 2, RANGE(1) / 2 };
f2a66a8e 515
2938c9d1
UH
516 sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
517
2938c9d1 518 packet.type = SR_DF_ANALOG;
f2a66a8e
C
519 packet.payload = &analog;
520
f2a66a8e 521 analog.num_samples = num_samples;
2938c9d1
UH
522 analog.meaning->mq = SR_MQ_VOLTAGE;
523 analog.meaning->unit = SR_UNIT_VOLT;
524 analog.meaning->mqflags = 0;
f2a66a8e 525
1e1fdbc9 526 analog.data = g_try_malloc(num_samples * sizeof(float));
f2a66a8e
C
527 if (!analog.data) {
528 sr_err("Analog data buffer malloc failed.");
529 devc->dev_state = STOPPING;
530 return;
531 }
532
b3fd0993 533 for (int ch = 0; ch < NUM_CHANNELS; ch++) {
1e1fdbc9
AJ
534 if (!devc->ch_enabled[ch])
535 continue;
f2a66a8e 536
1e1fdbc9
AJ
537 float vdivlog = log10f(ch_bit[ch]);
538 int digits = -(int)vdivlog + (vdivlog < 0.0);
539 analog.encoding->digits = digits;
540 analog.spec->spec_digits = digits;
541 analog.meaning->channels = g_slist_append(NULL, channels->data);
542
543 for (int i = 0; i < num_samples; i++) {
544 /*
545 * The device always sends data for both channels. If a channel
546 * is disabled, it contains a copy of the enabled channel's
547 * data. However, we only send the requested channels to
548 * the bus.
549 *
550 * Voltage values are encoded as a value 0-255, where the
551 * value is a point in the range represented by the vdiv
552 * setting. There are 10 vertical divs, so e.g. 500mV/div
553 * represents 5V peak-to-peak where 0 = -2.5V and 255 = +2.5V.
554 */
555 ((float *)analog.data)[i] = ch_bit[ch] * *(buf + i * 2 + ch) - ch_center[ch];
556 }
557
558 sr_session_send(sdi, &packet);
559 g_slist_free(analog.meaning->channels);
560
561 channels = channels->next;
562 }
f2a66a8e
C
563 g_free(analog.data);
564}
565
f2a66a8e
C
566/*
567 * Called by libusb (as triggered by handle_event()) when a transfer comes in.
568 * Only channel data comes in asynchronously, and all transfers for this are
569 * queued up beforehand, so this just needs to chuck the incoming data onto
570 * the libsigrok session bus.
571 */
572static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
573{
574 struct sr_dev_inst *sdi;
575 struct dev_context *devc;
576
577 sdi = transfer->user_data;
578 devc = sdi->priv;
579
580 if (devc->dev_state == FLUSH) {
5954e716
BL
581 g_free(transfer->buffer);
582 libusb_free_transfer(transfer);
f2a66a8e
C
583 devc->dev_state = CAPTURE;
584 devc->aq_started = g_get_monotonic_time();
585 read_channel(sdi, data_amount(sdi));
586 return;
587 }
588
589 if (devc->dev_state != CAPTURE)
590 return;
591
f2a66a8e
C
592 sr_spew("receive_transfer(): calculated samplerate == %" PRIu64 "ks/s",
593 (uint64_t)(transfer->actual_length * 1000 /
594 (g_get_monotonic_time() - devc->read_start_ts + 1) /
595 NUM_CHANNELS));
596
597 sr_spew("receive_transfer(): status %s received %d bytes.",
598 libusb_error_name(transfer->status), transfer->actual_length);
599
600 if (transfer->actual_length == 0)
601 /* Nothing to send to the bus. */
602 return;
603
4299fcc0
SA
604 unsigned samples_received = transfer->actual_length / NUM_CHANNELS;
605 send_chunk(sdi, transfer->buffer, samples_received);
606 devc->samp_received += samples_received;
607
608 g_free(transfer->buffer);
609 libusb_free_transfer(transfer);
610
f2a66a8e
C
611 if (devc->limit_samples && devc->samp_received >= devc->limit_samples) {
612 sr_info("Requested number of samples reached, stopping. %"
613 PRIu64 " <= %" PRIu64, devc->limit_samples,
614 devc->samp_received);
d2f7c417 615 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
616 } else if (devc->limit_msec && (g_get_monotonic_time() -
617 devc->aq_started) / 1000 >= devc->limit_msec) {
618 sr_info("Requested time limit reached, stopping. %d <= %d",
619 (uint32_t)devc->limit_msec,
620 (uint32_t)(g_get_monotonic_time() - devc->aq_started) / 1000);
d2f7c417 621 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
622 } else {
623 read_channel(sdi, data_amount(sdi));
624 }
625}
626
627static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount)
628{
629 int ret;
630 struct dev_context *devc;
631
632 devc = sdi->priv;
633
634 amount = MIN(amount, MAX_PACKET_SIZE);
635 ret = hantek_6xxx_get_channeldata(sdi, receive_transfer, amount);
636 devc->read_start_ts = g_get_monotonic_time();
f2a66a8e 637
6c6bc80a
C
638 return ret;
639}
640
f2a66a8e 641static int handle_event(int fd, int revents, void *cb_data)
6c6bc80a 642{
f2a66a8e 643 const struct sr_dev_inst *sdi;
f2a66a8e
C
644 struct timeval tv;
645 struct sr_dev_driver *di;
646 struct dev_context *devc;
647 struct drv_context *drvc;
648
649 (void)fd;
650 (void)revents;
651
652 sdi = cb_data;
653 di = sdi->driver;
654 drvc = di->context;
655 devc = sdi->priv;
656
657 /* Always handle pending libusb events. */
658 tv.tv_sec = tv.tv_usec = 0;
659 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
660
661 if (devc->dev_state == STOPPING) {
662 /* We've been told to wind up the acquisition. */
663 sr_dbg("Stopping acquisition.");
664
665 hantek_6xxx_stop_data_collecting(sdi);
666 /*
667 * TODO: Doesn't really cancel pending transfers so they might
668 * come in after SR_DF_END is sent.
669 */
670 usb_source_remove(sdi->session, drvc->sr_ctx);
671
bee2b016 672 std_session_send_df_end(sdi);
f2a66a8e
C
673
674 devc->dev_state = IDLE;
675
676 return TRUE;
677 }
678
679 return TRUE;
680}
681
695dc859 682static int dev_acquisition_start(const struct sr_dev_inst *sdi)
f2a66a8e
C
683{
684 struct dev_context *devc;
685 struct sr_dev_driver *di = sdi->driver;
686 struct drv_context *drvc = di->context;
6c6bc80a 687
f2a66a8e 688 devc = sdi->priv;
f2a66a8e
C
689
690 if (configure_channels(sdi) != SR_OK) {
691 sr_err("Failed to configure channels.");
692 return SR_ERR;
693 }
694
695 if (hantek_6xxx_init(sdi) != SR_OK)
696 return SR_ERR;
697
bee2b016 698 std_session_send_df_header(sdi);
f2a66a8e
C
699
700 devc->samp_received = 0;
701 devc->dev_state = FLUSH;
702
703 usb_source_add(sdi->session, drvc->sr_ctx, TICK,
704 handle_event, (void *)sdi);
705
706 hantek_6xxx_start_data_collecting(sdi);
707
708 read_channel(sdi, FLUSH_PACKET_SIZE);
6c6bc80a
C
709
710 return SR_OK;
711}
712
695dc859 713static int dev_acquisition_stop(struct sr_dev_inst *sdi)
6c6bc80a 714{
f2a66a8e
C
715 struct dev_context *devc;
716
f2a66a8e
C
717 devc = sdi->priv;
718 devc->dev_state = STOPPING;
6c6bc80a 719
6c6bc80a
C
720 return SR_OK;
721}
722
dd5c48a6 723static struct sr_dev_driver hantek_6xxx_driver_info = {
6c6bc80a
C
724 .name = "hantek-6xxx",
725 .longname = "Hantek 6xxx",
726 .api_version = 1,
c2fdcc25 727 .init = std_init,
700d6b64 728 .cleanup = std_cleanup,
6c6bc80a 729 .scan = scan,
c01bf34c 730 .dev_list = std_dev_list,
6c6bc80a
C
731 .dev_clear = dev_clear,
732 .config_get = config_get,
733 .config_set = config_set,
734 .config_list = config_list,
735 .dev_open = dev_open,
736 .dev_close = dev_close,
737 .dev_acquisition_start = dev_acquisition_start,
738 .dev_acquisition_stop = dev_acquisition_stop,
739 .context = NULL,
740};
dd5c48a6 741SR_REGISTER_DEV_DRIVER(hantek_6xxx_driver_info);