]> sigrok.org Git - libsigrok.git/blame - hardware/asix-sigma/asix-sigma.c
libsigrok: Rename open/close to opendev/closedev.
[libsigrok.git] / hardware / asix-sigma / asix-sigma.c
CommitLineData
28a35d8a
HE
1/*
2 * This file is part of the sigrok project.
3 *
911f1834
UH
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>
28a35d8a
HE
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
911f1834 22/*
da0918aa 23 * ASIX SIGMA Logic Analyzer Driver
911f1834
UH
24 */
25
22b02383 26#include "config.h"
3bbd9849
UH
27#include <glib.h>
28#include <glib/gstdio.h>
28a35d8a
HE
29#include <ftdi.h>
30#include <string.h>
31#include <zlib.h>
fefa1800 32#include <sigrok.h>
b08024a8 33#include <sigrok-internal.h>
28a35d8a
HE
34#include "asix-sigma.h"
35
36#define USB_VENDOR 0xa600
37#define USB_PRODUCT 0xa000
38#define USB_DESCRIPTION "ASIX SIGMA"
39#define USB_VENDOR_NAME "ASIX"
40#define USB_MODEL_NAME "SIGMA"
41#define USB_MODEL_VERSION ""
ee492173 42#define TRIGGER_TYPES "rf10"
28a35d8a
HE
43
44static GSList *device_instances = NULL;
45
28a35d8a 46static uint64_t supported_samplerates[] = {
59df0c77
UH
47 SR_KHZ(200),
48 SR_KHZ(250),
49 SR_KHZ(500),
50 SR_MHZ(1),
51 SR_MHZ(5),
52 SR_MHZ(10),
53 SR_MHZ(25),
54 SR_MHZ(50),
55 SR_MHZ(100),
56 SR_MHZ(200),
28a35d8a
HE
57 0,
58};
59
60679b18 60static struct sr_samplerates samplerates = {
59df0c77
UH
61 SR_KHZ(200),
62 SR_MHZ(200),
c9140419 63 SR_HZ(0),
28a35d8a
HE
64 supported_samplerates,
65};
66
67static int capabilities[] = {
5a2326a7
UH
68 SR_HWCAP_LOGIC_ANALYZER,
69 SR_HWCAP_SAMPLERATE,
70 SR_HWCAP_CAPTURE_RATIO,
71 SR_HWCAP_PROBECONFIG,
28a35d8a 72
5a2326a7 73 SR_HWCAP_LIMIT_MSEC,
28a35d8a
HE
74 0,
75};
76
fefa1800
UH
77/* Force the FPGA to reboot. */
78static uint8_t suicide[] = {
79 0x84, 0x84, 0x88, 0x84, 0x88, 0x84, 0x88, 0x84,
80};
81
82/* Prepare to upload firmware (FPGA specific). */
83static uint8_t init[] = {
84 0x03, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
85};
86
87/* Initialize the logic analyzer mode. */
88static uint8_t logic_mode_start[] = {
89 0x00, 0x40, 0x0f, 0x25, 0x35, 0x40,
90 0x2a, 0x3a, 0x40, 0x03, 0x20, 0x38,
91};
92
eec5275e 93static const char *firmware_files[] = {
a8116d76
HE
94 "asix-sigma-50.fw", /* 50 MHz, supports 8 bit fractions */
95 "asix-sigma-100.fw", /* 100 MHz */
96 "asix-sigma-200.fw", /* 200 MHz */
ed09fd07 97 "asix-sigma-50sync.fw", /* Synchronous clock from pin */
a8116d76 98 "asix-sigma-phasor.fw", /* Frequency counter */
f6564c8d
HE
99};
100
6aac7737
HE
101static void hw_stop_acquisition(int device_index, gpointer session_device_id);
102
99965709 103static int sigma_read(void *buf, size_t size, struct sigma *sigma)
28a35d8a
HE
104{
105 int ret;
fefa1800 106
99965709 107 ret = ftdi_read_data(&sigma->ftdic, (unsigned char *)buf, size);
28a35d8a 108 if (ret < 0) {
b08024a8
UH
109 sr_warn("ftdi_read_data failed: %s",
110 ftdi_get_error_string(&sigma->ftdic));
28a35d8a
HE
111 }
112
113 return ret;
114}
115
99965709 116static int sigma_write(void *buf, size_t size, struct sigma *sigma)
28a35d8a
HE
117{
118 int ret;
fefa1800 119
99965709 120 ret = ftdi_write_data(&sigma->ftdic, (unsigned char *)buf, size);
28a35d8a 121 if (ret < 0) {
b08024a8
UH
122 sr_warn("ftdi_write_data failed: %s",
123 ftdi_get_error_string(&sigma->ftdic));
fefa1800 124 } else if ((size_t) ret != size) {
b08024a8 125 sr_warn("ftdi_write_data did not complete write\n");
28a35d8a
HE
126 }
127
128 return ret;
129}
130
99965709
HE
131static int sigma_write_register(uint8_t reg, uint8_t *data, size_t len,
132 struct sigma *sigma)
28a35d8a
HE
133{
134 size_t i;
135 uint8_t buf[len + 2];
136 int idx = 0;
137
138 buf[idx++] = REG_ADDR_LOW | (reg & 0xf);
139 buf[idx++] = REG_ADDR_HIGH | (reg >> 4);
140
fefa1800 141 for (i = 0; i < len; ++i) {
28a35d8a
HE
142 buf[idx++] = REG_DATA_LOW | (data[i] & 0xf);
143 buf[idx++] = REG_DATA_HIGH_WRITE | (data[i] >> 4);
144 }
145
99965709 146 return sigma_write(buf, idx, sigma);
28a35d8a
HE
147}
148
99965709 149static int sigma_set_register(uint8_t reg, uint8_t value, struct sigma *sigma)
28a35d8a 150{
99965709 151 return sigma_write_register(reg, &value, 1, sigma);
28a35d8a
HE
152}
153
99965709
HE
154static int sigma_read_register(uint8_t reg, uint8_t *data, size_t len,
155 struct sigma *sigma)
28a35d8a
HE
156{
157 uint8_t buf[3];
fefa1800 158
28a35d8a
HE
159 buf[0] = REG_ADDR_LOW | (reg & 0xf);
160 buf[1] = REG_ADDR_HIGH | (reg >> 4);
28a35d8a
HE
161 buf[2] = REG_READ_ADDR;
162
99965709 163 sigma_write(buf, sizeof(buf), sigma);
28a35d8a 164
99965709 165 return sigma_read(data, len, sigma);
28a35d8a
HE
166}
167
99965709 168static uint8_t sigma_get_register(uint8_t reg, struct sigma *sigma)
28a35d8a
HE
169{
170 uint8_t value;
fefa1800 171
99965709 172 if (1 != sigma_read_register(reg, &value, 1, sigma)) {
b08024a8 173 sr_warn("sigma_get_register: 1 byte expected");
28a35d8a
HE
174 return 0;
175 }
176
177 return value;
178}
179
99965709
HE
180static int sigma_read_pos(uint32_t *stoppos, uint32_t *triggerpos,
181 struct sigma *sigma)
28a35d8a
HE
182{
183 uint8_t buf[] = {
184 REG_ADDR_LOW | READ_TRIGGER_POS_LOW,
185
186 REG_READ_ADDR | NEXT_REG,
187 REG_READ_ADDR | NEXT_REG,
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 };
28a35d8a
HE
193 uint8_t result[6];
194
99965709 195 sigma_write(buf, sizeof(buf), sigma);
28a35d8a 196
99965709 197 sigma_read(result, sizeof(result), sigma);
28a35d8a
HE
198
199 *triggerpos = result[0] | (result[1] << 8) | (result[2] << 16);
200 *stoppos = result[3] | (result[4] << 8) | (result[5] << 16);
201
57bbf56b
HE
202 /* Not really sure why this must be done, but according to spec. */
203 if ((--*stoppos & 0x1ff) == 0x1ff)
204 stoppos -= 64;
205
206 if ((*--triggerpos & 0x1ff) == 0x1ff)
207 triggerpos -= 64;
208
28a35d8a
HE
209 return 1;
210}
211
99965709
HE
212static int sigma_read_dram(uint16_t startchunk, size_t numchunks,
213 uint8_t *data, struct sigma *sigma)
28a35d8a
HE
214{
215 size_t i;
216 uint8_t buf[4096];
217 int idx = 0;
218
fefa1800 219 /* Send the startchunk. Index start with 1. */
28a35d8a
HE
220 buf[0] = startchunk >> 8;
221 buf[1] = startchunk & 0xff;
99965709 222 sigma_write_register(WRITE_MEMROW, buf, 2, sigma);
28a35d8a 223
fefa1800 224 /* Read the DRAM. */
28a35d8a
HE
225 buf[idx++] = REG_DRAM_BLOCK;
226 buf[idx++] = REG_DRAM_WAIT_ACK;
227
228 for (i = 0; i < numchunks; ++i) {
fefa1800
UH
229 /* Alternate bit to copy from DRAM to cache. */
230 if (i != (numchunks - 1))
231 buf[idx++] = REG_DRAM_BLOCK | (((i + 1) % 2) << 4);
28a35d8a
HE
232
233 buf[idx++] = REG_DRAM_BLOCK_DATA | ((i % 2) << 4);
234
fefa1800 235 if (i != (numchunks - 1))
28a35d8a
HE
236 buf[idx++] = REG_DRAM_WAIT_ACK;
237 }
238
99965709 239 sigma_write(buf, idx, sigma);
28a35d8a 240
99965709 241 return sigma_read(data, numchunks * CHUNK_SIZE, sigma);
28a35d8a
HE
242}
243
4ae1f451 244/* Upload trigger look-up tables to Sigma. */
99965709 245static int sigma_write_trigger_lut(struct triggerlut *lut, struct sigma *sigma)
ee492173
HE
246{
247 int i;
248 uint8_t tmp[2];
249 uint16_t bit;
250
251 /* Transpose the table and send to Sigma. */
252 for (i = 0; i < 16; ++i) {
253 bit = 1 << i;
254
255 tmp[0] = tmp[1] = 0;
256
257 if (lut->m2d[0] & bit)
258 tmp[0] |= 0x01;
259 if (lut->m2d[1] & bit)
260 tmp[0] |= 0x02;
261 if (lut->m2d[2] & bit)
262 tmp[0] |= 0x04;
263 if (lut->m2d[3] & bit)
264 tmp[0] |= 0x08;
265
266 if (lut->m3 & bit)
267 tmp[0] |= 0x10;
268 if (lut->m3s & bit)
269 tmp[0] |= 0x20;
270 if (lut->m4 & bit)
271 tmp[0] |= 0x40;
272
273 if (lut->m0d[0] & bit)
274 tmp[1] |= 0x01;
275 if (lut->m0d[1] & bit)
276 tmp[1] |= 0x02;
277 if (lut->m0d[2] & bit)
278 tmp[1] |= 0x04;
279 if (lut->m0d[3] & bit)
280 tmp[1] |= 0x08;
281
282 if (lut->m1d[0] & bit)
283 tmp[1] |= 0x10;
284 if (lut->m1d[1] & bit)
285 tmp[1] |= 0x20;
286 if (lut->m1d[2] & bit)
287 tmp[1] |= 0x40;
288 if (lut->m1d[3] & bit)
289 tmp[1] |= 0x80;
290
99965709
HE
291 sigma_write_register(WRITE_TRIGGER_SELECT0, tmp, sizeof(tmp),
292 sigma);
293 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x30 | i, sigma);
ee492173
HE
294 }
295
296 /* Send the parameters */
297 sigma_write_register(WRITE_TRIGGER_SELECT0, (uint8_t *) &lut->params,
99965709 298 sizeof(lut->params), sigma);
ee492173 299
e46b8fb1 300 return SR_OK;
ee492173
HE
301}
302
fefa1800 303/* Generate the bitbang stream for programming the FPGA. */
28a35d8a 304static int bin2bitbang(const char *filename,
fefa1800 305 unsigned char **buf, size_t *buf_size)
28a35d8a 306{
fefa1800 307 FILE *f;
28a35d8a
HE
308 long file_size;
309 unsigned long offset = 0;
310 unsigned char *p;
311 uint8_t *compressed_buf, *firmware;
312 uLongf csize, fwsize;
313 const int buffer_size = 65536;
314 size_t i;
fefa1800
UH
315 int c, ret, bit, v;
316 uint32_t imm = 0x3f6df2ab;
28a35d8a 317
868d8cef 318 f = g_fopen(filename, "rb");
28a35d8a 319 if (!f) {
b08024a8 320 sr_warn("g_fopen(\"%s\", \"rb\")", filename);
b53738ba 321 return SR_ERR;
28a35d8a
HE
322 }
323
324 if (-1 == fseek(f, 0, SEEK_END)) {
b08024a8 325 sr_warn("fseek on %s failed", filename);
28a35d8a 326 fclose(f);
b53738ba 327 return SR_ERR;
28a35d8a
HE
328 }
329
330 file_size = ftell(f);
331
332 fseek(f, 0, SEEK_SET);
333
b53738ba
UH
334 if (!(compressed_buf = g_try_malloc(file_size))) {
335 sr_err("asix: %s: compressed_buf malloc failed", __func__);
12ad53f5 336 fclose(f);
b53738ba
UH
337 return SR_ERR_MALLOC;
338 }
28a35d8a 339
b53738ba
UH
340 if (!(firmware = g_try_malloc(buffer_size))) {
341 sr_err("asix: %s: firmware malloc failed", __func__);
12ad53f5
UH
342 fclose(f);
343 g_free(compressed_buf);
b53738ba 344 return SR_ERR_MALLOC;
28a35d8a
HE
345 }
346
28a35d8a
HE
347 csize = 0;
348 while ((c = getc(f)) != EOF) {
349 imm = (imm + 0xa853753) % 177 + (imm * 0x8034052);
350 compressed_buf[csize++] = c ^ imm;
351 }
352 fclose(f);
353
354 fwsize = buffer_size;
355 ret = uncompress(firmware, &fwsize, compressed_buf, csize);
356 if (ret < 0) {
357 g_free(compressed_buf);
358 g_free(firmware);
b08024a8 359 sr_warn("Could not unpack Sigma firmware. (Error %d)\n", ret);
b53738ba 360 return SR_ERR;
28a35d8a
HE
361 }
362
363 g_free(compressed_buf);
364
365 *buf_size = fwsize * 2 * 8;
366
b53738ba 367 *buf = p = (unsigned char *)g_try_malloc(*buf_size);
28a35d8a 368 if (!p) {
b53738ba 369 sr_err("asix: %s: buf/p malloc failed", __func__);
12ad53f5
UH
370 g_free(compressed_buf);
371 g_free(firmware);
b53738ba 372 return SR_ERR_MALLOC;
28a35d8a
HE
373 }
374
375 for (i = 0; i < fwsize; ++i) {
28a35d8a 376 for (bit = 7; bit >= 0; --bit) {
fefa1800 377 v = firmware[i] & 1 << bit ? 0x40 : 0x00;
28a35d8a
HE
378 p[offset++] = v | 0x01;
379 p[offset++] = v;
380 }
381 }
382
383 g_free(firmware);
384
385 if (offset != *buf_size) {
386 g_free(*buf);
b08024a8
UH
387 sr_warn("Error reading firmware %s "
388 "offset=%ld, file_size=%ld, buf_size=%zd\n",
389 filename, offset, file_size, *buf_size);
28a35d8a 390
b53738ba 391 return SR_ERR;
28a35d8a
HE
392 }
393
b53738ba 394 return SR_OK;
28a35d8a
HE
395}
396
54ac5277 397static int hw_init(const char *deviceinfo)
28a35d8a 398{
a00ba012 399 struct sr_device_instance *sdi;
b53738ba 400 struct sigma *sigma;
28a35d8a 401
b53738ba 402 /* Avoid compiler warnings. */
28a35d8a
HE
403 deviceinfo = deviceinfo;
404
b53738ba
UH
405 if (!(sigma = g_try_malloc(sizeof(struct sigma)))) {
406 sr_err("asix: %s: sigma malloc failed", __func__);
407 return 0; /* FIXME: Should be SR_ERR_MALLOC. */
408 }
99965709
HE
409
410 ftdi_init(&sigma->ftdic);
28a35d8a 411
fefa1800 412 /* Look for SIGMAs. */
99965709 413 if (ftdi_usb_open_desc(&sigma->ftdic, USB_VENDOR, USB_PRODUCT,
fefa1800 414 USB_DESCRIPTION, NULL) < 0)
99965709
HE
415 goto free;
416
417 sigma->cur_samplerate = 0;
418 sigma->limit_msec = 0;
419 sigma->cur_firmware = -1;
420 sigma->num_probes = 0;
421 sigma->samples_per_event = 0;
422 sigma->capture_ratio = 50;
5b5ea7c6 423 sigma->use_triggers = 0;
28a35d8a 424
fefa1800 425 /* Register SIGMA device. */
5a2326a7 426 sdi = sr_device_instance_new(0, SR_ST_INITIALIZING,
28a35d8a
HE
427 USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
428 if (!sdi)
99965709
HE
429 goto free;
430
431 sdi->priv = sigma;
28a35d8a
HE
432
433 device_instances = g_slist_append(device_instances, sdi);
434
fefa1800 435 /* We will open the device again when we need it. */
99965709 436 ftdi_usb_close(&sigma->ftdic);
28a35d8a
HE
437
438 return 1;
99965709 439free:
12ad53f5 440 g_free(sigma);
99965709 441 return 0;
28a35d8a
HE
442}
443
99965709 444static int upload_firmware(int firmware_idx, struct sigma *sigma)
28a35d8a
HE
445{
446 int ret;
447 unsigned char *buf;
448 unsigned char pins;
449 size_t buf_size;
28a35d8a 450 unsigned char result[32];
e8397563 451 char firmware_path[128];
28a35d8a 452
fefa1800 453 /* Make sure it's an ASIX SIGMA. */
99965709 454 if ((ret = ftdi_usb_open_desc(&sigma->ftdic,
28a35d8a 455 USB_VENDOR, USB_PRODUCT, USB_DESCRIPTION, NULL)) < 0) {
b08024a8
UH
456 sr_warn("ftdi_usb_open failed: %s",
457 ftdi_get_error_string(&sigma->ftdic));
28a35d8a
HE
458 return 0;
459 }
460
99965709 461 if ((ret = ftdi_set_bitmode(&sigma->ftdic, 0xdf, BITMODE_BITBANG)) < 0) {
b08024a8
UH
462 sr_warn("ftdi_set_bitmode failed: %s",
463 ftdi_get_error_string(&sigma->ftdic));
28a35d8a
HE
464 return 0;
465 }
466
fefa1800 467 /* Four times the speed of sigmalogan - Works well. */
99965709 468 if ((ret = ftdi_set_baudrate(&sigma->ftdic, 750000)) < 0) {
b08024a8
UH
469 sr_warn("ftdi_set_baudrate failed: %s",
470 ftdi_get_error_string(&sigma->ftdic));
28a35d8a
HE
471 return 0;
472 }
473
fefa1800 474 /* Force the FPGA to reboot. */
99965709
HE
475 sigma_write(suicide, sizeof(suicide), sigma);
476 sigma_write(suicide, sizeof(suicide), sigma);
477 sigma_write(suicide, sizeof(suicide), sigma);
478 sigma_write(suicide, sizeof(suicide), sigma);
28a35d8a 479
fefa1800 480 /* Prepare to upload firmware (FPGA specific). */
99965709 481 sigma_write(init, sizeof(init), sigma);
28a35d8a 482
99965709 483 ftdi_usb_purge_buffers(&sigma->ftdic);
28a35d8a 484
fefa1800 485 /* Wait until the FPGA asserts INIT_B. */
28a35d8a 486 while (1) {
99965709 487 ret = sigma_read(result, 1, sigma);
28a35d8a
HE
488 if (result[0] & 0x20)
489 break;
490 }
491
9ddb2a12 492 /* Prepare firmware. */
e8397563 493 snprintf(firmware_path, sizeof(firmware_path), "%s/%s", FIRMWARE_DIR,
f6564c8d
HE
494 firmware_files[firmware_idx]);
495
b53738ba 496 if ((ret = bin2bitbang(firmware_path, &buf, &buf_size)) != SR_OK) {
b08024a8
UH
497 sr_warn("An error occured while reading the firmware: %s",
498 firmware_path);
b53738ba 499 return ret;
28a35d8a
HE
500 }
501
fefa1800 502 /* Upload firmare. */
99965709 503 sigma_write(buf, buf_size, sigma);
28a35d8a
HE
504
505 g_free(buf);
506
99965709 507 if ((ret = ftdi_set_bitmode(&sigma->ftdic, 0x00, BITMODE_RESET)) < 0) {
b08024a8
UH
508 sr_warn("ftdi_set_bitmode failed: %s",
509 ftdi_get_error_string(&sigma->ftdic));
e46b8fb1 510 return SR_ERR;
28a35d8a
HE
511 }
512
99965709 513 ftdi_usb_purge_buffers(&sigma->ftdic);
28a35d8a 514
fefa1800 515 /* Discard garbage. */
99965709 516 while (1 == sigma_read(&pins, 1, sigma))
28a35d8a
HE
517 ;
518
fefa1800 519 /* Initialize the logic analyzer mode. */
99965709 520 sigma_write(logic_mode_start, sizeof(logic_mode_start), sigma);
28a35d8a 521
fefa1800 522 /* Expect a 3 byte reply. */
99965709 523 ret = sigma_read(result, 3, sigma);
28a35d8a
HE
524 if (ret != 3 ||
525 result[0] != 0xa6 || result[1] != 0x55 || result[2] != 0xaa) {
b08024a8 526 sr_warn("Configuration failed. Invalid reply received.");
e46b8fb1 527 return SR_ERR;
28a35d8a
HE
528 }
529
99965709 530 sigma->cur_firmware = firmware_idx;
f6564c8d 531
e46b8fb1 532 return SR_OK;
f6564c8d
HE
533}
534
535static int hw_opendev(int device_index)
536{
a00ba012 537 struct sr_device_instance *sdi;
99965709 538 struct sigma *sigma;
f6564c8d
HE
539 int ret;
540
d32d961d 541 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 542 return SR_ERR;
99965709
HE
543
544 sigma = sdi->priv;
545
9ddb2a12 546 /* Make sure it's an ASIX SIGMA. */
99965709 547 if ((ret = ftdi_usb_open_desc(&sigma->ftdic,
f6564c8d
HE
548 USB_VENDOR, USB_PRODUCT, USB_DESCRIPTION, NULL)) < 0) {
549
b08024a8 550 sr_warn("ftdi_usb_open failed: %s",
99965709 551 ftdi_get_error_string(&sigma->ftdic));
f6564c8d
HE
552
553 return 0;
554 }
28a35d8a 555
5a2326a7 556 sdi->status = SR_ST_ACTIVE;
28a35d8a 557
e46b8fb1 558 return SR_OK;
f6564c8d
HE
559}
560
a00ba012 561static int set_samplerate(struct sr_device_instance *sdi,
6aac7737 562 uint64_t samplerate)
f6564c8d 563{
e8397563 564 int i, ret;
99965709 565 struct sigma *sigma = sdi->priv;
f6564c8d
HE
566
567 for (i = 0; supported_samplerates[i]; i++) {
568 if (supported_samplerates[i] == samplerate)
569 break;
570 }
571 if (supported_samplerates[i] == 0)
e46b8fb1 572 return SR_ERR_SAMPLERATE;
f6564c8d 573
59df0c77 574 if (samplerate <= SR_MHZ(50)) {
99965709
HE
575 ret = upload_firmware(0, sigma);
576 sigma->num_probes = 16;
e8397563 577 }
59df0c77 578 if (samplerate == SR_MHZ(100)) {
99965709
HE
579 ret = upload_firmware(1, sigma);
580 sigma->num_probes = 8;
f78898e9 581 }
59df0c77 582 else if (samplerate == SR_MHZ(200)) {
99965709
HE
583 ret = upload_firmware(2, sigma);
584 sigma->num_probes = 4;
f78898e9 585 }
f6564c8d 586
99965709
HE
587 sigma->cur_samplerate = samplerate;
588 sigma->samples_per_event = 16 / sigma->num_probes;
589 sigma->state.state = SIGMA_IDLE;
f6564c8d 590
b08024a8 591 sr_info("Firmware uploaded");
28a35d8a 592
e8397563 593 return ret;
28a35d8a
HE
594}
595
c53d793f
HE
596/*
597 * In 100 and 200 MHz mode, only a single pin rising/falling can be
598 * set as trigger. In other modes, two rising/falling triggers can be set,
599 * in addition to value/mask trigger for any number of probes.
600 *
601 * The Sigma supports complex triggers using boolean expressions, but this
602 * has not been implemented yet.
603 */
a00ba012 604static int configure_probes(struct sr_device_instance *sdi, GSList *probes)
57bbf56b 605{
99965709 606 struct sigma *sigma = sdi->priv;
1afe8989 607 struct sr_probe *probe;
57bbf56b
HE
608 GSList *l;
609 int trigger_set = 0;
a42aec7f 610 int probebit;
57bbf56b 611
99965709 612 memset(&sigma->trigger, 0, sizeof(struct sigma_trigger));
eec5275e 613
57bbf56b 614 for (l = probes; l; l = l->next) {
1afe8989 615 probe = (struct sr_probe *)l->data;
a42aec7f 616 probebit = 1 << (probe->index - 1);
57bbf56b
HE
617
618 if (!probe->enabled || !probe->trigger)
619 continue;
620
59df0c77 621 if (sigma->cur_samplerate >= SR_MHZ(100)) {
c53d793f 622 /* Fast trigger support. */
ee492173 623 if (trigger_set) {
da0918aa 624 sr_warn("ASIX SIGMA only supports a single "
b08024a8 625 "pin trigger in 100 and 200MHz mode.");
e46b8fb1 626 return SR_ERR;
ee492173
HE
627 }
628 if (probe->trigger[0] == 'f')
99965709 629 sigma->trigger.fallingmask |= probebit;
ee492173 630 else if (probe->trigger[0] == 'r')
99965709 631 sigma->trigger.risingmask |= probebit;
ee492173 632 else {
da0918aa 633 sr_warn("ASIX SIGMA only supports "
b08024a8
UH
634 "rising/falling trigger in 100 "
635 "and 200MHz mode.");
e46b8fb1 636 return SR_ERR;
ee492173 637 }
57bbf56b 638
c53d793f 639 ++trigger_set;
ee492173 640 } else {
c53d793f
HE
641 /* Simple trigger support (event). */
642 if (probe->trigger[0] == '1') {
99965709
HE
643 sigma->trigger.simplevalue |= probebit;
644 sigma->trigger.simplemask |= probebit;
c53d793f
HE
645 }
646 else if (probe->trigger[0] == '0') {
99965709
HE
647 sigma->trigger.simplevalue &= ~probebit;
648 sigma->trigger.simplemask |= probebit;
c53d793f
HE
649 }
650 else if (probe->trigger[0] == 'f') {
99965709 651 sigma->trigger.fallingmask |= probebit;
c53d793f
HE
652 ++trigger_set;
653 }
654 else if (probe->trigger[0] == 'r') {
99965709 655 sigma->trigger.risingmask |= probebit;
c53d793f
HE
656 ++trigger_set;
657 }
ee492173 658
98b8cbc1
HE
659 /*
660 * Actually, Sigma supports 2 rising/falling triggers,
661 * but they are ORed and the current trigger syntax
662 * does not permit ORed triggers.
663 */
664 if (trigger_set > 1) {
da0918aa 665 sr_warn("ASIX SIGMA only supports 1 rising/"
b08024a8 666 "falling triggers.");
e46b8fb1 667 return SR_ERR;
ee492173 668 }
ee492173 669 }
5b5ea7c6
HE
670
671 if (trigger_set)
672 sigma->use_triggers = 1;
57bbf56b
HE
673 }
674
e46b8fb1 675 return SR_OK;
57bbf56b
HE
676}
677
28a35d8a
HE
678static void hw_closedev(int device_index)
679{
a00ba012 680 struct sr_device_instance *sdi;
99965709 681 struct sigma *sigma;
28a35d8a 682
d32d961d 683 if ((sdi = sr_get_device_instance(device_instances, device_index)))
9be9893e 684 {
99965709 685 sigma = sdi->priv;
5a2326a7 686 if (sdi->status == SR_ST_ACTIVE)
99965709 687 ftdi_usb_close(&sigma->ftdic);
9be9893e 688
5a2326a7 689 sdi->status = SR_ST_INACTIVE;
9be9893e 690 }
28a35d8a
HE
691}
692
28a35d8a
HE
693static void hw_cleanup(void)
694{
99965709 695 GSList *l;
a00ba012 696 struct sr_device_instance *sdi;
99965709
HE
697
698 /* Properly close all devices. */
699 for (l = device_instances; l; l = l->next) {
700 sdi = l->data;
701 if (sdi->priv != NULL)
702 free(sdi->priv);
a00ba012 703 sr_device_instance_free(sdi);
99965709
HE
704 }
705 g_slist_free(device_instances);
706 device_instances = NULL;
28a35d8a
HE
707}
708
28a35d8a
HE
709static void *hw_get_device_info(int device_index, int device_info_id)
710{
a00ba012 711 struct sr_device_instance *sdi;
99965709 712 struct sigma *sigma;
28a35d8a
HE
713 void *info = NULL;
714
d32d961d 715 if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
28a35d8a
HE
716 fprintf(stderr, "It's NULL.\n");
717 return NULL;
718 }
719
99965709
HE
720 sigma = sdi->priv;
721
28a35d8a 722 switch (device_info_id) {
5a2326a7 723 case SR_DI_INSTANCE:
28a35d8a
HE
724 info = sdi;
725 break;
5a2326a7 726 case SR_DI_NUM_PROBES:
edca2c5c 727 info = GINT_TO_POINTER(16);
28a35d8a 728 break;
5a2326a7 729 case SR_DI_SAMPLERATES:
28a35d8a
HE
730 info = &samplerates;
731 break;
5a2326a7 732 case SR_DI_TRIGGER_TYPES:
57bbf56b 733 info = (char *)TRIGGER_TYPES;
28a35d8a 734 break;
5a2326a7 735 case SR_DI_CUR_SAMPLERATE:
99965709 736 info = &sigma->cur_samplerate;
28a35d8a
HE
737 break;
738 }
739
740 return info;
741}
742
28a35d8a
HE
743static int hw_get_status(int device_index)
744{
a00ba012 745 struct sr_device_instance *sdi;
28a35d8a 746
d32d961d 747 sdi = sr_get_device_instance(device_instances, device_index);
28a35d8a
HE
748 if (sdi)
749 return sdi->status;
750 else
5a2326a7 751 return SR_ST_NOT_FOUND;
28a35d8a
HE
752}
753
28a35d8a
HE
754static int *hw_get_capabilities(void)
755{
756 return capabilities;
757}
758
759static int hw_set_configuration(int device_index, int capability, void *value)
760{
a00ba012 761 struct sr_device_instance *sdi;
99965709 762 struct sigma *sigma;
28a35d8a 763 int ret;
f6564c8d 764
d32d961d 765 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 766 return SR_ERR;
28a35d8a 767
99965709
HE
768 sigma = sdi->priv;
769
5a2326a7 770 if (capability == SR_HWCAP_SAMPLERATE) {
f6564c8d 771 ret = set_samplerate(sdi, *(uint64_t*) value);
5a2326a7 772 } else if (capability == SR_HWCAP_PROBECONFIG) {
99965709 773 ret = configure_probes(sdi, value);
5a2326a7 774 } else if (capability == SR_HWCAP_LIMIT_MSEC) {
94ba4bd6
HE
775 sigma->limit_msec = *(uint64_t*) value;
776 if (sigma->limit_msec > 0)
e46b8fb1 777 ret = SR_OK;
94ba4bd6 778 else
e46b8fb1 779 ret = SR_ERR;
5a2326a7 780 } else if (capability == SR_HWCAP_CAPTURE_RATIO) {
94ba4bd6
HE
781 sigma->capture_ratio = *(uint64_t*) value;
782 if (sigma->capture_ratio < 0 || sigma->capture_ratio > 100)
e46b8fb1 783 ret = SR_ERR;
94ba4bd6 784 else
e46b8fb1 785 ret = SR_OK;
28a35d8a 786 } else {
e46b8fb1 787 ret = SR_ERR;
28a35d8a
HE
788 }
789
790 return ret;
791}
792
36b1c8e6
HE
793/* Software trigger to determine exact trigger position. */
794static int get_trigger_offset(uint16_t *samples, uint16_t last_sample,
795 struct sigma_trigger *t)
796{
797 int i;
798
799 for (i = 0; i < 8; ++i) {
800 if (i > 0)
801 last_sample = samples[i-1];
802
803 /* Simple triggers. */
804 if ((samples[i] & t->simplemask) != t->simplevalue)
805 continue;
806
807 /* Rising edge. */
808 if ((last_sample & t->risingmask) != 0 || (samples[i] &
809 t->risingmask) != t->risingmask)
810 continue;
811
812 /* Falling edge. */
bdfc7a89
HE
813 if ((last_sample & t->fallingmask) != t->fallingmask ||
814 (samples[i] & t->fallingmask) != 0)
36b1c8e6
HE
815 continue;
816
817 break;
818 }
819
820 /* If we did not match, return original trigger pos. */
821 return i & 0x7;
822}
823
28a35d8a 824/*
fefa1800
UH
825 * Decode chunk of 1024 bytes, 64 clusters, 7 events per cluster.
826 * Each event is 20ns apart, and can contain multiple samples.
f78898e9
HE
827 *
828 * For 200 MHz, events contain 4 samples for each channel, spread 5 ns apart.
829 * For 100 MHz, events contain 2 samples for each channel, spread 10 ns apart.
830 * For 50 MHz and below, events contain one sample for each channel,
831 * spread 20 ns apart.
28a35d8a
HE
832 */
833static int decode_chunk_ts(uint8_t *buf, uint16_t *lastts,
88c51afe
HE
834 uint16_t *lastsample, int triggerpos,
835 uint16_t limit_chunk, void *user_data)
28a35d8a 836{
a00ba012 837 struct sr_device_instance *sdi = user_data;
99965709 838 struct sigma *sigma = sdi->priv;
fefa1800 839 uint16_t tsdiff, ts;
99965709 840 uint16_t samples[65536 * sigma->samples_per_event];
b9c735a2 841 struct sr_datafeed_packet packet;
f78898e9 842 int i, j, k, l, numpad, tosend;
fefa1800 843 size_t n = 0, sent = 0;
99965709 844 int clustersize = EVENTS_PER_CLUSTER * sigma->samples_per_event;
fefa1800 845 uint16_t *event;
f78898e9 846 uint16_t cur_sample;
57bbf56b 847 int triggerts = -1;
ee492173 848
4ae1f451 849 /* Check if trigger is in this chunk. */
ee492173 850 if (triggerpos != -1) {
59df0c77 851 if (sigma->cur_samplerate <= SR_MHZ(50))
36b1c8e6 852 triggerpos -= EVENTS_PER_CLUSTER - 1;
ee492173
HE
853
854 if (triggerpos < 0)
855 triggerpos = 0;
57bbf56b 856
ee492173
HE
857 /* Find in which cluster the trigger occured. */
858 triggerts = triggerpos / 7;
859 }
28a35d8a 860
eec5275e 861 /* For each ts. */
28a35d8a 862 for (i = 0; i < 64; ++i) {
fefa1800 863 ts = *(uint16_t *) &buf[i * 16];
28a35d8a
HE
864 tsdiff = ts - *lastts;
865 *lastts = ts;
866
88c51afe
HE
867 /* Decode partial chunk. */
868 if (limit_chunk && ts > limit_chunk)
e46b8fb1 869 return SR_OK;
88c51afe 870
fefa1800 871 /* Pad last sample up to current point. */
99965709 872 numpad = tsdiff * sigma->samples_per_event - clustersize;
28a35d8a 873 if (numpad > 0) {
f78898e9
HE
874 for (j = 0; j < numpad; ++j)
875 samples[j] = *lastsample;
876
877 n = numpad;
28a35d8a
HE
878 }
879
57bbf56b
HE
880 /* Send samples between previous and this timestamp to sigrok. */
881 sent = 0;
882 while (sent < n) {
883 tosend = MIN(2048, n - sent);
884
5a2326a7 885 packet.type = SR_DF_LOGIC;
57bbf56b 886 packet.length = tosend * sizeof(uint16_t);
4c046c6b 887 packet.unitsize = 2;
57bbf56b 888 packet.payload = samples + sent;
8a2efef2 889 sr_session_bus(sigma->session_id, &packet);
28a35d8a 890
57bbf56b
HE
891 sent += tosend;
892 }
893 n = 0;
894
895 event = (uint16_t *) &buf[i * 16 + 2];
f78898e9
HE
896 cur_sample = 0;
897
898 /* For each event in cluster. */
28a35d8a 899 for (j = 0; j < 7; ++j) {
f78898e9
HE
900
901 /* For each sample in event. */
99965709 902 for (k = 0; k < sigma->samples_per_event; ++k) {
f78898e9
HE
903 cur_sample = 0;
904
905 /* For each probe. */
99965709 906 for (l = 0; l < sigma->num_probes; ++l)
edca2c5c 907 cur_sample |= (!!(event[j] & (1 << (l *
99965709
HE
908 sigma->samples_per_event
909 + k))))
edca2c5c 910 << l;
f78898e9
HE
911
912 samples[n++] = cur_sample;
28a35d8a
HE
913 }
914 }
915
eec5275e 916 /* Send data up to trigger point (if triggered). */
fefa1800 917 sent = 0;
57bbf56b
HE
918 if (i == triggerts) {
919 /*
36b1c8e6
HE
920 * Trigger is not always accurate to sample because of
921 * pipeline delay. However, it always triggers before
922 * the actual event. We therefore look at the next
923 * samples to pinpoint the exact position of the trigger.
57bbf56b 924 */
bdfc7a89 925 tosend = get_trigger_offset(samples, *lastsample,
99965709 926 &sigma->trigger);
57bbf56b
HE
927
928 if (tosend > 0) {
5a2326a7 929 packet.type = SR_DF_LOGIC;
57bbf56b 930 packet.length = tosend * sizeof(uint16_t);
4c046c6b 931 packet.unitsize = 2;
57bbf56b 932 packet.payload = samples;
8a2efef2 933 sr_session_bus(sigma->session_id, &packet);
57bbf56b
HE
934
935 sent += tosend;
936 }
28a35d8a 937
5b5ea7c6
HE
938 /* Only send trigger if explicitly enabled. */
939 if (sigma->use_triggers) {
5a2326a7 940 packet.type = SR_DF_TRIGGER;
5b5ea7c6
HE
941 packet.length = 0;
942 packet.payload = 0;
8a2efef2 943 sr_session_bus(sigma->session_id, &packet);
5b5ea7c6 944 }
28a35d8a 945 }
57bbf56b 946
eec5275e 947 /* Send rest of the chunk to sigrok. */
57bbf56b
HE
948 tosend = n - sent;
949
abda62ce 950 if (tosend > 0) {
5a2326a7 951 packet.type = SR_DF_LOGIC;
abda62ce
HE
952 packet.length = tosend * sizeof(uint16_t);
953 packet.unitsize = 2;
954 packet.payload = samples + sent;
8a2efef2 955 sr_session_bus(sigma->session_id, &packet);
abda62ce 956 }
ee492173
HE
957
958 *lastsample = samples[n - 1];
28a35d8a
HE
959 }
960
e46b8fb1 961 return SR_OK;
28a35d8a
HE
962}
963
964static int receive_data(int fd, int revents, void *user_data)
965{
a00ba012 966 struct sr_device_instance *sdi = user_data;
99965709 967 struct sigma *sigma = sdi->priv;
b9c735a2 968 struct sr_datafeed_packet packet;
28a35d8a
HE
969 const int chunks_per_read = 32;
970 unsigned char buf[chunks_per_read * CHUNK_SIZE];
6aac7737 971 int bufsz, numchunks, i, newchunks;
94ba4bd6 972 uint64_t running_msec;
28a35d8a 973 struct timeval tv;
28a35d8a
HE
974
975 fd = fd;
976 revents = revents;
977
31facdd3 978 numchunks = (sigma->state.stoppos + 511) / 512;
28a35d8a 979
99965709 980 if (sigma->state.state == SIGMA_IDLE)
28a35d8a
HE
981 return FALSE;
982
99965709 983 if (sigma->state.state == SIGMA_CAPTURE) {
28a35d8a 984
6aac7737
HE
985 /* Check if the timer has expired, or memory is full. */
986 gettimeofday(&tv, 0);
99965709
HE
987 running_msec = (tv.tv_sec - sigma->start_tv.tv_sec) * 1000 +
988 (tv.tv_usec - sigma->start_tv.tv_usec) / 1000;
28a35d8a 989
99965709 990 if (running_msec < sigma->limit_msec && numchunks < 32767)
6aac7737 991 return FALSE;
28a35d8a 992
99965709 993 hw_stop_acquisition(sdi->index, user_data);
6aac7737
HE
994
995 return FALSE;
996
99965709
HE
997 } else if (sigma->state.state == SIGMA_DOWNLOAD) {
998 if (sigma->state.chunks_downloaded >= numchunks) {
6aac7737 999 /* End of samples. */
5a2326a7 1000 packet.type = SR_DF_END;
6aac7737 1001 packet.length = 0;
8a2efef2 1002 sr_session_bus(sigma->session_id, &packet);
6aac7737 1003
99965709 1004 sigma->state.state = SIGMA_IDLE;
f78898e9 1005
6aac7737
HE
1006 return TRUE;
1007 }
1008
1009 newchunks = MIN(chunks_per_read,
99965709 1010 numchunks - sigma->state.chunks_downloaded);
28a35d8a 1011
b08024a8
UH
1012 sr_info("Downloading sample data: %.0f %%",
1013 100.0 * sigma->state.chunks_downloaded / numchunks);
28a35d8a 1014
99965709
HE
1015 bufsz = sigma_read_dram(sigma->state.chunks_downloaded,
1016 newchunks, buf, sigma);
28a35d8a 1017
fefa1800 1018 /* Find first ts. */
99965709
HE
1019 if (sigma->state.chunks_downloaded == 0) {
1020 sigma->state.lastts = *(uint16_t *) buf - 1;
1021 sigma->state.lastsample = 0;
6aac7737 1022 }
28a35d8a 1023
fefa1800 1024 /* Decode chunks and send them to sigrok. */
28a35d8a 1025 for (i = 0; i < newchunks; ++i) {
88c51afe
HE
1026 int limit_chunk = 0;
1027
1028 /* The last chunk may potentially be only in part. */
1029 if (sigma->state.chunks_downloaded == numchunks - 1)
1030 {
1031 /* Find the last valid timestamp */
1032 limit_chunk = sigma->state.stoppos % 512 + sigma->state.lastts;
1033 }
1034
99965709 1035 if (sigma->state.chunks_downloaded + i == sigma->state.triggerchunk)
57bbf56b 1036 decode_chunk_ts(buf + (i * CHUNK_SIZE),
99965709
HE
1037 &sigma->state.lastts,
1038 &sigma->state.lastsample,
1039 sigma->state.triggerpos & 0x1ff,
88c51afe 1040 limit_chunk, user_data);
57bbf56b
HE
1041 else
1042 decode_chunk_ts(buf + (i * CHUNK_SIZE),
99965709
HE
1043 &sigma->state.lastts,
1044 &sigma->state.lastsample,
88c51afe 1045 -1, limit_chunk, user_data);
28a35d8a 1046
88c51afe
HE
1047 ++sigma->state.chunks_downloaded;
1048 }
28a35d8a
HE
1049 }
1050
28a35d8a
HE
1051 return TRUE;
1052}
1053
c53d793f
HE
1054/* Build a LUT entry used by the trigger functions. */
1055static void build_lut_entry(uint16_t value, uint16_t mask, uint16_t *entry)
ee492173
HE
1056{
1057 int i, j, k, bit;
1058
f758d074 1059 /* For each quad probe. */
ee492173 1060 for (i = 0; i < 4; ++i) {
c53d793f 1061 entry[i] = 0xffff;
ee492173 1062
f758d074 1063 /* For each bit in LUT. */
ee492173
HE
1064 for (j = 0; j < 16; ++j)
1065
f758d074 1066 /* For each probe in quad. */
ee492173
HE
1067 for (k = 0; k < 4; ++k) {
1068 bit = 1 << (i * 4 + k);
1069
c53d793f
HE
1070 /* Set bit in entry */
1071 if ((mask & bit) &&
1072 ((!(value & bit)) !=
4ae1f451 1073 (!(j & (1 << k)))))
c53d793f 1074 entry[i] &= ~(1 << j);
ee492173
HE
1075 }
1076 }
c53d793f 1077}
ee492173 1078
c53d793f
HE
1079/* Add a logical function to LUT mask. */
1080static void add_trigger_function(enum triggerop oper, enum triggerfunc func,
1081 int index, int neg, uint16_t *mask)
1082{
1083 int i, j;
1084 int x[2][2], tmp, a, b, aset, bset, rset;
1085
1086 memset(x, 0, 4 * sizeof(int));
1087
1088 /* Trigger detect condition. */
1089 switch (oper) {
1090 case OP_LEVEL:
1091 x[0][1] = 1;
1092 x[1][1] = 1;
1093 break;
1094 case OP_NOT:
1095 x[0][0] = 1;
1096 x[1][0] = 1;
1097 break;
1098 case OP_RISE:
1099 x[0][1] = 1;
1100 break;
1101 case OP_FALL:
1102 x[1][0] = 1;
1103 break;
1104 case OP_RISEFALL:
1105 x[0][1] = 1;
1106 x[1][0] = 1;
1107 break;
1108 case OP_NOTRISE:
1109 x[1][1] = 1;
1110 x[0][0] = 1;
1111 x[1][0] = 1;
1112 break;
1113 case OP_NOTFALL:
1114 x[1][1] = 1;
1115 x[0][0] = 1;
1116 x[0][1] = 1;
1117 break;
1118 case OP_NOTRISEFALL:
1119 x[1][1] = 1;
1120 x[0][0] = 1;
1121 break;
1122 }
1123
1124 /* Transpose if neg is set. */
1125 if (neg) {
1126 for (i = 0; i < 2; ++i)
1127 for (j = 0; j < 2; ++j) {
1128 tmp = x[i][j];
1129 x[i][j] = x[1-i][1-j];
1130 x[1-i][1-j] = tmp;
1131 }
1132 }
1133
1134 /* Update mask with function. */
1135 for (i = 0; i < 16; ++i) {
1136 a = (i >> (2 * index + 0)) & 1;
1137 b = (i >> (2 * index + 1)) & 1;
1138
1139 aset = (*mask >> i) & 1;
1140 bset = x[b][a];
1141
1142 if (func == FUNC_AND || func == FUNC_NAND)
1143 rset = aset & bset;
1144 else if (func == FUNC_OR || func == FUNC_NOR)
1145 rset = aset | bset;
1146 else if (func == FUNC_XOR || func == FUNC_NXOR)
1147 rset = aset ^ bset;
1148
1149 if (func == FUNC_NAND || func == FUNC_NOR || func == FUNC_NXOR)
1150 rset = !rset;
1151
1152 *mask &= ~(1 << i);
1153
1154 if (rset)
1155 *mask |= 1 << i;
1156 }
1157}
1158
1159/*
1160 * Build trigger LUTs used by 50 MHz and lower sample rates for supporting
1161 * simple pin change and state triggers. Only two transitions (rise/fall) can be
1162 * set at any time, but a full mask and value can be set (0/1).
1163 */
99965709 1164static int build_basic_trigger(struct triggerlut *lut, struct sigma *sigma)
c53d793f
HE
1165{
1166 int i,j;
4ae1f451 1167 uint16_t masks[2] = { 0, 0 };
c53d793f
HE
1168
1169 memset(lut, 0, sizeof(struct triggerlut));
1170
1171 /* Contant for simple triggers. */
1172 lut->m4 = 0xa000;
1173
1174 /* Value/mask trigger support. */
99965709
HE
1175 build_lut_entry(sigma->trigger.simplevalue, sigma->trigger.simplemask,
1176 lut->m2d);
c53d793f
HE
1177
1178 /* Rise/fall trigger support. */
1179 for (i = 0, j = 0; i < 16; ++i) {
99965709
HE
1180 if (sigma->trigger.risingmask & (1 << i) ||
1181 sigma->trigger.fallingmask & (1 << i))
c53d793f
HE
1182 masks[j++] = 1 << i;
1183 }
1184
1185 build_lut_entry(masks[0], masks[0], lut->m0d);
1186 build_lut_entry(masks[1], masks[1], lut->m1d);
1187
1188 /* Add glue logic */
1189 if (masks[0] || masks[1]) {
1190 /* Transition trigger. */
99965709 1191 if (masks[0] & sigma->trigger.risingmask)
c53d793f 1192 add_trigger_function(OP_RISE, FUNC_OR, 0, 0, &lut->m3);
99965709 1193 if (masks[0] & sigma->trigger.fallingmask)
c53d793f 1194 add_trigger_function(OP_FALL, FUNC_OR, 0, 0, &lut->m3);
99965709 1195 if (masks[1] & sigma->trigger.risingmask)
c53d793f 1196 add_trigger_function(OP_RISE, FUNC_OR, 1, 0, &lut->m3);
99965709 1197 if (masks[1] & sigma->trigger.fallingmask)
c53d793f
HE
1198 add_trigger_function(OP_FALL, FUNC_OR, 1, 0, &lut->m3);
1199 } else {
1200 /* Only value/mask trigger. */
1201 lut->m3 = 0xffff;
1202 }
ee492173 1203
c53d793f 1204 /* Triggertype: event. */
ee492173
HE
1205 lut->params.selres = 3;
1206
e46b8fb1 1207 return SR_OK;
ee492173
HE
1208}
1209
28a35d8a
HE
1210static int hw_start_acquisition(int device_index, gpointer session_device_id)
1211{
a00ba012 1212 struct sr_device_instance *sdi;
99965709 1213 struct sigma *sigma;
b9c735a2
UH
1214 struct sr_datafeed_packet packet;
1215 struct sr_datafeed_header header;
9ddb2a12 1216 struct clockselect_50 clockselect;
82957b65 1217 int frac, triggerpin, ret;
57bbf56b
HE
1218 uint8_t triggerselect;
1219 struct triggerinout triggerinout_conf;
ee492173 1220 struct triggerlut lut;
28a35d8a
HE
1221
1222 session_device_id = session_device_id;
1223
d32d961d 1224 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 1225 return SR_ERR;
28a35d8a 1226
99965709 1227 sigma = sdi->priv;
28a35d8a 1228
7c70c538 1229 /* If the samplerate has not been set, default to 200 KHz. */
82957b65
UH
1230 if (sigma->cur_firmware == -1) {
1231 if ((ret = set_samplerate(sdi, SR_KHZ(200))) != SR_OK)
1232 return ret;
1233 }
e8397563 1234
eec5275e 1235 /* Enter trigger programming mode. */
99965709 1236 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x20, sigma);
28a35d8a 1237
eec5275e 1238 /* 100 and 200 MHz mode. */
59df0c77 1239 if (sigma->cur_samplerate >= SR_MHZ(100)) {
99965709 1240 sigma_set_register(WRITE_TRIGGER_SELECT1, 0x81, sigma);
57bbf56b 1241
a42aec7f
HE
1242 /* Find which pin to trigger on from mask. */
1243 for (triggerpin = 0; triggerpin < 8; ++triggerpin)
99965709 1244 if ((sigma->trigger.risingmask | sigma->trigger.fallingmask) &
a42aec7f
HE
1245 (1 << triggerpin))
1246 break;
1247
1248 /* Set trigger pin and light LED on trigger. */
1249 triggerselect = (1 << LEDSEL1) | (triggerpin & 0x7);
1250
1251 /* Default rising edge. */
99965709 1252 if (sigma->trigger.fallingmask)
a42aec7f 1253 triggerselect |= 1 << 3;
57bbf56b 1254
eec5275e 1255 /* All other modes. */
59df0c77 1256 } else if (sigma->cur_samplerate <= SR_MHZ(50)) {
99965709 1257 build_basic_trigger(&lut, sigma);
ee492173 1258
99965709 1259 sigma_write_trigger_lut(&lut, sigma);
57bbf56b
HE
1260
1261 triggerselect = (1 << LEDSEL1) | (1 << LEDSEL0);
1262 }
1263
eec5275e 1264 /* Setup trigger in and out pins to default values. */
57bbf56b
HE
1265 memset(&triggerinout_conf, 0, sizeof(struct triggerinout));
1266 triggerinout_conf.trgout_bytrigger = 1;
1267 triggerinout_conf.trgout_enable = 1;
1268
28a35d8a 1269 sigma_write_register(WRITE_TRIGGER_OPTION,
57bbf56b 1270 (uint8_t *) &triggerinout_conf,
99965709 1271 sizeof(struct triggerinout), sigma);
28a35d8a 1272
eec5275e 1273 /* Go back to normal mode. */
99965709 1274 sigma_set_register(WRITE_TRIGGER_SELECT1, triggerselect, sigma);
28a35d8a 1275
edca2c5c 1276 /* Set clock select register. */
59df0c77 1277 if (sigma->cur_samplerate == SR_MHZ(200))
edca2c5c 1278 /* Enable 4 probes. */
99965709 1279 sigma_set_register(WRITE_CLOCK_SELECT, 0xf0, sigma);
59df0c77 1280 else if (sigma->cur_samplerate == SR_MHZ(100))
edca2c5c 1281 /* Enable 8 probes. */
99965709 1282 sigma_set_register(WRITE_CLOCK_SELECT, 0x00, sigma);
edca2c5c
HE
1283 else {
1284 /*
9ddb2a12 1285 * 50 MHz mode (or fraction thereof). Any fraction down to
eec5275e 1286 * 50 MHz / 256 can be used, but is not supported by sigrok API.
edca2c5c 1287 */
59df0c77 1288 frac = SR_MHZ(50) / sigma->cur_samplerate - 1;
edca2c5c 1289
9ddb2a12
UH
1290 clockselect.async = 0;
1291 clockselect.fraction = frac;
1292 clockselect.disabled_probes = 0;
edca2c5c
HE
1293
1294 sigma_write_register(WRITE_CLOCK_SELECT,
9ddb2a12 1295 (uint8_t *) &clockselect,
99965709 1296 sizeof(clockselect), sigma);
edca2c5c
HE
1297 }
1298
fefa1800 1299 /* Setup maximum post trigger time. */
99965709
HE
1300 sigma_set_register(WRITE_POST_TRIGGER,
1301 (sigma->capture_ratio * 255) / 100, sigma);
28a35d8a 1302
eec5275e 1303 /* Start acqusition. */
99965709
HE
1304 gettimeofday(&sigma->start_tv, 0);
1305 sigma_set_register(WRITE_MODE, 0x0d, sigma);
1306
1307 sigma->session_id = session_device_id;
28a35d8a 1308
28a35d8a 1309 /* Send header packet to the session bus. */
5a2326a7 1310 packet.type = SR_DF_HEADER;
b9c735a2 1311 packet.length = sizeof(struct sr_datafeed_header);
28a35d8a
HE
1312 packet.payload = &header;
1313 header.feed_version = 1;
1314 gettimeofday(&header.starttime, NULL);
99965709 1315 header.samplerate = sigma->cur_samplerate;
5a2326a7 1316 header.protocol_id = SR_PROTO_RAW;
99965709 1317 header.num_logic_probes = sigma->num_probes;
c2616fb9 1318 header.num_analog_probes = 0;
8a2efef2 1319 sr_session_bus(session_device_id, &packet);
28a35d8a 1320
57bbf56b 1321 /* Add capture source. */
6f1be0a2 1322 sr_source_add(0, G_IO_IN, 10, receive_data, sdi);
57bbf56b 1323
99965709 1324 sigma->state.state = SIGMA_CAPTURE;
6aac7737 1325
e46b8fb1 1326 return SR_OK;
28a35d8a
HE
1327}
1328
28a35d8a
HE
1329static void hw_stop_acquisition(int device_index, gpointer session_device_id)
1330{
a00ba012 1331 struct sr_device_instance *sdi;
99965709 1332 struct sigma *sigma;
6aac7737
HE
1333 uint8_t modestatus;
1334
d32d961d 1335 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
99965709
HE
1336 return;
1337
1338 sigma = sdi->priv;
1339
28a35d8a
HE
1340 session_device_id = session_device_id;
1341
fefa1800 1342 /* Stop acquisition. */
99965709 1343 sigma_set_register(WRITE_MODE, 0x11, sigma);
28a35d8a 1344
6aac7737 1345 /* Set SDRAM Read Enable. */
99965709 1346 sigma_set_register(WRITE_MODE, 0x02, sigma);
6aac7737
HE
1347
1348 /* Get the current position. */
99965709 1349 sigma_read_pos(&sigma->state.stoppos, &sigma->state.triggerpos, sigma);
6aac7737
HE
1350
1351 /* Check if trigger has fired. */
99965709 1352 modestatus = sigma_get_register(READ_MODE, sigma);
6aac7737 1353 if (modestatus & 0x20) {
99965709 1354 sigma->state.triggerchunk = sigma->state.triggerpos / 512;
6aac7737
HE
1355
1356 } else
99965709 1357 sigma->state.triggerchunk = -1;
6aac7737 1358
99965709 1359 sigma->state.chunks_downloaded = 0;
6aac7737 1360
99965709 1361 sigma->state.state = SIGMA_DOWNLOAD;
28a35d8a
HE
1362}
1363
5c2d46d1 1364struct sr_device_plugin asix_sigma_plugin_info = {
e519ba86
UH
1365 .name = "asix-sigma",
1366 .longname = "ASIX SIGMA",
1367 .api_version = 1,
1368 .init = hw_init,
1369 .cleanup = hw_cleanup,
86f5e3d8
UH
1370 .opendev = hw_opendev,
1371 .closedev = hw_closedev,
e519ba86
UH
1372 .get_device_info = hw_get_device_info,
1373 .get_status = hw_get_status,
1374 .get_capabilities = hw_get_capabilities,
1375 .set_configuration = hw_set_configuration,
1376 .start_acquisition = hw_start_acquisition,
1377 .stop_acquisition = hw_stop_acquisition,
28a35d8a 1378};