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