1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef _WM8991_H
15#define _WM8991_H
16
17
18
19
20#define WM8991_RESET 0x00
21#define WM8991_POWER_MANAGEMENT_1 0x01
22#define WM8991_POWER_MANAGEMENT_2 0x02
23#define WM8991_POWER_MANAGEMENT_3 0x03
24#define WM8991_AUDIO_INTERFACE_1 0x04
25#define WM8991_AUDIO_INTERFACE_2 0x05
26#define WM8991_CLOCKING_1 0x06
27#define WM8991_CLOCKING_2 0x07
28#define WM8991_AUDIO_INTERFACE_3 0x08
29#define WM8991_AUDIO_INTERFACE_4 0x09
30#define WM8991_DAC_CTRL 0x0A
31#define WM8991_LEFT_DAC_DIGITAL_VOLUME 0x0B
32#define WM8991_RIGHT_DAC_DIGITAL_VOLUME 0x0C
33#define WM8991_DIGITAL_SIDE_TONE 0x0D
34#define WM8991_ADC_CTRL 0x0E
35#define WM8991_LEFT_ADC_DIGITAL_VOLUME 0x0F
36#define WM8991_RIGHT_ADC_DIGITAL_VOLUME 0x10
37#define WM8991_GPIO_CTRL_1 0x12
38#define WM8991_GPIO1_GPIO2 0x13
39#define WM8991_GPIO3_GPIO4 0x14
40#define WM8991_GPIO5_GPIO6 0x15
41#define WM8991_GPIOCTRL_2 0x16
42#define WM8991_GPIO_POL 0x17
43#define WM8991_LEFT_LINE_INPUT_1_2_VOLUME 0x18
44#define WM8991_LEFT_LINE_INPUT_3_4_VOLUME 0x19
45#define WM8991_RIGHT_LINE_INPUT_1_2_VOLUME 0x1A
46#define WM8991_RIGHT_LINE_INPUT_3_4_VOLUME 0x1B
47#define WM8991_LEFT_OUTPUT_VOLUME 0x1C
48#define WM8991_RIGHT_OUTPUT_VOLUME 0x1D
49#define WM8991_LINE_OUTPUTS_VOLUME 0x1E
50#define WM8991_OUT3_4_VOLUME 0x1F
51#define WM8991_LEFT_OPGA_VOLUME 0x20
52#define WM8991_RIGHT_OPGA_VOLUME 0x21
53#define WM8991_SPEAKER_VOLUME 0x22
54#define WM8991_CLASSD1 0x23
55#define WM8991_CLASSD3 0x25
56#define WM8991_INPUT_MIXER1 0x27
57#define WM8991_INPUT_MIXER2 0x28
58#define WM8991_INPUT_MIXER3 0x29
59#define WM8991_INPUT_MIXER4 0x2A
60#define WM8991_INPUT_MIXER5 0x2B
61#define WM8991_INPUT_MIXER6 0x2C
62#define WM8991_OUTPUT_MIXER1 0x2D
63#define WM8991_OUTPUT_MIXER2 0x2E
64#define WM8991_OUTPUT_MIXER3 0x2F
65#define WM8991_OUTPUT_MIXER4 0x30
66#define WM8991_OUTPUT_MIXER5 0x31
67#define WM8991_OUTPUT_MIXER6 0x32
68#define WM8991_OUT3_4_MIXER 0x33
69#define WM8991_LINE_MIXER1 0x34
70#define WM8991_LINE_MIXER2 0x35
71#define WM8991_SPEAKER_MIXER 0x36
72#define WM8991_ADDITIONAL_CONTROL 0x37
73#define WM8991_ANTIPOP1 0x38
74#define WM8991_ANTIPOP2 0x39
75#define WM8991_MICBIAS 0x3A
76#define WM8991_PLL1 0x3C
77#define WM8991_PLL2 0x3D
78#define WM8991_PLL3 0x3E
79
80#define WM8991_REGISTER_COUNT 60
81#define WM8991_MAX_REGISTER 0x3F
82
83
84
85
86
87
88
89
90#define WM8991_SW_RESET_CHIP_ID_MASK 0xFFFF
91
92
93
94
95#define WM8991_SPK_ENA 0x1000
96#define WM8991_SPK_ENA_BIT 12
97#define WM8991_OUT3_ENA 0x0800
98#define WM8991_OUT3_ENA_BIT 11
99#define WM8991_OUT4_ENA 0x0400
100#define WM8991_OUT4_ENA_BIT 10
101#define WM8991_LOUT_ENA 0x0200
102#define WM8991_LOUT_ENA_BIT 9
103#define WM8991_ROUT_ENA 0x0100
104#define WM8991_ROUT_ENA_BIT 8
105#define WM8991_MICBIAS_ENA 0x0010
106#define WM8991_MICBIAS_ENA_BIT 4
107#define WM8991_VMID_MODE_MASK 0x0006
108#define WM8991_VREF_ENA 0x0001
109#define WM8991_VREF_ENA_BIT 0
110
111
112
113
114#define WM8991_PLL_ENA 0x8000
115#define WM8991_PLL_ENA_BIT 15
116#define WM8991_TSHUT_ENA 0x4000
117#define WM8991_TSHUT_ENA_BIT 14
118#define WM8991_TSHUT_OPDIS 0x2000
119#define WM8991_TSHUT_OPDIS_BIT 13
120#define WM8991_OPCLK_ENA 0x0800
121#define WM8991_OPCLK_ENA_BIT 11
122#define WM8991_AINL_ENA 0x0200
123#define WM8991_AINL_ENA_BIT 9
124#define WM8991_AINR_ENA 0x0100
125#define WM8991_AINR_ENA_BIT 8
126#define WM8991_LIN34_ENA 0x0080
127#define WM8991_LIN34_ENA_BIT 7
128#define WM8991_LIN12_ENA 0x0040
129#define WM8991_LIN12_ENA_BIT 6
130#define WM8991_RIN34_ENA 0x0020
131#define WM8991_RIN34_ENA_BIT 5
132#define WM8991_RIN12_ENA 0x0010
133#define WM8991_RIN12_ENA_BIT 4
134#define WM8991_ADCL_ENA 0x0002
135#define WM8991_ADCL_ENA_BIT 1
136#define WM8991_ADCR_ENA 0x0001
137#define WM8991_ADCR_ENA_BIT 0
138
139
140
141
142#define WM8991_LON_ENA 0x2000
143#define WM8991_LON_ENA_BIT 13
144#define WM8991_LOP_ENA 0x1000
145#define WM8991_LOP_ENA_BIT 12
146#define WM8991_RON_ENA 0x0800
147#define WM8991_RON_ENA_BIT 11
148#define WM8991_ROP_ENA 0x0400
149#define WM8991_ROP_ENA_BIT 10
150#define WM8991_LOPGA_ENA 0x0080
151#define WM8991_LOPGA_ENA_BIT 7
152#define WM8991_ROPGA_ENA 0x0040
153#define WM8991_ROPGA_ENA_BIT 6
154#define WM8991_LOMIX_ENA 0x0020
155#define WM8991_LOMIX_ENA_BIT 5
156#define WM8991_ROMIX_ENA 0x0010
157#define WM8991_ROMIX_ENA_BIT 4
158#define WM8991_DACL_ENA 0x0002
159#define WM8991_DACL_ENA_BIT 1
160#define WM8991_DACR_ENA 0x0001
161#define WM8991_DACR_ENA_BIT 0
162
163
164
165
166#define WM8991_AIFADCL_SRC 0x8000
167#define WM8991_AIFADCR_SRC 0x4000
168#define WM8991_AIFADC_TDM 0x2000
169#define WM8991_AIFADC_TDM_CHAN 0x1000
170#define WM8991_AIF_BCLK_INV 0x0100
171#define WM8991_AIF_LRCLK_INV 0x0080
172#define WM8991_AIF_WL_MASK 0x0060
173#define WM8991_AIF_WL_16BITS (0 << 5)
174#define WM8991_AIF_WL_20BITS (1 << 5)
175#define WM8991_AIF_WL_24BITS (2 << 5)
176#define WM8991_AIF_WL_32BITS (3 << 5)
177#define WM8991_AIF_FMT_MASK 0x0018
178#define WM8991_AIF_TMF_RIGHTJ (0 << 3)
179#define WM8991_AIF_TMF_LEFTJ (1 << 3)
180#define WM8991_AIF_TMF_I2S (2 << 3)
181#define WM8991_AIF_TMF_DSP (3 << 3)
182
183
184
185
186#define WM8991_DACL_SRC 0x8000
187#define WM8991_DACR_SRC 0x4000
188#define WM8991_AIFDAC_TDM 0x2000
189#define WM8991_AIFDAC_TDM_CHAN 0x1000
190#define WM8991_DAC_BOOST_MASK 0x0C00
191#define WM8991_DAC_COMP 0x0010
192#define WM8991_DAC_COMPMODE 0x0008
193#define WM8991_ADC_COMP 0x0004
194#define WM8991_ADC_COMPMODE 0x0002
195#define WM8991_LOOPBACK 0x0001
196
197
198
199
200#define WM8991_TOCLK_RATE 0x8000
201#define WM8991_TOCLK_ENA 0x4000
202#define WM8991_OPCLKDIV_MASK 0x1E00
203#define WM8991_DCLKDIV_MASK 0x01C0
204#define WM8991_BCLK_DIV_MASK 0x001E
205#define WM8991_BCLK_DIV_1 (0x0 << 1)
206#define WM8991_BCLK_DIV_1_5 (0x1 << 1)
207#define WM8991_BCLK_DIV_2 (0x2 << 1)
208#define WM8991_BCLK_DIV_3 (0x3 << 1)
209#define WM8991_BCLK_DIV_4 (0x4 << 1)
210#define WM8991_BCLK_DIV_5_5 (0x5 << 1)
211#define WM8991_BCLK_DIV_6 (0x6 << 1)
212#define WM8991_BCLK_DIV_8 (0x7 << 1)
213#define WM8991_BCLK_DIV_11 (0x8 << 1)
214#define WM8991_BCLK_DIV_12 (0x9 << 1)
215#define WM8991_BCLK_DIV_16 (0xA << 1)
216#define WM8991_BCLK_DIV_22 (0xB << 1)
217#define WM8991_BCLK_DIV_24 (0xC << 1)
218#define WM8991_BCLK_DIV_32 (0xD << 1)
219#define WM8991_BCLK_DIV_44 (0xE << 1)
220#define WM8991_BCLK_DIV_48 (0xF << 1)
221
222
223
224
225#define WM8991_MCLK_SRC 0x8000
226#define WM8991_SYSCLK_SRC 0x4000
227#define WM8991_CLK_FORCE 0x2000
228#define WM8991_MCLK_DIV_MASK 0x1800
229#define WM8991_MCLK_DIV_1 (0 << 11)
230#define WM8991_MCLK_DIV_2 ( 2 << 11)
231#define WM8991_MCLK_INV 0x0400
232#define WM8991_ADC_CLKDIV_MASK 0x00E0
233#define WM8991_ADC_CLKDIV_1 (0 << 5)
234#define WM8991_ADC_CLKDIV_1_5 (1 << 5)
235#define WM8991_ADC_CLKDIV_2 (2 << 5)
236#define WM8991_ADC_CLKDIV_3 (3 << 5)
237#define WM8991_ADC_CLKDIV_4 (4 << 5)
238#define WM8991_ADC_CLKDIV_5_5 (5 << 5)
239#define WM8991_ADC_CLKDIV_6 (6 << 5)
240#define WM8991_DAC_CLKDIV_MASK 0x001C
241#define WM8991_DAC_CLKDIV_1 (0 << 2)
242#define WM8991_DAC_CLKDIV_1_5 (1 << 2)
243#define WM8991_DAC_CLKDIV_2 (2 << 2)
244#define WM8991_DAC_CLKDIV_3 (3 << 2)
245#define WM8991_DAC_CLKDIV_4 (4 << 2)
246#define WM8991_DAC_CLKDIV_5_5 (5 << 2)
247#define WM8991_DAC_CLKDIV_6 (6 << 2)
248
249
250
251
252#define WM8991_AIF_MSTR1 0x8000
253#define WM8991_AIF_MSTR2 0x4000
254#define WM8991_AIF_SEL 0x2000
255#define WM8991_ADCLRC_DIR 0x0800
256#define WM8991_ADCLRC_RATE_MASK 0x07FF
257
258
259
260
261#define WM8991_ALRCGPIO1 0x8000
262#define WM8991_ALRCBGPIO6 0x4000
263#define WM8991_AIF_TRIS 0x2000
264#define WM8991_DACLRC_DIR 0x0800
265#define WM8991_DACLRC_RATE_MASK 0x07FF
266
267
268
269
270#define WM8991_AIF_LRCLKRATE 0x0400
271#define WM8991_DAC_MONO 0x0200
272#define WM8991_DAC_SB_FILT 0x0100
273#define WM8991_DAC_MUTERATE 0x0080
274#define WM8991_DAC_MUTEMODE 0x0040
275#define WM8991_DEEMP_MASK 0x0030
276#define WM8991_DAC_MUTE 0x0004
277#define WM8991_DACL_DATINV 0x0002
278#define WM8991_DACR_DATINV 0x0001
279
280
281
282
283#define WM8991_DAC_VU 0x0100
284#define WM8991_DACL_VOL_MASK 0x00FF
285#define WM8991_DACL_VOL_SHIFT 0
286
287
288
289#define WM8991_DAC_VU 0x0100
290#define WM8991_DACR_VOL_MASK 0x00FF
291#define WM8991_DACR_VOL_SHIFT 0
292
293
294
295#define WM8991_ADCL_DAC_SVOL_MASK 0x0F
296#define WM8991_ADCL_DAC_SVOL_SHIFT 9
297#define WM8991_ADCR_DAC_SVOL_MASK 0x0F
298#define WM8991_ADCR_DAC_SVOL_SHIFT 5
299#define WM8991_ADC_TO_DACL_MASK 0x03
300#define WM8991_ADC_TO_DACL_SHIFT 2
301#define WM8991_ADC_TO_DACR_MASK 0x03
302#define WM8991_ADC_TO_DACR_SHIFT 0
303
304
305
306
307#define WM8991_ADC_HPF_ENA 0x0100
308#define WM8991_ADC_HPF_ENA_BIT 8
309#define WM8991_ADC_HPF_CUT_MASK 0x03
310#define WM8991_ADC_HPF_CUT_SHIFT 5
311#define WM8991_ADCL_DATINV 0x0002
312#define WM8991_ADCL_DATINV_BIT 1
313#define WM8991_ADCR_DATINV 0x0001
314#define WM8991_ADCR_DATINV_BIT 0
315
316
317
318
319#define WM8991_ADC_VU 0x0100
320#define WM8991_ADCL_VOL_MASK 0x00FF
321#define WM8991_ADCL_VOL_SHIFT 0
322
323
324
325
326#define WM8991_ADC_VU 0x0100
327#define WM8991_ADCR_VOL_MASK 0x00FF
328#define WM8991_ADCR_VOL_SHIFT 0
329
330
331
332
333#define WM8991_IRQ 0x1000
334#define WM8991_TEMPOK 0x0800
335#define WM8991_MICSHRT 0x0400
336#define WM8991_MICDET 0x0200
337#define WM8991_PLL_LCK 0x0100
338#define WM8991_GPI8_STATUS 0x0080
339#define WM8991_GPI7_STATUS 0x0040
340#define WM8991_GPIO6_STATUS 0x0020
341#define WM8991_GPIO5_STATUS 0x0010
342#define WM8991_GPIO4_STATUS 0x0008
343#define WM8991_GPIO3_STATUS 0x0004
344#define WM8991_GPIO2_STATUS 0x0002
345#define WM8991_GPIO1_STATUS 0x0001
346
347
348
349
350#define WM8991_GPIO2_DEB_ENA 0x8000
351#define WM8991_GPIO2_IRQ_ENA 0x4000
352#define WM8991_GPIO2_PU 0x2000
353#define WM8991_GPIO2_PD 0x1000
354#define WM8991_GPIO2_SEL_MASK 0x0F00
355#define WM8991_GPIO1_DEB_ENA 0x0080
356#define WM8991_GPIO1_IRQ_ENA 0x0040
357#define WM8991_GPIO1_PU 0x0020
358#define WM8991_GPIO1_PD 0x0010
359#define WM8991_GPIO1_SEL_MASK 0x000F
360
361
362
363
364#define WM8991_GPIO4_DEB_ENA 0x8000
365#define WM8991_GPIO4_IRQ_ENA 0x4000
366#define WM8991_GPIO4_PU 0x2000
367#define WM8991_GPIO4_PD 0x1000
368#define WM8991_GPIO4_SEL_MASK 0x0F00
369#define WM8991_GPIO3_DEB_ENA 0x0080
370#define WM8991_GPIO3_IRQ_ENA 0x0040
371#define WM8991_GPIO3_PU 0x0020
372#define WM8991_GPIO3_PD 0x0010
373#define WM8991_GPIO3_SEL_MASK 0x000F
374
375
376
377
378#define WM8991_GPIO6_DEB_ENA 0x8000
379#define WM8991_GPIO6_IRQ_ENA 0x4000
380#define WM8991_GPIO6_PU 0x2000
381#define WM8991_GPIO6_PD 0x1000
382#define WM8991_GPIO6_SEL_MASK 0x0F00
383#define WM8991_GPIO5_DEB_ENA 0x0080
384#define WM8991_GPIO5_IRQ_ENA 0x0040
385#define WM8991_GPIO5_PU 0x0020
386#define WM8991_GPIO5_PD 0x0010
387#define WM8991_GPIO5_SEL_MASK 0x000F
388
389
390
391
392#define WM8991_RD_3W_ENA 0x8000
393#define WM8991_MODE_3W4W 0x4000
394#define WM8991_TEMPOK_IRQ_ENA 0x0800
395#define WM8991_MICSHRT_IRQ_ENA 0x0400
396#define WM8991_MICDET_IRQ_ENA 0x0200
397#define WM8991_PLL_LCK_IRQ_ENA 0x0100
398#define WM8991_GPI8_DEB_ENA 0x0080
399#define WM8991_GPI8_IRQ_ENA 0x0040
400#define WM8991_GPI8_ENA 0x0010
401#define WM8991_GPI7_DEB_ENA 0x0008
402#define WM8991_GPI7_IRQ_ENA 0x0004
403#define WM8991_GPI7_ENA 0x0001
404
405
406
407
408#define WM8991_IRQ_INV 0x1000
409#define WM8991_TEMPOK_POL 0x0800
410#define WM8991_MICSHRT_POL 0x0400
411#define WM8991_MICDET_POL 0x0200
412#define WM8991_PLL_LCK_POL 0x0100
413#define WM8991_GPI8_POL 0x0080
414#define WM8991_GPI7_POL 0x0040
415#define WM8991_GPIO6_POL 0x0020
416#define WM8991_GPIO5_POL 0x0010
417#define WM8991_GPIO4_POL 0x0008
418#define WM8991_GPIO3_POL 0x0004
419#define WM8991_GPIO2_POL 0x0002
420#define WM8991_GPIO1_POL 0x0001
421
422
423
424
425#define WM8991_IPVU 0x0100
426#define WM8991_LI12MUTE 0x0080
427#define WM8991_LI12MUTE_BIT 7
428#define WM8991_LI12ZC 0x0040
429#define WM8991_LI12ZC_BIT 6
430#define WM8991_LIN12VOL_MASK 0x001F
431#define WM8991_LIN12VOL_SHIFT 0
432
433
434
435#define WM8991_IPVU 0x0100
436#define WM8991_LI34MUTE 0x0080
437#define WM8991_LI34MUTE_BIT 7
438#define WM8991_LI34ZC 0x0040
439#define WM8991_LI34ZC_BIT 6
440#define WM8991_LIN34VOL_MASK 0x001F
441#define WM8991_LIN34VOL_SHIFT 0
442
443
444
445
446#define WM8991_IPVU 0x0100
447#define WM8991_RI12MUTE 0x0080
448#define WM8991_RI12MUTE_BIT 7
449#define WM8991_RI12ZC 0x0040
450#define WM8991_RI12ZC_BIT 6
451#define WM8991_RIN12VOL_MASK 0x001F
452#define WM8991_RIN12VOL_SHIFT 0
453
454
455
456
457#define WM8991_IPVU 0x0100
458#define WM8991_RI34MUTE 0x0080
459#define WM8991_RI34MUTE_BIT 7
460#define WM8991_RI34ZC 0x0040
461#define WM8991_RI34ZC_BIT 6
462#define WM8991_RIN34VOL_MASK 0x001F
463#define WM8991_RIN34VOL_SHIFT 0
464
465
466
467
468#define WM8991_OPVU 0x0100
469#define WM8991_LOZC 0x0080
470#define WM8991_LOZC_BIT 7
471#define WM8991_LOUTVOL_MASK 0x007F
472#define WM8991_LOUTVOL_SHIFT 0
473
474
475
476#define WM8991_OPVU 0x0100
477#define WM8991_ROZC 0x0080
478#define WM8991_ROZC_BIT 7
479#define WM8991_ROUTVOL_MASK 0x007F
480#define WM8991_ROUTVOL_SHIFT 0
481
482
483
484#define WM8991_LONMUTE 0x0040
485#define WM8991_LONMUTE_BIT 6
486#define WM8991_LOPMUTE 0x0020
487#define WM8991_LOPMUTE_BIT 5
488#define WM8991_LOATTN 0x0010
489#define WM8991_LOATTN_BIT 4
490#define WM8991_RONMUTE 0x0004
491#define WM8991_RONMUTE_BIT 2
492#define WM8991_ROPMUTE 0x0002
493#define WM8991_ROPMUTE_BIT 1
494#define WM8991_ROATTN 0x0001
495#define WM8991_ROATTN_BIT 0
496
497
498
499
500#define WM8991_OUT3MUTE 0x0020
501#define WM8991_OUT3MUTE_BIT 5
502#define WM8991_OUT3ATTN 0x0010
503#define WM8991_OUT3ATTN_BIT 4
504#define WM8991_OUT4MUTE 0x0002
505#define WM8991_OUT4MUTE_BIT 1
506#define WM8991_OUT4ATTN 0x0001
507#define WM8991_OUT4ATTN_BIT 0
508
509
510
511
512#define WM8991_OPVU 0x0100
513#define WM8991_LOPGAZC 0x0080
514#define WM8991_LOPGAZC_BIT 7
515#define WM8991_LOPGAVOL_MASK 0x007F
516#define WM8991_LOPGAVOL_SHIFT 0
517
518
519
520
521#define WM8991_OPVU 0x0100
522#define WM8991_ROPGAZC 0x0080
523#define WM8991_ROPGAZC_BIT 7
524#define WM8991_ROPGAVOL_MASK 0x007F
525#define WM8991_ROPGAVOL_SHIFT 0
526
527
528
529#define WM8991_SPKVOL_MASK 0x0003
530#define WM8991_SPKVOL_SHIFT 0
531
532
533
534
535#define WM8991_CDMODE 0x0100
536#define WM8991_CDMODE_BIT 8
537
538
539
540
541#define WM8991_DCGAIN_MASK 0x0007
542#define WM8991_DCGAIN_SHIFT 3
543#define WM8991_ACGAIN_MASK 0x0007
544#define WM8991_ACGAIN_SHIFT 0
545
546
547
548#define WM8991_AINLMODE_MASK 0x000C
549#define WM8991_AINLMODE_SHIFT 2
550#define WM8991_AINRMODE_MASK 0x0003
551#define WM8991_AINRMODE_SHIFT 0
552
553
554
555
556#define WM8991_LMP4 0x0080
557#define WM8991_LMP4_BIT 7
558#define WM8991_LMN3 0x0040
559#define WM8991_LMN3_BIT 6
560#define WM8991_LMP2 0x0020
561#define WM8991_LMP2_BIT 5
562#define WM8991_LMN1 0x0010
563#define WM8991_LMN1_BIT 4
564#define WM8991_RMP4 0x0008
565#define WM8991_RMP4_BIT 3
566#define WM8991_RMN3 0x0004
567#define WM8991_RMN3_BIT 2
568#define WM8991_RMP2 0x0002
569#define WM8991_RMP2_BIT 1
570#define WM8991_RMN1 0x0001
571#define WM8991_RMN1_BIT 0
572
573
574
575
576#define WM8991_L34MNB 0x0100
577#define WM8991_L34MNB_BIT 8
578#define WM8991_L34MNBST 0x0080
579#define WM8991_L34MNBST_BIT 7
580#define WM8991_L12MNB 0x0020
581#define WM8991_L12MNB_BIT 5
582#define WM8991_L12MNBST 0x0010
583#define WM8991_L12MNBST_BIT 4
584#define WM8991_LDBVOL_MASK 0x0007
585#define WM8991_LDBVOL_SHIFT 0
586
587
588
589
590#define WM8991_R34MNB 0x0100
591#define WM8991_R34MNB_BIT 8
592#define WM8991_R34MNBST 0x0080
593#define WM8991_R34MNBST_BIT 7
594#define WM8991_R12MNB 0x0020
595#define WM8991_R12MNB_BIT 5
596#define WM8991_R12MNBST 0x0010
597#define WM8991_R12MNBST_BIT 4
598#define WM8991_RDBVOL_MASK 0x0007
599#define WM8991_RDBVOL_SHIFT 0
600
601
602
603
604#define WM8991_LI2BVOL_MASK 0x07
605#define WM8991_LI2BVOL_SHIFT 6
606#define WM8991_LR4BVOL_MASK 0x07
607#define WM8991_LR4BVOL_SHIFT 3
608#define WM8991_LL4BVOL_MASK 0x07
609#define WM8991_LL4BVOL_SHIFT 0
610
611
612
613
614#define WM8991_RI2BVOL_MASK 0x07
615#define WM8991_RI2BVOL_SHIFT 6
616#define WM8991_RL4BVOL_MASK 0x07
617#define WM8991_RL4BVOL_SHIFT 3
618#define WM8991_RR4BVOL_MASK 0x07
619#define WM8991_RR4BVOL_SHIFT 0
620
621
622
623
624#define WM8991_LRBLO 0x0080
625#define WM8991_LRBLO_BIT 7
626#define WM8991_LLBLO 0x0040
627#define WM8991_LLBLO_BIT 6
628#define WM8991_LRI3LO 0x0020
629#define WM8991_LRI3LO_BIT 5
630#define WM8991_LLI3LO 0x0010
631#define WM8991_LLI3LO_BIT 4
632#define WM8991_LR12LO 0x0008
633#define WM8991_LR12LO_BIT 3
634#define WM8991_LL12LO 0x0004
635#define WM8991_LL12LO_BIT 2
636#define WM8991_LDLO 0x0001
637#define WM8991_LDLO_BIT 0
638
639
640
641
642#define WM8991_RLBRO 0x0080
643#define WM8991_RLBRO_BIT 7
644#define WM8991_RRBRO 0x0040
645#define WM8991_RRBRO_BIT 6
646#define WM8991_RLI3RO 0x0020
647#define WM8991_RLI3RO_BIT 5
648#define WM8991_RRI3RO 0x0010
649#define WM8991_RRI3RO_BIT 4
650#define WM8991_RL12RO 0x0008
651#define WM8991_RL12RO_BIT 3
652#define WM8991_RR12RO 0x0004
653#define WM8991_RR12RO_BIT 2
654#define WM8991_RDRO 0x0001
655#define WM8991_RDRO_BIT 0
656
657
658
659
660#define WM8991_LLI3LOVOL_MASK 0x07
661#define WM8991_LLI3LOVOL_SHIFT 6
662#define WM8991_LR12LOVOL_MASK 0x07
663#define WM8991_LR12LOVOL_SHIFT 3
664#define WM8991_LL12LOVOL_MASK 0x07
665#define WM8991_LL12LOVOL_SHIFT 0
666
667
668
669
670#define WM8991_RRI3ROVOL_MASK 0x07
671#define WM8991_RRI3ROVOL_SHIFT 6
672#define WM8991_RL12ROVOL_MASK 0x07
673#define WM8991_RL12ROVOL_SHIFT 3
674#define WM8991_RR12ROVOL_MASK 0x07
675#define WM8991_RR12ROVOL_SHIFT 0
676
677
678
679
680#define WM8991_LRI3LOVOL_MASK 0x07
681#define WM8991_LRI3LOVOL_SHIFT 6
682#define WM8991_LRBLOVOL_MASK 0x07
683#define WM8991_LRBLOVOL_SHIFT 3
684#define WM8991_LLBLOVOL_MASK 0x07
685#define WM8991_LLBLOVOL_SHIFT 0
686
687
688
689
690#define WM8991_RLI3ROVOL_MASK 0x07
691#define WM8991_RLI3ROVOL_SHIFT 6
692#define WM8991_RLBROVOL_MASK 0x07
693#define WM8991_RLBROVOL_SHIFT 3
694#define WM8991_RRBROVOL_MASK 0x07
695#define WM8991_RRBROVOL_SHIFT 0
696
697
698
699
700#define WM8991_VSEL_MASK 0x0180
701#define WM8991_LI4O3 0x0020
702#define WM8991_LI4O3_BIT 5
703#define WM8991_LPGAO3 0x0010
704#define WM8991_LPGAO3_BIT 4
705#define WM8991_RI4O4 0x0002
706#define WM8991_RI4O4_BIT 1
707#define WM8991_RPGAO4 0x0001
708#define WM8991_RPGAO4_BIT 0
709
710
711
712#define WM8991_LLOPGALON 0x0040
713#define WM8991_LLOPGALON_BIT 6
714#define WM8991_LROPGALON 0x0020
715#define WM8991_LROPGALON_BIT 5
716#define WM8991_LOPLON 0x0010
717#define WM8991_LOPLON_BIT 4
718#define WM8991_LR12LOP 0x0004
719#define WM8991_LR12LOP_BIT 2
720#define WM8991_LL12LOP 0x0002
721#define WM8991_LL12LOP_BIT 1
722#define WM8991_LLOPGALOP 0x0001
723#define WM8991_LLOPGALOP_BIT 0
724
725
726
727#define WM8991_RROPGARON 0x0040
728#define WM8991_RROPGARON_BIT 6
729#define WM8991_RLOPGARON 0x0020
730#define WM8991_RLOPGARON_BIT 5
731#define WM8991_ROPRON 0x0010
732#define WM8991_ROPRON_BIT 4
733#define WM8991_RL12ROP 0x0004
734#define WM8991_RL12ROP_BIT 2
735#define WM8991_RR12ROP 0x0002
736#define WM8991_RR12ROP_BIT 1
737#define WM8991_RROPGAROP 0x0001
738#define WM8991_RROPGAROP_BIT 0
739
740
741
742
743#define WM8991_LB2SPK 0x0080
744#define WM8991_LB2SPK_BIT 7
745#define WM8991_RB2SPK 0x0040
746#define WM8991_RB2SPK_BIT 6
747#define WM8991_LI2SPK 0x0020
748#define WM8991_LI2SPK_BIT 5
749#define WM8991_RI2SPK 0x0010
750#define WM8991_RI2SPK_BIT 4
751#define WM8991_LOPGASPK 0x0008
752#define WM8991_LOPGASPK_BIT 3
753#define WM8991_ROPGASPK 0x0004
754#define WM8991_ROPGASPK_BIT 2
755#define WM8991_LDSPK 0x0002
756#define WM8991_LDSPK_BIT 1
757#define WM8991_RDSPK 0x0001
758#define WM8991_RDSPK_BIT 0
759
760
761
762
763#define WM8991_VROI 0x0001
764
765
766
767
768#define WM8991_DIS_LLINE 0x0020
769#define WM8991_DIS_RLINE 0x0010
770#define WM8991_DIS_OUT3 0x0008
771#define WM8991_DIS_OUT4 0x0004
772#define WM8991_DIS_LOUT 0x0002
773#define WM8991_DIS_ROUT 0x0001
774
775
776
777
778#define WM8991_SOFTST 0x0040
779#define WM8991_BUFIOEN 0x0008
780#define WM8991_BUFDCOPEN 0x0004
781#define WM8991_POBCTRL 0x0002
782#define WM8991_VMIDTOG 0x0001
783
784
785
786
787#define WM8991_MCDSCTH_MASK 0x00C0
788#define WM8991_MCDTHR_MASK 0x0038
789#define WM8991_MCD 0x0004
790#define WM8991_MBSEL 0x0001
791
792
793
794
795#define WM8991_SDM 0x0080
796#define WM8991_PRESCALE 0x0040
797#define WM8991_PLLN_MASK 0x000F
798
799
800
801
802#define WM8991_PLLK1_MASK 0x00FF
803
804
805
806
807#define WM8991_PLLK2_MASK 0x00FF
808
809#define WM8991_MCLK_DIV 0
810#define WM8991_DACCLK_DIV 1
811#define WM8991_ADCCLK_DIV 2
812#define WM8991_BCLK_DIV 3
813
814#define SOC_WM899X_OUTPGA_SINGLE_R_TLV(xname, reg, shift, max, invert,\
815 tlv_array) \
816 SOC_SINGLE_EXT_TLV(xname, reg, shift, max, invert, \
817 snd_soc_get_volsw, wm899x_outpga_put_volsw_vu, tlv_array)
818
819#endif
820