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