]> sigrok.org Git - libsigrok.git/blob - src/hardware/hantek-dso/api.c
Add sr_dev_acquisition_start(), factor out SR_ERR_DEV_CLOSED check.
[libsigrok.git] / src / hardware / hantek-dso / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012 Bert Vermeulen <bert@biot.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 <math.h>
22 #include <stdio.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <sys/time.h>
31 #include <inttypes.h>
32 #include <glib.h>
33 #include <libusb.h>
34 #include <libsigrok/libsigrok.h>
35 #include "libsigrok-internal.h"
36 #include "protocol.h"
37
38 /* Max time in ms before we want to check on USB events */
39 /* TODO tune this properly */
40 #define TICK 1
41
42 #define NUM_TIMEBASE 10
43 #define NUM_VDIV     8
44
45 #define NUM_BUFFER_SIZES 2
46
47 static const uint32_t scanopts[] = {
48         SR_CONF_CONN,
49 };
50
51 static const uint32_t drvopts[] = {
52         SR_CONF_OSCILLOSCOPE,
53 };
54
55 static const uint32_t devopts[] = {
56         SR_CONF_CONTINUOUS,
57         SR_CONF_CONN | SR_CONF_GET,
58         SR_CONF_LIMIT_FRAMES | SR_CONF_SET,
59         SR_CONF_TIMEBASE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
60         SR_CONF_NUM_HDIV | SR_CONF_GET,
61         SR_CONF_HORIZ_TRIGGERPOS | SR_CONF_GET | SR_CONF_SET,
62         SR_CONF_TRIGGER_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
63         SR_CONF_TRIGGER_SLOPE | SR_CONF_GET | SR_CONF_SET,
64         SR_CONF_BUFFERSIZE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
65         SR_CONF_NUM_VDIV | SR_CONF_GET,
66 };
67
68 static const uint32_t devopts_cg[] = {
69         SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
70         SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
71         SR_CONF_FILTER | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
72 };
73
74 static const char *channel_names[] = {
75         "CH1", "CH2",
76 };
77
78 static const uint64_t buffersizes_32k[] = {
79         (10 * 1024), (32 * 1024),
80 };
81 static const uint64_t buffersizes_512k[] = {
82         (10 * 1024), (512 * 1024),
83 };
84 static const uint64_t buffersizes_14k[] = {
85         (10 * 1024), (14 * 1024),
86 };
87
88 static const struct dso_profile dev_profiles[] = {
89         {       0x04b4, 0x2090, 0x04b5, 0x2090,
90                 "Hantek", "DSO-2090",
91                 buffersizes_32k,
92                 "hantek-dso-2090.fw" },
93         {       0x04b4, 0x2150, 0x04b5, 0x2150,
94                 "Hantek", "DSO-2150",
95                 buffersizes_32k,
96                 "hantek-dso-2150.fw" },
97         {       0x04b4, 0x2250, 0x04b5, 0x2250,
98                 "Hantek", "DSO-2250",
99                 buffersizes_512k,
100                 "hantek-dso-2250.fw" },
101         {       0x04b4, 0x5200, 0x04b5, 0x5200,
102                 "Hantek", "DSO-5200",
103                 buffersizes_14k,
104                 "hantek-dso-5200.fw" },
105         {       0x04b4, 0x520a, 0x04b5, 0x520a,
106                 "Hantek", "DSO-5200A",
107                 buffersizes_512k,
108                 "hantek-dso-5200A.fw" },
109         ALL_ZERO
110 };
111
112 static const uint64_t timebases[][2] = {
113         /* microseconds */
114         { 10, 1000000 },
115         { 20, 1000000 },
116         { 40, 1000000 },
117         { 100, 1000000 },
118         { 200, 1000000 },
119         { 400, 1000000 },
120         /* milliseconds */
121         { 1, 1000 },
122         { 2, 1000 },
123         { 4, 1000 },
124         { 10, 1000 },
125         { 20, 1000 },
126         { 40, 1000 },
127         { 100, 1000 },
128         { 200, 1000 },
129         { 400, 1000 },
130 };
131
132 static const uint64_t vdivs[][2] = {
133         /* millivolts */
134         { 10, 1000 },
135         { 20, 1000 },
136         { 50, 1000 },
137         { 100, 1000 },
138         { 200, 1000 },
139         { 500, 1000 },
140         /* volts */
141         { 1, 1 },
142         { 2, 1 },
143         { 5, 1 },
144 };
145
146 static const char *trigger_sources[] = {
147         "CH1",
148         "CH2",
149         "EXT",
150         /* TODO: forced */
151 };
152
153 static const char *trigger_slopes[] = {
154         "r",
155         "f",
156 };
157
158 static const char *coupling[] = {
159         "AC",
160         "DC",
161         "GND",
162 };
163
164 static struct sr_dev_inst *dso_dev_new(const struct dso_profile *prof)
165 {
166         struct sr_dev_inst *sdi;
167         struct sr_channel *ch;
168         struct sr_channel_group *cg;
169         struct dev_context *devc;
170         unsigned int i;
171
172         sdi = g_malloc0(sizeof(struct sr_dev_inst));
173         sdi->status = SR_ST_INITIALIZING;
174         sdi->vendor = g_strdup(prof->vendor);
175         sdi->model = g_strdup(prof->model);
176
177         /*
178          * Add only the real channels -- EXT isn't a source of data, only
179          * a trigger source internal to the device.
180          */
181         for (i = 0; i < ARRAY_SIZE(channel_names); i++) {
182                 ch = sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
183                 cg = g_malloc0(sizeof(struct sr_channel_group));
184                 cg->name = g_strdup(channel_names[i]);
185                 cg->channels = g_slist_append(cg->channels, ch);
186                 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
187         }
188
189         devc = g_malloc0(sizeof(struct dev_context));
190         devc->profile = prof;
191         devc->dev_state = IDLE;
192         devc->timebase = DEFAULT_TIMEBASE;
193         devc->ch_enabled[0] = TRUE;
194         devc->ch_enabled[1] = TRUE;
195         devc->voltage[0] = DEFAULT_VOLTAGE;
196         devc->voltage[1] = DEFAULT_VOLTAGE;
197         devc->coupling[0] = DEFAULT_COUPLING;
198         devc->coupling[1] = DEFAULT_COUPLING;
199         devc->voffset_ch1 = DEFAULT_VERT_OFFSET;
200         devc->voffset_ch2 = DEFAULT_VERT_OFFSET;
201         devc->voffset_trigger = DEFAULT_VERT_TRIGGERPOS;
202         devc->framesize = DEFAULT_FRAMESIZE;
203         devc->triggerslope = SLOPE_POSITIVE;
204         devc->triggersource = g_strdup(DEFAULT_TRIGGER_SOURCE);
205         devc->triggerposition = DEFAULT_HORIZ_TRIGGERPOS;
206         sdi->priv = devc;
207
208         return sdi;
209 }
210
211 static int configure_channels(const struct sr_dev_inst *sdi)
212 {
213         struct dev_context *devc;
214         struct sr_channel *ch;
215         const GSList *l;
216         int p;
217
218         devc = sdi->priv;
219
220         g_slist_free(devc->enabled_channels);
221         devc->ch_enabled[0] = devc->ch_enabled[1] = FALSE;
222         for (l = sdi->channels, p = 0; l; l = l->next, p++) {
223                 ch = l->data;
224                 if (p == 0)
225                         devc->ch_enabled[0] = ch->enabled;
226                 else
227                         devc->ch_enabled[1] = ch->enabled;
228                 if (ch->enabled)
229                         devc->enabled_channels = g_slist_append(devc->enabled_channels, ch);
230         }
231
232         return SR_OK;
233 }
234
235 static void clear_dev_context(void *priv)
236 {
237         struct dev_context *devc;
238
239         devc = priv;
240         g_free(devc->triggersource);
241         g_slist_free(devc->enabled_channels);
242
243 }
244
245 static int dev_clear(const struct sr_dev_driver *di)
246 {
247         return std_dev_clear(di, clear_dev_context);
248 }
249
250 static GSList *scan(struct sr_dev_driver *di, GSList *options)
251 {
252         struct drv_context *drvc;
253         struct dev_context *devc;
254         struct sr_dev_inst *sdi;
255         struct sr_usb_dev_inst *usb;
256         struct sr_config *src;
257         const struct dso_profile *prof;
258         GSList *l, *devices, *conn_devices;
259         struct libusb_device_descriptor des;
260         libusb_device **devlist;
261         int i, j;
262         const char *conn;
263         char connection_id[64];
264
265         drvc = di->context;
266
267         devices = 0;
268
269         conn = NULL;
270         for (l = options; l; l = l->next) {
271                 src = l->data;
272                 if (src->key == SR_CONF_CONN) {
273                         conn = g_variant_get_string(src->data, NULL);
274                         break;
275                 }
276         }
277         if (conn)
278                 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
279         else
280                 conn_devices = NULL;
281
282         /* Find all Hantek DSO devices and upload firmware to all of them. */
283         libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
284         for (i = 0; devlist[i]; i++) {
285                 if (conn) {
286                         usb = NULL;
287                         for (l = conn_devices; l; l = l->next) {
288                                 usb = l->data;
289                                 if (usb->bus == libusb_get_bus_number(devlist[i])
290                                         && usb->address == libusb_get_device_address(devlist[i]))
291                                         break;
292                         }
293                         if (!l)
294                                 /* This device matched none of the ones that
295                                  * matched the conn specification. */
296                                 continue;
297                 }
298
299                 libusb_get_device_descriptor(devlist[i], &des);
300
301                 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
302
303                 prof = NULL;
304                 for (j = 0; dev_profiles[j].orig_vid; j++) {
305                         if (des.idVendor == dev_profiles[j].orig_vid
306                                 && des.idProduct == dev_profiles[j].orig_pid) {
307                                 /* Device matches the pre-firmware profile. */
308                                 prof = &dev_profiles[j];
309                                 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
310                                 sdi = dso_dev_new(prof);
311                                 sdi->connection_id = g_strdup(connection_id);
312                                 devices = g_slist_append(devices, sdi);
313                                 devc = sdi->priv;
314                                 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
315                                                 USB_CONFIGURATION, prof->firmware) == SR_OK)
316                                         /* Remember when the firmware on this device was updated */
317                                         devc->fw_updated = g_get_monotonic_time();
318                                 else
319                                         sr_err("Firmware upload failed");
320                                 /* Dummy USB address of 0xff will get overwritten later. */
321                                 sdi->conn = sr_usb_dev_inst_new(
322                                                 libusb_get_bus_number(devlist[i]), 0xff, NULL);
323                                 break;
324                         } else if (des.idVendor == dev_profiles[j].fw_vid
325                                 && des.idProduct == dev_profiles[j].fw_pid) {
326                                 /* Device matches the post-firmware profile. */
327                                 prof = &dev_profiles[j];
328                                 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
329                                 sdi = dso_dev_new(prof);
330                                 sdi->connection_id = g_strdup(connection_id);
331                                 sdi->status = SR_ST_INACTIVE;
332                                 devices = g_slist_append(devices, sdi);
333                                 sdi->inst_type = SR_INST_USB;
334                                 sdi->conn = sr_usb_dev_inst_new(
335                                                 libusb_get_bus_number(devlist[i]),
336                                                 libusb_get_device_address(devlist[i]), NULL);
337                                 break;
338                         }
339                 }
340                 if (!prof)
341                         /* not a supported VID/PID */
342                         continue;
343         }
344         libusb_free_device_list(devlist, 1);
345
346         return std_scan_complete(di, devices);
347 }
348
349 static int dev_open(struct sr_dev_inst *sdi)
350 {
351         struct dev_context *devc;
352         struct sr_usb_dev_inst *usb;
353         int64_t timediff_us, timediff_ms;
354         int err;
355
356         devc = sdi->priv;
357         usb = sdi->conn;
358
359         /*
360          * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
361          * for the FX2 to renumerate.
362          */
363         err = SR_ERR;
364         if (devc->fw_updated > 0) {
365                 sr_info("Waiting for device to reset.");
366                 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
367                 g_usleep(300 * 1000);
368                 timediff_ms = 0;
369                 while (timediff_ms < MAX_RENUM_DELAY_MS) {
370                         if ((err = dso_open(sdi)) == SR_OK)
371                                 break;
372                         g_usleep(100 * 1000);
373                         timediff_us = g_get_monotonic_time() - devc->fw_updated;
374                         timediff_ms = timediff_us / 1000;
375                         sr_spew("Waited %" PRIi64 " ms.", timediff_ms);
376                 }
377                 sr_info("Device came back after %" PRIi64 " ms.", timediff_ms);
378         } else {
379                 err = dso_open(sdi);
380         }
381
382         if (err != SR_OK) {
383                 sr_err("Unable to open device.");
384                 return SR_ERR;
385         }
386
387         err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
388         if (err != 0) {
389                 sr_err("Unable to claim interface: %s.",
390                         libusb_error_name(err));
391                 return SR_ERR;
392         }
393
394         return SR_OK;
395 }
396
397 static int dev_close(struct sr_dev_inst *sdi)
398 {
399         dso_close(sdi);
400
401         return SR_OK;
402 }
403
404 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
405                 const struct sr_channel_group *cg)
406 {
407         struct dev_context *devc;
408         struct sr_usb_dev_inst *usb;
409         char str[128];
410         const char *s;
411         const uint64_t *vdiv;
412         int ch_idx;
413
414         switch (key) {
415         case SR_CONF_NUM_HDIV:
416                 *data = g_variant_new_int32(NUM_TIMEBASE);
417                 break;
418         case SR_CONF_NUM_VDIV:
419                 *data = g_variant_new_int32(NUM_VDIV);
420                 break;
421         }
422
423         if (!sdi)
424                 return SR_ERR_ARG;
425
426         devc = sdi->priv;
427         if (!cg) {
428                 switch (key) {
429                 case SR_CONF_CONN:
430                         if (!sdi->conn)
431                                 return SR_ERR_ARG;
432                         usb = sdi->conn;
433                         if (usb->address == 255)
434                                 /* Device still needs to re-enumerate after firmware
435                                  * upload, so we don't know its (future) address. */
436                                 return SR_ERR;
437                         snprintf(str, 128, "%d.%d", usb->bus, usb->address);
438                         *data = g_variant_new_string(str);
439                         break;
440                 case SR_CONF_TIMEBASE:
441                         *data = g_variant_new("(tt)", timebases[devc->timebase][0],
442                                         timebases[devc->timebase][1]);
443                         break;
444                 case SR_CONF_BUFFERSIZE:
445                         *data = g_variant_new_uint64(devc->framesize);
446                         break;
447                 case SR_CONF_TRIGGER_SOURCE:
448                         *data = g_variant_new_string(devc->triggersource);
449                         break;
450                 case SR_CONF_TRIGGER_SLOPE:
451                         s = (devc->triggerslope == SLOPE_POSITIVE) ? "r" : "f";
452                         *data = g_variant_new_string(s);
453                         break;
454                 case SR_CONF_HORIZ_TRIGGERPOS:
455                         *data = g_variant_new_double(devc->triggerposition);
456                         break;
457                 default:
458                         return SR_ERR_NA;
459                 }
460         } else {
461                 if (sdi->channel_groups->data == cg)
462                         ch_idx = 0;
463                 else if (sdi->channel_groups->next->data == cg)
464                         ch_idx = 1;
465                 else
466                         return SR_ERR_ARG;
467                 switch (key) {
468                 case SR_CONF_FILTER:
469                         *data = g_variant_new_boolean(devc->filter[ch_idx]);
470                         break;
471                 case SR_CONF_VDIV:
472                         vdiv = vdivs[devc->voltage[ch_idx]];
473                         *data = g_variant_new("(tt)", vdiv[0], vdiv[1]);
474                         break;
475                 case SR_CONF_COUPLING:
476                         *data = g_variant_new_string(coupling[devc->coupling[ch_idx]]);
477                         break;
478                 }
479         }
480
481         return SR_OK;
482 }
483
484 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
485                 const struct sr_channel_group *cg)
486 {
487         struct dev_context *devc;
488         double tmp_double;
489         uint64_t tmp_u64, p, q;
490         int tmp_int, ch_idx, ret;
491         unsigned int i;
492         const char *tmp_str;
493
494         if (sdi->status != SR_ST_ACTIVE)
495                 return SR_ERR_DEV_CLOSED;
496
497         ret = SR_OK;
498         devc = sdi->priv;
499         if (!cg) {
500                 switch (key) {
501                 case SR_CONF_LIMIT_FRAMES:
502                         devc->limit_frames = g_variant_get_uint64(data);
503                         break;
504                 case SR_CONF_TRIGGER_SLOPE:
505                         tmp_str = g_variant_get_string(data, NULL);
506                         if (!tmp_str || !(tmp_str[0] == 'f' || tmp_str[0] == 'r'))
507                                 return SR_ERR_ARG;
508                         devc->triggerslope = (tmp_str[0] == 'r')
509                                 ? SLOPE_POSITIVE : SLOPE_NEGATIVE;
510                         break;
511                 case SR_CONF_HORIZ_TRIGGERPOS:
512                         tmp_double = g_variant_get_double(data);
513                         if (tmp_double < 0.0 || tmp_double > 1.0) {
514                                 sr_err("Trigger position should be between 0.0 and 1.0.");
515                                 ret = SR_ERR_ARG;
516                         } else
517                                 devc->triggerposition = tmp_double;
518                         break;
519                 case SR_CONF_BUFFERSIZE:
520                         tmp_u64 = g_variant_get_uint64(data);
521                         for (i = 0; i < NUM_BUFFER_SIZES; i++) {
522                                 if (devc->profile->buffersizes[i] == tmp_u64) {
523                                         devc->framesize = tmp_u64;
524                                         break;
525                                 }
526                         }
527                         if (i == NUM_BUFFER_SIZES)
528                                 ret = SR_ERR_ARG;
529                         break;
530                 case SR_CONF_TIMEBASE:
531                         g_variant_get(data, "(tt)", &p, &q);
532                         tmp_int = -1;
533                         for (i = 0; i < ARRAY_SIZE(timebases); i++) {
534                                 if (timebases[i][0] == p && timebases[i][1] == q) {
535                                         tmp_int = i;
536                                         break;
537                                 }
538                         }
539                         if (tmp_int >= 0)
540                                 devc->timebase = tmp_int;
541                         else
542                                 ret = SR_ERR_ARG;
543                         break;
544                 case SR_CONF_TRIGGER_SOURCE:
545                         tmp_str = g_variant_get_string(data, NULL);
546                         for (i = 0; trigger_sources[i]; i++) {
547                                 if (!strcmp(tmp_str, trigger_sources[i])) {
548                                         devc->triggersource = g_strdup(tmp_str);
549                                         break;
550                                 }
551                         }
552                         if (trigger_sources[i] == 0)
553                                 ret = SR_ERR_ARG;
554                         break;
555                 default:
556                         ret = SR_ERR_NA;
557                         break;
558                 }
559         } else {
560                 if (sdi->channel_groups->data == cg)
561                         ch_idx = 0;
562                 else if (sdi->channel_groups->next->data == cg)
563                         ch_idx = 1;
564                 else
565                         return SR_ERR_ARG;
566                 switch (key) {
567                 case SR_CONF_FILTER:
568                         devc->filter[ch_idx] = g_variant_get_boolean(data);
569                         break;
570                 case SR_CONF_VDIV:
571                         g_variant_get(data, "(tt)", &p, &q);
572                         tmp_int = -1;
573                         for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
574                                 if (vdivs[i][0] == p && vdivs[i][1] == q) {
575                                         tmp_int = i;
576                                         break;
577                                 }
578                         }
579                         if (tmp_int >= 0) {
580                                 devc->voltage[ch_idx] = tmp_int;
581                         } else
582                                 ret = SR_ERR_ARG;
583                         break;
584                 case SR_CONF_COUPLING:
585                         tmp_str = g_variant_get_string(data, NULL);
586                         for (i = 0; coupling[i]; i++) {
587                                 if (!strcmp(tmp_str, coupling[i])) {
588                                         devc->coupling[ch_idx] = i;
589                                         break;
590                                 }
591                         }
592                         if (coupling[i] == 0)
593                                 ret = SR_ERR_ARG;
594                         break;
595                 default:
596                         ret = SR_ERR_NA;
597                         break;
598                 }
599         }
600
601         return ret;
602 }
603
604 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
605                 const struct sr_channel_group *cg)
606 {
607         struct dev_context *devc;
608         GVariant *tuple, *rational[2];
609         GVariantBuilder gvb;
610         unsigned int i;
611
612         if (key == SR_CONF_SCAN_OPTIONS) {
613                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
614                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
615                 return SR_OK;
616         } else if (key == SR_CONF_DEVICE_OPTIONS && !sdi) {
617                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
618                                 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
619                 return SR_OK;
620         }
621
622         if (!sdi)
623                 return SR_ERR_ARG;
624
625         if (!cg) {
626                 switch (key) {
627                 case SR_CONF_DEVICE_OPTIONS:
628                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
629                                         devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
630                         break;
631                 case SR_CONF_BUFFERSIZE:
632                         if (!sdi)
633                                 return SR_ERR_ARG;
634                         devc = sdi->priv;
635                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT64,
636                                         devc->profile->buffersizes, NUM_BUFFER_SIZES, sizeof(uint64_t));
637                         break;
638                 case SR_CONF_TIMEBASE:
639                         g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
640                         for (i = 0; i < ARRAY_SIZE(timebases); i++) {
641                                 rational[0] = g_variant_new_uint64(timebases[i][0]);
642                                 rational[1] = g_variant_new_uint64(timebases[i][1]);
643                                 tuple = g_variant_new_tuple(rational, 2);
644                                 g_variant_builder_add_value(&gvb, tuple);
645                         }
646                         *data = g_variant_builder_end(&gvb);
647                         break;
648                 case SR_CONF_TRIGGER_SOURCE:
649                         *data = g_variant_new_strv(trigger_sources,
650                                         ARRAY_SIZE(trigger_sources));
651                         break;
652                 case SR_CONF_TRIGGER_SLOPE:
653                         *data = g_variant_new_strv(trigger_slopes,
654                                         ARRAY_SIZE(trigger_slopes));
655                         break;
656                 default:
657                         return SR_ERR_NA;
658                 }
659         } else {
660                 switch (key) {
661                 case SR_CONF_DEVICE_OPTIONS:
662                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
663                                         devopts_cg, ARRAY_SIZE(devopts_cg), sizeof(uint32_t));
664                         break;
665                 case SR_CONF_COUPLING:
666                         *data = g_variant_new_strv(coupling, ARRAY_SIZE(coupling));
667                         break;
668                 case SR_CONF_VDIV:
669                         g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
670                         for (i = 0; i < ARRAY_SIZE(vdivs); i++) {
671                                 rational[0] = g_variant_new_uint64(vdivs[i][0]);
672                                 rational[1] = g_variant_new_uint64(vdivs[i][1]);
673                                 tuple = g_variant_new_tuple(rational, 2);
674                                 g_variant_builder_add_value(&gvb, tuple);
675                         }
676                         *data = g_variant_builder_end(&gvb);
677                         break;
678                 default:
679                         return SR_ERR_NA;
680                 }
681         }
682
683         return SR_OK;
684 }
685
686 static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
687                 int num_samples)
688 {
689         struct sr_datafeed_packet packet;
690         struct sr_datafeed_analog analog;
691         struct sr_analog_encoding encoding;
692         struct sr_analog_meaning meaning;
693         struct sr_analog_spec spec;
694         struct dev_context *devc = sdi->priv;
695         GSList *channels = devc->enabled_channels;
696
697         packet.type = SR_DF_ANALOG;
698         packet.payload = &analog;
699         /* TODO: support for 5xxx series 9-bit samples */
700         sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
701         analog.num_samples = num_samples;
702         analog.meaning->mq = SR_MQ_VOLTAGE;
703         analog.meaning->unit = SR_UNIT_VOLT;
704         analog.meaning->mqflags = 0;
705         /* TODO: Check malloc return value. */
706         analog.data = g_try_malloc(num_samples * sizeof(float));
707
708         for (int ch = 0; ch < 2; ch++) {
709                 if (!devc->ch_enabled[ch])
710                         continue;
711
712                 float range = ((float)vdivs[devc->voltage[ch]][0] / vdivs[devc->voltage[ch]][1]) * 8;
713                 float vdivlog = log10f(range / 255);
714                 int digits = -(int)vdivlog + (vdivlog < 0.0);
715                 analog.encoding->digits = digits;
716                 analog.spec->spec_digits = digits;
717                 analog.meaning->channels = g_slist_append(NULL, channels->data);
718
719                 for (int i = 0; i < num_samples; i++) {
720                         /*
721                          * The device always sends data for both channels. If a channel
722                          * is disabled, it contains a copy of the enabled channel's
723                          * data. However, we only send the requested channels to
724                          * the bus.
725                          *
726                          * Voltage values are encoded as a value 0-255 (0-512 on the
727                          * DSO-5200*), where the value is a point in the range
728                          * represented by the vdiv setting. There are 8 vertical divs,
729                          * so e.g. 500mV/div represents 4V peak-to-peak where 0 = -2V
730                          * and 255 = +2V.
731                          */
732                         /* TODO: Support for DSO-5xxx series 9-bit samples. */
733                         ((float *)analog.data)[i] = range / 255 * *(buf + i * 2 + 1 - ch) - range / 2;
734                 }
735                 sr_session_send(sdi, &packet);
736                 g_slist_free(analog.meaning->channels);
737
738                 channels = channels->next;
739         }
740         g_free(analog.data);
741 }
742
743 /*
744  * Called by libusb (as triggered by handle_event()) when a transfer comes in.
745  * Only channel data comes in asynchronously, and all transfers for this are
746  * queued up beforehand, so this just needs to chuck the incoming data onto
747  * the libsigrok session bus.
748  */
749 static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
750 {
751         struct sr_datafeed_packet packet;
752         struct sr_dev_inst *sdi;
753         struct dev_context *devc;
754         int num_samples, pre;
755
756         sdi = transfer->user_data;
757         devc = sdi->priv;
758         sr_spew("receive_transfer(): status %s received %d bytes.",
759                 libusb_error_name(transfer->status), transfer->actual_length);
760
761         if (transfer->actual_length == 0)
762                 /* Nothing to send to the bus. */
763                 return;
764
765         num_samples = transfer->actual_length / 2;
766
767         sr_spew("Got %d-%d/%d samples in frame.", devc->samp_received + 1,
768                 devc->samp_received + num_samples, devc->framesize);
769
770         /*
771          * The device always sends a full frame, but the beginning of the frame
772          * doesn't represent the trigger point. The offset at which the trigger
773          * happened came in with the capture state, so we need to start sending
774          * from there up the session bus. The samples in the frame buffer
775          * before that trigger point came after the end of the device's frame
776          * buffer was reached, and it wrapped around to overwrite up until the
777          * trigger point.
778          */
779         if (devc->samp_received < devc->trigger_offset) {
780                 /* Trigger point not yet reached. */
781                 if (devc->samp_received + num_samples < devc->trigger_offset) {
782                         /* The entire chunk is before the trigger point. */
783                         memcpy(devc->framebuf + devc->samp_buffered * 2,
784                                         transfer->buffer, num_samples * 2);
785                         devc->samp_buffered += num_samples;
786                 } else {
787                         /*
788                          * This chunk hits or overruns the trigger point.
789                          * Store the part before the trigger fired, and
790                          * send the rest up to the session bus.
791                          */
792                         pre = devc->trigger_offset - devc->samp_received;
793                         memcpy(devc->framebuf + devc->samp_buffered * 2,
794                                         transfer->buffer, pre * 2);
795                         devc->samp_buffered += pre;
796
797                         /* The rest of this chunk starts with the trigger point. */
798                         sr_dbg("Reached trigger point, %d samples buffered.",
799                                 devc->samp_buffered);
800
801                         /* Avoid the corner case where the chunk ended at
802                          * exactly the trigger point. */
803                         if (num_samples > pre)
804                                 send_chunk(sdi, transfer->buffer + pre * 2,
805                                                 num_samples - pre);
806                 }
807         } else {
808                 /* Already past the trigger point, just send it all out. */
809                 send_chunk(sdi, transfer->buffer, num_samples);
810         }
811
812         devc->samp_received += num_samples;
813
814         /* Everything in this transfer was either copied to the buffer or
815          * sent to the session bus. */
816         g_free(transfer->buffer);
817         libusb_free_transfer(transfer);
818
819         if (devc->samp_received >= devc->framesize) {
820                 /* That was the last chunk in this frame. Send the buffered
821                  * pre-trigger samples out now, in one big chunk. */
822                 sr_dbg("End of frame, sending %d pre-trigger buffered samples.",
823                         devc->samp_buffered);
824                 send_chunk(sdi, devc->framebuf, devc->samp_buffered);
825
826                 /* Mark the end of this frame. */
827                 packet.type = SR_DF_FRAME_END;
828                 sr_session_send(sdi, &packet);
829
830                 if (devc->limit_frames && ++devc->num_frames == devc->limit_frames) {
831                         /* Terminate session */
832                         devc->dev_state = STOPPING;
833                 } else {
834                         devc->dev_state = NEW_CAPTURE;
835                 }
836         }
837 }
838
839 static int handle_event(int fd, int revents, void *cb_data)
840 {
841         const struct sr_dev_inst *sdi;
842         struct sr_datafeed_packet packet;
843         struct timeval tv;
844         struct sr_dev_driver *di;
845         struct dev_context *devc;
846         struct drv_context *drvc;
847         int num_channels;
848         uint32_t trigger_offset;
849         uint8_t capturestate;
850
851         (void)fd;
852         (void)revents;
853
854         sdi = cb_data;
855         di = sdi->driver;
856         drvc = di->context;
857         devc = sdi->priv;
858         if (devc->dev_state == STOPPING) {
859                 /* We've been told to wind up the acquisition. */
860                 sr_dbg("Stopping acquisition.");
861                 /*
862                  * TODO: Doesn't really cancel pending transfers so they might
863                  * come in after SR_DF_END is sent.
864                  */
865                 usb_source_remove(sdi->session, drvc->sr_ctx);
866
867                 std_session_send_df_end(sdi);
868
869                 devc->dev_state = IDLE;
870
871                 return TRUE;
872         }
873
874         /* Always handle pending libusb events. */
875         tv.tv_sec = tv.tv_usec = 0;
876         libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
877
878         /* TODO: ugh */
879         if (devc->dev_state == NEW_CAPTURE) {
880                 if (dso_capture_start(sdi) != SR_OK)
881                         return TRUE;
882                 if (dso_enable_trigger(sdi) != SR_OK)
883                         return TRUE;
884 //              if (dso_force_trigger(sdi) != SR_OK)
885 //                      return TRUE;
886                 sr_dbg("Successfully requested next chunk.");
887                 devc->dev_state = CAPTURE;
888                 return TRUE;
889         }
890         if (devc->dev_state != CAPTURE)
891                 return TRUE;
892
893         if ((dso_get_capturestate(sdi, &capturestate, &trigger_offset)) != SR_OK)
894                 return TRUE;
895
896         sr_dbg("Capturestate %d.", capturestate);
897         sr_dbg("Trigger offset 0x%.6x.", trigger_offset);
898         switch (capturestate) {
899         case CAPTURE_EMPTY:
900                 if (++devc->capture_empty_count >= MAX_CAPTURE_EMPTY) {
901                         devc->capture_empty_count = 0;
902                         if (dso_capture_start(sdi) != SR_OK)
903                                 break;
904                         if (dso_enable_trigger(sdi) != SR_OK)
905                                 break;
906 //                      if (dso_force_trigger(sdi) != SR_OK)
907 //                              break;
908                         sr_dbg("Successfully requested next chunk.");
909                 }
910                 break;
911         case CAPTURE_FILLING:
912                 /* No data yet. */
913                 break;
914         case CAPTURE_READY_8BIT:
915                 /* Remember where in the captured frame the trigger is. */
916                 devc->trigger_offset = trigger_offset;
917
918                 num_channels = (devc->ch_enabled[0] && devc->ch_enabled[1]) ? 2 : 1;
919                 devc->framebuf = g_malloc(devc->framesize * num_channels * 2);
920                 devc->samp_buffered = devc->samp_received = 0;
921
922                 /* Tell the scope to send us the first frame. */
923                 if (dso_get_channeldata(sdi, receive_transfer) != SR_OK)
924                         break;
925
926                 /*
927                  * Don't hit the state machine again until we're done fetching
928                  * the data we just told the scope to send.
929                  */
930                 devc->dev_state = FETCH_DATA;
931
932                 /* Tell the frontend a new frame is on the way. */
933                 packet.type = SR_DF_FRAME_BEGIN;
934                 sr_session_send(sdi, &packet);
935                 break;
936         case CAPTURE_READY_9BIT:
937                 /* TODO */
938                 sr_err("Not yet supported.");
939                 break;
940         case CAPTURE_TIMEOUT:
941                 /* Doesn't matter, we'll try again next time. */
942                 break;
943         default:
944                 sr_dbg("Unknown capture state: %d.", capturestate);
945                 break;
946         }
947
948         return TRUE;
949 }
950
951 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
952 {
953         struct dev_context *devc;
954         struct sr_dev_driver *di = sdi->driver;
955         struct drv_context *drvc = di->context;
956
957         devc = sdi->priv;
958
959         if (configure_channels(sdi) != SR_OK) {
960                 sr_err("Failed to configure channels.");
961                 return SR_ERR;
962         }
963
964         if (dso_init(sdi) != SR_OK)
965                 return SR_ERR;
966
967         if (dso_capture_start(sdi) != SR_OK)
968                 return SR_ERR;
969
970         devc->dev_state = CAPTURE;
971         usb_source_add(sdi->session, drvc->sr_ctx, TICK, handle_event, (void *)sdi);
972
973         std_session_send_df_header(sdi);
974
975         return SR_OK;
976 }
977
978 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
979 {
980         struct dev_context *devc;
981
982         devc = sdi->priv;
983         devc->dev_state = STOPPING;
984
985         return SR_OK;
986 }
987
988 static struct sr_dev_driver hantek_dso_driver_info = {
989         .name = "hantek-dso",
990         .longname = "Hantek DSO",
991         .api_version = 1,
992         .init = std_init,
993         .cleanup = std_cleanup,
994         .scan = scan,
995         .dev_list = std_dev_list,
996         .dev_clear = dev_clear,
997         .config_get = config_get,
998         .config_set = config_set,
999         .config_list = config_list,
1000         .dev_open = dev_open,
1001         .dev_close = dev_close,
1002         .dev_acquisition_start = dev_acquisition_start,
1003         .dev_acquisition_stop = dev_acquisition_stop,
1004         .context = NULL,
1005 };
1006 SR_REGISTER_DEV_DRIVER(hantek_dso_driver_info);