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