]> sigrok.org Git - libsigrok.git/blame - hardware/zeroplus-logic-cube/zeroplus.c
log messages: Use device name, not vendor name.
[libsigrok.git] / hardware / zeroplus-logic-cube / zeroplus.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 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
22b02383 20#include "config.h"
a1bb33af
UH
21#include <stdio.h>
22#include <stdlib.h>
23#include <sys/time.h>
24#include <inttypes.h>
25#include <glib.h>
26#include <libusb.h>
fed16f06 27#include <sigrok.h>
4cea9eb2 28#include <sigrok-internal.h>
a1bb33af
UH
29#include "analyzer.h"
30
fed16f06
UH
31#define USB_VENDOR 0x0c12
32#define USB_VENDOR_NAME "Zeroplus"
a1bb33af
UH
33#define USB_MODEL_NAME "Logic Cube"
34#define USB_MODEL_VERSION ""
35
36#define USB_INTERFACE 0
37#define USB_CONFIGURATION 1
38#define NUM_TRIGGER_STAGES 4
39#define TRIGGER_TYPES "01"
40
fed16f06 41#define PACKET_SIZE 2048 /* ?? */
a1bb33af
UH
42
43typedef struct {
44 unsigned short pid;
45 char model_name[64];
46 unsigned int channels;
fed16f06 47 unsigned int sample_depth; /* In Ksamples/channel */
a1bb33af
UH
48 unsigned int max_sampling_freq;
49} model_t;
50
fed16f06
UH
51/*
52 * Note -- 16032, 16064 and 16128 *usually* -- but not always -- have the
53 * same 128K sample depth.
54 */
29cbfeaf 55static model_t zeroplus_models[] = {
a1bb33af
UH
56 {0x7009, "LAP-C(16064)", 16, 64, 100},
57 {0x700A, "LAP-C(16128)", 16, 128, 200},
58 {0x700B, "LAP-C(32128)", 32, 128, 200},
59 {0x700C, "LAP-C(321000)", 32, 1024, 200},
60 {0x700D, "LAP-C(322000)", 32, 2048, 200},
61 {0x700E, "LAP-C(16032)", 16, 32, 100},
62 {0x7016, "LAP-C(162000)", 16, 2048, 200},
63};
64
65static int capabilities[] = {
5a2326a7
UH
66 SR_HWCAP_LOGIC_ANALYZER,
67 SR_HWCAP_SAMPLERATE,
68 SR_HWCAP_PROBECONFIG,
69 SR_HWCAP_CAPTURE_RATIO,
a1bb33af 70
fed16f06 71 /* These are really implemented in the driver, not the hardware. */
5a2326a7 72 SR_HWCAP_LIMIT_SAMPLES,
fed16f06 73 0,
a1bb33af
UH
74};
75
a00ba012 76/* List of struct sr_device_instance, maintained by opendev()/closedev(). */
a1bb33af
UH
77static GSList *device_instances = NULL;
78
79static libusb_context *usb_context = NULL;
80
fed16f06
UH
81/*
82 * The hardware supports more samplerates than these, but these are the
83 * options hardcoded into the vendor's Windows GUI.
84 */
a1bb33af 85
fed16f06
UH
86/*
87 * TODO: We shouldn't support 150MHz and 200MHz on devices that don't go up
88 * that high.
89 */
a1bb33af 90static uint64_t supported_samplerates[] = {
c9140419
UH
91 SR_HZ(100),
92 SR_HZ(500),
59df0c77
UH
93 SR_KHZ(1),
94 SR_KHZ(5),
95 SR_KHZ(25),
96 SR_KHZ(50),
97 SR_KHZ(100),
98 SR_KHZ(200),
99 SR_KHZ(400),
100 SR_KHZ(800),
101 SR_MHZ(1),
102 SR_MHZ(10),
103 SR_MHZ(25),
104 SR_MHZ(50),
105 SR_MHZ(80),
106 SR_MHZ(100),
107 SR_MHZ(150),
108 SR_MHZ(200),
fed16f06 109 0,
a1bb33af
UH
110};
111
60679b18 112static struct sr_samplerates samplerates = {
c9140419
UH
113 SR_HZ(0),
114 SR_HZ(0),
115 SR_HZ(0),
fed16f06 116 supported_samplerates,
a1bb33af
UH
117};
118
fed16f06 119/* TODO: All of these should go in a device-specific struct. */
a1bb33af
UH
120static uint64_t cur_samplerate = 0;
121static uint64_t limit_samples = 0;
29cbfeaf
UH
122static int num_channels = 32; /* TODO: This isn't initialized before it's needed :( */
123static uint64_t memory_size = 0;
86c5e279 124static uint8_t probe_mask = 0;
fed16f06
UH
125static uint8_t trigger_mask[NUM_TRIGGER_STAGES] = { 0 };
126static uint8_t trigger_value[NUM_TRIGGER_STAGES] = { 0 };
a1bb33af 127
fed16f06 128// static uint8_t trigger_buffer[NUM_TRIGGER_STAGES] = { 0 };
a1bb33af
UH
129
130static int hw_set_configuration(int device_index, int capability, void *value);
131
132static unsigned int get_memory_size(int type)
133{
fed16f06
UH
134 if (type == MEMORY_SIZE_8K)
135 return 8 * 1024;
136 else if (type == MEMORY_SIZE_64K)
137 return 64 * 1024;
138 else if (type == MEMORY_SIZE_128K)
139 return 128 * 1024;
140 else if (type == MEMORY_SIZE_512K)
141 return 512 * 1024;
142 else
143 return 0;
a1bb33af
UH
144}
145
a00ba012 146static int opendev4(struct sr_device_instance **sdi, libusb_device *dev,
408e7199
UH
147 struct libusb_device_descriptor *des)
148{
9a498834
UH
149 unsigned int i;
150 int err;
408e7199
UH
151
152 if ((err = libusb_get_device_descriptor(dev, des))) {
b08024a8 153 sr_warn("failed to get device descriptor: %d", err);
408e7199
UH
154 return -1;
155 }
156
9a498834 157 if (des->idVendor != USB_VENDOR)
408e7199
UH
158 return 0;
159
160 if (libusb_get_bus_number(dev) == (*sdi)->usb->bus
161 && libusb_get_device_address(dev) == (*sdi)->usb->address) {
162
9a498834
UH
163 for (i = 0; i < ARRAY_SIZE(zeroplus_models); i++) {
164 if (!(des->idProduct == zeroplus_models[i].pid))
408e7199
UH
165 continue;
166
b08024a8
UH
167 sr_info("Found PID=%04X (%s)", des->idProduct,
168 zeroplus_models[i].model_name);
9a498834
UH
169 num_channels = zeroplus_models[i].channels;
170 memory_size = zeroplus_models[i].sample_depth * 1024;
408e7199
UH
171 break;
172 }
173
174 if (num_channels == 0) {
b08024a8 175 sr_warn("Unknown ZeroPlus device %04X", des->idProduct);
408e7199
UH
176 return -2;
177 }
178
179 /* Found it. */
180 if (!(err = libusb_open(dev, &((*sdi)->usb->devhdl)))) {
5a2326a7 181 (*sdi)->status = SR_ST_ACTIVE;
b08024a8
UH
182 sr_info("opened device %d on %d.%d interface %d",
183 (*sdi)->index, (*sdi)->usb->bus,
184 (*sdi)->usb->address, USB_INTERFACE);
408e7199 185 } else {
b08024a8 186 sr_warn("failed to open device: %d", err);
408e7199
UH
187 *sdi = NULL;
188 }
189 }
190
191 return 0;
192}
193
29cbfeaf 194static struct sr_device_instance *zp_open_device(int device_index)
a1bb33af 195{
a00ba012 196 struct sr_device_instance *sdi;
a1bb33af
UH
197 libusb_device **devlist;
198 struct libusb_device_descriptor des;
afc8e4de 199 int err, i;
a1bb33af 200
d32d961d 201 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
a1bb33af
UH
202 return NULL;
203
204 libusb_get_device_list(usb_context, &devlist);
5a2326a7 205 if (sdi->status == SR_ST_INACTIVE) {
fed16f06 206 /* Find the device by vendor, product, bus and address. */
a1bb33af 207 libusb_get_device_list(usb_context, &devlist);
fed16f06 208 for (i = 0; devlist[i]; i++) {
408e7199 209 /* TODO: Error handling. */
9a5c6dcf 210 err = opendev4(&sdi, devlist[i], &des);
a1bb33af 211 }
fed16f06 212 } else {
5a2326a7 213 /* Status must be SR_ST_ACTIVE, i.e. already in use... */
a1bb33af
UH
214 sdi = NULL;
215 }
216 libusb_free_device_list(devlist, 1);
217
5a2326a7 218 if (sdi && sdi->status != SR_ST_ACTIVE)
a1bb33af
UH
219 sdi = NULL;
220
221 return sdi;
222}
223
a00ba012 224static void close_device(struct sr_device_instance *sdi)
a1bb33af 225{
408e7199
UH
226 if (!sdi->usb->devhdl)
227 return;
228
b08024a8
UH
229 sr_info("closing device %d on %d.%d interface %d", sdi->index,
230 sdi->usb->bus, sdi->usb->address, USB_INTERFACE);
408e7199
UH
231 libusb_release_interface(sdi->usb->devhdl, USB_INTERFACE);
232 libusb_close(sdi->usb->devhdl);
233 sdi->usb->devhdl = NULL;
5a2326a7 234 sdi->status = SR_ST_INACTIVE;
a1bb33af
UH
235}
236
a1bb33af
UH
237static int configure_probes(GSList *probes)
238{
1afe8989 239 struct sr_probe *probe;
a1bb33af
UH
240 GSList *l;
241 int probe_bit, stage, i;
242 char *tc;
243
244 probe_mask = 0;
fed16f06 245 for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
a1bb33af
UH
246 trigger_mask[i] = 0;
247 trigger_value[i] = 0;
248 }
249
250 stage = -1;
fed16f06 251 for (l = probes; l; l = l->next) {
1afe8989 252 probe = (struct sr_probe *)l->data;
fed16f06 253 if (probe->enabled == FALSE)
a1bb33af
UH
254 continue;
255 probe_bit = 1 << (probe->index - 1);
256 probe_mask |= probe_bit;
fed16f06
UH
257
258 if (probe->trigger) {
a1bb33af 259 stage = 0;
fed16f06 260 for (tc = probe->trigger; *tc; tc++) {
a1bb33af 261 trigger_mask[stage] |= probe_bit;
fed16f06 262 if (*tc == '1')
a1bb33af
UH
263 trigger_value[stage] |= probe_bit;
264 stage++;
fed16f06 265 if (stage > NUM_TRIGGER_STAGES)
e46b8fb1 266 return SR_ERR;
a1bb33af
UH
267 }
268 }
269 }
270
e46b8fb1 271 return SR_OK;
a1bb33af
UH
272}
273
a1bb33af
UH
274/*
275 * API callbacks
276 */
277
54ac5277 278static int hw_init(const char *deviceinfo)
a1bb33af 279{
a00ba012 280 struct sr_device_instance *sdi;
a1bb33af
UH
281 struct libusb_device_descriptor des;
282 libusb_device **devlist;
283 int err, devcnt, i;
284
17e1afcb 285 /* Avoid compiler warnings. */
afc8e4de
UH
286 deviceinfo = deviceinfo;
287
fed16f06 288 if (libusb_init(&usb_context) != 0) {
b08024a8 289 sr_warn("Failed to initialize USB.");
a1bb33af
UH
290 return 0;
291 }
292
fed16f06 293 /* Find all ZeroPlus analyzers and add them to device list. */
a1bb33af
UH
294 devcnt = 0;
295 libusb_get_device_list(usb_context, &devlist);
fed16f06
UH
296
297 for (i = 0; devlist[i]; i++) {
a1bb33af 298 err = libusb_get_device_descriptor(devlist[i], &des);
fed16f06 299 if (err != 0) {
b08024a8 300 sr_warn("failed to get device descriptor: %d", err);
a1bb33af
UH
301 continue;
302 }
303
fed16f06
UH
304 if (des.idVendor == USB_VENDOR) {
305 /*
306 * Definitely a Zeroplus.
307 * TODO: Any way to detect specific model/version in
308 * the zeroplus range?
309 */
a00ba012 310 sdi = sr_device_instance_new(devcnt,
5a2326a7 311 SR_ST_INACTIVE, USB_VENDOR_NAME,
fed16f06
UH
312 USB_MODEL_NAME, USB_MODEL_VERSION);
313 if (!sdi)
a1bb33af 314 return 0;
fed16f06
UH
315 device_instances =
316 g_slist_append(device_instances, sdi);
6c290072 317 sdi->usb = sr_usb_device_instance_new(
fed16f06
UH
318 libusb_get_bus_number(devlist[i]),
319 libusb_get_device_address(devlist[i]), NULL);
a1bb33af
UH
320 devcnt++;
321 }
322 }
323 libusb_free_device_list(devlist, 1);
324
325 return devcnt;
326}
327
a1bb33af
UH
328static int hw_opendev(int device_index)
329{
a00ba012 330 struct sr_device_instance *sdi;
a1bb33af
UH
331 int err;
332
fed16f06 333 if (!(sdi = zp_open_device(device_index))) {
b08024a8 334 sr_warn("unable to open device");
e46b8fb1 335 return SR_ERR;
a1bb33af
UH
336 }
337
338 err = libusb_claim_interface(sdi->usb->devhdl, USB_INTERFACE);
fed16f06 339 if (err != 0) {
b08024a8 340 sr_warn("Unable to claim interface: %d", err);
e46b8fb1 341 return SR_ERR;
a1bb33af
UH
342 }
343 analyzer_reset(sdi->usb->devhdl);
344 analyzer_initialize(sdi->usb->devhdl);
a1bb33af
UH
345
346 analyzer_set_memory_size(MEMORY_SIZE_512K);
fed16f06 347 // analyzer_set_freq(g_freq, g_freq_scale);
a1bb33af 348 analyzer_set_trigger_count(1);
408e7199
UH
349 // analyzer_set_ramsize_trigger_address((((100 - g_pre_trigger)
350 // * get_memory_size(g_memory_size)) / 100) >> 2);
fed16f06
UH
351 analyzer_set_ramsize_trigger_address(
352 (100 * get_memory_size(MEMORY_SIZE_512K) / 100) >> 2);
a1bb33af 353
fed16f06
UH
354#if 0
355 if (g_double_mode == 1)
a1bb33af
UH
356 analyzer_set_compression(COMPRESSION_DOUBLE);
357 else if (g_compression == 1)
358 analyzer_set_compression(COMPRESSION_ENABLE);
fed16f06
UH
359 else
360#endif
361 analyzer_set_compression(COMPRESSION_NONE);
a1bb33af 362
fed16f06 363 if (cur_samplerate == 0) {
408e7199 364 /* Samplerate hasn't been set. Default to the slowest one. */
5a2326a7 365 if (hw_set_configuration(device_index, SR_HWCAP_SAMPLERATE,
e46b8fb1
UH
366 &samplerates.low) == SR_ERR)
367 return SR_ERR;
a1bb33af
UH
368 }
369
e46b8fb1 370 return SR_OK;
a1bb33af
UH
371}
372
697785d1 373static int hw_closedev(int device_index)
a1bb33af 374{
a00ba012 375 struct sr_device_instance *sdi;
a1bb33af 376
697785d1
UH
377 if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
378 sr_err("lap-c: %s: sdi was NULL", __func__);
379 return SR_ERR; /* TODO: SR_ERR_ARG? */
380 }
381
382 /* TODO */
383 close_device(sdi);
384
385 return SR_OK;
a1bb33af
UH
386}
387
a1bb33af
UH
388static void hw_cleanup(void)
389{
390 GSList *l;
391
408e7199 392 /* Properly close all devices... */
fed16f06 393 for (l = device_instances; l; l = l->next)
a00ba012 394 close_device((struct sr_device_instance *)l->data);
a1bb33af 395
408e7199 396 /* ...and free all their memory. */
fed16f06 397 for (l = device_instances; l; l = l->next)
a1bb33af
UH
398 g_free(l->data);
399 g_slist_free(device_instances);
400 device_instances = NULL;
401
fed16f06 402 if (usb_context)
a1bb33af
UH
403 libusb_exit(usb_context);
404 usb_context = NULL;
a1bb33af
UH
405}
406
a1bb33af
UH
407static void *hw_get_device_info(int device_index, int device_info_id)
408{
a00ba012 409 struct sr_device_instance *sdi;
408e7199 410 void *info = NULL;
a1bb33af 411
d32d961d 412 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
a1bb33af
UH
413 return NULL;
414
fed16f06 415 switch (device_info_id) {
5a2326a7 416 case SR_DI_INSTANCE:
a1bb33af
UH
417 info = sdi;
418 break;
5a2326a7 419 case SR_DI_NUM_PROBES:
a1bb33af
UH
420 info = GINT_TO_POINTER(num_channels);
421 break;
5a2326a7 422 case SR_DI_SAMPLERATES:
a1bb33af
UH
423 info = &samplerates;
424 break;
5a2326a7 425 case SR_DI_TRIGGER_TYPES:
a1bb33af
UH
426 info = TRIGGER_TYPES;
427 break;
5a2326a7 428 case SR_DI_CUR_SAMPLERATE:
a1bb33af
UH
429 info = &cur_samplerate;
430 break;
431 }
432
433 return info;
434}
435
a1bb33af
UH
436static int hw_get_status(int device_index)
437{
a00ba012 438 struct sr_device_instance *sdi;
a1bb33af 439
d32d961d 440 sdi = sr_get_device_instance(device_instances, device_index);
fed16f06 441 if (sdi)
a1bb33af
UH
442 return sdi->status;
443 else
5a2326a7 444 return SR_ST_NOT_FOUND;
a1bb33af
UH
445}
446
a1bb33af
UH
447static int *hw_get_capabilities(void)
448{
a1bb33af
UH
449 return capabilities;
450}
451
fed16f06 452/* TODO: This will set the same samplerate for all devices. */
afc8e4de 453static int set_configuration_samplerate(uint64_t samplerate)
a1bb33af 454{
b08024a8 455 sr_info("%s(%" PRIu64 ")", __FUNCTION__, samplerate);
59df0c77
UH
456 if (samplerate > SR_MHZ(1))
457 analyzer_set_freq(samplerate / SR_MHZ(1), FREQ_SCALE_MHZ);
458 else if (samplerate > SR_KHZ(1))
459 analyzer_set_freq(samplerate / SR_KHZ(1), FREQ_SCALE_KHZ);
a1bb33af 460 else
fed16f06 461 analyzer_set_freq(samplerate, FREQ_SCALE_HZ);
a1bb33af
UH
462
463 cur_samplerate = samplerate;
464
e46b8fb1 465 return SR_OK;
a1bb33af
UH
466}
467
468static int hw_set_configuration(int device_index, int capability, void *value)
469{
a00ba012 470 struct sr_device_instance *sdi;
a1bb33af
UH
471 uint64_t *tmp_u64;
472
d32d961d 473 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 474 return SR_ERR;
a1bb33af
UH
475
476 switch (capability) {
5a2326a7 477 case SR_HWCAP_SAMPLERATE:
fed16f06
UH
478 tmp_u64 = value;
479 return set_configuration_samplerate(*tmp_u64);
5a2326a7 480 case SR_HWCAP_PROBECONFIG:
fed16f06 481 return configure_probes((GSList *) value);
5a2326a7 482 case SR_HWCAP_LIMIT_SAMPLES:
2458ea65
BV
483 tmp_u64 = value;
484 limit_samples = *tmp_u64;
e46b8fb1 485 return SR_OK;
fed16f06 486 default:
e46b8fb1 487 return SR_ERR;
a1bb33af
UH
488 }
489}
490
491static int hw_start_acquisition(int device_index, gpointer session_device_id)
492{
a00ba012 493 struct sr_device_instance *sdi;
b9c735a2
UH
494 struct sr_datafeed_packet packet;
495 struct sr_datafeed_header header;
a1bb33af 496 int res;
afc8e4de 497 unsigned int packet_num;
a1bb33af
UH
498 unsigned char *buf;
499
d32d961d 500 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 501 return SR_ERR;
a1bb33af 502
a143e4e5
BV
503 /* push configured settings to device */
504 analyzer_configure(sdi->usb->devhdl);
505
a1bb33af 506 analyzer_start(sdi->usb->devhdl);
b08024a8 507 sr_info("Waiting for data");
a1bb33af
UH
508 analyzer_wait_data(sdi->usb->devhdl);
509
b08024a8
UH
510 sr_info("Stop address = 0x%x",
511 analyzer_get_stop_address(sdi->usb->devhdl));
512 sr_info("Now address = 0x%x",
513 analyzer_get_now_address(sdi->usb->devhdl));
514 sr_info("Trigger address = 0x%x",
515 analyzer_get_trigger_address(sdi->usb->devhdl));
a1bb33af 516
5a2326a7 517 packet.type = SR_DF_HEADER;
b9c735a2 518 packet.length = sizeof(struct sr_datafeed_header);
fed16f06 519 packet.payload = (unsigned char *)&header;
a1bb33af
UH
520 header.feed_version = 1;
521 gettimeofday(&header.starttime, NULL);
4c100f32 522 header.samplerate = cur_samplerate;
5a2326a7 523 header.protocol_id = SR_PROTO_RAW;
c2616fb9
DR
524 header.num_logic_probes = num_channels;
525 header.num_analog_probes = 0;
8a2efef2 526 sr_session_bus(session_device_id, &packet);
a1bb33af 527
b53738ba 528 if (!(buf = g_try_malloc(PACKET_SIZE))) {
340cfac0 529 sr_err("lap-c: %s: buf malloc failed", __func__);
b53738ba
UH
530 return SR_ERR_MALLOC;
531 }
532
a1bb33af 533 analyzer_read_start(sdi->usb->devhdl);
fed16f06
UH
534 /* Send the incoming transfer to the session bus. */
535 for (packet_num = 0; packet_num < (memory_size * 4 / PACKET_SIZE);
536 packet_num++) {
a1bb33af 537 res = analyzer_read_data(sdi->usb->devhdl, buf, PACKET_SIZE);
408e7199 538#if 0
b08024a8
UH
539 sr_info("Tried to read %llx bytes, actually read %x bytes",
540 PACKET_SIZE, res);
408e7199 541#endif
a1bb33af 542
5a2326a7 543 packet.type = SR_DF_LOGIC;
a1bb33af 544 packet.length = PACKET_SIZE;
4c046c6b 545 packet.unitsize = 4;
a1bb33af 546 packet.payload = buf;
8a2efef2 547 sr_session_bus(session_device_id, &packet);
a1bb33af
UH
548 }
549 analyzer_read_stop(sdi->usb->devhdl);
550 g_free(buf);
551
5a2326a7 552 packet.type = SR_DF_END;
8a2efef2 553 sr_session_bus(session_device_id, &packet);
a1bb33af 554
e46b8fb1 555 return SR_OK;
a1bb33af
UH
556}
557
fed16f06 558/* This stops acquisition on ALL devices, ignoring device_index. */
a1bb33af
UH
559static void hw_stop_acquisition(int device_index, gpointer session_device_id)
560{
b9c735a2 561 struct sr_datafeed_packet packet;
a00ba012 562 struct sr_device_instance *sdi;
a1bb33af 563
5a2326a7 564 packet.type = SR_DF_END;
8a2efef2 565 sr_session_bus(session_device_id, &packet);
a1bb33af 566
d32d961d 567 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
fed16f06 568 return; /* TODO: Cry? */
a1bb33af
UH
569
570 analyzer_reset(sdi->usb->devhdl);
fed16f06 571 /* TODO: Need to cancel and free any queued up transfers. */
a1bb33af
UH
572}
573
5c2d46d1 574struct sr_device_plugin zeroplus_logic_cube_plugin_info = {
e519ba86
UH
575 .name = "zeroplus-logic-cube",
576 .longname = "Zeroplus Logic Cube LAP-C series",
577 .api_version = 1,
578 .init = hw_init,
579 .cleanup = hw_cleanup,
86f5e3d8
UH
580 .opendev = hw_opendev,
581 .closedev = hw_closedev,
e519ba86
UH
582 .get_device_info = hw_get_device_info,
583 .get_status = hw_get_status,
584 .get_capabilities = hw_get_capabilities,
585 .set_configuration = hw_set_configuration,
586 .start_acquisition = hw_start_acquisition,
587 .stop_acquisition = hw_stop_acquisition,
a1bb33af 588};