]> sigrok.org Git - libsigrok.git/blame - src/hardware/asix-sigma/protocol.h
asix-sigma: store "limit samples" value, re-determine "limit msecs" period
[libsigrok.git] / src / hardware / asix-sigma / protocol.h
CommitLineData
204b1629 1/*
50985c20 2 * This file is part of the libsigrok project.
204b1629 3 *
3ba56876 4 * Copyright (C) 2010-2012 Håvard Espeland <gus@ping.uio.no>,
204b1629
UH
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
3ba56876 22#ifndef LIBSIGROK_HARDWARE_ASIX_SIGMA_PROTOCOL_H
23#define LIBSIGROK_HARDWARE_ASIX_SIGMA_PROTOCOL_H
24
25#include <stdint.h>
4154a516 26#include <stdlib.h>
3ba56876 27#include <glib.h>
28#include <ftdi.h>
29#include <string.h>
30#include <libsigrok/libsigrok.h>
31#include "libsigrok-internal.h"
28a35d8a 32
3544f848 33#define LOG_PREFIX "asix-sigma"
47f4f073 34
3ba56876 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
fefa1800 41enum sigma_write_register {
28a35d8a
HE
42 WRITE_CLOCK_SELECT = 0,
43 WRITE_TRIGGER_SELECT0 = 1,
44 WRITE_TRIGGER_SELECT1 = 2,
45 WRITE_MODE = 3,
46 WRITE_MEMROW = 4,
47 WRITE_POST_TRIGGER = 5,
48 WRITE_TRIGGER_OPTION = 6,
49 WRITE_PIN_VIEW = 7,
50
fefa1800 51 WRITE_TEST = 15,
28a35d8a
HE
52};
53
fefa1800 54enum sigma_read_register {
28a35d8a
HE
55 READ_ID = 0,
56 READ_TRIGGER_POS_LOW = 1,
57 READ_TRIGGER_POS_HIGH = 2,
58 READ_TRIGGER_POS_UP = 3,
59 READ_STOP_POS_LOW = 4,
60 READ_STOP_POS_HIGH = 5,
61 READ_STOP_POS_UP = 6,
62 READ_MODE = 7,
63 READ_PIN_CHANGE_LOW = 8,
64 READ_PIN_CHANGE_HIGH = 9,
65 READ_BLOCK_LAST_TS_LOW = 10,
66 READ_BLOCK_LAST_TS_HIGH = 11,
67 READ_PIN_VIEW = 12,
68
fefa1800 69 READ_TEST = 15,
28a35d8a
HE
70};
71
1c2736f9
MV
72#define REG_ADDR_LOW (0x0 << 4)
73#define REG_ADDR_HIGH (0x1 << 4)
74#define REG_DATA_LOW (0x2 << 4)
75#define REG_DATA_HIGH_WRITE (0x3 << 4)
76#define REG_READ_ADDR (0x4 << 4)
77#define REG_DRAM_WAIT_ACK (0x5 << 4)
28a35d8a
HE
78
79/* Bit (1 << 4) can be low or high (double buffer / cache) */
1c2736f9
MV
80#define REG_DRAM_BLOCK (0x6 << 4)
81#define REG_DRAM_BLOCK_BEGIN (0x8 << 4)
82#define REG_DRAM_BLOCK_DATA (0xa << 4)
28a35d8a 83
57bbf56b
HE
84#define LEDSEL0 6
85#define LEDSEL1 7
86
28a35d8a
HE
87#define NEXT_REG 1
88
89#define EVENTS_PER_CLUSTER 7
90
91#define CHUNK_SIZE 1024
92
fd830beb
MV
93/*
94 * The entire ASIX Sigma DRAM is an array of struct sigma_dram_line[1024];
95 */
96
97/* One "DRAM cluster" contains a timestamp and 7 samples, 16b total. */
98struct sigma_dram_cluster {
99 uint8_t timestamp_lo;
100 uint8_t timestamp_hi;
101 struct {
102 uint8_t sample_hi;
103 uint8_t sample_lo;
104 } samples[7];
105};
106
107/* One "DRAM line" contains 64 "DRAM clusters", 1024b total. */
108struct sigma_dram_line {
109 struct sigma_dram_cluster cluster[64];
110};
111
edca2c5c
HE
112struct clockselect_50 {
113 uint8_t async;
114 uint8_t fraction;
ba7dd8bb 115 uint16_t disabled_channels;
edca2c5c
HE
116};
117
57bbf56b
HE
118/* The effect of all these are still a bit unclear. */
119struct triggerinout {
120 uint8_t trgout_resistor_enable : 1;
121 uint8_t trgout_resistor_pullup : 1;
122 uint8_t reserved1 : 1;
123 uint8_t trgout_bytrigger : 1;
124 uint8_t trgout_byevent : 1;
125 uint8_t trgout_bytriggerin : 1;
126 uint8_t reserved2 : 2;
127
128 /* Should be set same as the first two */
129 uint8_t trgout_resistor_enable2 : 1;
130 uint8_t trgout_resistor_pullup2 : 1;
131
132 uint8_t reserved3 : 1;
133 uint8_t trgout_long : 1;
134 uint8_t trgout_pin : 1; /* Use 1k resistor. Pullup? */
135 uint8_t trgin_negate : 1;
136 uint8_t trgout_enable : 1;
137 uint8_t trgin_enable : 1;
138};
139
ee492173
HE
140struct triggerlut {
141 /* The actual LUTs. */
142 uint16_t m0d[4], m1d[4], m2d[4];
143 uint16_t m3, m3s, m4;
144
f3f19d11 145 /* Parameters should be sent as a single register write. */
ee492173
HE
146 struct {
147 uint8_t selc : 2;
148 uint8_t selpresc : 6;
149
150 uint8_t selinc : 2;
151 uint8_t selres : 2;
152 uint8_t sela : 2;
153 uint8_t selb : 2;
154
155 uint16_t cmpb;
156 uint16_t cmpa;
157 } params;
158};
159
c53d793f
HE
160/* Trigger configuration */
161struct sigma_trigger {
ba7dd8bb 162 /* Only two channels can be used in mask. */
a42aec7f
HE
163 uint16_t risingmask;
164 uint16_t fallingmask;
c53d793f
HE
165
166 /* Simple trigger support (<= 50 MHz). */
167 uint16_t simplemask;
168 uint16_t simplevalue;
169
c53d793f
HE
170 /* TODO: Advanced trigger support (boolean expressions). */
171};
172
173/* Events for trigger operation. */
174enum triggerop {
175 OP_LEVEL = 1,
176 OP_NOT,
177 OP_RISE,
178 OP_FALL,
179 OP_RISEFALL,
180 OP_NOTRISE,
181 OP_NOTFALL,
182 OP_NOTRISEFALL,
183};
184
185/* Logical functions for trigger operation. */
186enum triggerfunc {
187 FUNC_AND = 1,
188 FUNC_NAND,
189 FUNC_OR,
190 FUNC_NOR,
191 FUNC_XOR,
192 FUNC_NXOR,
193};
194
6aac7737
HE
195struct sigma_state {
196 enum {
197 SIGMA_UNINITIALIZED = 0,
198 SIGMA_IDLE,
199 SIGMA_CAPTURE,
200 SIGMA_DOWNLOAD,
201 } state;
202
6aac7737
HE
203 uint16_t lastts;
204 uint16_t lastsample;
6aac7737
HE
205};
206
ea9cfed7 207/* Private, per-device-instance driver context. */
0e1357e8 208struct dev_context {
99965709
HE
209 struct ftdi_context ftdic;
210 uint64_t cur_samplerate;
9c939c51 211 uint64_t period_ps;
94ba4bd6 212 uint64_t limit_msec;
2f7e529c 213 uint64_t limit_samples;
99965709
HE
214 struct timeval start_tv;
215 int cur_firmware;
ba7dd8bb 216 int num_channels;
5fc01191 217 int cur_channels;
99965709
HE
218 int samples_per_event;
219 int capture_ratio;
220 struct sigma_trigger trigger;
5b5ea7c6 221 int use_triggers;
99965709 222 struct sigma_state state;
99965709
HE
223};
224
3ba56876 225extern SR_PRIV const uint64_t samplerates[];
4154a516 226extern SR_PRIV const size_t samplerates_count;
3ba56876 227
228SR_PRIV int sigma_write_register(uint8_t reg, uint8_t *data, size_t len,
229 struct dev_context *devc);
230SR_PRIV int sigma_set_register(uint8_t reg, uint8_t value, struct dev_context *devc);
231SR_PRIV int sigma_write_trigger_lut(struct triggerlut *lut, struct dev_context *devc);
232SR_PRIV void sigma_clear_helper(void *priv);
233SR_PRIV int sigma_set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate);
234SR_PRIV int sigma_convert_trigger(const struct sr_dev_inst *sdi);
235SR_PRIV int sigma_receive_data(int fd, int revents, void *cb_data);
236SR_PRIV int sigma_build_basic_trigger(struct triggerlut *lut, struct dev_context *devc);
237
204b1629 238#endif