]> sigrok.org Git - libsigrok.git/blob - hardware/zeroplus-logic-cube/zeroplus.c
sr/drivers: change driver dev_acquisition_start/_stop calls to use sdi
[libsigrok.git] / hardware / zeroplus-logic-cube / zeroplus.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-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 <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/time.h>
24 #include <inttypes.h>
25 #include <glib.h>
26 #include <libusb.h>
27 #include "config.h"
28 #include "libsigrok.h"
29 #include "libsigrok-internal.h"
30 #include "analyzer.h"
31
32 #define USB_VENDOR                      0x0c12
33
34 #define VENDOR_NAME                     "ZEROPLUS"
35 #define MODEL_NAME                      "Logic Cube LAP-C"
36 #define MODEL_VERSION                   NULL
37
38 #define NUM_PROBES                      16
39 #define USB_INTERFACE                   0
40 #define USB_CONFIGURATION               1
41 #define NUM_TRIGGER_STAGES              4
42 #define TRIGGER_TYPES                   "01"
43
44 #define PACKET_SIZE                     2048    /* ?? */
45
46 typedef struct {
47         unsigned short pid;
48         char model_name[64];
49         unsigned int channels;
50         unsigned int sample_depth;      /* In Ksamples/channel */
51         unsigned int max_sampling_freq;
52 } model_t;
53
54 /*
55  * Note -- 16032, 16064 and 16128 *usually* -- but not always -- have the
56  * same 128K sample depth.
57  */
58 static model_t zeroplus_models[] = {
59         {0x7009, "LAP-C(16064)",  16, 64,   100},
60         {0x700A, "LAP-C(16128)",  16, 128,  200},
61         {0x700B, "LAP-C(32128)",  32, 128,  200},
62         {0x700C, "LAP-C(321000)", 32, 1024, 200},
63         {0x700D, "LAP-C(322000)", 32, 2048, 200},
64         {0x700E, "LAP-C(16032)",  16, 32,   100},
65         {0x7016, "LAP-C(162000)", 16, 2048, 200},
66 };
67
68 static const int hwcaps[] = {
69         SR_HWCAP_LOGIC_ANALYZER,
70         SR_HWCAP_SAMPLERATE,
71         SR_HWCAP_PROBECONFIG,
72         SR_HWCAP_CAPTURE_RATIO,
73
74         /* These are really implemented in the driver, not the hardware. */
75         SR_HWCAP_LIMIT_SAMPLES,
76         0,
77 };
78
79 /*
80  * ZEROPLUS LAP-C (16032) numbers the 16 probes A0-A7 and B0-B7.
81  * We currently ignore other untested/unsupported devices here.
82  */
83 static const char *probe_names[NUM_PROBES + 1] = {
84         "A0",
85         "A1",
86         "A2",
87         "A3",
88         "A4",
89         "A5",
90         "A6",
91         "A7",
92         "B0",
93         "B1",
94         "B2",
95         "B3",
96         "B4",
97         "B5",
98         "B6",
99         "B7",
100         NULL,
101 };
102
103 /* List of struct sr_dev_inst, maintained by dev_open()/dev_close(). */
104 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
105 static struct sr_dev_driver *zdi = &zeroplus_logic_cube_driver_info;
106
107 static libusb_context *usb_context = NULL;
108
109 /*
110  * The hardware supports more samplerates than these, but these are the
111  * options hardcoded into the vendor's Windows GUI.
112  */
113
114 /*
115  * TODO: We shouldn't support 150MHz and 200MHz on devices that don't go up
116  * that high.
117  */
118 static const uint64_t supported_samplerates[] = {
119         SR_HZ(100),
120         SR_HZ(500),
121         SR_KHZ(1),
122         SR_KHZ(5),
123         SR_KHZ(25),
124         SR_KHZ(50),
125         SR_KHZ(100),
126         SR_KHZ(200),
127         SR_KHZ(400),
128         SR_KHZ(800),
129         SR_MHZ(1),
130         SR_MHZ(10),
131         SR_MHZ(25),
132         SR_MHZ(50),
133         SR_MHZ(80),
134         SR_MHZ(100),
135         SR_MHZ(150),
136         SR_MHZ(200),
137         0,
138 };
139
140 static const struct sr_samplerates samplerates = {
141         0,
142         0,
143         0,
144         supported_samplerates,
145 };
146
147 /* Private, per-device-instance driver context. */
148 struct context {
149         uint64_t cur_samplerate;
150         uint64_t limit_samples;
151         int num_channels; /* TODO: This isn't initialized before it's needed :( */
152         uint64_t memory_size;
153         uint8_t probe_mask;
154         uint8_t trigger_mask[NUM_TRIGGER_STAGES];
155         uint8_t trigger_value[NUM_TRIGGER_STAGES];
156         // uint8_t trigger_buffer[NUM_TRIGGER_STAGES];
157
158         /* TODO: this belongs in the device instance */
159         struct sr_usb_dev_inst *usb;
160 };
161
162 static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
163                 const void *value);
164 static int hw_dev_close(struct sr_dev_inst *sdi);
165
166 static unsigned int get_memory_size(int type)
167 {
168         if (type == MEMORY_SIZE_8K)
169                 return 8 * 1024;
170         else if (type == MEMORY_SIZE_64K)
171                 return 64 * 1024;
172         else if (type == MEMORY_SIZE_128K)
173                 return 128 * 1024;
174         else if (type == MEMORY_SIZE_512K)
175                 return 512 * 1024;
176         else
177                 return 0;
178 }
179
180 static int opendev4(struct sr_dev_inst **sdi, libusb_device *dev,
181                     struct libusb_device_descriptor *des)
182 {
183         struct context *ctx;
184         unsigned int i;
185         int ret;
186
187         /* Note: sdi is non-NULL, the caller already checked this. */
188
189         if (!(ctx = (*sdi)->priv)) {
190                 sr_err("zp: %s: (*sdi)->priv was NULL", __func__);
191                 return -1;
192         }
193
194         if ((ret = libusb_get_device_descriptor(dev, des))) {
195                 sr_err("zp: failed to get device descriptor: %d", ret);
196                 return -1;
197         }
198
199         if (des->idVendor != USB_VENDOR)
200                 return 0;
201
202         if (libusb_get_bus_number(dev) == ctx->usb->bus
203             && libusb_get_device_address(dev) == ctx->usb->address) {
204
205                 for (i = 0; i < ARRAY_SIZE(zeroplus_models); i++) {
206                         if (!(des->idProduct == zeroplus_models[i].pid))
207                                 continue;
208
209                         sr_info("zp: Found ZEROPLUS device 0x%04x (%s)",
210                                 des->idProduct, zeroplus_models[i].model_name);
211                         ctx->num_channels = zeroplus_models[i].channels;
212                         ctx->memory_size = zeroplus_models[i].sample_depth * 1024;
213                         break;
214                 }
215
216                 if (ctx->num_channels == 0) {
217                         sr_err("zp: Unknown ZEROPLUS device 0x%04x",
218                                des->idProduct);
219                         return -2;
220                 }
221
222                 /* Found it. */
223                 if (!(ret = libusb_open(dev, &(ctx->usb->devhdl)))) {
224                         (*sdi)->status = SR_ST_ACTIVE;
225                         sr_info("zp: opened device %d on %d.%d interface %d",
226                                 (*sdi)->index, ctx->usb->bus,
227                                 ctx->usb->address, USB_INTERFACE);
228                 } else {
229                         sr_err("zp: failed to open device: %d", ret);
230                         *sdi = NULL;
231                 }
232         }
233
234         return 0;
235 }
236
237 static struct sr_dev_inst *zp_open_dev(int dev_index)
238 {
239         struct sr_dev_inst *sdi;
240         libusb_device **devlist;
241         struct libusb_device_descriptor des;
242         int i;
243
244         if (!(sdi = sr_dev_inst_get(zdi->instances, dev_index)))
245                 return NULL;
246
247         libusb_get_device_list(usb_context, &devlist);
248         if (sdi->status == SR_ST_INACTIVE) {
249                 /* Find the device by vendor, product, bus and address. */
250                 libusb_get_device_list(usb_context, &devlist);
251                 for (i = 0; devlist[i]; i++) {
252                         /* TODO: Error handling. */
253                         opendev4(&sdi, devlist[i], &des);
254                 }
255         } else {
256                 /* Status must be SR_ST_ACTIVE, i.e. already in use... */
257                 sdi = NULL;
258         }
259         libusb_free_device_list(devlist, 1);
260
261         if (sdi && sdi->status != SR_ST_ACTIVE)
262                 sdi = NULL;
263
264         return sdi;
265 }
266
267 static int configure_probes(const struct sr_dev_inst *sdi, const GSList *probes)
268 {
269         struct context *ctx;
270         const struct sr_probe *probe;
271         const GSList *l;
272         int probe_bit, stage, i;
273         char *tc;
274
275         /* Note: sdi and sdi->priv are non-NULL, the caller checked this. */
276         ctx = sdi->priv;
277
278         ctx->probe_mask = 0;
279         for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
280                 ctx->trigger_mask[i] = 0;
281                 ctx->trigger_value[i] = 0;
282         }
283
284         stage = -1;
285         for (l = probes; l; l = l->next) {
286                 probe = (struct sr_probe *)l->data;
287                 if (probe->enabled == FALSE)
288                         continue;
289                 probe_bit = 1 << (probe->index - 1);
290                 ctx->probe_mask |= probe_bit;
291
292                 if (probe->trigger) {
293                         stage = 0;
294                         for (tc = probe->trigger; *tc; tc++) {
295                                 ctx->trigger_mask[stage] |= probe_bit;
296                                 if (*tc == '1')
297                                         ctx->trigger_value[stage] |= probe_bit;
298                                 stage++;
299                                 if (stage > NUM_TRIGGER_STAGES)
300                                         return SR_ERR;
301                         }
302                 }
303         }
304
305         return SR_OK;
306 }
307
308 static void clear_instances(void)
309 {
310         GSList *l;
311         struct sr_dev_inst *sdi;
312
313         for (l = zdi->instances; l; l = l->next) {
314                 sdi = l->data;
315                 /* Properly close all devices... */
316                 hw_dev_close(sdi);
317                 /* ...and free all their memory. */
318                 sr_dev_inst_free(sdi);
319         }
320         g_slist_free(zdi->instances);
321         zdi->instances = NULL;
322
323 }
324
325 /*
326  * API callbacks
327  */
328
329 static int hw_init(void)
330 {
331
332         if (libusb_init(&usb_context) != 0) {
333                 sr_err("zp: Failed to initialize USB.");
334                 return 0;
335         }
336
337         return SR_OK;
338 }
339
340 static GSList *hw_scan(GSList *options)
341 {
342         struct sr_dev_inst *sdi;
343         struct libusb_device_descriptor des;
344         GSList *devices;
345         libusb_device **devlist;
346         int ret, devcnt, i;
347         struct context *ctx;
348
349         (void)options;
350         devices = NULL;
351
352         clear_instances();
353
354         /* Allocate memory for our private driver context. */
355         if (!(ctx = g_try_malloc(sizeof(struct context)))) {
356                 sr_err("zp: %s: ctx malloc failed", __func__);
357                 return 0;
358         }
359
360         /* Set some sane defaults. */
361         ctx->cur_samplerate = 0;
362         ctx->limit_samples = 0;
363         /* TODO: num_channels isn't initialized before it's needed :( */
364         ctx->num_channels = NUM_PROBES;
365         ctx->memory_size = 0;
366         ctx->probe_mask = 0;
367         memset(ctx->trigger_mask, 0, NUM_TRIGGER_STAGES);
368         memset(ctx->trigger_value, 0, NUM_TRIGGER_STAGES);
369         // memset(ctx->trigger_buffer, 0, NUM_TRIGGER_STAGES);
370
371         /* Find all ZEROPLUS analyzers and add them to device list. */
372         devcnt = 0;
373         libusb_get_device_list(usb_context, &devlist); /* TODO: Errors. */
374
375         for (i = 0; devlist[i]; i++) {
376                 ret = libusb_get_device_descriptor(devlist[i], &des);
377                 if (ret != 0) {
378                         sr_err("zp: failed to get device descriptor: %d", ret);
379                         continue;
380                 }
381
382                 if (des.idVendor == USB_VENDOR) {
383                         /*
384                          * Definitely a ZEROPLUS.
385                          * TODO: Any way to detect specific model/version in
386                          * the ZEROPLUS range?
387                          */
388                         /* Register the device with libsigrok. */
389                         if (!(sdi = sr_dev_inst_new(devcnt,
390                                         SR_ST_INACTIVE, VENDOR_NAME,
391                                         MODEL_NAME, MODEL_VERSION))) {
392                                 sr_err("zp: %s: sr_dev_inst_new failed",
393                                        __func__);
394                                 return 0;
395                         }
396                         sdi->driver = zdi;
397                         sdi->priv = ctx;
398
399                         devices = g_slist_append(devices, sdi);
400                         zdi->instances = g_slist_append(zdi->instances, sdi);
401                         ctx->usb = sr_usb_dev_inst_new(
402                                 libusb_get_bus_number(devlist[i]),
403                                 libusb_get_device_address(devlist[i]), NULL);
404                         devcnt++;
405                 }
406         }
407         libusb_free_device_list(devlist, 1);
408
409         return devices;
410 }
411
412 static int hw_dev_open(struct sr_dev_inst *sdi)
413 {
414         struct context *ctx;
415         int ret;
416
417         if (!(ctx = sdi->priv)) {
418                 sr_err("zp: %s: sdi->priv was NULL", __func__);
419                 return SR_ERR_ARG;
420         }
421
422         ret = libusb_set_configuration(ctx->usb->devhdl, USB_CONFIGURATION);
423         if (ret < 0) {
424                 sr_err("zp: Unable to set USB configuration %d: %d",
425                        USB_CONFIGURATION, ret);
426                 return SR_ERR;
427         }
428
429         ret = libusb_claim_interface(ctx->usb->devhdl, USB_INTERFACE);
430         if (ret != 0) {
431                 sr_err("zp: Unable to claim interface: %d", ret);
432                 return SR_ERR;
433         }
434
435         analyzer_reset(ctx->usb->devhdl);
436         analyzer_initialize(ctx->usb->devhdl);
437
438         analyzer_set_memory_size(MEMORY_SIZE_512K);
439         // analyzer_set_freq(g_freq, g_freq_scale);
440         analyzer_set_trigger_count(1);
441         // analyzer_set_ramsize_trigger_address((((100 - g_pre_trigger)
442         // * get_memory_size(g_memory_size)) / 100) >> 2);
443         analyzer_set_ramsize_trigger_address(
444                 (100 * get_memory_size(MEMORY_SIZE_512K) / 100) >> 2);
445
446 #if 0
447         if (g_double_mode == 1)
448                 analyzer_set_compression(COMPRESSION_DOUBLE);
449         else if (g_compression == 1)
450                 analyzer_set_compression(COMPRESSION_ENABLE);
451         else
452 #endif
453         analyzer_set_compression(COMPRESSION_NONE);
454
455         if (ctx->cur_samplerate == 0) {
456                 /* Samplerate hasn't been set. Default to the slowest one. */
457                 if (hw_dev_config_set(sdi, SR_HWCAP_SAMPLERATE,
458                      &samplerates.list[0]) == SR_ERR)
459                         return SR_ERR;
460         }
461
462         return SR_OK;
463 }
464
465 static int hw_dev_close(struct sr_dev_inst *sdi)
466 {
467         struct context *ctx;
468
469         if (!(ctx = sdi->priv)) {
470                 sr_err("zp: %s: sdi->priv was NULL", __func__);
471                 return SR_ERR;
472         }
473
474         if (!ctx->usb->devhdl)
475                 return SR_ERR;
476
477         sr_info("zp: closing device %d on %d.%d interface %d", sdi->index,
478                 ctx->usb->bus, ctx->usb->address, USB_INTERFACE);
479         libusb_release_interface(ctx->usb->devhdl, USB_INTERFACE);
480         libusb_reset_device(ctx->usb->devhdl);
481         libusb_close(ctx->usb->devhdl);
482         ctx->usb->devhdl = NULL;
483         sdi->status = SR_ST_INACTIVE;
484
485         return SR_OK;
486 }
487
488 static int hw_cleanup(void)
489 {
490
491         clear_instances();
492
493         if (usb_context)
494                 libusb_exit(usb_context);
495         usb_context = NULL;
496
497         return SR_OK;
498 }
499
500 static int hw_info_get(int info_id, const void **data,
501        const struct sr_dev_inst *sdi)
502 {
503         struct context *ctx;
504
505         switch (info_id) {
506         case SR_DI_INST:
507                 *data = sdi;
508                 sr_spew("zp: %s: Returning sdi.", __func__);
509                 break;
510         case SR_DI_HWCAPS:
511                 *data = hwcaps;
512                 break;
513         case SR_DI_NUM_PROBES:
514                 if (sdi) {
515                         ctx = sdi->priv;
516                         *data = GINT_TO_POINTER(ctx->num_channels);
517                         sr_spew("zp: %s: Returning number of channels: %d.",
518                                         __func__, ctx->num_channels);
519                 } else
520                         return SR_ERR;
521                 break;
522         case SR_DI_PROBE_NAMES:
523                 *data = probe_names;
524                 sr_spew("zp: %s: Returning probenames.", __func__);
525                 break;
526         case SR_DI_SAMPLERATES:
527                 *data = &samplerates;
528                 sr_spew("zp: %s: Returning samplerates.", __func__);
529                 break;
530         case SR_DI_TRIGGER_TYPES:
531                 *data = TRIGGER_TYPES;
532                 sr_spew("zp: %s: Returning triggertypes: %s.", __func__, TRIGGER_TYPES);
533                 break;
534         case SR_DI_CUR_SAMPLERATE:
535                 if (sdi) {
536                         ctx = sdi->priv;
537                         *data = &ctx->cur_samplerate;
538                         sr_spew("zp: %s: Returning samplerate: %" PRIu64 "Hz.",
539                                 __func__, ctx->cur_samplerate);
540                 } else
541                         return SR_ERR;
542                 break;
543         default:
544                 return SR_ERR_ARG;
545         }
546
547         return SR_OK;
548 }
549
550 static int hw_dev_status_get(int dev_index)
551 {
552         struct sr_dev_inst *sdi;
553
554         sdi = sr_dev_inst_get(zdi->instances, dev_index);
555         if (sdi)
556                 return sdi->status;
557         else
558                 return SR_ST_NOT_FOUND;
559 }
560
561 static int set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate)
562 {
563         struct context *ctx;
564
565         if (!sdi) {
566                 sr_err("zp: %s: sdi was NULL", __func__);
567                 return SR_ERR_ARG;
568         }
569
570         if (!(ctx = sdi->priv)) {
571                 sr_err("zp: %s: sdi->priv was NULL", __func__);
572                 return SR_ERR_ARG;
573         }
574
575         sr_info("zp: Setting samplerate to %" PRIu64 "Hz.", samplerate);
576
577         if (samplerate > SR_MHZ(1))
578                 analyzer_set_freq(samplerate / SR_MHZ(1), FREQ_SCALE_MHZ);
579         else if (samplerate > SR_KHZ(1))
580                 analyzer_set_freq(samplerate / SR_KHZ(1), FREQ_SCALE_KHZ);
581         else
582                 analyzer_set_freq(samplerate, FREQ_SCALE_HZ);
583
584         ctx->cur_samplerate = samplerate;
585
586         return SR_OK;
587 }
588
589 static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
590                 const void *value)
591 {
592         struct context *ctx;
593
594         if (!(ctx = sdi->priv)) {
595                 sr_err("zp: %s: sdi->priv was NULL", __func__);
596                 return SR_ERR_ARG;
597         }
598
599         switch (hwcap) {
600         case SR_HWCAP_SAMPLERATE:
601                 return set_samplerate(sdi, *(const uint64_t *)value);
602         case SR_HWCAP_PROBECONFIG:
603                 return configure_probes(sdi, (const GSList *)value);
604         case SR_HWCAP_LIMIT_SAMPLES:
605                 ctx->limit_samples = *(const uint64_t *)value;
606                 return SR_OK;
607         default:
608                 return SR_ERR;
609         }
610 }
611
612 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
613                 void *cb_data)
614 {
615         struct sr_datafeed_packet packet;
616         struct sr_datafeed_logic logic;
617         struct sr_datafeed_header header;
618         struct sr_datafeed_meta_logic meta;
619         uint64_t samples_read;
620         int res;
621         unsigned int packet_num;
622         unsigned char *buf;
623         struct context *ctx;
624
625         if (!(ctx = sdi->priv)) {
626                 sr_err("zp: %s: sdi->priv was NULL", __func__);
627                 return SR_ERR_ARG;
628         }
629
630         /* push configured settings to device */
631         analyzer_configure(ctx->usb->devhdl);
632
633         analyzer_start(ctx->usb->devhdl);
634         sr_info("zp: Waiting for data");
635         analyzer_wait_data(ctx->usb->devhdl);
636
637         sr_info("zp: Stop address    = 0x%x",
638                 analyzer_get_stop_address(ctx->usb->devhdl));
639         sr_info("zp: Now address     = 0x%x",
640                 analyzer_get_now_address(ctx->usb->devhdl));
641         sr_info("zp: Trigger address = 0x%x",
642                 analyzer_get_trigger_address(ctx->usb->devhdl));
643
644         packet.type = SR_DF_HEADER;
645         packet.payload = &header;
646         header.feed_version = 1;
647         gettimeofday(&header.starttime, NULL);
648         sr_session_send(cb_data, &packet);
649
650         /* Send metadata about the SR_DF_LOGIC packets to come. */
651         packet.type = SR_DF_META_LOGIC;
652         packet.payload = &meta;
653         meta.samplerate = ctx->cur_samplerate;
654         meta.num_probes = ctx->num_channels;
655         sr_session_send(cb_data, &packet);
656
657         if (!(buf = g_try_malloc(PACKET_SIZE))) {
658                 sr_err("zp: %s: buf malloc failed", __func__);
659                 return SR_ERR_MALLOC;
660         }
661
662         samples_read = 0;
663         analyzer_read_start(ctx->usb->devhdl);
664         /* Send the incoming transfer to the session bus. */
665         for (packet_num = 0; packet_num < (ctx->memory_size * 4 / PACKET_SIZE);
666              packet_num++) {
667                 res = analyzer_read_data(ctx->usb->devhdl, buf, PACKET_SIZE);
668                 sr_info("zp: Tried to read %llx bytes, actually read %x bytes",
669                         PACKET_SIZE, res);
670
671                 packet.type = SR_DF_LOGIC;
672                 packet.payload = &logic;
673                 logic.length = PACKET_SIZE;
674                 logic.unitsize = 4;
675                 logic.data = buf;
676                 sr_session_send(cb_data, &packet);
677                 samples_read += res / 4;
678         }
679         analyzer_read_stop(ctx->usb->devhdl);
680         g_free(buf);
681
682         packet.type = SR_DF_END;
683         sr_session_send(cb_data, &packet);
684
685         return SR_OK;
686 }
687
688 /* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
689 static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
690                 void *cb_data)
691 {
692         struct sr_datafeed_packet packet;
693         struct context *ctx;
694
695         packet.type = SR_DF_END;
696         sr_session_send(cb_data, &packet);
697
698         if (!(ctx = sdi->priv)) {
699                 sr_err("zp: %s: sdi->priv was NULL", __func__);
700                 return SR_ERR_BUG;
701         }
702
703         analyzer_reset(ctx->usb->devhdl);
704         /* TODO: Need to cancel and free any queued up transfers. */
705
706         return SR_OK;
707 }
708
709 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info = {
710         .name = "zeroplus-logic-cube",
711         .longname = "ZEROPLUS Logic Cube LAP-C series",
712         .api_version = 1,
713         .init = hw_init,
714         .cleanup = hw_cleanup,
715         .scan = hw_scan,
716         .dev_open = hw_dev_open,
717         .dev_close = hw_dev_close,
718         .info_get = hw_info_get,
719         .dev_status_get = hw_dev_status_get,
720         .dev_config_set = hw_dev_config_set,
721         .dev_acquisition_start = hw_dev_acquisition_start,
722         .dev_acquisition_stop = hw_dev_acquisition_stop,
723         .instances = NULL,
724 };