]> sigrok.org Git - libsigrok.git/blame - src/hardware/hantek-6xxx/api.c
drivers: Remove some uneeded 'ret' variables.
[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",
817b7441 66 dc_coupling, ARRAY_SIZE(dc_coupling), FALSE,
f2a66a8e 67 },
692c3b22 68 {
459324ac 69 0x8102, 0x8102, 0x1d50, 0x608e, 0x0002,
7dc72c37 70 "Sainsmart", "DDS120", "fx2lafw-sainsmart-dds120.fw",
817b7441 71 acdc_coupling, ARRAY_SIZE(acdc_coupling), TRUE,
692c3b22 72 },
759f2ef7
STA
73 {
74 0x04b4, 0x602a, 0x1d50, 0x608e, 0x0003,
75 "Hantek", "6022BL", "fx2lafw-hantek-6022bl.fw",
76 dc_coupling, ARRAY_SIZE(dc_coupling), FALSE,
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
C
122
123 devc->sample_buf = NULL;
124 devc->sample_buf_write = 0;
125 devc->sample_buf_size = 0;
126
127 devc->profile = prof;
128 devc->dev_state = IDLE;
129 devc->samplerate = DEFAULT_SAMPLERATE;
130
131 sdi->priv = devc;
f2a66a8e
C
132
133 return sdi;
134}
135
136static int configure_channels(const struct sr_dev_inst *sdi)
137{
138 struct dev_context *devc;
139 const GSList *l;
140 int p;
141 struct sr_channel *ch;
142 devc = sdi->priv;
143
144 g_slist_free(devc->enabled_channels);
145 devc->enabled_channels = NULL;
146 memset(devc->ch_enabled, 0, sizeof(devc->ch_enabled));
147
148 for (l = sdi->channels, p = 0; l; l = l->next, p++) {
149 ch = l->data;
150 if (p < NUM_CHANNELS) {
151 devc->ch_enabled[p] = ch->enabled;
152 devc->enabled_channels = g_slist_append(devc->enabled_channels, ch);
153 }
154 }
155
156 return SR_OK;
157}
158
3553451f 159static void clear_helper(struct dev_context *devc)
f2a66a8e 160{
f2a66a8e
C
161 g_slist_free(devc->enabled_channels);
162}
163
164static int dev_clear(const struct sr_dev_driver *di)
165{
3553451f 166 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
f2a66a8e
C
167}
168
6c6bc80a
C
169static GSList *scan(struct sr_dev_driver *di, GSList *options)
170{
171 struct drv_context *drvc;
f2a66a8e
C
172 struct dev_context *devc;
173 struct sr_dev_inst *sdi;
174 struct sr_usb_dev_inst *usb;
175 struct sr_config *src;
176 const struct hantek_6xxx_profile *prof;
177 GSList *l, *devices, *conn_devices;
178 struct libusb_device_descriptor des;
179 libusb_device **devlist;
180 int i, j;
181 const char *conn;
182 char connection_id[64];
6c6bc80a 183
6c6bc80a 184 drvc = di->context;
6c6bc80a 185
f2a66a8e
C
186 devices = 0;
187
188 conn = NULL;
189 for (l = options; l; l = l->next) {
190 src = l->data;
191 if (src->key == SR_CONF_CONN) {
192 conn = g_variant_get_string(src->data, NULL);
193 break;
194 }
195 }
196 if (conn)
197 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
198 else
199 conn_devices = NULL;
200
201 /* Find all Hantek 60xx devices and upload firmware to all of them. */
202 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
203 for (i = 0; devlist[i]; i++) {
204 if (conn) {
205 usb = NULL;
206 for (l = conn_devices; l; l = l->next) {
207 usb = l->data;
208 if (usb->bus == libusb_get_bus_number(devlist[i])
209 && usb->address == libusb_get_device_address(devlist[i]))
210 break;
211 }
212 if (!l)
213 /* This device matched none of the ones that
214 * matched the conn specification. */
215 continue;
216 }
217
c940b7a3 218 libusb_get_device_descriptor(devlist[i], &des);
f2a66a8e
C
219
220 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
221
222 prof = NULL;
0d8a3063 223 for (j = 0; dev_profiles[j].orig_vid; j++) {
f2a66a8e
C
224 if (des.idVendor == dev_profiles[j].orig_vid
225 && des.idProduct == dev_profiles[j].orig_pid) {
226 /* Device matches the pre-firmware profile. */
227 prof = &dev_profiles[j];
228 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 229 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
230 sdi->connection_id = g_strdup(connection_id);
231 devices = g_slist_append(devices, sdi);
232 devc = sdi->priv;
233 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
234 USB_CONFIGURATION, prof->firmware) == SR_OK)
235 /* Remember when the firmware on this device was updated. */
236 devc->fw_updated = g_get_monotonic_time();
237 else
238 sr_err("Firmware upload failed.");
239 /* Dummy USB address of 0xff will get overwritten later. */
240 sdi->conn = sr_usb_dev_inst_new(
241 libusb_get_bus_number(devlist[i]), 0xff, NULL);
242 break;
243 } else if (des.idVendor == dev_profiles[j].fw_vid
459324ac
UH
244 && des.idProduct == dev_profiles[j].fw_pid
245 && des.bcdDevice == dev_profiles[j].fw_prod_ver) {
f2a66a8e
C
246 /* Device matches the post-firmware profile. */
247 prof = &dev_profiles[j];
248 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 249 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
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 265
15a5bfe4 266 return std_scan_complete(di, devices);
6c6bc80a
C
267}
268
6c6bc80a
C
269static int dev_open(struct sr_dev_inst *sdi)
270{
f2a66a8e
C
271 struct dev_context *devc;
272 struct sr_usb_dev_inst *usb;
273 int64_t timediff_us, timediff_ms;
274 int err;
275
276 devc = sdi->priv;
277 usb = sdi->conn;
278
279 /*
280 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
281 * for the FX2 to renumerate.
282 */
283 err = SR_ERR;
284 if (devc->fw_updated > 0) {
285 sr_info("Waiting for device to reset.");
286 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
287 g_usleep(300 * 1000);
288 timediff_ms = 0;
289 while (timediff_ms < MAX_RENUM_DELAY_MS) {
290 if ((err = hantek_6xxx_open(sdi)) == SR_OK)
291 break;
292 g_usleep(100 * 1000);
293 timediff_us = g_get_monotonic_time() - devc->fw_updated;
294 timediff_ms = timediff_us / 1000;
295 sr_spew("Waited %" PRIi64 " ms.", timediff_ms);
296 }
297 if (timediff_ms < MAX_RENUM_DELAY_MS)
298 sr_info("Device came back after %"PRIu64" ms.", timediff_ms);
299 } else {
300 err = hantek_6xxx_open(sdi);
301 }
6c6bc80a 302
f2a66a8e
C
303 if (err != SR_OK) {
304 sr_err("Unable to open device.");
305 return SR_ERR;
306 }
6c6bc80a 307
f2a66a8e
C
308 err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
309 if (err != 0) {
310 sr_err("Unable to claim interface: %s.",
d9251a2c 311 libusb_error_name(err));
f2a66a8e
C
312 return SR_ERR;
313 }
6c6bc80a
C
314
315 return SR_OK;
316}
317
318static int dev_close(struct sr_dev_inst *sdi)
319{
f2a66a8e 320 hantek_6xxx_close(sdi);
6c6bc80a
C
321
322 return SR_OK;
323}
324
6c6bc80a
C
325static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
326 const struct sr_channel_group *cg)
327{
f2a66a8e
C
328 struct dev_context *devc;
329 struct sr_usb_dev_inst *usb;
330 char str[128];
331 const uint64_t *vdiv;
332 int ch_idx;
6c6bc80a 333
6c6bc80a 334 switch (key) {
f2a66a8e
C
335 case SR_CONF_NUM_VDIV:
336 *data = g_variant_new_int32(ARRAY_SIZE(vdivs));
337 break;
6c6bc80a
C
338 }
339
f2a66a8e
C
340 if (!sdi)
341 return SR_ERR_ARG;
342
343 devc = sdi->priv;
344 if (!cg) {
345 switch (key) {
346 case SR_CONF_SAMPLERATE:
347 *data = g_variant_new_uint64(devc->samplerate);
348 break;
349 case SR_CONF_LIMIT_MSEC:
350 *data = g_variant_new_uint64(devc->limit_msec);
351 break;
352 case SR_CONF_LIMIT_SAMPLES:
353 *data = g_variant_new_uint64(devc->limit_samples);
354 break;
355 case SR_CONF_CONN:
356 if (!sdi->conn)
357 return SR_ERR_ARG;
358 usb = sdi->conn;
359 if (usb->address == 255)
360 /* Device still needs to re-enumerate after firmware
361 * upload, so we don't know its (future) address. */
362 return SR_ERR;
363 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
364 *data = g_variant_new_string(str);
365 break;
366 default:
367 return SR_ERR_NA;
368 }
369 } else {
370 if (sdi->channel_groups->data == cg)
371 ch_idx = 0;
372 else if (sdi->channel_groups->next->data == cg)
373 ch_idx = 1;
374 else
375 return SR_ERR_ARG;
376 switch (key) {
377 case SR_CONF_VDIV:
378 vdiv = vdivs[devc->voltage[ch_idx]];
379 *data = g_variant_new("(tt)", vdiv[0], vdiv[1]);
380 break;
cc5ebc8a 381 case SR_CONF_COUPLING:
64f628bf
UH
382 *data = g_variant_new_string((devc->coupling[ch_idx] \
383 == COUPLING_DC) ? "DC" : "AC");
cc5ebc8a 384 break;
f2a66a8e
C
385 }
386 }
387
388 return SR_OK;
6c6bc80a
C
389}
390
391static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
392 const struct sr_channel_group *cg)
393{
f2a66a8e
C
394 struct dev_context *devc;
395 uint64_t p, q;
a9010323 396 int tmp_int, ch_idx;
f2a66a8e 397 unsigned int i;
cc5ebc8a 398 const char *tmp_str;
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:
425 g_variant_get(data, "(tt)", &p, &q);
426 tmp_int = -1;
427 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
428 if (vdivs[i][0] == p && vdivs[i][1] == q) {
429 tmp_int = i;
430 break;
431 }
432 }
433 if (tmp_int >= 0) {
434 devc->voltage[ch_idx] = tmp_int;
435 hantek_6xxx_update_vdiv(sdi);
436 } else
a9010323 437 return SR_ERR_ARG;
f2a66a8e 438 break;
cc5ebc8a
BL
439 case SR_CONF_COUPLING:
440 tmp_str = g_variant_get_string(data, NULL);
817b7441 441 for (i = 0; i < devc->coupling_tab_size; i++) {
5eb4ba29 442 if (!strcmp(tmp_str, devc->coupling_vals[i])) {
cc5ebc8a
BL
443 devc->coupling[ch_idx] = i;
444 break;
445 }
446 }
817b7441 447 if (i == devc->coupling_tab_size)
a9010323 448 return SR_ERR_ARG;
cc5ebc8a 449 break;
f2a66a8e 450 default:
a9010323 451 return SR_ERR_NA;
f2a66a8e 452 }
6c6bc80a
C
453 }
454
a9010323 455 return SR_OK;
6c6bc80a
C
456}
457
458static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
459 const struct sr_channel_group *cg)
460{
f2a66a8e
C
461 GVariant *tuple, *rational[2];
462 GVariantBuilder gvb;
463 unsigned int i;
464 GVariant *gvar;
817b7441 465 struct dev_context *devc = NULL;
5eb4ba29 466
f2a66a8e
C
467 if (key == SR_CONF_SCAN_OPTIONS) {
468 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
469 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
470 return SR_OK;
471 } else if (key == SR_CONF_DEVICE_OPTIONS && !sdi) {
472 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
473 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
474 return SR_OK;
475 }
6c6bc80a 476
817b7441
EM
477 if (sdi)
478 devc = sdi->priv;
7f46b27e 479
f2a66a8e
C
480 if (!cg) {
481 switch (key) {
482 case SR_CONF_DEVICE_OPTIONS:
483 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
484 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
485 break;
486 case SR_CONF_SAMPLERATE:
487 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
488 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
489 samplerates, ARRAY_SIZE(samplerates),
490 sizeof(uint64_t));
491 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
492 *data = g_variant_builder_end(&gvb);
493 break;
494 default:
495 return SR_ERR_NA;
496 }
497 } else {
498 switch (key) {
499 case SR_CONF_DEVICE_OPTIONS:
500 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
501 devopts_cg, ARRAY_SIZE(devopts_cg), sizeof(uint32_t));
502 break;
cc5ebc8a 503 case SR_CONF_COUPLING:
817b7441
EM
504 if (!devc)
505 return SR_ERR_NA;
5eb4ba29 506 *data = g_variant_new_strv(devc->coupling_vals, devc->coupling_tab_size);
cc5ebc8a 507 break;
f2a66a8e
C
508 case SR_CONF_VDIV:
509 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
510 for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
511 rational[0] = g_variant_new_uint64(vdivs[i][0]);
512 rational[1] = g_variant_new_uint64(vdivs[i][1]);
513 tuple = g_variant_new_tuple(rational, 2);
514 g_variant_builder_add_value(&gvb, tuple);
515 }
516 *data = g_variant_builder_end(&gvb);
517 break;
518 default:
519 return SR_ERR_NA;
520 }
521 }
6c6bc80a 522
f2a66a8e
C
523 return SR_OK;
524}
525
526/* Minimise data amount for limit_samples and limit_msec limits. */
527static uint32_t data_amount(const struct sr_dev_inst *sdi)
528{
529 struct dev_context *devc = sdi->priv;
af7f8824 530 uint32_t data_left, data_left_2, i;
f2a66a8e
C
531 int32_t time_left;
532
533 if (devc->limit_msec) {
534 time_left = devc->limit_msec - (g_get_monotonic_time() - devc->aq_started) / 1000;
535 data_left = devc->samplerate * MAX(time_left, 0) * NUM_CHANNELS / 1000;
536 } else if (devc->limit_samples) {
537 data_left = (devc->limit_samples - devc->samp_received) * NUM_CHANNELS;
538 } else {
539 data_left = devc->samplerate * NUM_CHANNELS;
540 }
541
af7f8824
UH
542 /* Round up to nearest power of two. */
543 for (i = MIN_PACKET_SIZE; i < data_left; i *= 2)
544 ;
545 data_left_2 = i;
f2a66a8e 546
af7f8824 547 sr_spew("data_amount: %u (rounded to power of 2: %u)", data_left, data_left_2);
f2a66a8e 548
af7f8824 549 return data_left_2;
f2a66a8e
C
550}
551
552static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
553 int num_samples)
554{
555 struct sr_datafeed_packet packet;
2938c9d1
UH
556 struct sr_datafeed_analog analog;
557 struct sr_analog_encoding encoding;
558 struct sr_analog_meaning meaning;
559 struct sr_analog_spec spec;
f2a66a8e 560 struct dev_context *devc = sdi->priv;
1e1fdbc9 561 GSList *channels = devc->enabled_channels;
f2a66a8e 562
1e1fdbc9
AJ
563 const float ch_bit[] = { RANGE(0) / 255, RANGE(1) / 255 };
564 const float ch_center[] = { RANGE(0) / 2, RANGE(1) / 2 };
f2a66a8e 565
2938c9d1
UH
566 sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
567
2938c9d1 568 packet.type = SR_DF_ANALOG;
f2a66a8e
C
569 packet.payload = &analog;
570
f2a66a8e 571 analog.num_samples = num_samples;
2938c9d1
UH
572 analog.meaning->mq = SR_MQ_VOLTAGE;
573 analog.meaning->unit = SR_UNIT_VOLT;
574 analog.meaning->mqflags = 0;
f2a66a8e 575
1e1fdbc9 576 analog.data = g_try_malloc(num_samples * sizeof(float));
f2a66a8e
C
577 if (!analog.data) {
578 sr_err("Analog data buffer malloc failed.");
579 devc->dev_state = STOPPING;
580 return;
581 }
582
1e1fdbc9
AJ
583 for (int ch = 0; ch < 2; ch++) {
584 if (!devc->ch_enabled[ch])
585 continue;
f2a66a8e 586
1e1fdbc9
AJ
587 float vdivlog = log10f(ch_bit[ch]);
588 int digits = -(int)vdivlog + (vdivlog < 0.0);
589 analog.encoding->digits = digits;
590 analog.spec->spec_digits = digits;
591 analog.meaning->channels = g_slist_append(NULL, channels->data);
592
593 for (int i = 0; i < num_samples; i++) {
594 /*
595 * The device always sends data for both channels. If a channel
596 * is disabled, it contains a copy of the enabled channel's
597 * data. However, we only send the requested channels to
598 * the bus.
599 *
600 * Voltage values are encoded as a value 0-255, where the
601 * value is a point in the range represented by the vdiv
602 * setting. There are 10 vertical divs, so e.g. 500mV/div
603 * represents 5V peak-to-peak where 0 = -2.5V and 255 = +2.5V.
604 */
605 ((float *)analog.data)[i] = ch_bit[ch] * *(buf + i * 2 + ch) - ch_center[ch];
606 }
607
608 sr_session_send(sdi, &packet);
609 g_slist_free(analog.meaning->channels);
610
611 channels = channels->next;
612 }
f2a66a8e
C
613 g_free(analog.data);
614}
615
616static void send_data(struct sr_dev_inst *sdi, struct libusb_transfer *buf[], uint64_t samples)
617{
618 int i = 0;
619 uint64_t send = 0;
620 uint32_t chunk;
621
622 while (send < samples) {
623 chunk = MIN(samples - send, (uint64_t)(buf[i]->actual_length / NUM_CHANNELS));
624 send += chunk;
625 send_chunk(sdi, buf[i]->buffer, chunk);
626
627 /*
628 * Everything in this transfer was either copied to the buffer
629 * or sent to the session bus.
630 */
631 g_free(buf[i]->buffer);
632 libusb_free_transfer(buf[i]);
633 i++;
634 }
635}
636
637/*
638 * Called by libusb (as triggered by handle_event()) when a transfer comes in.
639 * Only channel data comes in asynchronously, and all transfers for this are
640 * queued up beforehand, so this just needs to chuck the incoming data onto
641 * the libsigrok session bus.
642 */
643static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
644{
645 struct sr_dev_inst *sdi;
646 struct dev_context *devc;
647
648 sdi = transfer->user_data;
649 devc = sdi->priv;
650
651 if (devc->dev_state == FLUSH) {
5954e716
BL
652 g_free(transfer->buffer);
653 libusb_free_transfer(transfer);
f2a66a8e
C
654 devc->dev_state = CAPTURE;
655 devc->aq_started = g_get_monotonic_time();
656 read_channel(sdi, data_amount(sdi));
657 return;
658 }
659
660 if (devc->dev_state != CAPTURE)
661 return;
662
663 if (!devc->sample_buf) {
664 devc->sample_buf_size = 10;
665 devc->sample_buf = g_try_malloc(devc->sample_buf_size * sizeof(transfer));
666 devc->sample_buf_write = 0;
667 }
668
669 if (devc->sample_buf_write >= devc->sample_buf_size) {
670 devc->sample_buf_size += 10;
671 devc->sample_buf = g_try_realloc(devc->sample_buf,
672 devc->sample_buf_size * sizeof(transfer));
673 if (!devc->sample_buf) {
674 sr_err("Sample buffer malloc failed.");
675 devc->dev_state = STOPPING;
676 return;
677 }
6c6bc80a
C
678 }
679
f2a66a8e 680 devc->sample_buf[devc->sample_buf_write++] = transfer;
10e0d374 681 devc->samp_received += transfer->actual_length / NUM_CHANNELS;
f2a66a8e
C
682
683 sr_spew("receive_transfer(): calculated samplerate == %" PRIu64 "ks/s",
684 (uint64_t)(transfer->actual_length * 1000 /
685 (g_get_monotonic_time() - devc->read_start_ts + 1) /
686 NUM_CHANNELS));
687
688 sr_spew("receive_transfer(): status %s received %d bytes.",
689 libusb_error_name(transfer->status), transfer->actual_length);
690
691 if (transfer->actual_length == 0)
692 /* Nothing to send to the bus. */
693 return;
694
695 if (devc->limit_samples && devc->samp_received >= devc->limit_samples) {
696 sr_info("Requested number of samples reached, stopping. %"
697 PRIu64 " <= %" PRIu64, devc->limit_samples,
698 devc->samp_received);
699 send_data(sdi, devc->sample_buf, devc->limit_samples);
d2f7c417 700 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
701 } else if (devc->limit_msec && (g_get_monotonic_time() -
702 devc->aq_started) / 1000 >= devc->limit_msec) {
703 sr_info("Requested time limit reached, stopping. %d <= %d",
704 (uint32_t)devc->limit_msec,
705 (uint32_t)(g_get_monotonic_time() - devc->aq_started) / 1000);
706 send_data(sdi, devc->sample_buf, devc->samp_received);
707 g_free(devc->sample_buf);
708 devc->sample_buf = NULL;
d2f7c417 709 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
710 } else {
711 read_channel(sdi, data_amount(sdi));
712 }
713}
714
715static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount)
716{
717 int ret;
718 struct dev_context *devc;
719
720 devc = sdi->priv;
721
722 amount = MIN(amount, MAX_PACKET_SIZE);
723 ret = hantek_6xxx_get_channeldata(sdi, receive_transfer, amount);
724 devc->read_start_ts = g_get_monotonic_time();
725 devc->read_data_amount = amount;
726
6c6bc80a
C
727 return ret;
728}
729
f2a66a8e 730static int handle_event(int fd, int revents, void *cb_data)
6c6bc80a 731{
f2a66a8e 732 const struct sr_dev_inst *sdi;
f2a66a8e
C
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
bee2b016 761 std_session_send_df_end(sdi);
f2a66a8e
C
762
763 devc->dev_state = IDLE;
764
765 return TRUE;
766 }
767
768 return TRUE;
769}
770
695dc859 771static int dev_acquisition_start(const struct sr_dev_inst *sdi)
f2a66a8e
C
772{
773 struct dev_context *devc;
774 struct sr_dev_driver *di = sdi->driver;
775 struct drv_context *drvc = di->context;
6c6bc80a 776
f2a66a8e 777 devc = sdi->priv;
f2a66a8e
C
778
779 if (configure_channels(sdi) != SR_OK) {
780 sr_err("Failed to configure channels.");
781 return SR_ERR;
782 }
783
784 if (hantek_6xxx_init(sdi) != SR_OK)
785 return SR_ERR;
786
bee2b016 787 std_session_send_df_header(sdi);
f2a66a8e
C
788
789 devc->samp_received = 0;
790 devc->dev_state = FLUSH;
791
792 usb_source_add(sdi->session, drvc->sr_ctx, TICK,
793 handle_event, (void *)sdi);
794
795 hantek_6xxx_start_data_collecting(sdi);
796
797 read_channel(sdi, FLUSH_PACKET_SIZE);
6c6bc80a
C
798
799 return SR_OK;
800}
801
695dc859 802static int dev_acquisition_stop(struct sr_dev_inst *sdi)
6c6bc80a 803{
f2a66a8e
C
804 struct dev_context *devc;
805
f2a66a8e
C
806 devc = sdi->priv;
807 devc->dev_state = STOPPING;
6c6bc80a 808
faf6dc46
UH
809 g_free(devc->sample_buf);
810 devc->sample_buf = NULL;
6c6bc80a
C
811
812 return SR_OK;
813}
814
dd5c48a6 815static struct sr_dev_driver hantek_6xxx_driver_info = {
6c6bc80a
C
816 .name = "hantek-6xxx",
817 .longname = "Hantek 6xxx",
818 .api_version = 1,
c2fdcc25 819 .init = std_init,
700d6b64 820 .cleanup = std_cleanup,
6c6bc80a 821 .scan = scan,
c01bf34c 822 .dev_list = std_dev_list,
6c6bc80a
C
823 .dev_clear = dev_clear,
824 .config_get = config_get,
825 .config_set = config_set,
826 .config_list = config_list,
827 .dev_open = dev_open,
828 .dev_close = dev_close,
829 .dev_acquisition_start = dev_acquisition_start,
830 .dev_acquisition_stop = dev_acquisition_stop,
831 .context = NULL,
832};
dd5c48a6 833SR_REGISTER_DEV_DRIVER(hantek_6xxx_driver_info);