• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Register descriptions for NI DAQ-STC chip
3  *
4  * COMEDI - Linux Control and Measurement Device Interface
5  * Copyright (C) 1998-9 David A. Schleef <ds@schleef.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17 
18 /*
19  * References:
20  *   DAQ-STC Technical Reference Manual
21 */
22 
23 #ifndef _COMEDI_NI_STC_H
24 #define _COMEDI_NI_STC_H
25 
26 #include "ni_tio.h"
27 
28 /*
29  * Registers in the National Instruments DAQ-STC chip
30  */
31 
32 #define NISTC_INTA_ACK_REG		2
33 #define NISTC_INTA_ACK_G0_GATE		BIT(15)
34 #define NISTC_INTA_ACK_G0_TC		BIT(14)
35 #define NISTC_INTA_ACK_AI_ERR		BIT(13)
36 #define NISTC_INTA_ACK_AI_STOP		BIT(12)
37 #define NISTC_INTA_ACK_AI_START		BIT(11)
38 #define NISTC_INTA_ACK_AI_START2	BIT(10)
39 #define NISTC_INTA_ACK_AI_START1	BIT(9)
40 #define NISTC_INTA_ACK_AI_SC_TC		BIT(8)
41 #define NISTC_INTA_ACK_AI_SC_TC_ERR	BIT(7)
42 #define NISTC_INTA_ACK_G0_TC_ERR	BIT(6)
43 #define NISTC_INTA_ACK_G0_GATE_ERR	BIT(5)
44 #define NISTC_INTA_ACK_AI_ALL		(NISTC_INTA_ACK_AI_ERR |	\
45 					 NISTC_INTA_ACK_AI_STOP |	\
46 					 NISTC_INTA_ACK_AI_START |	\
47 					 NISTC_INTA_ACK_AI_START2 |	\
48 					 NISTC_INTA_ACK_AI_START1 |	\
49 					 NISTC_INTA_ACK_AI_SC_TC |	\
50 					 NISTC_INTA_ACK_AI_SC_TC_ERR)
51 
52 #define NISTC_INTB_ACK_REG		3
53 #define NISTC_INTB_ACK_G1_GATE		BIT(15)
54 #define NISTC_INTB_ACK_G1_TC		BIT(14)
55 #define NISTC_INTB_ACK_AO_ERR		BIT(13)
56 #define NISTC_INTB_ACK_AO_STOP		BIT(12)
57 #define NISTC_INTB_ACK_AO_START		BIT(11)
58 #define NISTC_INTB_ACK_AO_UPDATE	BIT(10)
59 #define NISTC_INTB_ACK_AO_START1	BIT(9)
60 #define NISTC_INTB_ACK_AO_BC_TC		BIT(8)
61 #define NISTC_INTB_ACK_AO_UC_TC		BIT(7)
62 #define NISTC_INTB_ACK_AO_UI2_TC	BIT(6)
63 #define NISTC_INTB_ACK_AO_UI2_TC_ERR	BIT(5)
64 #define NISTC_INTB_ACK_AO_BC_TC_ERR	BIT(4)
65 #define NISTC_INTB_ACK_AO_BC_TC_TRIG_ERR BIT(3)
66 #define NISTC_INTB_ACK_G1_TC_ERR	BIT(2)
67 #define NISTC_INTB_ACK_G1_GATE_ERR	BIT(1)
68 #define NISTC_INTB_ACK_AO_ALL		(NISTC_INTB_ACK_AO_ERR |	\
69 					 NISTC_INTB_ACK_AO_STOP |	\
70 					 NISTC_INTB_ACK_AO_START |	\
71 					 NISTC_INTB_ACK_AO_UPDATE |	\
72 					 NISTC_INTB_ACK_AO_START1 |	\
73 					 NISTC_INTB_ACK_AO_BC_TC |	\
74 					 NISTC_INTB_ACK_AO_UC_TC |	\
75 					 NISTC_INTB_ACK_AO_BC_TC_ERR |	\
76 					 NISTC_INTB_ACK_AO_BC_TC_TRIG_ERR)
77 
78 #define NISTC_AI_CMD2_REG		4
79 #define NISTC_AI_CMD2_END_ON_SC_TC	BIT(15)
80 #define NISTC_AI_CMD2_END_ON_EOS	BIT(14)
81 #define NISTC_AI_CMD2_START1_DISABLE	BIT(11)
82 #define NISTC_AI_CMD2_SC_SAVE_TRACE	BIT(10)
83 #define NISTC_AI_CMD2_SI_SW_ON_SC_TC	BIT(9)
84 #define NISTC_AI_CMD2_SI_SW_ON_STOP	BIT(8)
85 #define NISTC_AI_CMD2_SI_SW_ON_TC	BIT(7)
86 #define NISTC_AI_CMD2_SC_SW_ON_TC	BIT(4)
87 #define NISTC_AI_CMD2_STOP_PULSE	BIT(3)
88 #define NISTC_AI_CMD2_START_PULSE	BIT(2)
89 #define NISTC_AI_CMD2_START2_PULSE	BIT(1)
90 #define NISTC_AI_CMD2_START1_PULSE	BIT(0)
91 
92 #define NISTC_AO_CMD2_REG		5
93 #define NISTC_AO_CMD2_END_ON_BC_TC(x)	(((x) & 0x3) << 14)
94 #define NISTC_AO_CMD2_START_STOP_GATE_ENA BIT(13)
95 #define NISTC_AO_CMD2_UC_SAVE_TRACE	BIT(12)
96 #define NISTC_AO_CMD2_BC_GATE_ENA	BIT(11)
97 #define NISTC_AO_CMD2_BC_SAVE_TRACE	BIT(10)
98 #define NISTC_AO_CMD2_UI_SW_ON_BC_TC	BIT(9)
99 #define NISTC_AO_CMD2_UI_SW_ON_STOP	BIT(8)
100 #define NISTC_AO_CMD2_UI_SW_ON_TC	BIT(7)
101 #define NISTC_AO_CMD2_UC_SW_ON_BC_TC	BIT(6)
102 #define NISTC_AO_CMD2_UC_SW_ON_TC	BIT(5)
103 #define NISTC_AO_CMD2_BC_SW_ON_TC	BIT(4)
104 #define NISTC_AO_CMD2_MUTE_B		BIT(3)
105 #define NISTC_AO_CMD2_MUTE_A		BIT(2)
106 #define NISTC_AO_CMD2_UPDATE2_PULSE	BIT(1)
107 #define NISTC_AO_CMD2_START1_PULSE	BIT(0)
108 
109 #define NISTC_G0_CMD_REG		6
110 #define NISTC_G1_CMD_REG		7
111 
112 #define NISTC_AI_CMD1_REG		8
113 #define NISTC_AI_CMD1_ATRIG_RESET	BIT(14)
114 #define NISTC_AI_CMD1_DISARM		BIT(13)
115 #define NISTC_AI_CMD1_SI2_ARM		BIT(12)
116 #define NISTC_AI_CMD1_SI2_LOAD		BIT(11)
117 #define NISTC_AI_CMD1_SI_ARM		BIT(10)
118 #define NISTC_AI_CMD1_SI_LOAD		BIT(9)
119 #define NISTC_AI_CMD1_DIV_ARM		BIT(8)
120 #define NISTC_AI_CMD1_DIV_LOAD		BIT(7)
121 #define NISTC_AI_CMD1_SC_ARM		BIT(6)
122 #define NISTC_AI_CMD1_SC_LOAD		BIT(5)
123 #define NISTC_AI_CMD1_SCAN_IN_PROG_PULSE BIT(4)
124 #define NISTC_AI_CMD1_EXTMUX_CLK_PULSE	BIT(3)
125 #define NISTC_AI_CMD1_LOCALMUX_CLK_PULSE BIT(2)
126 #define NISTC_AI_CMD1_SC_TC_PULSE	BIT(1)
127 #define NISTC_AI_CMD1_CONVERT_PULSE	BIT(0)
128 
129 #define NISTC_AO_CMD1_REG		9
130 #define NISTC_AO_CMD1_ATRIG_RESET	BIT(15)
131 #define NISTC_AO_CMD1_START_PULSE	BIT(14)
132 #define NISTC_AO_CMD1_DISARM		BIT(13)
133 #define NISTC_AO_CMD1_UI2_ARM_DISARM	BIT(12)
134 #define NISTC_AO_CMD1_UI2_LOAD		BIT(11)
135 #define NISTC_AO_CMD1_UI_ARM		BIT(10)
136 #define NISTC_AO_CMD1_UI_LOAD		BIT(9)
137 #define NISTC_AO_CMD1_UC_ARM		BIT(8)
138 #define NISTC_AO_CMD1_UC_LOAD		BIT(7)
139 #define NISTC_AO_CMD1_BC_ARM		BIT(6)
140 #define NISTC_AO_CMD1_BC_LOAD		BIT(5)
141 #define NISTC_AO_CMD1_DAC1_UPDATE_MODE	BIT(4)
142 #define NISTC_AO_CMD1_LDAC1_SRC_SEL	BIT(3)
143 #define NISTC_AO_CMD1_DAC0_UPDATE_MODE	BIT(2)
144 #define NISTC_AO_CMD1_LDAC0_SRC_SEL	BIT(1)
145 #define NISTC_AO_CMD1_UPDATE_PULSE	BIT(0)
146 
147 #define NISTC_DIO_OUT_REG		10
148 #define NISTC_DIO_OUT_SERIAL(x)	(((x) & 0xff) << 8)
149 #define NISTC_DIO_OUT_SERIAL_MASK	NISTC_DIO_OUT_SERIAL(0xff)
150 #define NISTC_DIO_OUT_PARALLEL(x)	((x) & 0xff)
151 #define NISTC_DIO_OUT_PARALLEL_MASK	NISTC_DIO_OUT_PARALLEL(0xff)
152 #define NISTC_DIO_SDIN			BIT(4)
153 #define NISTC_DIO_SDOUT			BIT(0)
154 
155 #define NISTC_DIO_CTRL_REG		11
156 #define NISTC_DIO_SDCLK			BIT(11)
157 #define NISTC_DIO_CTRL_HW_SER_TIMEBASE	BIT(10)
158 #define NISTC_DIO_CTRL_HW_SER_ENA	BIT(9)
159 #define NISTC_DIO_CTRL_HW_SER_START	BIT(8)
160 #define NISTC_DIO_CTRL_DIR(x)		((x) & 0xff)
161 #define NISTC_DIO_CTRL_DIR_MASK		NISTC_DIO_CTRL_DIR(0xff)
162 
163 #define NISTC_AI_MODE1_REG		12
164 #define NISTC_AI_MODE1_CONVERT_SRC(x)	(((x) & 0x1f) << 11)
165 #define NISTC_AI_MODE1_SI_SRC(x)	(((x) & 0x1f) << 6)
166 #define NISTC_AI_MODE1_CONVERT_POLARITY	BIT(5)
167 #define NISTC_AI_MODE1_SI_POLARITY	BIT(4)
168 #define NISTC_AI_MODE1_START_STOP	BIT(3)
169 #define NISTC_AI_MODE1_RSVD		BIT(2)
170 #define NISTC_AI_MODE1_CONTINUOUS	BIT(1)
171 #define NISTC_AI_MODE1_TRIGGER_ONCE	BIT(0)
172 
173 #define NISTC_AI_MODE2_REG		13
174 #define NISTC_AI_MODE2_SC_GATE_ENA	BIT(15)
175 #define NISTC_AI_MODE2_START_STOP_GATE_ENA BIT(14)
176 #define NISTC_AI_MODE2_PRE_TRIGGER	BIT(13)
177 #define NISTC_AI_MODE2_EXTMUX_PRESENT	BIT(12)
178 #define NISTC_AI_MODE2_SI2_INIT_LOAD_SRC BIT(9)
179 #define NISTC_AI_MODE2_SI2_RELOAD_MODE	BIT(8)
180 #define NISTC_AI_MODE2_SI_INIT_LOAD_SRC	BIT(7)
181 #define NISTC_AI_MODE2_SI_RELOAD_MODE(x) (((x) & 0x7) << 4)
182 #define NISTC_AI_MODE2_SI_WR_SWITCH	BIT(3)
183 #define NISTC_AI_MODE2_SC_INIT_LOAD_SRC	BIT(2)
184 #define NISTC_AI_MODE2_SC_RELOAD_MODE	BIT(1)
185 #define NISTC_AI_MODE2_SC_WR_SWITCH	BIT(0)
186 
187 #define NISTC_AI_SI_LOADA_REG		14
188 #define NISTC_AI_SI_LOADB_REG		16
189 #define NISTC_AI_SC_LOADA_REG		18
190 #define NISTC_AI_SC_LOADB_REG		20
191 #define NISTC_AI_SI2_LOADA_REG		23
192 #define NISTC_AI_SI2_LOADB_REG		25
193 
194 #define NISTC_G0_MODE_REG		26
195 #define NISTC_G1_MODE_REG		27
196 #define NISTC_G0_LOADA_REG		28
197 #define NISTC_G0_LOADB_REG		30
198 #define NISTC_G1_LOADA_REG		32
199 #define NISTC_G1_LOADB_REG		34
200 #define NISTC_G0_INPUT_SEL_REG		36
201 #define NISTC_G1_INPUT_SEL_REG		37
202 
203 #define NISTC_AO_MODE1_REG		38
204 #define NISTC_AO_MODE1_UPDATE_SRC(x)	(((x) & 0x1f) << 11)
205 #define NISTC_AO_MODE1_UPDATE_SRC_MASK	NISTC_AO_MODE1_UPDATE_SRC(0x1f)
206 #define NISTC_AO_MODE1_UI_SRC(x)	(((x) & 0x1f) << 6)
207 #define NISTC_AO_MODE1_UI_SRC_MASK	NISTC_AO_MODE1_UI_SRC(0x1f)
208 #define NISTC_AO_MODE1_MULTI_CHAN	BIT(5)
209 #define NISTC_AO_MODE1_UPDATE_SRC_POLARITY BIT(4)
210 #define NISTC_AO_MODE1_UI_SRC_POLARITY	BIT(3)
211 #define NISTC_AO_MODE1_UC_SW_EVERY_TC	BIT(2)
212 #define NISTC_AO_MODE1_CONTINUOUS	BIT(1)
213 #define NISTC_AO_MODE1_TRIGGER_ONCE	BIT(0)
214 
215 #define NISTC_AO_MODE2_REG		39
216 #define NISTC_AO_MODE2_FIFO_MODE(x)	(((x) & 0x3) << 14)
217 #define NISTC_AO_MODE2_FIFO_MODE_MASK	NISTC_AO_MODE2_FIFO_MODE(3)
218 #define NISTC_AO_MODE2_FIFO_MODE_E	NISTC_AO_MODE2_FIFO_MODE(0)
219 #define NISTC_AO_MODE2_FIFO_MODE_HF	NISTC_AO_MODE2_FIFO_MODE(1)
220 #define NISTC_AO_MODE2_FIFO_MODE_F	NISTC_AO_MODE2_FIFO_MODE(2)
221 #define NISTC_AO_MODE2_FIFO_MODE_HF_F	NISTC_AO_MODE2_FIFO_MODE(3)
222 #define NISTC_AO_MODE2_FIFO_REXMIT_ENA	BIT(13)
223 #define NISTC_AO_MODE2_START1_DISABLE	BIT(12)
224 #define NISTC_AO_MODE2_UC_INIT_LOAD_SRC	BIT(11)
225 #define NISTC_AO_MODE2_UC_WR_SWITCH	BIT(10)
226 #define NISTC_AO_MODE2_UI2_INIT_LOAD_SRC BIT(9)
227 #define NISTC_AO_MODE2_UI2_RELOAD_MODE	BIT(8)
228 #define NISTC_AO_MODE2_UI_INIT_LOAD_SRC	BIT(7)
229 #define NISTC_AO_MODE2_UI_RELOAD_MODE(x) (((x) & 0x7) << 4)
230 #define NISTC_AO_MODE2_UI_WR_SWITCH	BIT(3)
231 #define NISTC_AO_MODE2_BC_INIT_LOAD_SRC	BIT(2)
232 #define NISTC_AO_MODE2_BC_RELOAD_MODE	BIT(1)
233 #define NISTC_AO_MODE2_BC_WR_SWITCH	BIT(0)
234 
235 #define NISTC_AO_UI_LOADA_REG		40
236 #define NISTC_AO_UI_LOADB_REG		42
237 #define NISTC_AO_BC_LOADA_REG		44
238 #define NISTC_AO_BC_LOADB_REG		46
239 #define NISTC_AO_UC_LOADA_REG		48
240 #define NISTC_AO_UC_LOADB_REG		50
241 
242 #define NISTC_CLK_FOUT_REG		56
243 #define NISTC_CLK_FOUT_ENA		BIT(15)
244 #define NISTC_CLK_FOUT_TIMEBASE_SEL	BIT(14)
245 #define NISTC_CLK_FOUT_DIO_SER_OUT_DIV2	BIT(13)
246 #define NISTC_CLK_FOUT_SLOW_DIV2	BIT(12)
247 #define NISTC_CLK_FOUT_SLOW_TIMEBASE	BIT(11)
248 #define NISTC_CLK_FOUT_G_SRC_DIV2	BIT(10)
249 #define NISTC_CLK_FOUT_TO_BOARD_DIV2	BIT(9)
250 #define NISTC_CLK_FOUT_TO_BOARD		BIT(8)
251 #define NISTC_CLK_FOUT_AI_OUT_DIV2	BIT(7)
252 #define NISTC_CLK_FOUT_AI_SRC_DIV2	BIT(6)
253 #define NISTC_CLK_FOUT_AO_OUT_DIV2	BIT(5)
254 #define NISTC_CLK_FOUT_AO_SRC_DIV2	BIT(4)
255 #define NISTC_CLK_FOUT_DIVIDER(x)	(((x) & 0xf) << 0)
256 #define NISTC_CLK_FOUT_TO_DIVIDER(x)	(((x) >> 0) & 0xf)
257 #define NISTC_CLK_FOUT_DIVIDER_MASK	NISTC_CLK_FOUT_DIVIDER(0xf)
258 
259 #define NISTC_IO_BIDIR_PIN_REG		57
260 
261 #define NISTC_RTSI_TRIG_DIR_REG		58
262 #define NISTC_RTSI_TRIG_OLD_CLK_CHAN	7
263 #define NISTC_RTSI_TRIG_NUM_CHAN(_m)	((_m) ? 8 : 7)
264 #define NISTC_RTSI_TRIG_DIR(_c, _m)	((_m) ? BIT(8 + (_c)) : BIT(7 + (_c)))
265 #define NISTC_RTSI_TRIG_USE_CLK		BIT(1)
266 #define NISTC_RTSI_TRIG_DRV_CLK		BIT(0)
267 
268 #define NISTC_INT_CTRL_REG		59
269 #define NISTC_INT_CTRL_INTB_ENA		BIT(15)
270 #define NISTC_INT_CTRL_INTB_SEL(x)	(((x) & 0x7) << 12)
271 #define NISTC_INT_CTRL_INTA_ENA		BIT(11)
272 #define NISTC_INT_CTRL_INTA_SEL(x)	(((x) & 0x7) << 8)
273 #define NISTC_INT_CTRL_PASSTHRU0_POL	BIT(3)
274 #define NISTC_INT_CTRL_PASSTHRU1_POL	BIT(2)
275 #define NISTC_INT_CTRL_3PIN_INT		BIT(1)
276 #define NISTC_INT_CTRL_INT_POL		BIT(0)
277 
278 #define NISTC_AI_OUT_CTRL_REG		60
279 #define NISTC_AI_OUT_CTRL_START_SEL	BIT(10)
280 #define NISTC_AI_OUT_CTRL_SCAN_IN_PROG_SEL(x)	(((x) & 0x3) << 8)
281 #define NISTC_AI_OUT_CTRL_EXTMUX_CLK_SEL(x)	(((x) & 0x3) << 6)
282 #define NISTC_AI_OUT_CTRL_LOCALMUX_CLK_SEL(x)	(((x) & 0x3) << 4)
283 #define NISTC_AI_OUT_CTRL_SC_TC_SEL(x)		(((x) & 0x3) << 2)
284 #define NISTC_AI_OUT_CTRL_CONVERT_SEL(x)	(((x) & 0x3) << 0)
285 #define NISTC_AI_OUT_CTRL_CONVERT_HIGH_Z	NISTC_AI_OUT_CTRL_CONVERT_SEL(0)
286 #define NISTC_AI_OUT_CTRL_CONVERT_GND		NISTC_AI_OUT_CTRL_CONVERT_SEL(1)
287 #define NISTC_AI_OUT_CTRL_CONVERT_LOW		NISTC_AI_OUT_CTRL_CONVERT_SEL(2)
288 #define NISTC_AI_OUT_CTRL_CONVERT_HIGH		NISTC_AI_OUT_CTRL_CONVERT_SEL(3)
289 
290 #define NISTC_ATRIG_ETC_REG		61
291 #define NISTC_ATRIG_ETC_GPFO_1_ENA	BIT(15)
292 #define NISTC_ATRIG_ETC_GPFO_0_ENA	BIT(14)
293 #define NISTC_ATRIG_ETC_GPFO_0_SEL(x)	(((x) & 0x3) << 11)
294 #define NISTC_ATRIG_ETC_GPFO_1_SEL	BIT(7)
295 #define NISTC_ATRIG_ETC_DRV		BIT(4)
296 #define NISTC_ATRIG_ETC_ENA		BIT(3)
297 #define NISTC_ATRIG_ETC_MODE(x)		(((x) & 0x7) << 0)
298 
299 #define NISTC_AI_START_STOP_REG		62
300 #define NISTC_AI_START_POLARITY		BIT(15)
301 #define NISTC_AI_STOP_POLARITY		BIT(14)
302 #define NISTC_AI_STOP_SYNC		BIT(13)
303 #define NISTC_AI_STOP_EDGE		BIT(12)
304 #define NISTC_AI_STOP_SEL(x)		(((x) & 0x1f) << 7)
305 #define NISTC_AI_START_SYNC		BIT(6)
306 #define NISTC_AI_START_EDGE		BIT(5)
307 #define NISTC_AI_START_SEL(x)		(((x) & 0x1f) << 0)
308 
309 #define NISTC_AI_TRIG_SEL_REG		63
310 #define NISTC_AI_TRIG_START1_POLARITY	BIT(15)
311 #define NISTC_AI_TRIG_START2_POLARITY	BIT(14)
312 #define NISTC_AI_TRIG_START2_SYNC	BIT(13)
313 #define NISTC_AI_TRIG_START2_EDGE	BIT(12)
314 #define NISTC_AI_TRIG_START2_SEL(x)	(((x) & 0x1f) << 7)
315 #define NISTC_AI_TRIG_START1_SYNC	BIT(6)
316 #define NISTC_AI_TRIG_START1_EDGE	BIT(5)
317 #define NISTC_AI_TRIG_START1_SEL(x)	(((x) & 0x1f) << 0)
318 
319 #define NISTC_AI_DIV_LOADA_REG		64
320 
321 #define NISTC_AO_START_SEL_REG		66
322 #define NISTC_AO_START_UI2_SW_GATE	BIT(15)
323 #define NISTC_AO_START_UI2_EXT_GATE_POL	BIT(14)
324 #define NISTC_AO_START_POLARITY		BIT(13)
325 #define NISTC_AO_START_AOFREQ_ENA	BIT(12)
326 #define NISTC_AO_START_UI2_EXT_GATE_SEL(x) (((x) & 0x1f) << 7)
327 #define NISTC_AO_START_SYNC		BIT(6)
328 #define NISTC_AO_START_EDGE		BIT(5)
329 #define NISTC_AO_START_SEL(x)		(((x) & 0x1f) << 0)
330 
331 #define NISTC_AO_TRIG_SEL_REG		67
332 #define NISTC_AO_TRIG_UI2_EXT_GATE_ENA	BIT(15)
333 #define NISTC_AO_TRIG_DELAYED_START1	BIT(14)
334 #define NISTC_AO_TRIG_START1_POLARITY	BIT(13)
335 #define NISTC_AO_TRIG_UI2_SRC_POLARITY	BIT(12)
336 #define NISTC_AO_TRIG_UI2_SRC_SEL(x)	(((x) & 0x1f) << 7)
337 #define NISTC_AO_TRIG_START1_SYNC	BIT(6)
338 #define NISTC_AO_TRIG_START1_EDGE	BIT(5)
339 #define NISTC_AO_TRIG_START1_SEL(x)	(((x) & 0x1f) << 0)
340 #define NISTC_AO_TRIG_START1_SEL_MASK	NISTC_AO_TRIG_START1_SEL(0x1f)
341 
342 #define NISTC_G0_AUTOINC_REG		68
343 #define NISTC_G1_AUTOINC_REG		69
344 
345 #define NISTC_AO_MODE3_REG		70
346 #define NISTC_AO_MODE3_UI2_SW_NEXT_TC		BIT(13)
347 #define NISTC_AO_MODE3_UC_SW_EVERY_BC_TC	BIT(12)
348 #define NISTC_AO_MODE3_TRIG_LEN			BIT(11)
349 #define NISTC_AO_MODE3_STOP_ON_OVERRUN_ERR	BIT(5)
350 #define NISTC_AO_MODE3_STOP_ON_BC_TC_TRIG_ERR	BIT(4)
351 #define NISTC_AO_MODE3_STOP_ON_BC_TC_ERR	BIT(3)
352 #define NISTC_AO_MODE3_NOT_AN_UPDATE		BIT(2)
353 #define NISTC_AO_MODE3_SW_GATE			BIT(1)
354 #define NISTC_AO_MODE3_LAST_GATE_DISABLE	BIT(0)	/* M-Series only */
355 
356 #define NISTC_RESET_REG			72
357 #define NISTC_RESET_SOFTWARE		BIT(11)
358 #define NISTC_RESET_AO_CFG_END		BIT(9)
359 #define NISTC_RESET_AI_CFG_END		BIT(8)
360 #define NISTC_RESET_AO_CFG_START	BIT(5)
361 #define NISTC_RESET_AI_CFG_START	BIT(4)
362 #define NISTC_RESET_G1			BIT(3)
363 #define NISTC_RESET_G0			BIT(2)
364 #define NISTC_RESET_AO			BIT(1)
365 #define NISTC_RESET_AI			BIT(0)
366 
367 #define NISTC_INTA_ENA_REG		73
368 #define NISTC_INTA2_ENA_REG		74
369 #define NISTC_INTA_ENA_PASSTHRU0	BIT(9)
370 #define NISTC_INTA_ENA_G0_GATE		BIT(8)
371 #define NISTC_INTA_ENA_AI_FIFO		BIT(7)
372 #define NISTC_INTA_ENA_G0_TC		BIT(6)
373 #define NISTC_INTA_ENA_AI_ERR		BIT(5)
374 #define NISTC_INTA_ENA_AI_STOP		BIT(4)
375 #define NISTC_INTA_ENA_AI_START		BIT(3)
376 #define NISTC_INTA_ENA_AI_START2	BIT(2)
377 #define NISTC_INTA_ENA_AI_START1	BIT(1)
378 #define NISTC_INTA_ENA_AI_SC_TC		BIT(0)
379 #define NISTC_INTA_ENA_AI_MASK		(NISTC_INTA_ENA_AI_FIFO |	\
380 					 NISTC_INTA_ENA_AI_ERR |	\
381 					 NISTC_INTA_ENA_AI_STOP |	\
382 					 NISTC_INTA_ENA_AI_START |	\
383 					 NISTC_INTA_ENA_AI_START2 |	\
384 					 NISTC_INTA_ENA_AI_START1 |	\
385 					 NISTC_INTA_ENA_AI_SC_TC)
386 
387 #define NISTC_INTB_ENA_REG		75
388 #define NISTC_INTB2_ENA_REG		76
389 #define NISTC_INTB_ENA_PASSTHRU1	BIT(11)
390 #define NISTC_INTB_ENA_G1_GATE		BIT(10)
391 #define NISTC_INTB_ENA_G1_TC		BIT(9)
392 #define NISTC_INTB_ENA_AO_FIFO		BIT(8)
393 #define NISTC_INTB_ENA_AO_UI2_TC	BIT(7)
394 #define NISTC_INTB_ENA_AO_UC_TC		BIT(6)
395 #define NISTC_INTB_ENA_AO_ERR		BIT(5)
396 #define NISTC_INTB_ENA_AO_STOP		BIT(4)
397 #define NISTC_INTB_ENA_AO_START		BIT(3)
398 #define NISTC_INTB_ENA_AO_UPDATE	BIT(2)
399 #define NISTC_INTB_ENA_AO_START1	BIT(1)
400 #define NISTC_INTB_ENA_AO_BC_TC		BIT(0)
401 
402 #define NISTC_AI_PERSONAL_REG		77
403 #define NISTC_AI_PERSONAL_SHIFTIN_PW		BIT(15)
404 #define NISTC_AI_PERSONAL_EOC_POLARITY		BIT(14)
405 #define NISTC_AI_PERSONAL_SOC_POLARITY		BIT(13)
406 #define NISTC_AI_PERSONAL_SHIFTIN_POL		BIT(12)
407 #define NISTC_AI_PERSONAL_CONVERT_TIMEBASE	BIT(11)
408 #define NISTC_AI_PERSONAL_CONVERT_PW		BIT(10)
409 #define NISTC_AI_PERSONAL_CONVERT_ORIG_PULSE	BIT(9)
410 #define NISTC_AI_PERSONAL_FIFO_FLAGS_POL	BIT(8)
411 #define NISTC_AI_PERSONAL_OVERRUN_MODE		BIT(7)
412 #define NISTC_AI_PERSONAL_EXTMUX_CLK_PW		BIT(6)
413 #define NISTC_AI_PERSONAL_LOCALMUX_CLK_PW	BIT(5)
414 #define NISTC_AI_PERSONAL_AIFREQ_POL		BIT(4)
415 
416 #define NISTC_AO_PERSONAL_REG		78
417 #define NISTC_AO_PERSONAL_MULTI_DACS		BIT(15)	/* M-Series only */
418 #define NISTC_AO_PERSONAL_NUM_DAC		BIT(14)	/* 1:single; 0:dual */
419 #define NISTC_AO_PERSONAL_FAST_CPU		BIT(13)	/* M-Series reserved */
420 #define NISTC_AO_PERSONAL_TMRDACWR_PW		BIT(12)
421 #define NISTC_AO_PERSONAL_FIFO_FLAGS_POL	BIT(11)	/* M-Series reserved */
422 #define NISTC_AO_PERSONAL_FIFO_ENA		BIT(10)
423 #define NISTC_AO_PERSONAL_AOFREQ_POL		BIT(9)	/* M-Series reserved */
424 #define NISTC_AO_PERSONAL_DMA_PIO_CTRL		BIT(8)	/* M-Series reserved */
425 #define NISTC_AO_PERSONAL_UPDATE_ORIG_PULSE	BIT(7)
426 #define NISTC_AO_PERSONAL_UPDATE_TIMEBASE	BIT(6)
427 #define NISTC_AO_PERSONAL_UPDATE_PW		BIT(5)
428 #define NISTC_AO_PERSONAL_BC_SRC_SEL		BIT(4)
429 #define NISTC_AO_PERSONAL_INTERVAL_BUFFER_MODE	BIT(3)
430 
431 #define NISTC_RTSI_TRIGA_OUT_REG	79
432 #define NISTC_RTSI_TRIGB_OUT_REG	80
433 #define NISTC_RTSI_TRIGB_SUB_SEL1	BIT(15)	/* not for M-Series */
434 #define NISTC_RTSI_TRIG(_c, _s)		(((_s) & 0xf) << (((_c) % 4) * 4))
435 #define NISTC_RTSI_TRIG_MASK(_c)	NISTC_RTSI_TRIG((_c), 0xf)
436 #define NISTC_RTSI_TRIG_TO_SRC(_c, _b)	(((_b) >> (((_c) % 4) * 4)) & 0xf)
437 
438 #define NISTC_RTSI_BOARD_REG		81
439 
440 #define NISTC_CFG_MEM_CLR_REG		82
441 #define NISTC_ADC_FIFO_CLR_REG		83
442 #define NISTC_DAC_FIFO_CLR_REG		84
443 #define NISTC_WR_STROBE3_REG		85
444 
445 #define NISTC_AO_OUT_CTRL_REG		86
446 #define NISTC_AO_OUT_CTRL_EXT_GATE_ENA		BIT(15)
447 #define NISTC_AO_OUT_CTRL_EXT_GATE_SEL(x)	(((x) & 0x1f) << 10)
448 #define NISTC_AO_OUT_CTRL_CHANS(x)		(((x) & 0xf) << 6)
449 #define NISTC_AO_OUT_CTRL_UPDATE2_SEL(x)	(((x) & 0x3) << 4)
450 #define NISTC_AO_OUT_CTRL_EXT_GATE_POL		BIT(3)
451 #define NISTC_AO_OUT_CTRL_UPDATE2_TOGGLE	BIT(2)
452 #define NISTC_AO_OUT_CTRL_UPDATE_SEL(x)		(((x) & 0x3) << 0)
453 #define NISTC_AO_OUT_CTRL_UPDATE_SEL_HIGHZ	NISTC_AO_OUT_CTRL_UPDATE_SEL(0)
454 #define NISTC_AO_OUT_CTRL_UPDATE_SEL_GND	NISTC_AO_OUT_CTRL_UPDATE_SEL(1)
455 #define NISTC_AO_OUT_CTRL_UPDATE_SEL_LOW	NISTC_AO_OUT_CTRL_UPDATE_SEL(2)
456 #define NISTC_AO_OUT_CTRL_UPDATE_SEL_HIGH	NISTC_AO_OUT_CTRL_UPDATE_SEL(3)
457 
458 #define NISTC_AI_MODE3_REG		87
459 #define NISTC_AI_MODE3_TRIG_LEN		BIT(15)
460 #define NISTC_AI_MODE3_DELAY_START	BIT(14)
461 #define NISTC_AI_MODE3_SOFTWARE_GATE	BIT(13)
462 #define NISTC_AI_MODE3_SI_TRIG_DELAY	BIT(12)
463 #define NISTC_AI_MODE3_SI2_SRC_SEL	BIT(11)
464 #define NISTC_AI_MODE3_DELAYED_START2	BIT(10)
465 #define NISTC_AI_MODE3_DELAYED_START1	BIT(9)
466 #define NISTC_AI_MODE3_EXT_GATE_MODE	BIT(8)
467 #define NISTC_AI_MODE3_FIFO_MODE(x)	(((x) & 0x3) << 6)
468 #define NISTC_AI_MODE3_FIFO_MODE_NE	NISTC_AI_MODE3_FIFO_MODE(0)
469 #define NISTC_AI_MODE3_FIFO_MODE_HF	NISTC_AI_MODE3_FIFO_MODE(1)
470 #define NISTC_AI_MODE3_FIFO_MODE_F	NISTC_AI_MODE3_FIFO_MODE(2)
471 #define NISTC_AI_MODE3_FIFO_MODE_HF_E	NISTC_AI_MODE3_FIFO_MODE(3)
472 #define NISTC_AI_MODE3_EXT_GATE_POL	BIT(5)
473 #define NISTC_AI_MODE3_EXT_GATE_SEL(x)	(((x) & 0x1f) << 0)
474 
475 #define NISTC_AI_STATUS1_REG		2
476 #define NISTC_AI_STATUS1_INTA		BIT(15)
477 #define NISTC_AI_STATUS1_FIFO_F		BIT(14)
478 #define NISTC_AI_STATUS1_FIFO_HF	BIT(13)
479 #define NISTC_AI_STATUS1_FIFO_E		BIT(12)
480 #define NISTC_AI_STATUS1_OVERRUN	BIT(11)
481 #define NISTC_AI_STATUS1_OVERFLOW	BIT(10)
482 #define NISTC_AI_STATUS1_SC_TC_ERR	BIT(9)
483 #define NISTC_AI_STATUS1_OVER		(NISTC_AI_STATUS1_OVERRUN |	\
484 					 NISTC_AI_STATUS1_OVERFLOW)
485 #define NISTC_AI_STATUS1_ERR		(NISTC_AI_STATUS1_OVER |	\
486 					 NISTC_AI_STATUS1_SC_TC_ERR)
487 #define NISTC_AI_STATUS1_START2		BIT(8)
488 #define NISTC_AI_STATUS1_START1		BIT(7)
489 #define NISTC_AI_STATUS1_SC_TC		BIT(6)
490 #define NISTC_AI_STATUS1_START		BIT(5)
491 #define NISTC_AI_STATUS1_STOP		BIT(4)
492 #define NISTC_AI_STATUS1_G0_TC		BIT(3)
493 #define NISTC_AI_STATUS1_G0_GATE	BIT(2)
494 #define NISTC_AI_STATUS1_FIFO_REQ	BIT(1)
495 #define NISTC_AI_STATUS1_PASSTHRU0	BIT(0)
496 
497 #define NISTC_AO_STATUS1_REG		3
498 #define NISTC_AO_STATUS1_INTB		BIT(15)
499 #define NISTC_AO_STATUS1_FIFO_F		BIT(14)
500 #define NISTC_AO_STATUS1_FIFO_HF	BIT(13)
501 #define NISTC_AO_STATUS1_FIFO_E		BIT(12)
502 #define NISTC_AO_STATUS1_BC_TC_ERR	BIT(11)
503 #define NISTC_AO_STATUS1_START		BIT(10)
504 #define NISTC_AO_STATUS1_OVERRUN	BIT(9)
505 #define NISTC_AO_STATUS1_START1		BIT(8)
506 #define NISTC_AO_STATUS1_BC_TC		BIT(7)
507 #define NISTC_AO_STATUS1_UC_TC		BIT(6)
508 #define NISTC_AO_STATUS1_UPDATE		BIT(5)
509 #define NISTC_AO_STATUS1_UI2_TC		BIT(4)
510 #define NISTC_AO_STATUS1_G1_TC		BIT(3)
511 #define NISTC_AO_STATUS1_G1_GATE	BIT(2)
512 #define NISTC_AO_STATUS1_FIFO_REQ	BIT(1)
513 #define NISTC_AO_STATUS1_PASSTHRU1	BIT(0)
514 
515 #define NISTC_G01_STATUS_REG		4
516 
517 #define NISTC_AI_STATUS2_REG		5
518 
519 #define NISTC_AO_STATUS2_REG		6
520 
521 #define NISTC_DIO_IN_REG		7
522 
523 #define NISTC_G0_HW_SAVE_REG		8
524 #define NISTC_G1_HW_SAVE_REG		10
525 
526 #define NISTC_G0_SAVE_REG		12
527 #define NISTC_G1_SAVE_REG		14
528 
529 #define NISTC_AO_UI_SAVE_REG		16
530 #define NISTC_AO_BC_SAVE_REG		18
531 #define NISTC_AO_UC_SAVE_REG		20
532 
533 #define NISTC_STATUS1_REG		27
534 #define NISTC_STATUS1_SERIO_IN_PROG	BIT(12)
535 
536 #define NISTC_DIO_SERIAL_IN_REG		28
537 
538 #define NISTC_STATUS2_REG		29
539 #define NISTC_STATUS2_AO_TMRDACWRS_IN_PROGRESS	BIT(5)
540 
541 #define NISTC_AI_SI_SAVE_REG		64
542 #define NISTC_AI_SC_SAVE_REG		66
543 
544 /*
545  * PCI E Series Registers
546  */
547 #define NI_E_STC_WINDOW_ADDR_REG	0x00	/* rw16 */
548 #define NI_E_STC_WINDOW_DATA_REG	0x02	/* rw16 */
549 
550 #define NI_E_STATUS_REG			0x01	/* r8 */
551 #define NI_E_STATUS_AI_FIFO_LOWER_NE	BIT(3)
552 #define NI_E_STATUS_PROMOUT		BIT(0)
553 
554 #define NI_E_DMA_AI_AO_SEL_REG		0x09	/* w8 */
555 #define NI_E_DMA_AI_SEL(x)		(((x) & 0xf) << 0)
556 #define NI_E_DMA_AI_SEL_MASK		NI_E_DMA_AI_SEL(0xf)
557 #define NI_E_DMA_AO_SEL(x)		(((x) & 0xf) << 4)
558 #define NI_E_DMA_AO_SEL_MASK		NI_E_DMA_AO_SEL(0xf)
559 
560 #define NI_E_DMA_G0_G1_SEL_REG		0x0b	/* w8 */
561 #define NI_E_DMA_G0_G1_SEL(_g, _c)	(((_c) & 0xf) << ((_g) * 4))
562 #define NI_E_DMA_G0_G1_SEL_MASK(_g)	NI_E_DMA_G0_G1_SEL((_g), 0xf)
563 
564 #define NI_E_SERIAL_CMD_REG		0x0d	/* w8 */
565 #define NI_E_SERIAL_CMD_DAC_LD(x)	BIT(3 + (x))
566 #define NI_E_SERIAL_CMD_EEPROM_CS	BIT(2)
567 #define NI_E_SERIAL_CMD_SDATA		BIT(1)
568 #define NI_E_SERIAL_CMD_SCLK		BIT(0)
569 
570 #define NI_E_MISC_CMD_REG		0x0f	/* w8 */
571 #define NI_E_MISC_CMD_INTEXT_ATRIG(x)	(((x) & 0x1) << 7)
572 #define NI_E_MISC_CMD_EXT_ATRIG		NI_E_MISC_CMD_INTEXT_ATRIG(0)
573 #define NI_E_MISC_CMD_INT_ATRIG		NI_E_MISC_CMD_INTEXT_ATRIG(1)
574 
575 #define NI_E_AI_CFG_LO_REG		0x10	/* w16 */
576 #define NI_E_AI_CFG_LO_LAST_CHAN	BIT(15)
577 #define NI_E_AI_CFG_LO_GEN_TRIG		BIT(12)
578 #define NI_E_AI_CFG_LO_DITHER		BIT(9)
579 #define NI_E_AI_CFG_LO_UNI		BIT(8)
580 #define NI_E_AI_CFG_LO_GAIN(x)		((x) << 0)
581 
582 #define NI_E_AI_CFG_HI_REG		0x12	/* w16 */
583 #define NI_E_AI_CFG_HI_TYPE(x)		(((x) & 0x7) << 12)
584 #define NI_E_AI_CFG_HI_TYPE_DIFF	NI_E_AI_CFG_HI_TYPE(1)
585 #define NI_E_AI_CFG_HI_TYPE_COMMON	NI_E_AI_CFG_HI_TYPE(2)
586 #define NI_E_AI_CFG_HI_TYPE_GROUND	NI_E_AI_CFG_HI_TYPE(3)
587 #define NI_E_AI_CFG_HI_AC_COUPLE	BIT(11)
588 #define NI_E_AI_CFG_HI_CHAN(x)		(((x) & 0x3f) << 0)
589 
590 #define NI_E_AO_CFG_REG			0x16	/* w16 */
591 #define NI_E_AO_DACSEL(x)		((x) << 8)
592 #define NI_E_AO_GROUND_REF		BIT(3)
593 #define NI_E_AO_EXT_REF			BIT(2)
594 #define NI_E_AO_DEGLITCH		BIT(1)
595 #define NI_E_AO_CFG_BIP			BIT(0)
596 
597 #define NI_E_DAC_DIRECT_DATA_REG(x)	(0x18 + ((x) * 2)) /* w16 */
598 
599 #define NI_E_8255_BASE			0x19	/* rw8 */
600 
601 #define NI_E_AI_FIFO_DATA_REG		0x1c	/* r16 */
602 
603 #define NI_E_AO_FIFO_DATA_REG		0x1e	/* w16 */
604 
605 /*
606  * 611x registers (these boards differ from the e-series)
607  */
608 #define NI611X_MAGIC_REG		0x19	/* w8 (new) */
609 #define NI611X_CALIB_CHAN_SEL_REG	0x1a	/* w16 (new) */
610 #define NI611X_AI_FIFO_DATA_REG		0x1c	/* r32 (incompatible) */
611 #define NI611X_AI_FIFO_OFFSET_LOAD_REG	0x05	/* r8 (new) */
612 #define NI611X_AO_FIFO_DATA_REG		0x14	/* w32 (incompatible) */
613 #define NI611X_CAL_GAIN_SEL_REG		0x05	/* w8 (new) */
614 
615 #define NI611X_AO_WINDOW_ADDR_REG	0x18
616 #define NI611X_AO_WINDOW_DATA_REG	0x1e
617 
618 /*
619  * 6143 registers
620  */
621 #define NI6143_MAGIC_REG		0x19	/* w8 */
622 #define NI6143_DMA_G0_G1_SEL_REG	0x0b	/* w8 */
623 #define NI6143_PIPELINE_DELAY_REG	0x1f	/* w8 */
624 #define NI6143_EOC_SET_REG		0x1d	/* w8 */
625 #define NI6143_DMA_AI_SEL_REG		0x09	/* w8 */
626 #define NI6143_AI_FIFO_DATA_REG		0x8c	/* r32 */
627 #define NI6143_AI_FIFO_FLAG_REG		0x84	/* w32 */
628 #define NI6143_AI_FIFO_CTRL_REG		0x88	/* w32 */
629 #define NI6143_AI_FIFO_STATUS_REG	0x88	/* r32 */
630 #define NI6143_AI_FIFO_DMA_THRESH_REG	0x90	/* w32 */
631 #define NI6143_AI_FIFO_WORDS_AVAIL_REG	0x94	/* w32 */
632 
633 #define NI6143_CALIB_CHAN_REG		0x42	/* w16 */
634 #define NI6143_CALIB_CHAN_RELAY_ON	BIT(15)
635 #define NI6143_CALIB_CHAN_RELAY_OFF	BIT(14)
636 #define NI6143_CALIB_CHAN(x)		(((x) & 0xf) << 0)
637 #define NI6143_CALIB_CHAN_GND_GND	NI6143_CALIB_CHAN(0) /* Offset Cal */
638 #define NI6143_CALIB_CHAN_2V5_GND	NI6143_CALIB_CHAN(2) /* 2.5V ref */
639 #define NI6143_CALIB_CHAN_PWM_GND	NI6143_CALIB_CHAN(5) /* +-5V Self Cal */
640 #define NI6143_CALIB_CHAN_2V5_PWM	NI6143_CALIB_CHAN(10) /* PWM Cal */
641 #define NI6143_CALIB_CHAN_PWM_PWM	NI6143_CALIB_CHAN(13) /* CMRR */
642 #define NI6143_CALIB_CHAN_GND_PWM	NI6143_CALIB_CHAN(14) /* PWM Cal */
643 #define NI6143_CALIB_LO_TIME_REG	0x20	/* w16 */
644 #define NI6143_CALIB_HI_TIME_REG	0x22	/* w16 */
645 #define NI6143_RELAY_COUNTER_LOAD_REG	0x4c	/* w32 */
646 #define NI6143_SIGNATURE_REG		0x50	/* w32 */
647 #define NI6143_RELEASE_DATE_REG		0x54	/* w32 */
648 #define NI6143_RELEASE_OLDEST_DATE_REG	0x58	/* w32 */
649 
650 /*
651  * 671x, 611x windowed ao registers
652  */
653 #define NI671X_DAC_DIRECT_DATA_REG(x)	(0x00 + (x))	/* w16 */
654 #define NI611X_AO_TIMED_REG		0x10	/* w16 */
655 #define NI671X_AO_IMMEDIATE_REG		0x11	/* w16 */
656 #define NI611X_AO_FIFO_OFFSET_LOAD_REG	0x13	/* w32 */
657 #define NI67XX_AO_SP_UPDATES_REG	0x14	/* w16 */
658 #define NI611X_AO_WAVEFORM_GEN_REG	0x15	/* w16 */
659 #define NI611X_AO_MISC_REG		0x16	/* w16 */
660 #define NI611X_AO_MISC_CLEAR_WG		BIT(0)
661 #define NI67XX_AO_CAL_CHAN_SEL_REG	0x17	/* w16 */
662 #define NI67XX_AO_CFG2_REG		0x18	/* w16 */
663 #define NI67XX_CAL_CMD_REG		0x19	/* w16 */
664 #define NI67XX_CAL_STATUS_REG		0x1a	/* r8 */
665 #define NI67XX_CAL_STATUS_BUSY		BIT(0)
666 #define NI67XX_CAL_STATUS_OSC_DETECT	BIT(1)
667 #define NI67XX_CAL_STATUS_OVERRANGE	BIT(2)
668 #define NI67XX_CAL_DATA_REG		0x1b	/* r16 */
669 #define NI67XX_CAL_CFG_HI_REG		0x1c	/* rw16 */
670 #define NI67XX_CAL_CFG_LO_REG		0x1d	/* rw16 */
671 
672 #define CS5529_CMD_CB			BIT(7)
673 #define CS5529_CMD_SINGLE_CONV		BIT(6)
674 #define CS5529_CMD_CONT_CONV		BIT(5)
675 #define CS5529_CMD_READ			BIT(4)
676 #define CS5529_CMD_REG(x)		(((x) & 0x7) << 1)
677 #define CS5529_CMD_REG_MASK		CS5529_CMD_REG(7)
678 #define CS5529_CMD_PWR_SAVE		BIT(0)
679 
680 #define CS5529_OFFSET_REG		CS5529_CMD_REG(0)
681 #define CS5529_GAIN_REG			CS5529_CMD_REG(1)
682 #define CS5529_CONV_DATA_REG		CS5529_CMD_REG(3)
683 #define CS5529_SETUP_REG		CS5529_CMD_REG(4)
684 
685 #define CS5529_CFG_REG			CS5529_CMD_REG(2)
686 #define CS5529_CFG_AOUT(x)		BIT(22 + (x))
687 #define CS5529_CFG_DOUT(x)		BIT(18 + (x))
688 #define CS5529_CFG_LOW_PWR_MODE		BIT(16)
689 #define CS5529_CFG_WORD_RATE(x)		(((x) & 0x7) << 13)
690 #define CS5529_CFG_WORD_RATE_MASK	CS5529_CFG_WORD_RATE(0x7)
691 #define CS5529_CFG_WORD_RATE_2180	CS5529_CFG_WORD_RATE(0)
692 #define CS5529_CFG_WORD_RATE_1092	CS5529_CFG_WORD_RATE(1)
693 #define CS5529_CFG_WORD_RATE_532	CS5529_CFG_WORD_RATE(2)
694 #define CS5529_CFG_WORD_RATE_388	CS5529_CFG_WORD_RATE(3)
695 #define CS5529_CFG_WORD_RATE_324	CS5529_CFG_WORD_RATE(4)
696 #define CS5529_CFG_WORD_RATE_17444	CS5529_CFG_WORD_RATE(5)
697 #define CS5529_CFG_WORD_RATE_8724	CS5529_CFG_WORD_RATE(6)
698 #define CS5529_CFG_WORD_RATE_4364	CS5529_CFG_WORD_RATE(7)
699 #define CS5529_CFG_UNIPOLAR		BIT(12)
700 #define CS5529_CFG_RESET		BIT(7)
701 #define CS5529_CFG_RESET_VALID		BIT(6)
702 #define CS5529_CFG_PORT_FLAG		BIT(5)
703 #define CS5529_CFG_PWR_SAVE_SEL		BIT(4)
704 #define CS5529_CFG_DONE_FLAG		BIT(3)
705 #define CS5529_CFG_CALIB(x)		(((x) & 0x7) << 0)
706 #define CS5529_CFG_CALIB_NONE		CS5529_CFG_CALIB(0)
707 #define CS5529_CFG_CALIB_OFFSET_SELF	CS5529_CFG_CALIB(1)
708 #define CS5529_CFG_CALIB_GAIN_SELF	CS5529_CFG_CALIB(2)
709 #define CS5529_CFG_CALIB_BOTH_SELF	CS5529_CFG_CALIB(3)
710 #define CS5529_CFG_CALIB_OFFSET_SYS	CS5529_CFG_CALIB(5)
711 #define CS5529_CFG_CALIB_GAIN_SYS	CS5529_CFG_CALIB(6)
712 
713 /*
714  * M-Series specific registers not handled by the DAQ-STC and GPCT register
715  * remapping.
716  */
717 #define NI_M_CDIO_DMA_SEL_REG		0x007
718 #define NI_M_CDIO_DMA_SEL_CDO(x)	(((x) & 0xf) << 4)
719 #define NI_M_CDIO_DMA_SEL_CDO_MASK	NI_M_CDIO_DMA_SEL_CDO(0xf)
720 #define NI_M_CDIO_DMA_SEL_CDI(x)	(((x) & 0xf) << 0)
721 #define NI_M_CDIO_DMA_SEL_CDI_MASK	NI_M_CDIO_DMA_SEL_CDI(0xf)
722 #define NI_M_SCXI_STATUS_REG		0x007
723 #define NI_M_AI_AO_SEL_REG		0x009
724 #define NI_M_G0_G1_SEL_REG		0x00b
725 #define NI_M_MISC_CMD_REG		0x00f
726 #define NI_M_SCXI_SER_DO_REG		0x011
727 #define NI_M_SCXI_CTRL_REG		0x013
728 #define NI_M_SCXI_OUT_ENA_REG		0x015
729 #define NI_M_AI_FIFO_DATA_REG		0x01c
730 #define NI_M_DIO_REG			0x024
731 #define NI_M_DIO_DIR_REG		0x028
732 #define NI_M_CAL_PWM_REG		0x040
733 #define NI_M_CAL_PWM_HIGH_TIME(x)	(((x) & 0xffff) << 16)
734 #define NI_M_CAL_PWM_LOW_TIME(x)	(((x) & 0xffff) << 0)
735 #define NI_M_GEN_PWM_REG(x)		(0x044 + ((x) * 2))
736 #define NI_M_AI_CFG_FIFO_DATA_REG	0x05e
737 #define NI_M_AI_CFG_LAST_CHAN		BIT(14)
738 #define NI_M_AI_CFG_DITHER		BIT(13)
739 #define NI_M_AI_CFG_POLARITY		BIT(12)
740 #define NI_M_AI_CFG_GAIN(x)		(((x) & 0x7) << 9)
741 #define NI_M_AI_CFG_CHAN_TYPE(x)	(((x) & 0x7) << 6)
742 #define NI_M_AI_CFG_CHAN_TYPE_MASK	NI_M_AI_CFG_CHAN_TYPE(7)
743 #define NI_M_AI_CFG_CHAN_TYPE_CALIB	NI_M_AI_CFG_CHAN_TYPE(0)
744 #define NI_M_AI_CFG_CHAN_TYPE_DIFF	NI_M_AI_CFG_CHAN_TYPE(1)
745 #define NI_M_AI_CFG_CHAN_TYPE_COMMON	NI_M_AI_CFG_CHAN_TYPE(2)
746 #define NI_M_AI_CFG_CHAN_TYPE_GROUND	NI_M_AI_CFG_CHAN_TYPE(3)
747 #define NI_M_AI_CFG_CHAN_TYPE_AUX	NI_M_AI_CFG_CHAN_TYPE(5)
748 #define NI_M_AI_CFG_CHAN_TYPE_GHOST	NI_M_AI_CFG_CHAN_TYPE(7)
749 #define NI_M_AI_CFG_BANK_SEL(x)		((((x) & 0x40) << 4) | ((x) & 0x30))
750 #define NI_M_AI_CFG_CHAN_SEL(x)		(((x) & 0xf) << 0)
751 #define NI_M_INTC_ENA_REG		0x088
752 #define NI_M_INTC_ENA			BIT(0)
753 #define NI_M_INTC_STATUS_REG		0x088
754 #define NI_M_INTC_STATUS		BIT(0)
755 #define NI_M_ATRIG_CTRL_REG		0x08c
756 #define NI_M_AO_SER_INT_ENA_REG		0x0a0
757 #define NI_M_AO_SER_INT_ACK_REG		0x0a1
758 #define NI_M_AO_SER_INT_STATUS_REG	0x0a1
759 #define NI_M_AO_CALIB_REG		0x0a3
760 #define NI_M_AO_FIFO_DATA_REG		0x0a4
761 #define NI_M_PFI_FILTER_REG		0x0b0
762 #define NI_M_PFI_FILTER_SEL(_c, _f)	(((_f) & 0x3) << ((_c) * 2))
763 #define NI_M_PFI_FILTER_SEL_MASK(_c)	NI_M_PFI_FILTER_SEL((_c), 0x3)
764 #define NI_M_RTSI_FILTER_REG		0x0b4
765 #define NI_M_SCXI_LEGACY_COMPAT_REG	0x0bc
766 #define NI_M_DAC_DIRECT_DATA_REG(x)	(0x0c0 + ((x) * 4))
767 #define NI_M_AO_WAVEFORM_ORDER_REG(x)	(0x0c2 + ((x) * 4))
768 #define NI_M_AO_CFG_BANK_REG(x)		(0x0c3 + ((x) * 4))
769 #define NI_M_AO_CFG_BANK_BIPOLAR	BIT(7)
770 #define NI_M_AO_CFG_BANK_UPDATE_TIMED	BIT(6)
771 #define NI_M_AO_CFG_BANK_REF(x)		(((x) & 0x7) << 3)
772 #define NI_M_AO_CFG_BANK_REF_MASK	NI_M_AO_CFG_BANK_REF(7)
773 #define NI_M_AO_CFG_BANK_REF_INT_10V	NI_M_AO_CFG_BANK_REF(0)
774 #define NI_M_AO_CFG_BANK_REF_INT_5V	NI_M_AO_CFG_BANK_REF(1)
775 #define NI_M_AO_CFG_BANK_OFFSET(x)	(((x) & 0x7) << 0)
776 #define NI_M_AO_CFG_BANK_OFFSET_MASK	NI_M_AO_CFG_BANK_OFFSET(7)
777 #define NI_M_AO_CFG_BANK_OFFSET_0V	NI_M_AO_CFG_BANK_OFFSET(0)
778 #define NI_M_AO_CFG_BANK_OFFSET_5V	NI_M_AO_CFG_BANK_OFFSET(1)
779 #define NI_M_RTSI_SHARED_MUX_REG	0x1a2
780 #define NI_M_CLK_FOUT2_REG		0x1c4
781 #define NI_M_CLK_FOUT2_RTSI_10MHZ	BIT(7)
782 #define NI_M_CLK_FOUT2_TIMEBASE3_PLL	BIT(6)
783 #define NI_M_CLK_FOUT2_TIMEBASE1_PLL	BIT(5)
784 #define NI_M_CLK_FOUT2_PLL_SRC(x)	(((x) & 0x1f) << 0)
785 #define NI_M_CLK_FOUT2_PLL_SRC_MASK	NI_M_CLK_FOUT2_PLL_SRC(0x1f)
786 #define NI_M_MAX_RTSI_CHAN		7
787 #define NI_M_CLK_FOUT2_PLL_SRC_RTSI(x)	(((x) == NI_M_MAX_RTSI_CHAN)	\
788 					 ? NI_M_CLK_FOUT2_PLL_SRC(0x1b)	\
789 					 : NI_M_CLK_FOUT2_PLL_SRC(0xb + (x)))
790 #define NI_M_CLK_FOUT2_PLL_SRC_STAR	NI_M_CLK_FOUT2_PLL_SRC(0x14)
791 #define NI_M_CLK_FOUT2_PLL_SRC_PXI10	NI_M_CLK_FOUT2_PLL_SRC(0x1d)
792 #define NI_M_PLL_CTRL_REG		0x1c6
793 #define NI_M_PLL_CTRL_VCO_MODE(x)	(((x) & 0x3) << 13)
794 #define NI_M_PLL_CTRL_VCO_MODE_200_325MHZ NI_M_PLL_CTRL_VCO_MODE(0)
795 #define NI_M_PLL_CTRL_VCO_MODE_175_225MHZ NI_M_PLL_CTRL_VCO_MODE(1)
796 #define NI_M_PLL_CTRL_VCO_MODE_100_225MHZ NI_M_PLL_CTRL_VCO_MODE(2)
797 #define NI_M_PLL_CTRL_VCO_MODE_75_150MHZ  NI_M_PLL_CTRL_VCO_MODE(3)
798 #define NI_M_PLL_CTRL_ENA		BIT(12)
799 #define NI_M_PLL_MAX_DIVISOR		0x10
800 #define NI_M_PLL_CTRL_DIVISOR(x)	(((x) & 0xf) << 8)
801 #define NI_M_PLL_MAX_MULTIPLIER		0x100
802 #define NI_M_PLL_CTRL_MULTIPLIER(x)	(((x) & 0xff) << 0)
803 #define NI_M_PLL_STATUS_REG		0x1c8
804 #define NI_M_PLL_STATUS_LOCKED		BIT(0)
805 #define NI_M_PFI_OUT_SEL_REG(x)		(0x1d0 + ((x) * 2))
806 #define NI_M_PFI_CHAN(_c)		(((_c) % 3) * 5)
807 #define NI_M_PFI_OUT_SEL(_c, _s)	(((_s) & 0x1f) << NI_M_PFI_CHAN(_c))
808 #define NI_M_PFI_OUT_SEL_MASK(_c)	(0x1f << NI_M_PFI_CHAN(_c))
809 #define NI_M_PFI_OUT_SEL_TO_SRC(_c, _b)	(((_b) >> NI_M_PFI_CHAN(_c)) & 0x1f)
810 #define NI_M_PFI_DI_REG			0x1dc
811 #define NI_M_PFI_DO_REG			0x1de
812 #define NI_M_CFG_BYPASS_FIFO_REG	0x218
813 #define NI_M_CFG_BYPASS_FIFO		BIT(31)
814 #define NI_M_CFG_BYPASS_AI_POLARITY	BIT(22)
815 #define NI_M_CFG_BYPASS_AI_DITHER	BIT(21)
816 #define NI_M_CFG_BYPASS_AI_GAIN(x)	(((x) & 0x7) << 18)
817 #define NI_M_CFG_BYPASS_AO_CAL(x)	(((x) & 0xf) << 15)
818 #define NI_M_CFG_BYPASS_AO_CAL_MASK	NI_M_CFG_BYPASS_AO_CAL(0xf)
819 #define NI_M_CFG_BYPASS_AI_MODE_MUX(x)	(((x) & 0x3) << 13)
820 #define NI_M_CFG_BYPASS_AI_MODE_MUX_MASK NI_M_CFG_BYPASS_AI_MODE_MUX(3)
821 #define NI_M_CFG_BYPASS_AI_CAL_NEG(x)	(((x) & 0x7) << 10)
822 #define NI_M_CFG_BYPASS_AI_CAL_NEG_MASK	NI_M_CFG_BYPASS_AI_CAL_NEG(7)
823 #define NI_M_CFG_BYPASS_AI_CAL_POS(x)	(((x) & 0x7) << 7)
824 #define NI_M_CFG_BYPASS_AI_CAL_POS_MASK	NI_M_CFG_BYPASS_AI_CAL_POS(7)
825 #define NI_M_CFG_BYPASS_AI_CAL_MASK	(NI_M_CFG_BYPASS_AI_CAL_POS_MASK | \
826 					 NI_M_CFG_BYPASS_AI_CAL_NEG_MASK | \
827 					 NI_M_CFG_BYPASS_AI_MODE_MUX_MASK | \
828 					 NI_M_CFG_BYPASS_AO_CAL_MASK)
829 #define NI_M_CFG_BYPASS_AI_BANK(x)	(((x) & 0xf) << 3)
830 #define NI_M_CFG_BYPASS_AI_BANK_MASK	NI_M_CFG_BYPASS_AI_BANK(0xf)
831 #define NI_M_CFG_BYPASS_AI_CHAN(x)	(((x) & 0x7) << 0)
832 #define NI_M_CFG_BYPASS_AI_CHAN_MASK	NI_M_CFG_BYPASS_AI_CHAN(7)
833 #define NI_M_SCXI_DIO_ENA_REG		0x21c
834 #define NI_M_CDI_FIFO_DATA_REG		0x220
835 #define NI_M_CDO_FIFO_DATA_REG		0x220
836 #define NI_M_CDIO_STATUS_REG		0x224
837 #define NI_M_CDIO_STATUS_CDI_OVERFLOW	BIT(20)
838 #define NI_M_CDIO_STATUS_CDI_OVERRUN	BIT(19)
839 #define NI_M_CDIO_STATUS_CDI_ERROR	(NI_M_CDIO_STATUS_CDI_OVERFLOW | \
840 					 NI_M_CDIO_STATUS_CDI_OVERRUN)
841 #define NI_M_CDIO_STATUS_CDI_FIFO_REQ	BIT(18)
842 #define NI_M_CDIO_STATUS_CDI_FIFO_FULL	BIT(17)
843 #define NI_M_CDIO_STATUS_CDI_FIFO_EMPTY	BIT(16)
844 #define NI_M_CDIO_STATUS_CDO_UNDERFLOW	BIT(4)
845 #define NI_M_CDIO_STATUS_CDO_OVERRUN	BIT(3)
846 #define NI_M_CDIO_STATUS_CDO_ERROR	(NI_M_CDIO_STATUS_CDO_UNDERFLOW | \
847 					 NI_M_CDIO_STATUS_CDO_OVERRUN)
848 #define NI_M_CDIO_STATUS_CDO_FIFO_REQ	BIT(2)
849 #define NI_M_CDIO_STATUS_CDO_FIFO_FULL	BIT(1)
850 #define NI_M_CDIO_STATUS_CDO_FIFO_EMPTY	BIT(0)
851 #define NI_M_CDIO_CMD_REG		0x224
852 #define NI_M_CDI_CMD_SW_UPDATE		BIT(20)
853 #define NI_M_CDO_CMD_SW_UPDATE		BIT(19)
854 #define NI_M_CDO_CMD_F_E_INT_ENA_CLR	BIT(17)
855 #define NI_M_CDO_CMD_F_E_INT_ENA_SET	BIT(16)
856 #define NI_M_CDI_CMD_ERR_INT_CONFIRM	BIT(15)
857 #define NI_M_CDO_CMD_ERR_INT_CONFIRM	BIT(14)
858 #define NI_M_CDI_CMD_F_REQ_INT_ENA_CLR	BIT(13)
859 #define NI_M_CDI_CMD_F_REQ_INT_ENA_SET	BIT(12)
860 #define NI_M_CDO_CMD_F_REQ_INT_ENA_CLR	BIT(11)
861 #define NI_M_CDO_CMD_F_REQ_INT_ENA_SET	BIT(10)
862 #define NI_M_CDI_CMD_ERR_INT_ENA_CLR	BIT(9)
863 #define NI_M_CDI_CMD_ERR_INT_ENA_SET	BIT(8)
864 #define NI_M_CDO_CMD_ERR_INT_ENA_CLR	BIT(7)
865 #define NI_M_CDO_CMD_ERR_INT_ENA_SET	BIT(6)
866 #define NI_M_CDI_CMD_RESET		BIT(5)
867 #define NI_M_CDO_CMD_RESET		BIT(4)
868 #define NI_M_CDI_CMD_ARM		BIT(3)
869 #define NI_M_CDI_CMD_DISARM		BIT(2)
870 #define NI_M_CDO_CMD_ARM		BIT(1)
871 #define NI_M_CDO_CMD_DISARM		BIT(0)
872 #define NI_M_CDI_MODE_REG		0x228
873 #define NI_M_CDI_MODE_DATA_LANE(x)	(((x) & 0x3) << 12)
874 #define NI_M_CDI_MODE_DATA_LANE_MASK	NI_M_CDI_MODE_DATA_LANE(3)
875 #define NI_M_CDI_MODE_DATA_LANE_0_15	NI_M_CDI_MODE_DATA_LANE(0)
876 #define NI_M_CDI_MODE_DATA_LANE_16_31	NI_M_CDI_MODE_DATA_LANE(1)
877 #define NI_M_CDI_MODE_DATA_LANE_0_7	NI_M_CDI_MODE_DATA_LANE(0)
878 #define NI_M_CDI_MODE_DATA_LANE_8_15	NI_M_CDI_MODE_DATA_LANE(1)
879 #define NI_M_CDI_MODE_DATA_LANE_16_23	NI_M_CDI_MODE_DATA_LANE(2)
880 #define NI_M_CDI_MODE_DATA_LANE_24_31	NI_M_CDI_MODE_DATA_LANE(3)
881 #define NI_M_CDI_MODE_FIFO_MODE		BIT(11)
882 #define NI_M_CDI_MODE_POLARITY		BIT(10)
883 #define NI_M_CDI_MODE_HALT_ON_ERROR	BIT(9)
884 #define NI_M_CDI_MODE_SAMPLE_SRC(x)	(((x) & 0x3f) << 0)
885 #define NI_M_CDI_MODE_SAMPLE_SRC_MASK	NI_M_CDI_MODE_SAMPLE_SRC(0x3f)
886 #define NI_M_CDO_MODE_REG		0x22c
887 #define NI_M_CDO_MODE_DATA_LANE(x)	(((x) & 0x3) << 12)
888 #define NI_M_CDO_MODE_DATA_LANE_MASK	NI_M_CDO_MODE_DATA_LANE(3)
889 #define NI_M_CDO_MODE_DATA_LANE_0_15	NI_M_CDO_MODE_DATA_LANE(0)
890 #define NI_M_CDO_MODE_DATA_LANE_16_31	NI_M_CDO_MODE_DATA_LANE(1)
891 #define NI_M_CDO_MODE_DATA_LANE_0_7	NI_M_CDO_MODE_DATA_LANE(0)
892 #define NI_M_CDO_MODE_DATA_LANE_8_15	NI_M_CDO_MODE_DATA_LANE(1)
893 #define NI_M_CDO_MODE_DATA_LANE_16_23	NI_M_CDO_MODE_DATA_LANE(2)
894 #define NI_M_CDO_MODE_DATA_LANE_24_31	NI_M_CDO_MODE_DATA_LANE(3)
895 #define NI_M_CDO_MODE_FIFO_MODE		BIT(11)
896 #define NI_M_CDO_MODE_POLARITY		BIT(10)
897 #define NI_M_CDO_MODE_HALT_ON_ERROR	BIT(9)
898 #define NI_M_CDO_MODE_RETRANSMIT	BIT(8)
899 #define NI_M_CDO_MODE_SAMPLE_SRC(x)	(((x) & 0x3f) << 0)
900 #define NI_M_CDO_MODE_SAMPLE_SRC_MASK	NI_M_CDO_MODE_SAMPLE_SRC(0x3f)
901 #define NI_M_CDI_MASK_ENA_REG		0x230
902 #define NI_M_CDO_MASK_ENA_REG		0x234
903 #define NI_M_STATIC_AI_CTRL_REG(x)	((x) ? (0x260 + (x)) : 0x064)
904 #define NI_M_AO_REF_ATTENUATION_REG(x)	(0x264 + (x))
905 #define NI_M_AO_REF_ATTENUATION_X5	BIT(0)
906 
907 enum {
908 	ai_gain_16 = 0,
909 	ai_gain_8,
910 	ai_gain_14,
911 	ai_gain_4,
912 	ai_gain_611x,
913 	ai_gain_622x,
914 	ai_gain_628x,
915 	ai_gain_6143
916 };
917 
918 enum caldac_enum {
919 	caldac_none = 0,
920 	mb88341,
921 	dac8800,
922 	dac8043,
923 	ad8522,
924 	ad8804,
925 	ad8842,
926 	ad8804_debug
927 };
928 
929 enum ni_reg_type {
930 	ni_reg_normal = 0x0,
931 	ni_reg_611x = 0x1,
932 	ni_reg_6711 = 0x2,
933 	ni_reg_6713 = 0x4,
934 	ni_reg_67xx_mask = 0x6,
935 	ni_reg_6xxx_mask = 0x7,
936 	ni_reg_622x = 0x8,
937 	ni_reg_625x = 0x10,
938 	ni_reg_628x = 0x18,
939 	ni_reg_m_series_mask = 0x18,
940 	ni_reg_6143 = 0x20
941 };
942 
943 struct ni_board_struct {
944 	const char *name;
945 	int device_id;
946 	int isapnp_id;
947 
948 	int n_adchan;
949 	unsigned int ai_maxdata;
950 
951 	int ai_fifo_depth;
952 	unsigned int alwaysdither:1;
953 	int gainlkup;
954 	int ai_speed;
955 
956 	int n_aochan;
957 	unsigned int ao_maxdata;
958 	int ao_fifo_depth;
959 	const struct comedi_lrange *ao_range_table;
960 	unsigned int ao_speed;
961 
962 	int reg_type;
963 	unsigned int has_8255:1;
964 	unsigned int has_32dio_chan:1;
965 
966 	enum caldac_enum caldac[3];
967 };
968 
969 #define MAX_N_CALDACS			34
970 #define MAX_N_AO_CHAN			8
971 #define NUM_GPCT			2
972 
973 #define NUM_PFI_OUTPUT_SELECT_REGS	6
974 
975 #define M_SERIES_EEPROM_SIZE		1024
976 
977 struct ni_private {
978 	unsigned short dio_output;
979 	unsigned short dio_control;
980 	int aimode;
981 	unsigned int ai_calib_source;
982 	unsigned int ai_calib_source_enabled;
983 	/* protects access to windowed registers */
984 	spinlock_t window_lock;
985 	/* protects interrupt/dma register access */
986 	spinlock_t soft_reg_copy_lock;
987 	/* protects mite DMA channel request/release */
988 	spinlock_t mite_channel_lock;
989 
990 	int changain_state;
991 	unsigned int changain_spec;
992 
993 	unsigned int caldac_maxdata_list[MAX_N_CALDACS];
994 	unsigned short caldacs[MAX_N_CALDACS];
995 
996 	unsigned short ai_cmd2;
997 
998 	unsigned short ao_conf[MAX_N_AO_CHAN];
999 	unsigned short ao_mode1;
1000 	unsigned short ao_mode2;
1001 	unsigned short ao_mode3;
1002 	unsigned short ao_cmd1;
1003 	unsigned short ao_cmd2;
1004 
1005 	struct ni_gpct_device *counter_dev;
1006 	unsigned short an_trig_etc_reg;
1007 
1008 	unsigned int ai_offset[512];
1009 
1010 	unsigned long serial_interval_ns;
1011 	unsigned char serial_hw_mode;
1012 	unsigned short clock_and_fout;
1013 	unsigned short clock_and_fout2;
1014 
1015 	unsigned short int_a_enable_reg;
1016 	unsigned short int_b_enable_reg;
1017 	unsigned short io_bidirection_pin_reg;
1018 	unsigned short rtsi_trig_direction_reg;
1019 	unsigned short rtsi_trig_a_output_reg;
1020 	unsigned short rtsi_trig_b_output_reg;
1021 	unsigned short pfi_output_select_reg[NUM_PFI_OUTPUT_SELECT_REGS];
1022 	unsigned short ai_ao_select_reg;
1023 	unsigned short g0_g1_select_reg;
1024 	unsigned short cdio_dma_select_reg;
1025 
1026 	unsigned int clock_ns;
1027 	unsigned int clock_source;
1028 
1029 	unsigned short pwm_up_count;
1030 	unsigned short pwm_down_count;
1031 
1032 	unsigned short ai_fifo_buffer[0x2000];
1033 	u8 eeprom_buffer[M_SERIES_EEPROM_SIZE];
1034 	__be32 serial_number;
1035 
1036 	struct mite *mite;
1037 	struct mite_channel *ai_mite_chan;
1038 	struct mite_channel *ao_mite_chan;
1039 	struct mite_channel *cdo_mite_chan;
1040 	struct mite_ring *ai_mite_ring;
1041 	struct mite_ring *ao_mite_ring;
1042 	struct mite_ring *cdo_mite_ring;
1043 	struct mite_ring *gpct_mite_ring[NUM_GPCT];
1044 
1045 	/* ni_pcimio board type flags (based on the boardinfo reg_type) */
1046 	unsigned int is_m_series:1;
1047 	unsigned int is_6xxx:1;
1048 	unsigned int is_611x:1;
1049 	unsigned int is_6143:1;
1050 	unsigned int is_622x:1;
1051 	unsigned int is_625x:1;
1052 	unsigned int is_628x:1;
1053 	unsigned int is_67xx:1;
1054 	unsigned int is_6711:1;
1055 	unsigned int is_6713:1;
1056 };
1057 
1058 static const struct comedi_lrange range_ni_E_ao_ext;
1059 
1060 #endif /* _COMEDI_NI_STC_H */
1061