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