]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/asix-sigma/asix-sigma.c
Sigma: Upload 50, 100 or 200 MHz firmware
[libsigrok.git] / hardware / asix-sigma / asix-sigma.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Håvard Espeland <gus@ping.uio.no>,
5 * Copyright (C) 2010 Martin Stensgård <mastensg@ping.uio.no>
6 * Copyright (C) 2010 Carl Henrik Lunde <chlunde@ping.uio.no>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22/*
23 * ASIX Sigma Logic Analyzer Driver
24 */
25
26#include <ftdi.h>
27#include <string.h>
28#include <zlib.h>
29#include <sigrok.h>
30#include "asix-sigma.h"
31
32#define USB_VENDOR 0xa600
33#define USB_PRODUCT 0xa000
34#define USB_DESCRIPTION "ASIX SIGMA"
35#define USB_VENDOR_NAME "ASIX"
36#define USB_MODEL_NAME "SIGMA"
37#define USB_MODEL_VERSION ""
38
39static GSList *device_instances = NULL;
40
41// XXX These should be per device
42static struct ftdi_context ftdic;
43static uint64_t cur_samplerate = MHZ(200);
44static uint32_t limit_msec = 0;
45static struct timeval start_tv;
46static int cur_firmware = -1;
47
48static uint64_t supported_samplerates[] = {
49 MHZ(50),
50 MHZ(100),
51 MHZ(200),
52 0,
53};
54
55static struct samplerates samplerates = {
56 MHZ(50),
57 MHZ(200),
58 0,
59 supported_samplerates,
60};
61
62static int capabilities[] = {
63 HWCAP_LOGIC_ANALYZER,
64 HWCAP_SAMPLERATE,
65
66 /* These are really implemented in the driver, not the hardware. */
67 HWCAP_LIMIT_MSEC,
68 0,
69};
70
71/* Force the FPGA to reboot. */
72static uint8_t suicide[] = {
73 0x84, 0x84, 0x88, 0x84, 0x88, 0x84, 0x88, 0x84,
74};
75
76/* Prepare to upload firmware (FPGA specific). */
77static uint8_t init[] = {
78 0x03, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
79};
80
81/* Initialize the logic analyzer mode. */
82static uint8_t logic_mode_start[] = {
83 0x00, 0x40, 0x0f, 0x25, 0x35, 0x40,
84 0x2a, 0x3a, 0x40, 0x03, 0x20, 0x38,
85};
86
87static const char *firmware_files[] =
88{
89 "asix-sigma-50.firmware", /* Supports fractions (8 bits) */
90 "asix-sigma-100.firmware", /* 100 MHz */
91 "asix-sigma-200.firmware", /* 200 MHz */
92 "asix-sigma-50sync.firmware", /* Asynchronous sampling */
93 "asix-sigma-phasor.firmware", /* Frequency counter */
94};
95
96static int sigma_read(void* buf, size_t size)
97{
98 int ret;
99
100 ret = ftdi_read_data(&ftdic, (unsigned char *)buf, size);
101 if (ret < 0) {
102 g_warning("ftdi_read_data failed: %s",
103 ftdi_get_error_string(&ftdic));
104 }
105
106 return ret;
107}
108
109static int sigma_write(void *buf, size_t size)
110{
111 int ret;
112
113 ret = ftdi_write_data(&ftdic, (unsigned char *)buf, size);
114 if (ret < 0) {
115 g_warning("ftdi_write_data failed: %s",
116 ftdi_get_error_string(&ftdic));
117 } else if ((size_t) ret != size) {
118 g_warning("ftdi_write_data did not complete write\n");
119 }
120
121 return ret;
122}
123
124static int sigma_write_register(uint8_t reg, uint8_t *data, size_t len)
125{
126 size_t i;
127 uint8_t buf[len + 2];
128 int idx = 0;
129
130 buf[idx++] = REG_ADDR_LOW | (reg & 0xf);
131 buf[idx++] = REG_ADDR_HIGH | (reg >> 4);
132
133 for (i = 0; i < len; ++i) {
134 buf[idx++] = REG_DATA_LOW | (data[i] & 0xf);
135 buf[idx++] = REG_DATA_HIGH_WRITE | (data[i] >> 4);
136 }
137
138 return sigma_write(buf, idx);
139}
140
141static int sigma_set_register(uint8_t reg, uint8_t value)
142{
143 return sigma_write_register(reg, &value, 1);
144}
145
146static int sigma_read_register(uint8_t reg, uint8_t *data, size_t len)
147{
148 uint8_t buf[3];
149
150 buf[0] = REG_ADDR_LOW | (reg & 0xf);
151 buf[1] = REG_ADDR_HIGH | (reg >> 4);
152 buf[2] = REG_READ_ADDR;
153
154 sigma_write(buf, sizeof(buf));
155
156 return sigma_read(data, len);
157}
158
159static uint8_t sigma_get_register(uint8_t reg)
160{
161 uint8_t value;
162
163 if (1 != sigma_read_register(reg, &value, 1)) {
164 g_warning("Sigma_get_register: 1 byte expected");
165 return 0;
166 }
167
168 return value;
169}
170
171static int sigma_read_pos(uint32_t *stoppos, uint32_t *triggerpos)
172{
173 uint8_t buf[] = {
174 REG_ADDR_LOW | READ_TRIGGER_POS_LOW,
175
176 REG_READ_ADDR | NEXT_REG,
177 REG_READ_ADDR | NEXT_REG,
178 REG_READ_ADDR | NEXT_REG,
179 REG_READ_ADDR | NEXT_REG,
180 REG_READ_ADDR | NEXT_REG,
181 REG_READ_ADDR | NEXT_REG,
182 };
183 uint8_t result[6];
184
185 sigma_write(buf, sizeof(buf));
186
187 sigma_read(result, sizeof(result));
188
189 *triggerpos = result[0] | (result[1] << 8) | (result[2] << 16);
190 *stoppos = result[3] | (result[4] << 8) | (result[5] << 16);
191
192 return 1;
193}
194
195static int sigma_read_dram(uint16_t startchunk, size_t numchunks, uint8_t *data)
196{
197 size_t i;
198 uint8_t buf[4096];
199 int idx = 0;
200
201 /* Send the startchunk. Index start with 1. */
202 buf[0] = startchunk >> 8;
203 buf[1] = startchunk & 0xff;
204 sigma_write_register(WRITE_MEMROW, buf, 2);
205
206 /* Read the DRAM. */
207 buf[idx++] = REG_DRAM_BLOCK;
208 buf[idx++] = REG_DRAM_WAIT_ACK;
209
210 for (i = 0; i < numchunks; ++i) {
211 /* Alternate bit to copy from DRAM to cache. */
212 if (i != (numchunks - 1))
213 buf[idx++] = REG_DRAM_BLOCK | (((i + 1) % 2) << 4);
214
215 buf[idx++] = REG_DRAM_BLOCK_DATA | ((i % 2) << 4);
216
217 if (i != (numchunks - 1))
218 buf[idx++] = REG_DRAM_WAIT_ACK;
219 }
220
221 sigma_write(buf, idx);
222
223 return sigma_read(data, numchunks * CHUNK_SIZE);
224}
225
226/* Generate the bitbang stream for programming the FPGA. */
227static int bin2bitbang(const char *filename,
228 unsigned char **buf, size_t *buf_size)
229{
230 FILE *f;
231 long file_size;
232 unsigned long offset = 0;
233 unsigned char *p;
234 uint8_t *compressed_buf, *firmware;
235 uLongf csize, fwsize;
236 const int buffer_size = 65536;
237 size_t i;
238 int c, ret, bit, v;
239 uint32_t imm = 0x3f6df2ab;
240
241 f = fopen(filename, "r");
242 if (!f) {
243 g_warning("fopen(\"%s\", \"r\")", filename);
244 return -1;
245 }
246
247 if (-1 == fseek(f, 0, SEEK_END)) {
248 g_warning("fseek on %s failed", filename);
249 fclose(f);
250 return -1;
251 }
252
253 file_size = ftell(f);
254
255 fseek(f, 0, SEEK_SET);
256
257 compressed_buf = g_malloc(file_size);
258 firmware = g_malloc(buffer_size);
259
260 if (!compressed_buf || !firmware) {
261 g_warning("Error allocating buffers");
262 return -1;
263 }
264
265 csize = 0;
266 while ((c = getc(f)) != EOF) {
267 imm = (imm + 0xa853753) % 177 + (imm * 0x8034052);
268 compressed_buf[csize++] = c ^ imm;
269 }
270 fclose(f);
271
272 fwsize = buffer_size;
273 ret = uncompress(firmware, &fwsize, compressed_buf, csize);
274 if (ret < 0) {
275 g_free(compressed_buf);
276 g_free(firmware);
277 g_warning("Could not unpack Sigma firmware. (Error %d)\n", ret);
278 return -1;
279 }
280
281 g_free(compressed_buf);
282
283 *buf_size = fwsize * 2 * 8;
284
285 *buf = p = (unsigned char *)g_malloc(*buf_size);
286
287 if (!p) {
288 g_warning("Error allocating buffers");
289 return -1;
290 }
291
292 for (i = 0; i < fwsize; ++i) {
293 for (bit = 7; bit >= 0; --bit) {
294 v = firmware[i] & 1 << bit ? 0x40 : 0x00;
295 p[offset++] = v | 0x01;
296 p[offset++] = v;
297 }
298 }
299
300 g_free(firmware);
301
302 if (offset != *buf_size) {
303 g_free(*buf);
304 g_warning("Error reading firmware %s "
305 "offset=%ld, file_size=%ld, buf_size=%zd\n",
306 filename, offset, file_size, *buf_size);
307
308 return -1;
309 }
310
311 return 0;
312}
313
314static int hw_init(char *deviceinfo)
315{
316 struct sigrok_device_instance *sdi;
317
318 deviceinfo = deviceinfo;
319
320 ftdi_init(&ftdic);
321
322 /* Look for SIGMAs. */
323 if (ftdi_usb_open_desc(&ftdic, USB_VENDOR, USB_PRODUCT,
324 USB_DESCRIPTION, NULL) < 0)
325 return 0;
326
327 /* Register SIGMA device. */
328 sdi = sigrok_device_instance_new(0, ST_INITIALIZING,
329 USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
330 if (!sdi)
331 return 0;
332
333 device_instances = g_slist_append(device_instances, sdi);
334
335 /* We will open the device again when we need it. */
336 ftdi_usb_close(&ftdic);
337
338 return 1;
339}
340
341static int upload_firmware(int firmware_idx)
342{
343 int ret;
344 unsigned char *buf;
345 unsigned char pins;
346 size_t buf_size;
347 unsigned char result[32];
348 char firmware_path[128];
349
350 /* Make sure it's an ASIX SIGMA. */
351 if ((ret = ftdi_usb_open_desc(&ftdic,
352 USB_VENDOR, USB_PRODUCT, USB_DESCRIPTION, NULL)) < 0) {
353 g_warning("ftdi_usb_open failed: %s",
354 ftdi_get_error_string(&ftdic));
355 return 0;
356 }
357
358 if ((ret = ftdi_set_bitmode(&ftdic, 0xdf, BITMODE_BITBANG)) < 0) {
359 g_warning("ftdi_set_bitmode failed: %s",
360 ftdi_get_error_string(&ftdic));
361 return 0;
362 }
363
364 /* Four times the speed of sigmalogan - Works well. */
365 if ((ret = ftdi_set_baudrate(&ftdic, 750000)) < 0) {
366 g_warning("ftdi_set_baudrate failed: %s",
367 ftdi_get_error_string(&ftdic));
368 return 0;
369 }
370
371 /* Force the FPGA to reboot. */
372 sigma_write(suicide, sizeof(suicide));
373 sigma_write(suicide, sizeof(suicide));
374 sigma_write(suicide, sizeof(suicide));
375 sigma_write(suicide, sizeof(suicide));
376
377 /* Prepare to upload firmware (FPGA specific). */
378 sigma_write(init, sizeof(init));
379
380 ftdi_usb_purge_buffers(&ftdic);
381
382 /* Wait until the FPGA asserts INIT_B. */
383 while (1) {
384 ret = sigma_read(result, 1);
385 if (result[0] & 0x20)
386 break;
387 }
388
389 /* Prepare firmware */
390 snprintf(firmware_path, sizeof(firmware_path), "%s/%s", FIRMWARE_DIR,
391 firmware_files[firmware_idx]);
392
393 if (-1 == bin2bitbang(firmware_path, &buf, &buf_size)) {
394 g_warning("An error occured while reading the firmware: %s",
395 firmware_path);
396 return SIGROK_ERR;
397 }
398
399 /* Upload firmare. */
400 sigma_write(buf, buf_size);
401
402 g_free(buf);
403
404 if ((ret = ftdi_set_bitmode(&ftdic, 0x00, BITMODE_RESET)) < 0) {
405 g_warning("ftdi_set_bitmode failed: %s",
406 ftdi_get_error_string(&ftdic));
407 return SIGROK_ERR;
408 }
409
410 ftdi_usb_purge_buffers(&ftdic);
411
412 /* Discard garbage. */
413 while (1 == sigma_read(&pins, 1))
414 ;
415
416 /* Initialize the logic analyzer mode. */
417 sigma_write(logic_mode_start, sizeof(logic_mode_start));
418
419 /* Expect a 3 byte reply. */
420 ret = sigma_read(result, 3);
421 if (ret != 3 ||
422 result[0] != 0xa6 || result[1] != 0x55 || result[2] != 0xaa) {
423 g_warning("Configuration failed. Invalid reply received.");
424 return SIGROK_ERR;
425 }
426
427 cur_firmware = firmware_idx;
428
429 return SIGROK_OK;
430}
431
432static int hw_opendev(int device_index)
433{
434 struct sigrok_device_instance *sdi;
435 int ret;
436
437 /* Make sure it's an ASIX SIGMA */
438 if ((ret = ftdi_usb_open_desc(&ftdic,
439 USB_VENDOR, USB_PRODUCT, USB_DESCRIPTION, NULL)) < 0) {
440
441 g_warning("ftdi_usb_open failed: %s",
442 ftdi_get_error_string(&ftdic));
443
444 return 0;
445 }
446
447 if (!(sdi = get_sigrok_device_instance(device_instances, device_index)))
448 return SIGROK_ERR;
449
450 sdi->status = ST_ACTIVE;
451
452 return SIGROK_OK;
453}
454
455static int set_samplerate(struct sigrok_device_instance *sdi, uint64_t samplerate)
456{
457 int i, ret;
458
459 sdi = sdi;
460
461 for (i = 0; supported_samplerates[i]; i++) {
462 if (supported_samplerates[i] == samplerate)
463 break;
464 }
465 if (supported_samplerates[i] == 0)
466 return SIGROK_ERR_SAMPLERATE;
467
468 if (samplerate <= MHZ(50)) {
469 ret = upload_firmware(0);
470 // XXX: Setup divider
471 }
472 if (samplerate == MHZ(100))
473 ret = upload_firmware(1);
474 else if (samplerate == MHZ(200))
475 ret = upload_firmware(2);
476
477 cur_samplerate = samplerate;
478
479 g_message("Firmware uploaded");
480
481 return ret;
482}
483
484static void hw_closedev(int device_index)
485{
486 device_index = device_index;
487
488 ftdi_usb_close(&ftdic);
489}
490
491static void hw_cleanup(void)
492{
493}
494
495static void *hw_get_device_info(int device_index, int device_info_id)
496{
497 struct sigrok_device_instance *sdi;
498 void *info = NULL;
499
500 if (!(sdi = get_sigrok_device_instance(device_instances, device_index))) {
501 fprintf(stderr, "It's NULL.\n");
502 return NULL;
503 }
504
505 switch (device_info_id) {
506 case DI_INSTANCE:
507 info = sdi;
508 break;
509 case DI_NUM_PROBES:
510 info = GINT_TO_POINTER(4);
511 break;
512 case DI_SAMPLERATES:
513 info = &samplerates;
514 break;
515 case DI_TRIGGER_TYPES:
516 info = 0; //TRIGGER_TYPES;
517 break;
518 case DI_CUR_SAMPLERATE:
519 info = &cur_samplerate;
520 break;
521 }
522
523 return info;
524}
525
526static int hw_get_status(int device_index)
527{
528 struct sigrok_device_instance *sdi;
529
530 sdi = get_sigrok_device_instance(device_instances, device_index);
531 if (sdi)
532 return sdi->status;
533 else
534 return ST_NOT_FOUND;
535}
536
537static int *hw_get_capabilities(void)
538{
539 return capabilities;
540}
541
542static int hw_set_configuration(int device_index, int capability, void *value)
543{
544 struct sigrok_device_instance *sdi;
545 int ret;
546
547 if (!(sdi = get_sigrok_device_instance(device_instances, device_index)))
548 return SIGROK_ERR;
549
550 if (capability == HWCAP_SAMPLERATE) {
551 ret = set_samplerate(sdi, *(uint64_t*) value);
552 } else if (capability == HWCAP_PROBECONFIG) {
553 ret = SIGROK_OK;
554 } else if (capability == HWCAP_LIMIT_MSEC) {
555 limit_msec = strtoull(value, NULL, 10);
556 ret = SIGROK_OK;
557 } else {
558 ret = SIGROK_ERR;
559 }
560
561 return ret;
562}
563
564/*
565 * Decode chunk of 1024 bytes, 64 clusters, 7 events per cluster.
566 * Each event is 20ns apart, and can contain multiple samples.
567 * For 200 MHz, an event contains 4 samples for each channel,
568 * spread 5 ns apart.
569 */
570static int decode_chunk_ts(uint8_t *buf, uint16_t *lastts,
571 uint8_t *lastsample, void *user_data)
572{
573 const int samples_per_event = 4;
574 uint16_t tsdiff, ts;
575 uint8_t samples[65536 * samples_per_event];
576 struct datafeed_packet packet;
577 int i, j, k, numpad, tosend;
578 size_t n = 0, sent = 0;
579 int clustersize = EVENTS_PER_CLUSTER * samples_per_event; /* 4 for 200 MHz */
580 uint16_t *event;
581
582 /* For each ts */
583 for (i = 0; i < 64; ++i) {
584 ts = *(uint16_t *) &buf[i * 16];
585 tsdiff = ts - *lastts;
586 *lastts = ts;
587
588 /* Pad last sample up to current point. */
589 numpad = tsdiff * samples_per_event - clustersize;
590 if (numpad > 0) {
591 memset(samples, *lastsample,
592 tsdiff * samples_per_event - clustersize);
593 n = tsdiff * samples_per_event - clustersize;
594 }
595
596 event = (uint16_t *) &buf[i * 16 + 2];
597
598 /* For each sample in cluster. */
599 for (j = 0; j < 7; ++j) {
600 for (k = 0; k < samples_per_event; ++k) {
601 /*
602 * Extract samples from bytestream.
603 * Samples are packed together in a short.
604 */
605 samples[n++] =
606 ((!!(event[j] & (1 << (k + 0x0)))) << 0) |
607 ((!!(event[j] & (1 << (k + 0x4)))) << 1) |
608 ((!!(event[j] & (1 << (k + 0x8)))) << 2) |
609 ((!!(event[j] & (1 << (k + 0xc)))) << 3);
610 }
611 }
612
613 *lastsample = samples[n - 1];
614
615 /* Send to sigrok. */
616 sent = 0;
617 while (sent < n) {
618 tosend = MIN(4096, n - sent);
619
620 packet.type = DF_LOGIC8;
621 packet.length = tosend;
622 packet.payload = samples + sent;
623 session_bus(user_data, &packet);
624
625 sent += tosend;
626 }
627 }
628
629 return 0;
630}
631
632static int receive_data(int fd, int revents, void *user_data)
633{
634 struct datafeed_packet packet;
635 const int chunks_per_read = 32;
636 unsigned char buf[chunks_per_read * CHUNK_SIZE];
637 int bufsz, numchunks, curchunk, i, newchunks;
638 uint32_t triggerpos, stoppos, running_msec;
639 struct timeval tv;
640 uint16_t lastts = 0;
641 uint8_t lastsample = 0;
642
643 fd = fd;
644 revents = revents;
645
646 /* Get the current position. */
647 sigma_read_pos(&stoppos, &triggerpos);
648 numchunks = stoppos / 512;
649
650 /* Check if the has expired, or memory is full. */
651 gettimeofday(&tv, 0);
652 running_msec = (tv.tv_sec - start_tv.tv_sec) * 1000 +
653 (tv.tv_usec - start_tv.tv_usec) / 1000;
654
655 if (running_msec < limit_msec && numchunks < 32767)
656 return FALSE;
657
658 /* Stop acqusition. */
659 sigma_set_register(WRITE_MODE, 0x11);
660
661 /* Set SDRAM Read Enable. */
662 sigma_set_register(WRITE_MODE, 0x02);
663
664 /* Get the current position. */
665 sigma_read_pos(&stoppos, &triggerpos);
666
667 /* Download sample data. */
668 for (curchunk = 0; curchunk < numchunks;) {
669 newchunks = MIN(chunks_per_read, numchunks - curchunk);
670
671 g_message("Downloading sample data: %.0f %%",
672 100.0 * curchunk / numchunks);
673
674 bufsz = sigma_read_dram(curchunk, newchunks, buf);
675
676 /* Find first ts. */
677 if (curchunk == 0)
678 lastts = *(uint16_t *) buf - 1;
679
680 /* Decode chunks and send them to sigrok. */
681 for (i = 0; i < newchunks; ++i) {
682 decode_chunk_ts(buf + (i * CHUNK_SIZE),
683 &lastts, &lastsample, user_data);
684 }
685
686 curchunk += newchunks;
687 }
688
689 /* End of data */
690 packet.type = DF_END;
691 packet.length = 0;
692 session_bus(user_data, &packet);
693
694 return TRUE;
695}
696
697static int hw_start_acquisition(int device_index, gpointer session_device_id)
698{
699 struct sigrok_device_instance *sdi;
700 struct datafeed_packet packet;
701 struct datafeed_header header;
702 uint8_t trigger_option[2] = { 0x38, 0x00 };
703
704 session_device_id = session_device_id;
705
706 if (!(sdi = get_sigrok_device_instance(device_instances, device_index)))
707 return SIGROK_ERR;
708
709 device_index = device_index;
710
711 if (cur_firmware == -1) {
712 /* Samplerate has not been set. Default to 200 MHz */
713 set_samplerate(sdi, 200);
714 }
715
716 /* Setup trigger (by trigger-in). */
717 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x20);
718
719 /* More trigger setup. */
720 sigma_write_register(WRITE_TRIGGER_OPTION,
721 trigger_option, sizeof(trigger_option));
722
723 /* Trigger normal (falling edge). */
724 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x08);
725
726 /* Enable pins (200 MHz, 4 pins). */
727 sigma_set_register(WRITE_CLOCK_SELECT, 0xf0);
728
729 /* Setup maximum post trigger time. */
730 sigma_set_register(WRITE_POST_TRIGGER, 0xff);
731
732 /* Start acqusition (software trigger start). */
733 gettimeofday(&start_tv, 0);
734 sigma_set_register(WRITE_MODE, 0x0d);
735
736 /* Add capture source. */
737 source_add(0, G_IO_IN, 10, receive_data, session_device_id);
738
739 receive_data(0, 1, session_device_id);
740
741 /* Send header packet to the session bus. */
742 packet.type = DF_HEADER;
743 packet.length = sizeof(struct datafeed_header);
744 packet.payload = &header;
745 header.feed_version = 1;
746 gettimeofday(&header.starttime, NULL);
747 header.samplerate = cur_samplerate;
748 header.protocol_id = PROTO_RAW;
749 header.num_probes = 4;
750 session_bus(session_device_id, &packet);
751
752 return SIGROK_OK;
753}
754
755static void hw_stop_acquisition(int device_index, gpointer session_device_id)
756{
757 device_index = device_index;
758 session_device_id = session_device_id;
759
760 /* Stop acquisition. */
761 sigma_set_register(WRITE_MODE, 0x11);
762
763 // XXX Set some state to indicate that data should be sent to sigrok
764 // Now, we just wait for timeout
765}
766
767struct device_plugin asix_sigma_plugin_info = {
768 "asix-sigma",
769 1,
770 hw_init,
771 hw_cleanup,
772 hw_opendev,
773 hw_closedev,
774 hw_get_device_info,
775 hw_get_status,
776 hw_get_capabilities,
777 hw_set_configuration,
778 hw_start_acquisition,
779 hw_stop_acquisition
780};