]> sigrok.org Git - libsigrok.git/blob - hardware/asix-sigma/asix-sigma.h
Replace 'probe' with 'channel' in most places.
[libsigrok.git] / hardware / asix-sigma / asix-sigma.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2010 Håvard Espeland <gus@ping.uio.no>,
5  * Copyright (C) 2010 Martin Stensgård <mastensg@ping.uio.no>
6  * Copyright (C) 2010 Carl Henrik Lunde <chlunde@ping.uio.no>
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef LIBSIGROK_HARDWARE_ASIX_SIGMA_ASIX_SIGMA_H
23 #define LIBSIGROK_HARDWARE_ASIX_SIGMA_ASIX_SIGMA_H
24
25 #define LOG_PREFIX "asix-sigma"
26
27 enum sigma_write_register {
28         WRITE_CLOCK_SELECT      = 0,
29         WRITE_TRIGGER_SELECT0   = 1,
30         WRITE_TRIGGER_SELECT1   = 2,
31         WRITE_MODE              = 3,
32         WRITE_MEMROW            = 4,
33         WRITE_POST_TRIGGER      = 5,
34         WRITE_TRIGGER_OPTION    = 6,
35         WRITE_PIN_VIEW          = 7,
36
37         WRITE_TEST              = 15,
38 };
39
40 enum sigma_read_register {
41         READ_ID                 = 0,
42         READ_TRIGGER_POS_LOW    = 1,
43         READ_TRIGGER_POS_HIGH   = 2,
44         READ_TRIGGER_POS_UP     = 3,
45         READ_STOP_POS_LOW       = 4,
46         READ_STOP_POS_HIGH      = 5,
47         READ_STOP_POS_UP        = 6,
48         READ_MODE               = 7,
49         READ_PIN_CHANGE_LOW     = 8,
50         READ_PIN_CHANGE_HIGH    = 9,
51         READ_BLOCK_LAST_TS_LOW  = 10,
52         READ_BLOCK_LAST_TS_HIGH = 11,
53         READ_PIN_VIEW           = 12,
54
55         READ_TEST               = 15,
56 };
57
58 #define REG_ADDR_LOW            (0 << 4)
59 #define REG_ADDR_HIGH           (1 << 4)
60 #define REG_DATA_LOW            (2 << 4)
61 #define REG_DATA_HIGH_WRITE     (3 << 4)
62 #define REG_READ_ADDR           (4 << 4)
63 #define REG_DRAM_WAIT_ACK       (5 << 4)
64
65 /* Bit (1 << 4) can be low or high (double buffer / cache) */
66 #define REG_DRAM_BLOCK          (6 << 4)
67 #define REG_DRAM_BLOCK_BEGIN    (8 << 4)
68 #define REG_DRAM_BLOCK_DATA     (10 << 4)
69
70 #define LEDSEL0                 6
71 #define LEDSEL1                 7
72
73 #define NEXT_REG                1
74
75 #define EVENTS_PER_CLUSTER      7
76
77 #define CHUNK_SIZE              1024
78
79 struct clockselect_50 {
80         uint8_t async;
81         uint8_t fraction;
82         uint16_t disabled_channels;
83 };
84
85 /* The effect of all these are still a bit unclear. */
86 struct triggerinout {
87         uint8_t trgout_resistor_enable : 1;
88         uint8_t trgout_resistor_pullup : 1;
89         uint8_t reserved1 : 1;
90         uint8_t trgout_bytrigger : 1;
91         uint8_t trgout_byevent : 1;
92         uint8_t trgout_bytriggerin : 1;
93         uint8_t reserved2 : 2;
94
95         /* Should be set same as the first two */
96         uint8_t trgout_resistor_enable2 : 1;
97         uint8_t trgout_resistor_pullup2 : 1;
98
99         uint8_t reserved3 : 1;
100         uint8_t trgout_long : 1;
101         uint8_t trgout_pin : 1; /* Use 1k resistor. Pullup? */
102         uint8_t trgin_negate : 1;
103         uint8_t trgout_enable : 1;
104         uint8_t trgin_enable : 1;
105 };
106
107 struct triggerlut {
108         /* The actual LUTs. */
109         uint16_t m0d[4], m1d[4], m2d[4];
110         uint16_t m3, m3s, m4;
111
112         /* Paramters should be sent as a single register write. */
113         struct {
114                 uint8_t selc : 2;
115                 uint8_t selpresc : 6;
116
117                 uint8_t selinc : 2;
118                 uint8_t selres : 2;
119                 uint8_t sela : 2;
120                 uint8_t selb : 2;
121
122                 uint16_t cmpb;
123                 uint16_t cmpa;
124         } params;
125 };
126
127 /* Trigger configuration */
128 struct sigma_trigger {
129         /* Only two channels can be used in mask. */
130         uint16_t risingmask;
131         uint16_t fallingmask;
132
133         /* Simple trigger support (<= 50 MHz). */
134         uint16_t simplemask;
135         uint16_t simplevalue;
136
137         /* TODO: Advanced trigger support (boolean expressions). */
138 };
139
140 /* Events for trigger operation. */
141 enum triggerop {
142         OP_LEVEL = 1,
143         OP_NOT,
144         OP_RISE,
145         OP_FALL,
146         OP_RISEFALL,
147         OP_NOTRISE,
148         OP_NOTFALL,
149         OP_NOTRISEFALL,
150 };
151
152 /* Logical functions for trigger operation. */
153 enum triggerfunc {
154         FUNC_AND = 1,
155         FUNC_NAND,
156         FUNC_OR,
157         FUNC_NOR,
158         FUNC_XOR,
159         FUNC_NXOR,
160 };
161
162 struct sigma_state {
163         enum {
164                 SIGMA_UNINITIALIZED = 0,
165                 SIGMA_IDLE,
166                 SIGMA_CAPTURE,
167                 SIGMA_DOWNLOAD,
168         } state;
169
170         uint32_t stoppos, triggerpos;
171         uint16_t lastts;
172         uint16_t lastsample;
173
174         int triggerchunk;
175         int chunks_downloaded;
176 };
177
178 /* Private, per-device-instance driver context. */
179 struct dev_context {
180         struct ftdi_context ftdic;
181         uint64_t cur_samplerate;
182         uint64_t period_ps;
183         uint64_t limit_msec;
184         struct timeval start_tv;
185         int cur_firmware;
186         int num_channels;
187         int samples_per_event;
188         int capture_ratio;
189         struct sigma_trigger trigger;
190         int use_triggers;
191         struct sigma_state state;
192         void *cb_data;
193 };
194
195 #endif