]> sigrok.org Git - libsigrok.git/blob - src/hardware/asix-sigma/asix-sigma.c
Remove unneeded #endif comments.
[libsigrok.git] / src / hardware / asix-sigma / asix-sigma.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2010-2012 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/SIGMA2 logic analyzer driver
24  */
25
26 #include <glib.h>
27 #include <glib/gstdio.h>
28 #include <ftdi.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include "libsigrok.h"
32 #include "libsigrok-internal.h"
33 #include "asix-sigma.h"
34
35 #define USB_VENDOR                      0xa600
36 #define USB_PRODUCT                     0xa000
37 #define USB_DESCRIPTION                 "ASIX SIGMA"
38 #define USB_VENDOR_NAME                 "ASIX"
39 #define USB_MODEL_NAME                  "SIGMA"
40
41 SR_PRIV struct sr_dev_driver asix_sigma_driver_info;
42 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
43
44 /*
45  * The ASIX Sigma supports arbitrary integer frequency divider in
46  * the 50MHz mode. The divider is in range 1...256 , allowing for
47  * very precise sampling rate selection. This driver supports only
48  * a subset of the sampling rates.
49  */
50 static const uint64_t samplerates[] = {
51         SR_KHZ(200),    /* div=250 */
52         SR_KHZ(250),    /* div=200 */
53         SR_KHZ(500),    /* div=100 */
54         SR_MHZ(1),      /* div=50  */
55         SR_MHZ(5),      /* div=10  */
56         SR_MHZ(10),     /* div=5   */
57         SR_MHZ(25),     /* div=2   */
58         SR_MHZ(50),     /* div=1   */
59         SR_MHZ(100),    /* Special FW needed */
60         SR_MHZ(200),    /* Special FW needed */
61 };
62
63 /*
64  * Channel numbers seem to go from 1-16, according to this image:
65  * http://tools.asix.net/img/sigma_sigmacab_pins_720.jpg
66  * (the cable has two additional GND pins, and a TI and TO pin)
67  */
68 static const char *channel_names[] = {
69         "1", "2", "3", "4", "5", "6", "7", "8",
70         "9", "10", "11", "12", "13", "14", "15", "16",
71 };
72
73 static const uint32_t drvopts[] = {
74         SR_CONF_LOGIC_ANALYZER,
75 };
76
77 static const uint32_t devopts[] = {
78         SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
79         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
80         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
81         SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
82         SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
83 };
84
85 static const int32_t trigger_matches[] = {
86         SR_TRIGGER_ZERO,
87         SR_TRIGGER_ONE,
88         SR_TRIGGER_RISING,
89         SR_TRIGGER_FALLING,
90 };
91
92 static const char *sigma_firmware_files[] = {
93         /* 50 MHz, supports 8 bit fractions */
94         FIRMWARE_DIR "/asix-sigma-50.fw",
95         /* 100 MHz */
96         FIRMWARE_DIR "/asix-sigma-100.fw",
97         /* 200 MHz */
98         FIRMWARE_DIR "/asix-sigma-200.fw",
99         /* Synchronous clock from pin */
100         FIRMWARE_DIR "/asix-sigma-50sync.fw",
101         /* Frequency counter */
102         FIRMWARE_DIR "/asix-sigma-phasor.fw",
103 };
104
105 static int sigma_read(void *buf, size_t size, struct dev_context *devc)
106 {
107         int ret;
108
109         ret = ftdi_read_data(&devc->ftdic, (unsigned char *)buf, size);
110         if (ret < 0) {
111                 sr_err("ftdi_read_data failed: %s",
112                        ftdi_get_error_string(&devc->ftdic));
113         }
114
115         return ret;
116 }
117
118 static int sigma_write(void *buf, size_t size, struct dev_context *devc)
119 {
120         int ret;
121
122         ret = ftdi_write_data(&devc->ftdic, (unsigned char *)buf, size);
123         if (ret < 0) {
124                 sr_err("ftdi_write_data failed: %s",
125                        ftdi_get_error_string(&devc->ftdic));
126         } else if ((size_t) ret != size) {
127                 sr_err("ftdi_write_data did not complete write.");
128         }
129
130         return ret;
131 }
132
133 static int sigma_write_register(uint8_t reg, uint8_t *data, size_t len,
134                                 struct dev_context *devc)
135 {
136         size_t i;
137         uint8_t buf[len + 2];
138         int idx = 0;
139
140         buf[idx++] = REG_ADDR_LOW | (reg & 0xf);
141         buf[idx++] = REG_ADDR_HIGH | (reg >> 4);
142
143         for (i = 0; i < len; ++i) {
144                 buf[idx++] = REG_DATA_LOW | (data[i] & 0xf);
145                 buf[idx++] = REG_DATA_HIGH_WRITE | (data[i] >> 4);
146         }
147
148         return sigma_write(buf, idx, devc);
149 }
150
151 static int sigma_set_register(uint8_t reg, uint8_t value, struct dev_context *devc)
152 {
153         return sigma_write_register(reg, &value, 1, devc);
154 }
155
156 static int sigma_read_register(uint8_t reg, uint8_t *data, size_t len,
157                                struct dev_context *devc)
158 {
159         uint8_t buf[3];
160
161         buf[0] = REG_ADDR_LOW | (reg & 0xf);
162         buf[1] = REG_ADDR_HIGH | (reg >> 4);
163         buf[2] = REG_READ_ADDR;
164
165         sigma_write(buf, sizeof(buf), devc);
166
167         return sigma_read(data, len, devc);
168 }
169
170 static uint8_t sigma_get_register(uint8_t reg, struct dev_context *devc)
171 {
172         uint8_t value;
173
174         if (1 != sigma_read_register(reg, &value, 1, devc)) {
175                 sr_err("sigma_get_register: 1 byte expected");
176                 return 0;
177         }
178
179         return value;
180 }
181
182 static int sigma_read_pos(uint32_t *stoppos, uint32_t *triggerpos,
183                           struct dev_context *devc)
184 {
185         uint8_t buf[] = {
186                 REG_ADDR_LOW | READ_TRIGGER_POS_LOW,
187
188                 REG_READ_ADDR | NEXT_REG,
189                 REG_READ_ADDR | NEXT_REG,
190                 REG_READ_ADDR | NEXT_REG,
191                 REG_READ_ADDR | NEXT_REG,
192                 REG_READ_ADDR | NEXT_REG,
193                 REG_READ_ADDR | NEXT_REG,
194         };
195         uint8_t result[6];
196
197         sigma_write(buf, sizeof(buf), devc);
198
199         sigma_read(result, sizeof(result), devc);
200
201         *triggerpos = result[0] | (result[1] << 8) | (result[2] << 16);
202         *stoppos = result[3] | (result[4] << 8) | (result[5] << 16);
203
204         /* Not really sure why this must be done, but according to spec. */
205         if ((--*stoppos & 0x1ff) == 0x1ff)
206                 *stoppos -= 64;
207
208         if ((*--triggerpos & 0x1ff) == 0x1ff)
209                 *triggerpos -= 64;
210
211         return 1;
212 }
213
214 static int sigma_read_dram(uint16_t startchunk, size_t numchunks,
215                            uint8_t *data, struct dev_context *devc)
216 {
217         size_t i;
218         uint8_t buf[4096];
219         int idx = 0;
220
221         /* Send the startchunk. Index start with 1. */
222         buf[0] = startchunk >> 8;
223         buf[1] = startchunk & 0xff;
224         sigma_write_register(WRITE_MEMROW, buf, 2, devc);
225
226         /* Read the DRAM. */
227         buf[idx++] = REG_DRAM_BLOCK;
228         buf[idx++] = REG_DRAM_WAIT_ACK;
229
230         for (i = 0; i < numchunks; ++i) {
231                 /* Alternate bit to copy from DRAM to cache. */
232                 if (i != (numchunks - 1))
233                         buf[idx++] = REG_DRAM_BLOCK | (((i + 1) % 2) << 4);
234
235                 buf[idx++] = REG_DRAM_BLOCK_DATA | ((i % 2) << 4);
236
237                 if (i != (numchunks - 1))
238                         buf[idx++] = REG_DRAM_WAIT_ACK;
239         }
240
241         sigma_write(buf, idx, devc);
242
243         return sigma_read(data, numchunks * CHUNK_SIZE, devc);
244 }
245
246 /* Upload trigger look-up tables to Sigma. */
247 static int sigma_write_trigger_lut(struct triggerlut *lut, struct dev_context *devc)
248 {
249         int i;
250         uint8_t tmp[2];
251         uint16_t bit;
252
253         /* Transpose the table and send to Sigma. */
254         for (i = 0; i < 16; ++i) {
255                 bit = 1 << i;
256
257                 tmp[0] = tmp[1] = 0;
258
259                 if (lut->m2d[0] & bit)
260                         tmp[0] |= 0x01;
261                 if (lut->m2d[1] & bit)
262                         tmp[0] |= 0x02;
263                 if (lut->m2d[2] & bit)
264                         tmp[0] |= 0x04;
265                 if (lut->m2d[3] & bit)
266                         tmp[0] |= 0x08;
267
268                 if (lut->m3 & bit)
269                         tmp[0] |= 0x10;
270                 if (lut->m3s & bit)
271                         tmp[0] |= 0x20;
272                 if (lut->m4 & bit)
273                         tmp[0] |= 0x40;
274
275                 if (lut->m0d[0] & bit)
276                         tmp[1] |= 0x01;
277                 if (lut->m0d[1] & bit)
278                         tmp[1] |= 0x02;
279                 if (lut->m0d[2] & bit)
280                         tmp[1] |= 0x04;
281                 if (lut->m0d[3] & bit)
282                         tmp[1] |= 0x08;
283
284                 if (lut->m1d[0] & bit)
285                         tmp[1] |= 0x10;
286                 if (lut->m1d[1] & bit)
287                         tmp[1] |= 0x20;
288                 if (lut->m1d[2] & bit)
289                         tmp[1] |= 0x40;
290                 if (lut->m1d[3] & bit)
291                         tmp[1] |= 0x80;
292
293                 sigma_write_register(WRITE_TRIGGER_SELECT0, tmp, sizeof(tmp),
294                                      devc);
295                 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x30 | i, devc);
296         }
297
298         /* Send the parameters */
299         sigma_write_register(WRITE_TRIGGER_SELECT0, (uint8_t *) &lut->params,
300                              sizeof(lut->params), devc);
301
302         return SR_OK;
303 }
304
305 static void clear_helper(void *priv)
306 {
307         struct dev_context *devc;
308
309         devc = priv;
310
311         ftdi_deinit(&devc->ftdic);
312 }
313
314 static int dev_clear(const struct sr_dev_driver *di)
315 {
316         return std_dev_clear(di, clear_helper);
317 }
318
319 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
320 {
321         return std_init(sr_ctx, di, LOG_PREFIX);
322 }
323
324 static GSList *scan(struct sr_dev_driver *di, GSList *options)
325 {
326         struct sr_dev_inst *sdi;
327         struct drv_context *drvc;
328         struct dev_context *devc;
329         GSList *devices;
330         struct ftdi_device_list *devlist;
331         char serial_txt[10];
332         uint32_t serial;
333         int ret;
334         unsigned int i;
335
336         (void)options;
337
338         drvc = di->priv;
339
340         devices = NULL;
341
342         devc = g_malloc0(sizeof(struct dev_context));
343
344         ftdi_init(&devc->ftdic);
345
346         /* Look for SIGMAs. */
347
348         if ((ret = ftdi_usb_find_all(&devc->ftdic, &devlist,
349             USB_VENDOR, USB_PRODUCT)) <= 0) {
350                 if (ret < 0)
351                         sr_err("ftdi_usb_find_all(): %d", ret);
352                 goto free;
353         }
354
355         /* Make sure it's a version 1 or 2 SIGMA. */
356         ftdi_usb_get_strings(&devc->ftdic, devlist->dev, NULL, 0, NULL, 0,
357                              serial_txt, sizeof(serial_txt));
358         sscanf(serial_txt, "%x", &serial);
359
360         if (serial < 0xa6010000 || serial > 0xa602ffff) {
361                 sr_err("Only SIGMA and SIGMA2 are supported "
362                        "in this version of libsigrok.");
363                 goto free;
364         }
365
366         sr_info("Found ASIX SIGMA - Serial: %s", serial_txt);
367
368         devc->cur_samplerate = samplerates[0];
369         devc->period_ps = 0;
370         devc->limit_msec = 0;
371         devc->cur_firmware = -1;
372         devc->num_channels = 0;
373         devc->samples_per_event = 0;
374         devc->capture_ratio = 50;
375         devc->use_triggers = 0;
376
377         /* Register SIGMA device. */
378         sdi = g_malloc0(sizeof(struct sr_dev_inst));
379         sdi->status = SR_ST_INITIALIZING;
380         sdi->vendor = g_strdup(USB_VENDOR_NAME);
381         sdi->model = g_strdup(USB_MODEL_NAME);
382         sdi->driver = di;
383
384         for (i = 0; i < ARRAY_SIZE(channel_names); i++)
385                 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE,
386                                     channel_names[i]);
387
388         devices = g_slist_append(devices, sdi);
389         drvc->instances = g_slist_append(drvc->instances, sdi);
390         sdi->priv = devc;
391
392         /* We will open the device again when we need it. */
393         ftdi_list_free(&devlist);
394
395         return devices;
396
397 free:
398         ftdi_deinit(&devc->ftdic);
399         g_free(devc);
400         return NULL;
401 }
402
403 static GSList *dev_list(const struct sr_dev_driver *di)
404 {
405         return ((struct drv_context *)(di->priv))->instances;
406 }
407
408 /*
409  * Configure the FPGA for bitbang mode.
410  * This sequence is documented in section 2. of the ASIX Sigma programming
411  * manual. This sequence is necessary to configure the FPGA in the Sigma
412  * into Bitbang mode, in which it can be programmed with the firmware.
413  */
414 static int sigma_fpga_init_bitbang(struct dev_context *devc)
415 {
416         uint8_t suicide[] = {
417                 0x84, 0x84, 0x88, 0x84, 0x88, 0x84, 0x88, 0x84,
418         };
419         uint8_t init_array[] = {
420                 0x01, 0x03, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01,
421                 0x01, 0x01,
422         };
423         int i, ret, timeout = 10000;
424         uint8_t data;
425
426         /* Section 2. part 1), do the FPGA suicide. */
427         sigma_write(suicide, sizeof(suicide), devc);
428         sigma_write(suicide, sizeof(suicide), devc);
429         sigma_write(suicide, sizeof(suicide), devc);
430         sigma_write(suicide, sizeof(suicide), devc);
431
432         /* Section 2. part 2), do pulse on D1. */
433         sigma_write(init_array, sizeof(init_array), devc);
434         ftdi_usb_purge_buffers(&devc->ftdic);
435
436         /* Wait until the FPGA asserts D6/INIT_B. */
437         for (i = 0; i < timeout; i++) {
438                 ret = sigma_read(&data, 1, devc);
439                 if (ret < 0)
440                         return ret;
441                 /* Test if pin D6 got asserted. */
442                 if (data & (1 << 5))
443                         return 0;
444                 /* The D6 was not asserted yet, wait a bit. */
445                 g_usleep(10000);
446         }
447
448         return SR_ERR_TIMEOUT;
449 }
450
451 /*
452  * Configure the FPGA for logic-analyzer mode.
453  */
454 static int sigma_fpga_init_la(struct dev_context *devc)
455 {
456         /* Initialize the logic analyzer mode. */
457         uint8_t logic_mode_start[] = {
458                 REG_ADDR_LOW  | (READ_ID & 0xf),
459                 REG_ADDR_HIGH | (READ_ID >> 8),
460                 REG_READ_ADDR,  /* Read ID register. */
461
462                 REG_ADDR_LOW | (WRITE_TEST & 0xf),
463                 REG_DATA_LOW | 0x5,
464                 REG_DATA_HIGH_WRITE | 0x5,
465                 REG_READ_ADDR,  /* Read scratch register. */
466
467                 REG_DATA_LOW | 0xa,
468                 REG_DATA_HIGH_WRITE | 0xa,
469                 REG_READ_ADDR,  /* Read scratch register. */
470
471                 REG_ADDR_LOW | (WRITE_MODE & 0xf),
472                 REG_DATA_LOW | 0x0,
473                 REG_DATA_HIGH_WRITE | 0x8,
474         };
475
476         uint8_t result[3];
477         int ret;
478
479         /* Initialize the logic analyzer mode. */
480         sigma_write(logic_mode_start, sizeof(logic_mode_start), devc);
481
482         /* Expect a 3 byte reply since we issued three READ requests. */
483         ret = sigma_read(result, 3, devc);
484         if (ret != 3)
485                 goto err;
486
487         if (result[0] != 0xa6 || result[1] != 0x55 || result[2] != 0xaa)
488                 goto err;
489
490         return SR_OK;
491 err:
492         sr_err("Configuration failed. Invalid reply received.");
493         return SR_ERR;
494 }
495
496 /*
497  * Read the firmware from a file and transform it into a series of bitbang
498  * pulses used to program the FPGA. Note that the *bb_cmd must be free()'d
499  * by the caller of this function.
500  */
501 static int sigma_fw_2_bitbang(const char *filename,
502                               uint8_t **bb_cmd, gsize *bb_cmd_size)
503 {
504         GMappedFile *file;
505         GError *error;
506         gsize i, file_size, bb_size;
507         gchar *firmware;
508         uint8_t *bb_stream, *bbs;
509         uint32_t imm;
510         int bit, v;
511         int ret = SR_OK;
512
513         /*
514          * Map the file and make the mapped buffer writable.
515          * NOTE: Using writable=TRUE does _NOT_ mean that file that is mapped
516          *       will be modified. It will not be modified until someone uses
517          *       g_file_set_contents() on it.
518          */
519         error = NULL;
520         file = g_mapped_file_new(filename, TRUE, &error);
521         g_assert_no_error(error);
522
523         file_size = g_mapped_file_get_length(file);
524         firmware = g_mapped_file_get_contents(file);
525         g_assert(firmware);
526
527         /* Weird magic transformation below, I have no idea what it does. */
528         imm = 0x3f6df2ab;
529         for (i = 0; i < file_size; i++) {
530                 imm = (imm + 0xa853753) % 177 + (imm * 0x8034052);
531                 firmware[i] ^= imm & 0xff;
532         }
533
534         /*
535          * Now that the firmware is "transformed", we will transcribe the
536          * firmware blob into a sequence of toggles of the Dx wires. This
537          * sequence will be fed directly into the Sigma, which must be in
538          * the FPGA bitbang programming mode.
539          */
540
541         /* Each bit of firmware is transcribed as two toggles of Dx wires. */
542         bb_size = file_size * 8 * 2;
543         bb_stream = (uint8_t *)g_try_malloc(bb_size);
544         if (!bb_stream) {
545                 sr_err("%s: Failed to allocate bitbang stream", __func__);
546                 ret = SR_ERR_MALLOC;
547                 goto exit;
548         }
549
550         bbs = bb_stream;
551         for (i = 0; i < file_size; i++) {
552                 for (bit = 7; bit >= 0; bit--) {
553                         v = (firmware[i] & (1 << bit)) ? 0x40 : 0x00;
554                         *bbs++ = v | 0x01;
555                         *bbs++ = v;
556                 }
557         }
558
559         /* The transformation completed successfully, return the result. */
560         *bb_cmd = bb_stream;
561         *bb_cmd_size = bb_size;
562
563 exit:
564         g_mapped_file_unref(file);
565         return ret;
566 }
567
568 static int upload_firmware(int firmware_idx, struct dev_context *devc)
569 {
570         int ret;
571         unsigned char *buf;
572         unsigned char pins;
573         size_t buf_size;
574         const char *firmware = sigma_firmware_files[firmware_idx];
575         struct ftdi_context *ftdic = &devc->ftdic;
576
577         /* Make sure it's an ASIX SIGMA. */
578         ret = ftdi_usb_open_desc(ftdic, USB_VENDOR, USB_PRODUCT,
579                                  USB_DESCRIPTION, NULL);
580         if (ret < 0) {
581                 sr_err("ftdi_usb_open failed: %s",
582                        ftdi_get_error_string(ftdic));
583                 return 0;
584         }
585
586         ret = ftdi_set_bitmode(ftdic, 0xdf, BITMODE_BITBANG);
587         if (ret < 0) {
588                 sr_err("ftdi_set_bitmode failed: %s",
589                        ftdi_get_error_string(ftdic));
590                 return 0;
591         }
592
593         /* Four times the speed of sigmalogan - Works well. */
594         ret = ftdi_set_baudrate(ftdic, 750000);
595         if (ret < 0) {
596                 sr_err("ftdi_set_baudrate failed: %s",
597                        ftdi_get_error_string(ftdic));
598                 return 0;
599         }
600
601         /* Initialize the FPGA for firmware upload. */
602         ret = sigma_fpga_init_bitbang(devc);
603         if (ret)
604                 return ret;
605
606         /* Prepare firmware. */
607         ret = sigma_fw_2_bitbang(firmware, &buf, &buf_size);
608         if (ret != SR_OK) {
609                 sr_err("An error occured while reading the firmware: %s",
610                        firmware);
611                 return ret;
612         }
613
614         /* Upload firmare. */
615         sr_info("Uploading firmware file '%s'.", firmware);
616         sigma_write(buf, buf_size, devc);
617
618         g_free(buf);
619
620         ret = ftdi_set_bitmode(ftdic, 0x00, BITMODE_RESET);
621         if (ret < 0) {
622                 sr_err("ftdi_set_bitmode failed: %s",
623                        ftdi_get_error_string(ftdic));
624                 return SR_ERR;
625         }
626
627         ftdi_usb_purge_buffers(ftdic);
628
629         /* Discard garbage. */
630         while (sigma_read(&pins, 1, devc) == 1)
631                 ;
632
633         /* Initialize the FPGA for logic-analyzer mode. */
634         ret = sigma_fpga_init_la(devc);
635         if (ret != SR_OK)
636                 return ret;
637
638         devc->cur_firmware = firmware_idx;
639
640         sr_info("Firmware uploaded.");
641
642         return SR_OK;
643 }
644
645 static int dev_open(struct sr_dev_inst *sdi)
646 {
647         struct dev_context *devc;
648         int ret;
649
650         devc = sdi->priv;
651
652         /* Make sure it's an ASIX SIGMA. */
653         if ((ret = ftdi_usb_open_desc(&devc->ftdic,
654                 USB_VENDOR, USB_PRODUCT, USB_DESCRIPTION, NULL)) < 0) {
655
656                 sr_err("ftdi_usb_open failed: %s",
657                        ftdi_get_error_string(&devc->ftdic));
658
659                 return 0;
660         }
661
662         sdi->status = SR_ST_ACTIVE;
663
664         return SR_OK;
665 }
666
667 static int set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate)
668 {
669         struct dev_context *devc;
670         unsigned int i;
671         int ret;
672
673         devc = sdi->priv;
674         ret = SR_OK;
675
676         for (i = 0; i < ARRAY_SIZE(samplerates); i++) {
677                 if (samplerates[i] == samplerate)
678                         break;
679         }
680         if (samplerates[i] == 0)
681                 return SR_ERR_SAMPLERATE;
682
683         if (samplerate <= SR_MHZ(50)) {
684                 ret = upload_firmware(0, devc);
685                 devc->num_channels = 16;
686         } else if (samplerate == SR_MHZ(100)) {
687                 ret = upload_firmware(1, devc);
688                 devc->num_channels = 8;
689         } else if (samplerate == SR_MHZ(200)) {
690                 ret = upload_firmware(2, devc);
691                 devc->num_channels = 4;
692         }
693
694         if (ret == SR_OK) {
695                 devc->cur_samplerate = samplerate;
696                 devc->period_ps = 1000000000000ULL / samplerate;
697                 devc->samples_per_event = 16 / devc->num_channels;
698                 devc->state.state = SIGMA_IDLE;
699         }
700
701         return ret;
702 }
703
704 /*
705  * In 100 and 200 MHz mode, only a single pin rising/falling can be
706  * set as trigger. In other modes, two rising/falling triggers can be set,
707  * in addition to value/mask trigger for any number of channels.
708  *
709  * The Sigma supports complex triggers using boolean expressions, but this
710  * has not been implemented yet.
711  */
712 static int convert_trigger(const struct sr_dev_inst *sdi)
713 {
714         struct dev_context *devc;
715         struct sr_trigger *trigger;
716         struct sr_trigger_stage *stage;
717         struct sr_trigger_match *match;
718         const GSList *l, *m;
719         int channelbit, trigger_set;
720
721         devc = sdi->priv;
722         memset(&devc->trigger, 0, sizeof(struct sigma_trigger));
723         if (!(trigger = sr_session_trigger_get(sdi->session)))
724                 return SR_OK;
725
726         trigger_set = 0;
727         for (l = trigger->stages; l; l = l->next) {
728                 stage = l->data;
729                 for (m = stage->matches; m; m = m->next) {
730                         match = m->data;
731                         if (!match->channel->enabled)
732                                 /* Ignore disabled channels with a trigger. */
733                                 continue;
734                         channelbit = 1 << (match->channel->index);
735                         if (devc->cur_samplerate >= SR_MHZ(100)) {
736                                 /* Fast trigger support. */
737                                 if (trigger_set) {
738                                         sr_err("Only a single pin trigger is "
739                                                         "supported in 100 and 200MHz mode.");
740                                         return SR_ERR;
741                                 }
742                                 if (match->match == SR_TRIGGER_FALLING)
743                                         devc->trigger.fallingmask |= channelbit;
744                                 else if (match->match == SR_TRIGGER_RISING)
745                                         devc->trigger.risingmask |= channelbit;
746                                 else {
747                                         sr_err("Only rising/falling trigger is "
748                                                         "supported in 100 and 200MHz mode.");
749                                         return SR_ERR;
750                                 }
751
752                                 ++trigger_set;
753                         } else {
754                                 /* Simple trigger support (event). */
755                                 if (match->match == SR_TRIGGER_ONE) {
756                                         devc->trigger.simplevalue |= channelbit;
757                                         devc->trigger.simplemask |= channelbit;
758                                 }
759                                 else if (match->match == SR_TRIGGER_ZERO) {
760                                         devc->trigger.simplevalue &= ~channelbit;
761                                         devc->trigger.simplemask |= channelbit;
762                                 }
763                                 else if (match->match == SR_TRIGGER_FALLING) {
764                                         devc->trigger.fallingmask |= channelbit;
765                                         ++trigger_set;
766                                 }
767                                 else if (match->match == SR_TRIGGER_RISING) {
768                                         devc->trigger.risingmask |= channelbit;
769                                         ++trigger_set;
770                                 }
771
772                                 /*
773                                  * Actually, Sigma supports 2 rising/falling triggers,
774                                  * but they are ORed and the current trigger syntax
775                                  * does not permit ORed triggers.
776                                  */
777                                 if (trigger_set > 1) {
778                                         sr_err("Only 1 rising/falling trigger "
779                                                    "is supported.");
780                                         return SR_ERR;
781                                 }
782                         }
783                 }
784         }
785
786         return SR_OK;
787 }
788
789 static int dev_close(struct sr_dev_inst *sdi)
790 {
791         struct dev_context *devc;
792
793         devc = sdi->priv;
794
795         /* TODO */
796         if (sdi->status == SR_ST_ACTIVE)
797                 ftdi_usb_close(&devc->ftdic);
798
799         sdi->status = SR_ST_INACTIVE;
800
801         return SR_OK;
802 }
803
804 static int cleanup(const struct sr_dev_driver *di)
805 {
806         return dev_clear(di);
807 }
808
809 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
810                 const struct sr_channel_group *cg)
811 {
812         struct dev_context *devc;
813
814         (void)cg;
815
816         if (!sdi)
817                 return SR_ERR;
818         devc = sdi->priv;
819
820         switch (key) {
821         case SR_CONF_SAMPLERATE:
822                 *data = g_variant_new_uint64(devc->cur_samplerate);
823                 break;
824         case SR_CONF_LIMIT_MSEC:
825                 *data = g_variant_new_uint64(devc->limit_msec);
826                 break;
827         case SR_CONF_CAPTURE_RATIO:
828                 *data = g_variant_new_uint64(devc->capture_ratio);
829                 break;
830         default:
831                 return SR_ERR_NA;
832         }
833
834         return SR_OK;
835 }
836
837 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
838                 const struct sr_channel_group *cg)
839 {
840         struct dev_context *devc;
841         uint64_t tmp;
842         int ret;
843
844         (void)cg;
845
846         if (sdi->status != SR_ST_ACTIVE)
847                 return SR_ERR_DEV_CLOSED;
848
849         devc = sdi->priv;
850
851         ret = SR_OK;
852         switch (key) {
853         case SR_CONF_SAMPLERATE:
854                 ret = set_samplerate(sdi, g_variant_get_uint64(data));
855                 break;
856         case SR_CONF_LIMIT_MSEC:
857                 tmp = g_variant_get_uint64(data);
858                 if (tmp > 0)
859                         devc->limit_msec = g_variant_get_uint64(data);
860                 else
861                         ret = SR_ERR;
862                 break;
863         case SR_CONF_LIMIT_SAMPLES:
864                 tmp = g_variant_get_uint64(data);
865                 devc->limit_msec = tmp * 1000 / devc->cur_samplerate;
866                 break;
867         case SR_CONF_CAPTURE_RATIO:
868                 tmp = g_variant_get_uint64(data);
869                 if (tmp <= 100)
870                         devc->capture_ratio = tmp;
871                 else
872                         ret = SR_ERR;
873                 break;
874         default:
875                 ret = SR_ERR_NA;
876         }
877
878         return ret;
879 }
880
881 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
882                 const struct sr_channel_group *cg)
883 {
884         GVariant *gvar;
885         GVariantBuilder gvb;
886
887         (void)cg;
888
889         switch (key) {
890         case SR_CONF_DEVICE_OPTIONS:
891                 if (!sdi)
892                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
893                                         drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
894                 else
895                         *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
896                                         devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
897                 break;
898         case SR_CONF_SAMPLERATE:
899                 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
900                 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
901                                 ARRAY_SIZE(samplerates), sizeof(uint64_t));
902                 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
903                 *data = g_variant_builder_end(&gvb);
904                 break;
905         case SR_CONF_TRIGGER_MATCH:
906                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
907                                 trigger_matches, ARRAY_SIZE(trigger_matches),
908                                 sizeof(int32_t));
909                 break;
910         default:
911                 return SR_ERR_NA;
912         }
913
914         return SR_OK;
915 }
916
917 /* Software trigger to determine exact trigger position. */
918 static int get_trigger_offset(uint8_t *samples, uint16_t last_sample,
919                               struct sigma_trigger *t)
920 {
921         int i;
922         uint16_t sample = 0;
923
924         for (i = 0; i < 8; ++i) {
925                 if (i > 0)
926                         last_sample = sample;
927                 sample = samples[2 * i] | (samples[2 * i + 1] << 8);
928
929                 /* Simple triggers. */
930                 if ((sample & t->simplemask) != t->simplevalue)
931                         continue;
932
933                 /* Rising edge. */
934                 if (((last_sample & t->risingmask) != 0) ||
935                     ((sample & t->risingmask) != t->risingmask))
936                         continue;
937
938                 /* Falling edge. */
939                 if ((last_sample & t->fallingmask) != t->fallingmask ||
940                     (sample & t->fallingmask) != 0)
941                         continue;
942
943                 break;
944         }
945
946         /* If we did not match, return original trigger pos. */
947         return i & 0x7;
948 }
949
950 /*
951  * Return the timestamp of "DRAM cluster".
952  */
953 static uint16_t sigma_dram_cluster_ts(struct sigma_dram_cluster *cluster)
954 {
955         return (cluster->timestamp_hi << 8) | cluster->timestamp_lo;
956 }
957
958 static void sigma_decode_dram_cluster(struct sigma_dram_cluster *dram_cluster,
959                                       unsigned int events_in_cluster,
960                                       unsigned int triggered,
961                                       struct sr_dev_inst *sdi)
962 {
963         struct dev_context *devc = sdi->priv;
964         struct sigma_state *ss = &devc->state;
965         struct sr_datafeed_packet packet;
966         struct sr_datafeed_logic logic;
967         uint16_t tsdiff, ts;
968         uint8_t samples[2048];
969         unsigned int i;
970
971         ts = sigma_dram_cluster_ts(dram_cluster);
972         tsdiff = ts - ss->lastts;
973         ss->lastts = ts;
974
975         packet.type = SR_DF_LOGIC;
976         packet.payload = &logic;
977         logic.unitsize = 2;
978         logic.data = samples;
979
980         /*
981          * First of all, send Sigrok a copy of the last sample from
982          * previous cluster as many times as needed to make up for
983          * the differential characteristics of data we get from the
984          * Sigma. Sigrok needs one sample of data per period.
985          *
986          * One DRAM cluster contains a timestamp and seven samples,
987          * the units of timestamp are "devc->period_ps" , the first
988          * sample in the cluster happens at the time of the timestamp
989          * and the remaining samples happen at timestamp +1...+6 .
990          */
991         for (ts = 0; ts < tsdiff - (EVENTS_PER_CLUSTER - 1); ts++) {
992                 i = ts % 1024;
993                 samples[2 * i + 0] = ss->lastsample & 0xff;
994                 samples[2 * i + 1] = ss->lastsample >> 8;
995
996                 /*
997                  * If we have 1024 samples ready or we're at the
998                  * end of submitting the padding samples, submit
999                  * the packet to Sigrok.
1000                  */
1001                 if ((i == 1023) || (ts == (tsdiff - EVENTS_PER_CLUSTER))) {
1002                         logic.length = (i + 1) * logic.unitsize;
1003                         sr_session_send(sdi, &packet);
1004                 }
1005         }
1006
1007         /*
1008          * Parse the samples in current cluster and prepare them
1009          * to be submitted to Sigrok.
1010          */
1011         for (i = 0; i < events_in_cluster; i++) {
1012                 samples[2 * i + 1] = dram_cluster->samples[i].sample_lo;
1013                 samples[2 * i + 0] = dram_cluster->samples[i].sample_hi;
1014         }
1015
1016         /* Send data up to trigger point (if triggered). */
1017         int trigger_offset = 0;
1018         if (triggered) {
1019                 /*
1020                  * Trigger is not always accurate to sample because of
1021                  * pipeline delay. However, it always triggers before
1022                  * the actual event. We therefore look at the next
1023                  * samples to pinpoint the exact position of the trigger.
1024                  */
1025                 trigger_offset = get_trigger_offset(samples,
1026                                         ss->lastsample, &devc->trigger);
1027
1028                 if (trigger_offset > 0) {
1029                         packet.type = SR_DF_LOGIC;
1030                         logic.length = trigger_offset * logic.unitsize;
1031                         sr_session_send(sdi, &packet);
1032                         events_in_cluster -= trigger_offset;
1033                 }
1034
1035                 /* Only send trigger if explicitly enabled. */
1036                 if (devc->use_triggers) {
1037                         packet.type = SR_DF_TRIGGER;
1038                         sr_session_send(sdi, &packet);
1039                 }
1040         }
1041
1042         if (events_in_cluster > 0) {
1043                 packet.type = SR_DF_LOGIC;
1044                 logic.length = events_in_cluster * logic.unitsize;
1045                 logic.data = samples + (trigger_offset * logic.unitsize);
1046                 sr_session_send(sdi, &packet);
1047         }
1048
1049         ss->lastsample =
1050                 samples[2 * (events_in_cluster - 1) + 0] |
1051                 (samples[2 * (events_in_cluster - 1) + 1] << 8);
1052
1053 }
1054
1055 /*
1056  * Decode chunk of 1024 bytes, 64 clusters, 7 events per cluster.
1057  * Each event is 20ns apart, and can contain multiple samples.
1058  *
1059  * For 200 MHz, events contain 4 samples for each channel, spread 5 ns apart.
1060  * For 100 MHz, events contain 2 samples for each channel, spread 10 ns apart.
1061  * For 50 MHz and below, events contain one sample for each channel,
1062  * spread 20 ns apart.
1063  */
1064 static int decode_chunk_ts(struct sigma_dram_line *dram_line,
1065                            uint16_t events_in_line,
1066                            uint32_t trigger_event,
1067                            struct sr_dev_inst *sdi)
1068 {
1069         struct sigma_dram_cluster *dram_cluster;
1070         struct dev_context *devc = sdi->priv;
1071         unsigned int clusters_in_line =
1072                 (events_in_line + (EVENTS_PER_CLUSTER - 1)) / EVENTS_PER_CLUSTER;
1073         unsigned int events_in_cluster;
1074         unsigned int i;
1075         uint32_t trigger_cluster = ~0, triggered = 0;
1076
1077         /* Check if trigger is in this chunk. */
1078         if (trigger_event < (64 * 7)) {
1079                 if (devc->cur_samplerate <= SR_MHZ(50)) {
1080                         trigger_event -= MIN(EVENTS_PER_CLUSTER - 1,
1081                                              trigger_event);
1082                 }
1083
1084                 /* Find in which cluster the trigger occured. */
1085                 trigger_cluster = trigger_event / EVENTS_PER_CLUSTER;
1086         }
1087
1088         /* For each full DRAM cluster. */
1089         for (i = 0; i < clusters_in_line; i++) {
1090                 dram_cluster = &dram_line->cluster[i];
1091
1092                 /* The last cluster might not be full. */
1093                 if ((i == clusters_in_line - 1) &&
1094                     (events_in_line % EVENTS_PER_CLUSTER)) {
1095                         events_in_cluster = events_in_line % EVENTS_PER_CLUSTER;
1096                 } else {
1097                         events_in_cluster = EVENTS_PER_CLUSTER;
1098                 }
1099
1100                 triggered = (i == trigger_cluster);
1101                 sigma_decode_dram_cluster(dram_cluster, events_in_cluster,
1102                                           triggered, sdi);
1103         }
1104
1105         return SR_OK;
1106 }
1107
1108 static int download_capture(struct sr_dev_inst *sdi)
1109 {
1110         struct dev_context *devc = sdi->priv;
1111         const uint32_t chunks_per_read = 32;
1112         struct sigma_dram_line *dram_line;
1113         int bufsz;
1114         uint32_t stoppos, triggerpos;
1115         struct sr_datafeed_packet packet;
1116         uint8_t modestatus;
1117
1118         uint32_t i;
1119         uint32_t dl_lines_total, dl_lines_curr, dl_lines_done;
1120         uint32_t dl_events_in_line = 64 * 7;
1121         uint32_t trg_line = ~0, trg_event = ~0;
1122
1123         dram_line = g_try_malloc0(chunks_per_read * sizeof(*dram_line));
1124         if (!dram_line)
1125                 return FALSE;
1126
1127         sr_info("Downloading sample data.");
1128
1129         /* Stop acquisition. */
1130         sigma_set_register(WRITE_MODE, 0x11, devc);
1131
1132         /* Set SDRAM Read Enable. */
1133         sigma_set_register(WRITE_MODE, 0x02, devc);
1134
1135         /* Get the current position. */
1136         sigma_read_pos(&stoppos, &triggerpos, devc);
1137
1138         /* Check if trigger has fired. */
1139         modestatus = sigma_get_register(READ_MODE, devc);
1140         if (modestatus & 0x20) {
1141                 trg_line = triggerpos >> 9;
1142                 trg_event = triggerpos & 0x1ff;
1143         }
1144
1145         /*
1146          * Determine how many 1024b "DRAM lines" do we need to read from the
1147          * Sigma so we have a complete set of samples. Note that the last
1148          * line can be only partial, containing less than 64 clusters.
1149          */
1150         dl_lines_total = (stoppos >> 9) + 1;
1151
1152         dl_lines_done = 0;
1153
1154         while (dl_lines_total > dl_lines_done) {
1155                 /* We can download only up-to 32 DRAM lines in one go! */
1156                 dl_lines_curr = MIN(chunks_per_read, dl_lines_total);
1157
1158                 bufsz = sigma_read_dram(dl_lines_done, dl_lines_curr,
1159                                         (uint8_t *)dram_line, devc);
1160                 /* TODO: Check bufsz. For now, just avoid compiler warnings. */
1161                 (void)bufsz;
1162
1163                 /* This is the first DRAM line, so find the initial timestamp. */
1164                 if (dl_lines_done == 0) {
1165                         devc->state.lastts =
1166                                 sigma_dram_cluster_ts(&dram_line[0].cluster[0]);
1167                         devc->state.lastsample = 0;
1168                 }
1169
1170                 for (i = 0; i < dl_lines_curr; i++) {
1171                         uint32_t trigger_event = ~0;
1172                         /* The last "DRAM line" can be only partially full. */
1173                         if (dl_lines_done + i == dl_lines_total - 1)
1174                                 dl_events_in_line = stoppos & 0x1ff;
1175
1176                         /* Test if the trigger happened on this line. */
1177                         if (dl_lines_done + i == trg_line)
1178                                 trigger_event = trg_event;
1179
1180                         decode_chunk_ts(dram_line + i, dl_events_in_line,
1181                                         trigger_event, sdi);
1182                 }
1183
1184                 dl_lines_done += dl_lines_curr;
1185         }
1186
1187         /* All done. */
1188         packet.type = SR_DF_END;
1189         sr_session_send(sdi, &packet);
1190
1191         dev_acquisition_stop(sdi, sdi);
1192
1193         g_free(dram_line);
1194
1195         return TRUE;
1196 }
1197
1198 /*
1199  * Handle the Sigma when in CAPTURE mode. This function checks:
1200  * - Sampling time ended
1201  * - DRAM capacity overflow
1202  * This function triggers download of the samples from Sigma
1203  * in case either of the above conditions is true.
1204  */
1205 static int sigma_capture_mode(struct sr_dev_inst *sdi)
1206 {
1207         struct dev_context *devc = sdi->priv;
1208
1209         uint64_t running_msec;
1210         struct timeval tv;
1211
1212         uint32_t stoppos, triggerpos;
1213
1214         /* Check if the selected sampling duration passed. */
1215         gettimeofday(&tv, 0);
1216         running_msec = (tv.tv_sec - devc->start_tv.tv_sec) * 1000 +
1217                        (tv.tv_usec - devc->start_tv.tv_usec) / 1000;
1218         if (running_msec >= devc->limit_msec)
1219                 return download_capture(sdi);
1220
1221         /* Get the position in DRAM to which the FPGA is writing now. */
1222         sigma_read_pos(&stoppos, &triggerpos, devc);
1223         /* Test if DRAM is full and if so, download the data. */
1224         if ((stoppos >> 9) == 32767)
1225                 return download_capture(sdi);
1226
1227         return TRUE;
1228 }
1229
1230 static int receive_data(int fd, int revents, void *cb_data)
1231 {
1232         struct sr_dev_inst *sdi;
1233         struct dev_context *devc;
1234
1235         (void)fd;
1236         (void)revents;
1237
1238         sdi = cb_data;
1239         devc = sdi->priv;
1240
1241         if (devc->state.state == SIGMA_IDLE)
1242                 return TRUE;
1243
1244         if (devc->state.state == SIGMA_CAPTURE)
1245                 return sigma_capture_mode(sdi);
1246
1247         return TRUE;
1248 }
1249
1250 /* Build a LUT entry used by the trigger functions. */
1251 static void build_lut_entry(uint16_t value, uint16_t mask, uint16_t *entry)
1252 {
1253         int i, j, k, bit;
1254
1255         /* For each quad channel. */
1256         for (i = 0; i < 4; ++i) {
1257                 entry[i] = 0xffff;
1258
1259                 /* For each bit in LUT. */
1260                 for (j = 0; j < 16; ++j)
1261
1262                         /* For each channel in quad. */
1263                         for (k = 0; k < 4; ++k) {
1264                                 bit = 1 << (i * 4 + k);
1265
1266                                 /* Set bit in entry */
1267                                 if ((mask & bit) &&
1268                                     ((!(value & bit)) !=
1269                                     (!(j & (1 << k)))))
1270                                         entry[i] &= ~(1 << j);
1271                         }
1272         }
1273 }
1274
1275 /* Add a logical function to LUT mask. */
1276 static void add_trigger_function(enum triggerop oper, enum triggerfunc func,
1277                                  int index, int neg, uint16_t *mask)
1278 {
1279         int i, j;
1280         int x[2][2], tmp, a, b, aset, bset, rset;
1281
1282         memset(x, 0, 4 * sizeof(int));
1283
1284         /* Trigger detect condition. */
1285         switch (oper) {
1286         case OP_LEVEL:
1287                 x[0][1] = 1;
1288                 x[1][1] = 1;
1289                 break;
1290         case OP_NOT:
1291                 x[0][0] = 1;
1292                 x[1][0] = 1;
1293                 break;
1294         case OP_RISE:
1295                 x[0][1] = 1;
1296                 break;
1297         case OP_FALL:
1298                 x[1][0] = 1;
1299                 break;
1300         case OP_RISEFALL:
1301                 x[0][1] = 1;
1302                 x[1][0] = 1;
1303                 break;
1304         case OP_NOTRISE:
1305                 x[1][1] = 1;
1306                 x[0][0] = 1;
1307                 x[1][0] = 1;
1308                 break;
1309         case OP_NOTFALL:
1310                 x[1][1] = 1;
1311                 x[0][0] = 1;
1312                 x[0][1] = 1;
1313                 break;
1314         case OP_NOTRISEFALL:
1315                 x[1][1] = 1;
1316                 x[0][0] = 1;
1317                 break;
1318         }
1319
1320         /* Transpose if neg is set. */
1321         if (neg) {
1322                 for (i = 0; i < 2; ++i) {
1323                         for (j = 0; j < 2; ++j) {
1324                                 tmp = x[i][j];
1325                                 x[i][j] = x[1-i][1-j];
1326                                 x[1-i][1-j] = tmp;
1327                         }
1328                 }
1329         }
1330
1331         /* Update mask with function. */
1332         for (i = 0; i < 16; ++i) {
1333                 a = (i >> (2 * index + 0)) & 1;
1334                 b = (i >> (2 * index + 1)) & 1;
1335
1336                 aset = (*mask >> i) & 1;
1337                 bset = x[b][a];
1338
1339                 rset = 0;
1340                 if (func == FUNC_AND || func == FUNC_NAND)
1341                         rset = aset & bset;
1342                 else if (func == FUNC_OR || func == FUNC_NOR)
1343                         rset = aset | bset;
1344                 else if (func == FUNC_XOR || func == FUNC_NXOR)
1345                         rset = aset ^ bset;
1346
1347                 if (func == FUNC_NAND || func == FUNC_NOR || func == FUNC_NXOR)
1348                         rset = !rset;
1349
1350                 *mask &= ~(1 << i);
1351
1352                 if (rset)
1353                         *mask |= 1 << i;
1354         }
1355 }
1356
1357 /*
1358  * Build trigger LUTs used by 50 MHz and lower sample rates for supporting
1359  * simple pin change and state triggers. Only two transitions (rise/fall) can be
1360  * set at any time, but a full mask and value can be set (0/1).
1361  */
1362 static int build_basic_trigger(struct triggerlut *lut, struct dev_context *devc)
1363 {
1364         int i,j;
1365         uint16_t masks[2] = { 0, 0 };
1366
1367         memset(lut, 0, sizeof(struct triggerlut));
1368
1369         /* Contant for simple triggers. */
1370         lut->m4 = 0xa000;
1371
1372         /* Value/mask trigger support. */
1373         build_lut_entry(devc->trigger.simplevalue, devc->trigger.simplemask,
1374                         lut->m2d);
1375
1376         /* Rise/fall trigger support. */
1377         for (i = 0, j = 0; i < 16; ++i) {
1378                 if (devc->trigger.risingmask & (1 << i) ||
1379                     devc->trigger.fallingmask & (1 << i))
1380                         masks[j++] = 1 << i;
1381         }
1382
1383         build_lut_entry(masks[0], masks[0], lut->m0d);
1384         build_lut_entry(masks[1], masks[1], lut->m1d);
1385
1386         /* Add glue logic */
1387         if (masks[0] || masks[1]) {
1388                 /* Transition trigger. */
1389                 if (masks[0] & devc->trigger.risingmask)
1390                         add_trigger_function(OP_RISE, FUNC_OR, 0, 0, &lut->m3);
1391                 if (masks[0] & devc->trigger.fallingmask)
1392                         add_trigger_function(OP_FALL, FUNC_OR, 0, 0, &lut->m3);
1393                 if (masks[1] & devc->trigger.risingmask)
1394                         add_trigger_function(OP_RISE, FUNC_OR, 1, 0, &lut->m3);
1395                 if (masks[1] & devc->trigger.fallingmask)
1396                         add_trigger_function(OP_FALL, FUNC_OR, 1, 0, &lut->m3);
1397         } else {
1398                 /* Only value/mask trigger. */
1399                 lut->m3 = 0xffff;
1400         }
1401
1402         /* Triggertype: event. */
1403         lut->params.selres = 3;
1404
1405         return SR_OK;
1406 }
1407
1408 static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
1409 {
1410         struct dev_context *devc;
1411         struct clockselect_50 clockselect;
1412         int frac, triggerpin, ret;
1413         uint8_t triggerselect = 0;
1414         struct triggerinout triggerinout_conf;
1415         struct triggerlut lut;
1416
1417         if (sdi->status != SR_ST_ACTIVE)
1418                 return SR_ERR_DEV_CLOSED;
1419
1420         devc = sdi->priv;
1421
1422         if (convert_trigger(sdi) != SR_OK) {
1423                 sr_err("Failed to configure triggers.");
1424                 return SR_ERR;
1425         }
1426
1427         /* If the samplerate has not been set, default to 200 kHz. */
1428         if (devc->cur_firmware == -1) {
1429                 if ((ret = set_samplerate(sdi, SR_KHZ(200))) != SR_OK)
1430                         return ret;
1431         }
1432
1433         /* Enter trigger programming mode. */
1434         sigma_set_register(WRITE_TRIGGER_SELECT1, 0x20, devc);
1435
1436         /* 100 and 200 MHz mode. */
1437         if (devc->cur_samplerate >= SR_MHZ(100)) {
1438                 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x81, devc);
1439
1440                 /* Find which pin to trigger on from mask. */
1441                 for (triggerpin = 0; triggerpin < 8; ++triggerpin)
1442                         if ((devc->trigger.risingmask | devc->trigger.fallingmask) &
1443                             (1 << triggerpin))
1444                                 break;
1445
1446                 /* Set trigger pin and light LED on trigger. */
1447                 triggerselect = (1 << LEDSEL1) | (triggerpin & 0x7);
1448
1449                 /* Default rising edge. */
1450                 if (devc->trigger.fallingmask)
1451                         triggerselect |= 1 << 3;
1452
1453         /* All other modes. */
1454         } else if (devc->cur_samplerate <= SR_MHZ(50)) {
1455                 build_basic_trigger(&lut, devc);
1456
1457                 sigma_write_trigger_lut(&lut, devc);
1458
1459                 triggerselect = (1 << LEDSEL1) | (1 << LEDSEL0);
1460         }
1461
1462         /* Setup trigger in and out pins to default values. */
1463         memset(&triggerinout_conf, 0, sizeof(struct triggerinout));
1464         triggerinout_conf.trgout_bytrigger = 1;
1465         triggerinout_conf.trgout_enable = 1;
1466
1467         sigma_write_register(WRITE_TRIGGER_OPTION,
1468                              (uint8_t *) &triggerinout_conf,
1469                              sizeof(struct triggerinout), devc);
1470
1471         /* Go back to normal mode. */
1472         sigma_set_register(WRITE_TRIGGER_SELECT1, triggerselect, devc);
1473
1474         /* Set clock select register. */
1475         if (devc->cur_samplerate == SR_MHZ(200))
1476                 /* Enable 4 channels. */
1477                 sigma_set_register(WRITE_CLOCK_SELECT, 0xf0, devc);
1478         else if (devc->cur_samplerate == SR_MHZ(100))
1479                 /* Enable 8 channels. */
1480                 sigma_set_register(WRITE_CLOCK_SELECT, 0x00, devc);
1481         else {
1482                 /*
1483                  * 50 MHz mode (or fraction thereof). Any fraction down to
1484                  * 50 MHz / 256 can be used, but is not supported by sigrok API.
1485                  */
1486                 frac = SR_MHZ(50) / devc->cur_samplerate - 1;
1487
1488                 clockselect.async = 0;
1489                 clockselect.fraction = frac;
1490                 clockselect.disabled_channels = 0;
1491
1492                 sigma_write_register(WRITE_CLOCK_SELECT,
1493                                      (uint8_t *) &clockselect,
1494                                      sizeof(clockselect), devc);
1495         }
1496
1497         /* Setup maximum post trigger time. */
1498         sigma_set_register(WRITE_POST_TRIGGER,
1499                            (devc->capture_ratio * 255) / 100, devc);
1500
1501         /* Start acqusition. */
1502         gettimeofday(&devc->start_tv, 0);
1503         sigma_set_register(WRITE_MODE, 0x0d, devc);
1504
1505         devc->cb_data = cb_data;
1506
1507         /* Send header packet to the session bus. */
1508         std_session_send_df_header(sdi, LOG_PREFIX);
1509
1510         /* Add capture source. */
1511         sr_session_source_add(sdi->session, 0, G_IO_IN, 10, receive_data, (void *)sdi);
1512
1513         devc->state.state = SIGMA_CAPTURE;
1514
1515         return SR_OK;
1516 }
1517
1518 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
1519 {
1520         struct dev_context *devc;
1521
1522         (void)cb_data;
1523
1524         devc = sdi->priv;
1525         devc->state.state = SIGMA_IDLE;
1526
1527         sr_session_source_remove(sdi->session, 0);
1528
1529         return SR_OK;
1530 }
1531
1532 SR_PRIV struct sr_dev_driver asix_sigma_driver_info = {
1533         .name = "asix-sigma",
1534         .longname = "ASIX SIGMA/SIGMA2",
1535         .api_version = 1,
1536         .init = init,
1537         .cleanup = cleanup,
1538         .scan = scan,
1539         .dev_list = dev_list,
1540         .dev_clear = dev_clear,
1541         .config_get = config_get,
1542         .config_set = config_set,
1543         .config_list = config_list,
1544         .dev_open = dev_open,
1545         .dev_close = dev_close,
1546         .dev_acquisition_start = dev_acquisition_start,
1547         .dev_acquisition_stop = dev_acquisition_stop,
1548         .priv = NULL,
1549 };