1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 #define EAP_ICSC 0x00
45 #define EAP_SERR_DISABLE 0x00000001
46 #define EAP_CDC_EN 0x00000002
47 #define EAP_JYSTK_EN 0x00000004
48 #define EAP_UART_EN 0x00000008
49 #define EAP_ADC_EN 0x00000010
50 #define EAP_DAC2_EN 0x00000020
51 #define EAP_DAC1_EN 0x00000040
52 #define EAP_BREQ 0x00000080
53 #define EAP_XTCL0 0x00000100
54 #define EAP_M_CB 0x00000200
55 #define EAP_CCB_INTRM 0x00000400
56 #define EAP_DAC_SYNC 0x00000800
57 #define EAP_WTSRSEL 0x00003000
58 #define EAP_WTSRSEL_5 0x00000000
59 #define EAP_WTSRSEL_11 0x00001000
60 #define EAP_WTSRSEL_22 0x00002000
61 #define EAP_WTSRSEL_44 0x00003000
62 #define EAP_M_SBB 0x00004000
63 #define E1371_SYNC_RES 0x00004000
64 #define EAP_MSFMTSEL 0x00008000
65 #define EAP_SET_PCLKDIV(n) (((n)&0x1fff)<<16)
66 #define EAP_GET_PCLKDIV(n) (((n)>>16)&0x1fff)
67 #define EAP_PCLKBITS 0x1fff0000
68 #define EAP_XTCL1 0x40000000
69 #define EAP_ADC_STOP 0x80000000
70
71 #define EAP_ICSS 0x04
72
73 #define EAP_I_ADC 0x00000001
74 #define EAP_I_DAC2 0x00000002
75 #define EAP_I_DAC1 0x00000004
76 #define EAP_I_UART 0x00000008
77 #define EAP_I_MCCB 0x00000010
78 #define EAP_VC 0x00000060
79 #define EAP_CWRIP 0x00000100
80 #define EAP_CBUSY 0x00000200
81 #define EAP_CSTAT 0x00000400
82 #define EAP_CT5880_AC97_RESET 0x20000000
83 #define EAP_INTR 0x80000000
84
85 #define EAP_UART_DATA 0x08
86 #define EAP_UART_STATUS 0x09
87 #define EAP_US_RXRDY 0x01
88 #define EAP_US_TXRDY 0x02
89 #define EAP_US_TXINT 0x04
90 #define EAP_US_RXINT 0x80
91 #define EAP_UART_CONTROL 0x09
92 #define EAP_UC_CNTRL 0x03
93 #define EAP_UC_TXINTEN 0x20
94 #define EAP_UC_RXINTEN 0x80
95 #define EAP_MEMPAGE 0x0c
96 #define EAP_CODEC 0x10
97 #define EAP_SET_CODEC(a,d) (((a)<<8) | (d))
98
99
100
101
102
103 #define E1371_CODEC 0x14
104 #define E1371_CODEC_VALID 0x80000000
105 #define E1371_CODEC_WIP 0x40000000
106 #define E1371_CODEC_READ 0x00800000
107 #define E1371_SET_CODEC(a,d) (((a)<<16) | (d))
108
109 #define E1371_SRC 0x10
110 #define E1371_SRC_RAMWE 0x01000000
111 #define E1371_SRC_RBUSY 0x00800000
112 #define E1371_SRC_DISABLE 0x00400000
113 #define E1371_SRC_DISP1 0x00200000
114 #define E1371_SRC_DISP2 0x00100000
115 #define E1371_SRC_DISREC 0x00080000
116 #define E1371_SRC_ADDR(a) ((a)<<25)
117 #define E1371_SRC_DATA(d) (d)
118 #define E1371_SRC_DATAMASK 0x0000ffff
119 #define E1371_SRC_CTLMASK (E1371_SRC_DISABLE | E1371_SRC_DISP1 | \
120 E1371_SRC_DISP2 | E1371_SRC_DISREC)
121 #define E1371_SRC_STATE_MASK 0x00870000
122 #define E1371_SRC_STATE_OK 0x00010000
123
124 #define E1371_LEGACY 0x18
125
126
127
128
129
130 #define ESRC_ADC 0x78
131 #define ESRC_DAC1 0x74
132 #define ESRC_DAC2 0x70
133 #define ESRC_ADC_VOLL 0x6c
134 #define ESRC_ADC_VOLR 0x6d
135 #define ESRC_DAC1_VOLL 0x7c
136 #define ESRC_DAC1_VOLR 0x7d
137 #define ESRC_DAC2_VOLL 0x7e
138 #define ESRC_DAC2_VOLR 0x7f
139 #define ESRC_TRUNC_N 0x00
140 #define ESRC_IREGS 0x01
141 #define ESRC_ACF 0x02
142 #define ESRC_VFF 0x03
143 #define ESRC_SET_TRUNC(n) ((n)<<9)
144 #define ESRC_SET_N(n) ((n)<<4)
145 #define ESRC_SMF 0x8000
146 #define ESRC_SET_VFI(n) ((n)<<10)
147 #define ESRC_SET_ACI(n) (n)
148 #define ESRC_SET_ADC_VOL(n) ((n)<<8)
149 #define ESRC_SET_DAC_VOLI(n) ((n)<<12)
150 #define ESRC_SET_DAC_VOLF(n) (n)
151 #define SRC_MAGIC ((1<15)|(1<<13)|(1<<11)|(1<<9))
152
153 #define EAP_SIC 0x20
154 #define EAP_P1_S_MB 0x00000001
155 #define EAP_P1_S_EB 0x00000002
156 #define EAP_P2_S_MB 0x00000004
157 #define EAP_P2_S_EB 0x00000008
158 #define EAP_R1_S_MB 0x00000010
159 #define EAP_R1_S_EB 0x00000020
160 #define EAP_P2_DAC_SEN 0x00000040
161 #define EAP_P1_SCT_RLD 0x00000080
162 #define EAP_P1_INTR_EN 0x00000100
163 #define EAP_P2_INTR_EN 0x00000200
164 #define EAP_R1_INTR_EN 0x00000400
165 #define EAP_P1_PAUSE 0x00000800
166 #define EAP_P2_PAUSE 0x00001000
167 #define EAP_P1_LOOP_SEL 0x00002000
168 #define EAP_P2_LOOP_SEL 0x00004000
169 #define EAP_R1_LOOP_SEL 0x00008000
170 #define EAP_SET_P2_ST_INC(i) ((i) << 16)
171 #define EAP_SET_P2_END_INC(i) ((i) << 19)
172 #define EAP_INC_BITS 0x003f0000
173
174 #define EAP_DAC1_CSR 0x24
175 #define EAP_DAC2_CSR 0x28
176 #define EAP_ADC_CSR 0x2c
177 #define EAP_GET_CURRSAMP(r) ((r) >> 16)
178
179 #define EAP_DAC_PAGE 0xc
180 #define EAP_ADC_PAGE 0xd
181 #define EAP_UART_PAGE1 0xe
182 #define EAP_UART_PAGE2 0xf
183
184 #define EAP_DAC1_ADDR 0x30
185 #define EAP_DAC1_SIZE 0x34
186 #define EAP_DAC2_ADDR 0x38
187 #define EAP_DAC2_SIZE 0x3c
188 #define EAP_ADC_ADDR 0x30
189 #define EAP_ADC_SIZE 0x34
190 #define EAP_SET_SIZE(c,s) (((c)<<16) | (s))
191
192 #define EAP_READ_TIMEOUT 5000
193 #define EAP_WRITE_TIMEOUT 5000
194
195
196 #define EAP_XTAL_FREQ 1411200
197
198
199 #define AK_MASTER_L 0x00
200 #define AK_MASTER_R 0x01
201 #define AK_VOICE_L 0x02
202 #define AK_VOICE_R 0x03
203 #define AK_FM_L 0x04
204 #define AK_FM_R 0x05
205 #define AK_CD_L 0x06
206 #define AK_CD_R 0x07
207 #define AK_LINE_L 0x08
208 #define AK_LINE_R 0x09
209 #define AK_AUX_L 0x0a
210 #define AK_AUX_R 0x0b
211 #define AK_MONO1 0x0c
212 #define AK_MONO2 0x0d
213 #define AK_MIC 0x0e
214 #define AK_MONO 0x0f
215 #define AK_OUT_MIXER1 0x10
216 #define AK_M_FM_L 0x40
217 #define AK_M_FM_R 0x20
218 #define AK_M_LINE_L 0x10
219 #define AK_M_LINE_R 0x08
220 #define AK_M_CD_L 0x04
221 #define AK_M_CD_R 0x02
222 #define AK_M_MIC 0x01
223 #define AK_OUT_MIXER2 0x11
224 #define AK_M_AUX_L 0x20
225 #define AK_M_AUX_R 0x10
226 #define AK_M_VOICE_L 0x08
227 #define AK_M_VOICE_R 0x04
228 #define AK_M_MONO2 0x02
229 #define AK_M_MONO1 0x01
230 #define AK_IN_MIXER1_L 0x12
231 #define AK_IN_MIXER1_R 0x13
232 #define AK_IN_MIXER2_L 0x14
233 #define AK_IN_MIXER2_R 0x15
234 #define AK_M_TMIC 0x80
235 #define AK_M_TMONO1 0x40
236 #define AK_M_TMONO2 0x20
237 #define AK_M2_AUX_L 0x10
238 #define AK_M2_AUX_R 0x08
239 #define AK_M_VOICE 0x04
240 #define AK_M2_MONO2 0x02
241 #define AK_M2_MONO1 0x01
242 #define AK_RESET 0x16
243 #define AK_PD 0x02
244 #define AK_NRST 0x01
245 #define AK_CS 0x17
246 #define AK_ADSEL 0x18
247 #define AK_MGAIN 0x19
248 #define AK_NPORTS 0x20
249
250
251 #define VOL_TO_ATT5(v) (0x1f - ((v) >> 3))
252 #define VOL_TO_GAIN5(v) VOL_TO_ATT5(v)
253 #define ATT5_TO_VOL(v) ((0x1f - (v)) << 3)
254 #define GAIN5_TO_VOL(v) ATT5_TO_VOL(v)
255 #define VOL_0DB 200
256
257
258 #define EAP_MASTER_VOL 0
259 #define EAP_VOICE_VOL 1
260 #define EAP_FM_VOL 2
261 #define EAP_VIDEO_VOL 2
262 #define EAP_CD_VOL 3
263 #define EAP_LINE_VOL 4
264 #define EAP_AUX_VOL 5
265 #define EAP_MIC_VOL 6
266 #define EAP_RECORD_SOURCE 7
267 #define EAP_OUTPUT_SELECT 8
268 #define EAP_MIC_PREAMP 9
269 #define EAP_OUTPUT_CLASS 10
270 #define EAP_RECORD_CLASS 11
271 #define EAP_INPUT_CLASS 12
272
273 #define MIDI_BUSY_WAIT 100
274 #define MIDI_BUSY_DELAY 100
275
276 #define EAP_EV1938_A 0x00
277 #define EAP_ES1371_A 0x02
278 #define EAP_CT5880_C 0x02
279 #define EAP_CT5880_D 0x03
280 #define EAP_ES1373_A 0x04
281 #define EAP_ES1373_B 0x06
282 #define EAP_CT5880_A 0x07
283 #define EAP_ES1373_8 0x08
284 #define EAP_ES1371_B 0x09