1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#ifndef __LINUX_MFD_WM8400_PRIV_H
22#define __LINUX_MFD_WM8400_PRIV_H
23
24#include <linux/mfd/wm8400.h>
25#include <linux/mutex.h>
26#include <linux/platform_device.h>
27
28#define WM8400_REGISTER_COUNT 0x55
29
30struct wm8400 {
31 struct device *dev;
32
33 int (*read_dev)(void *data, char reg, int count, u16 *dst);
34 int (*write_dev)(void *data, char reg, int count, const u16 *src);
35
36 struct mutex io_lock;
37 void *io_data;
38
39 u16 reg_cache[WM8400_REGISTER_COUNT];
40
41 struct platform_device regulators[6];
42};
43
44
45
46
47#define WM8400_RESET_ID 0x00
48#define WM8400_ID 0x01
49#define WM8400_POWER_MANAGEMENT_1 0x02
50#define WM8400_POWER_MANAGEMENT_2 0x03
51#define WM8400_POWER_MANAGEMENT_3 0x04
52#define WM8400_AUDIO_INTERFACE_1 0x05
53#define WM8400_AUDIO_INTERFACE_2 0x06
54#define WM8400_CLOCKING_1 0x07
55#define WM8400_CLOCKING_2 0x08
56#define WM8400_AUDIO_INTERFACE_3 0x09
57#define WM8400_AUDIO_INTERFACE_4 0x0A
58#define WM8400_DAC_CTRL 0x0B
59#define WM8400_LEFT_DAC_DIGITAL_VOLUME 0x0C
60#define WM8400_RIGHT_DAC_DIGITAL_VOLUME 0x0D
61#define WM8400_DIGITAL_SIDE_TONE 0x0E
62#define WM8400_ADC_CTRL 0x0F
63#define WM8400_LEFT_ADC_DIGITAL_VOLUME 0x10
64#define WM8400_RIGHT_ADC_DIGITAL_VOLUME 0x11
65#define WM8400_GPIO_CTRL_1 0x12
66#define WM8400_GPIO1_GPIO2 0x13
67#define WM8400_GPIO3_GPIO4 0x14
68#define WM8400_GPIO5_GPIO6 0x15
69#define WM8400_GPIOCTRL_2 0x16
70#define WM8400_GPIO_POL 0x17
71#define WM8400_LEFT_LINE_INPUT_1_2_VOLUME 0x18
72#define WM8400_LEFT_LINE_INPUT_3_4_VOLUME 0x19
73#define WM8400_RIGHT_LINE_INPUT_1_2_VOLUME 0x1A
74#define WM8400_RIGHT_LINE_INPUT_3_4_VOLUME 0x1B
75#define WM8400_LEFT_OUTPUT_VOLUME 0x1C
76#define WM8400_RIGHT_OUTPUT_VOLUME 0x1D
77#define WM8400_LINE_OUTPUTS_VOLUME 0x1E
78#define WM8400_OUT3_4_VOLUME 0x1F
79#define WM8400_LEFT_OPGA_VOLUME 0x20
80#define WM8400_RIGHT_OPGA_VOLUME 0x21
81#define WM8400_SPEAKER_VOLUME 0x22
82#define WM8400_CLASSD1 0x23
83#define WM8400_CLASSD3 0x25
84#define WM8400_INPUT_MIXER1 0x27
85#define WM8400_INPUT_MIXER2 0x28
86#define WM8400_INPUT_MIXER3 0x29
87#define WM8400_INPUT_MIXER4 0x2A
88#define WM8400_INPUT_MIXER5 0x2B
89#define WM8400_INPUT_MIXER6 0x2C
90#define WM8400_OUTPUT_MIXER1 0x2D
91#define WM8400_OUTPUT_MIXER2 0x2E
92#define WM8400_OUTPUT_MIXER3 0x2F
93#define WM8400_OUTPUT_MIXER4 0x30
94#define WM8400_OUTPUT_MIXER5 0x31
95#define WM8400_OUTPUT_MIXER6 0x32
96#define WM8400_OUT3_4_MIXER 0x33
97#define WM8400_LINE_MIXER1 0x34
98#define WM8400_LINE_MIXER2 0x35
99#define WM8400_SPEAKER_MIXER 0x36
100#define WM8400_ADDITIONAL_CONTROL 0x37
101#define WM8400_ANTIPOP1 0x38
102#define WM8400_ANTIPOP2 0x39
103#define WM8400_MICBIAS 0x3A
104#define WM8400_FLL_CONTROL_1 0x3C
105#define WM8400_FLL_CONTROL_2 0x3D
106#define WM8400_FLL_CONTROL_3 0x3E
107#define WM8400_FLL_CONTROL_4 0x3F
108#define WM8400_LDO1_CONTROL 0x41
109#define WM8400_LDO2_CONTROL 0x42
110#define WM8400_LDO3_CONTROL 0x43
111#define WM8400_LDO4_CONTROL 0x44
112#define WM8400_DCDC1_CONTROL_1 0x46
113#define WM8400_DCDC1_CONTROL_2 0x47
114#define WM8400_DCDC2_CONTROL_1 0x48
115#define WM8400_DCDC2_CONTROL_2 0x49
116#define WM8400_INTERFACE 0x4B
117#define WM8400_PM_GENERAL 0x4C
118#define WM8400_PM_SHUTDOWN_CONTROL 0x4E
119#define WM8400_INTERRUPT_STATUS_1 0x4F
120#define WM8400_INTERRUPT_STATUS_1_MASK 0x50
121#define WM8400_INTERRUPT_LEVELS 0x51
122#define WM8400_SHUTDOWN_REASON 0x52
123#define WM8400_LINE_CIRCUITS 0x54
124
125
126
127
128
129
130
131
132#define WM8400_SW_RESET_CHIP_ID_MASK 0xFFFF
133#define WM8400_SW_RESET_CHIP_ID_SHIFT 0
134#define WM8400_SW_RESET_CHIP_ID_WIDTH 16
135
136
137
138
139#define WM8400_CHIP_REV_MASK 0x7000
140#define WM8400_CHIP_REV_SHIFT 12
141#define WM8400_CHIP_REV_WIDTH 3
142
143
144
145
146#define WM8400_IRQ 0x1000
147#define WM8400_IRQ_MASK 0x1000
148#define WM8400_IRQ_SHIFT 12
149#define WM8400_IRQ_WIDTH 1
150#define WM8400_TEMPOK 0x0800
151#define WM8400_TEMPOK_MASK 0x0800
152#define WM8400_TEMPOK_SHIFT 11
153#define WM8400_TEMPOK_WIDTH 1
154#define WM8400_MIC1SHRT 0x0400
155#define WM8400_MIC1SHRT_MASK 0x0400
156#define WM8400_MIC1SHRT_SHIFT 10
157#define WM8400_MIC1SHRT_WIDTH 1
158#define WM8400_MIC1DET 0x0200
159#define WM8400_MIC1DET_MASK 0x0200
160#define WM8400_MIC1DET_SHIFT 9
161#define WM8400_MIC1DET_WIDTH 1
162#define WM8400_FLL_LCK 0x0100
163#define WM8400_FLL_LCK_MASK 0x0100
164#define WM8400_FLL_LCK_SHIFT 8
165#define WM8400_FLL_LCK_WIDTH 1
166#define WM8400_GPIO_STATUS_MASK 0x00FF
167#define WM8400_GPIO_STATUS_SHIFT 0
168#define WM8400_GPIO_STATUS_WIDTH 8
169
170
171
172
173#define WM8400_GPIO2_DEB_ENA 0x8000
174#define WM8400_GPIO2_DEB_ENA_MASK 0x8000
175#define WM8400_GPIO2_DEB_ENA_SHIFT 15
176#define WM8400_GPIO2_DEB_ENA_WIDTH 1
177#define WM8400_GPIO2_IRQ_ENA 0x4000
178#define WM8400_GPIO2_IRQ_ENA_MASK 0x4000
179#define WM8400_GPIO2_IRQ_ENA_SHIFT 14
180#define WM8400_GPIO2_IRQ_ENA_WIDTH 1
181#define WM8400_GPIO2_PU 0x2000
182#define WM8400_GPIO2_PU_MASK 0x2000
183#define WM8400_GPIO2_PU_SHIFT 13
184#define WM8400_GPIO2_PU_WIDTH 1
185#define WM8400_GPIO2_PD 0x1000
186#define WM8400_GPIO2_PD_MASK 0x1000
187#define WM8400_GPIO2_PD_SHIFT 12
188#define WM8400_GPIO2_PD_WIDTH 1
189#define WM8400_GPIO2_SEL_MASK 0x0F00
190#define WM8400_GPIO2_SEL_SHIFT 8
191#define WM8400_GPIO2_SEL_WIDTH 4
192#define WM8400_GPIO1_DEB_ENA 0x0080
193#define WM8400_GPIO1_DEB_ENA_MASK 0x0080
194#define WM8400_GPIO1_DEB_ENA_SHIFT 7
195#define WM8400_GPIO1_DEB_ENA_WIDTH 1
196#define WM8400_GPIO1_IRQ_ENA 0x0040
197#define WM8400_GPIO1_IRQ_ENA_MASK 0x0040
198#define WM8400_GPIO1_IRQ_ENA_SHIFT 6
199#define WM8400_GPIO1_IRQ_ENA_WIDTH 1
200#define WM8400_GPIO1_PU 0x0020
201#define WM8400_GPIO1_PU_MASK 0x0020
202#define WM8400_GPIO1_PU_SHIFT 5
203#define WM8400_GPIO1_PU_WIDTH 1
204#define WM8400_GPIO1_PD 0x0010
205#define WM8400_GPIO1_PD_MASK 0x0010
206#define WM8400_GPIO1_PD_SHIFT 4
207#define WM8400_GPIO1_PD_WIDTH 1
208#define WM8400_GPIO1_SEL_MASK 0x000F
209#define WM8400_GPIO1_SEL_SHIFT 0
210#define WM8400_GPIO1_SEL_WIDTH 4
211
212
213
214
215#define WM8400_GPIO4_DEB_ENA 0x8000
216#define WM8400_GPIO4_DEB_ENA_MASK 0x8000
217#define WM8400_GPIO4_DEB_ENA_SHIFT 15
218#define WM8400_GPIO4_DEB_ENA_WIDTH 1
219#define WM8400_GPIO4_IRQ_ENA 0x4000
220#define WM8400_GPIO4_IRQ_ENA_MASK 0x4000
221#define WM8400_GPIO4_IRQ_ENA_SHIFT 14
222#define WM8400_GPIO4_IRQ_ENA_WIDTH 1
223#define WM8400_GPIO4_PU 0x2000
224#define WM8400_GPIO4_PU_MASK 0x2000
225#define WM8400_GPIO4_PU_SHIFT 13
226#define WM8400_GPIO4_PU_WIDTH 1
227#define WM8400_GPIO4_PD 0x1000
228#define WM8400_GPIO4_PD_MASK 0x1000
229#define WM8400_GPIO4_PD_SHIFT 12
230#define WM8400_GPIO4_PD_WIDTH 1
231#define WM8400_GPIO4_SEL_MASK 0x0F00
232#define WM8400_GPIO4_SEL_SHIFT 8
233#define WM8400_GPIO4_SEL_WIDTH 4
234#define WM8400_GPIO3_DEB_ENA 0x0080
235#define WM8400_GPIO3_DEB_ENA_MASK 0x0080
236#define WM8400_GPIO3_DEB_ENA_SHIFT 7
237#define WM8400_GPIO3_DEB_ENA_WIDTH 1
238#define WM8400_GPIO3_IRQ_ENA 0x0040
239#define WM8400_GPIO3_IRQ_ENA_MASK 0x0040
240#define WM8400_GPIO3_IRQ_ENA_SHIFT 6
241#define WM8400_GPIO3_IRQ_ENA_WIDTH 1
242#define WM8400_GPIO3_PU 0x0020
243#define WM8400_GPIO3_PU_MASK 0x0020
244#define WM8400_GPIO3_PU_SHIFT 5
245#define WM8400_GPIO3_PU_WIDTH 1
246#define WM8400_GPIO3_PD 0x0010
247#define WM8400_GPIO3_PD_MASK 0x0010
248#define WM8400_GPIO3_PD_SHIFT 4
249#define WM8400_GPIO3_PD_WIDTH 1
250#define WM8400_GPIO3_SEL_MASK 0x000F
251#define WM8400_GPIO3_SEL_SHIFT 0
252#define WM8400_GPIO3_SEL_WIDTH 4
253
254
255
256
257#define WM8400_GPIO6_DEB_ENA 0x8000
258#define WM8400_GPIO6_DEB_ENA_MASK 0x8000
259#define WM8400_GPIO6_DEB_ENA_SHIFT 15
260#define WM8400_GPIO6_DEB_ENA_WIDTH 1
261#define WM8400_GPIO6_IRQ_ENA 0x4000
262#define WM8400_GPIO6_IRQ_ENA_MASK 0x4000
263#define WM8400_GPIO6_IRQ_ENA_SHIFT 14
264#define WM8400_GPIO6_IRQ_ENA_WIDTH 1
265#define WM8400_GPIO6_PU 0x2000
266#define WM8400_GPIO6_PU_MASK 0x2000
267#define WM8400_GPIO6_PU_SHIFT 13
268#define WM8400_GPIO6_PU_WIDTH 1
269#define WM8400_GPIO6_PD 0x1000
270#define WM8400_GPIO6_PD_MASK 0x1000
271#define WM8400_GPIO6_PD_SHIFT 12
272#define WM8400_GPIO6_PD_WIDTH 1
273#define WM8400_GPIO6_SEL_MASK 0x0F00
274#define WM8400_GPIO6_SEL_SHIFT 8
275#define WM8400_GPIO6_SEL_WIDTH 4
276#define WM8400_GPIO5_DEB_ENA 0x0080
277#define WM8400_GPIO5_DEB_ENA_MASK 0x0080
278#define WM8400_GPIO5_DEB_ENA_SHIFT 7
279#define WM8400_GPIO5_DEB_ENA_WIDTH 1
280#define WM8400_GPIO5_IRQ_ENA 0x0040
281#define WM8400_GPIO5_IRQ_ENA_MASK 0x0040
282#define WM8400_GPIO5_IRQ_ENA_SHIFT 6
283#define WM8400_GPIO5_IRQ_ENA_WIDTH 1
284#define WM8400_GPIO5_PU 0x0020
285#define WM8400_GPIO5_PU_MASK 0x0020
286#define WM8400_GPIO5_PU_SHIFT 5
287#define WM8400_GPIO5_PU_WIDTH 1
288#define WM8400_GPIO5_PD 0x0010
289#define WM8400_GPIO5_PD_MASK 0x0010
290#define WM8400_GPIO5_PD_SHIFT 4
291#define WM8400_GPIO5_PD_WIDTH 1
292#define WM8400_GPIO5_SEL_MASK 0x000F
293#define WM8400_GPIO5_SEL_SHIFT 0
294#define WM8400_GPIO5_SEL_WIDTH 4
295
296
297
298
299#define WM8400_TEMPOK_IRQ_ENA 0x0800
300#define WM8400_TEMPOK_IRQ_ENA_MASK 0x0800
301#define WM8400_TEMPOK_IRQ_ENA_SHIFT 11
302#define WM8400_TEMPOK_IRQ_ENA_WIDTH 1
303#define WM8400_MIC1SHRT_IRQ_ENA 0x0400
304#define WM8400_MIC1SHRT_IRQ_ENA_MASK 0x0400
305#define WM8400_MIC1SHRT_IRQ_ENA_SHIFT 10
306#define WM8400_MIC1SHRT_IRQ_ENA_WIDTH 1
307#define WM8400_MIC1DET_IRQ_ENA 0x0200
308#define WM8400_MIC1DET_IRQ_ENA_MASK 0x0200
309#define WM8400_MIC1DET_IRQ_ENA_SHIFT 9
310#define WM8400_MIC1DET_IRQ_ENA_WIDTH 1
311#define WM8400_FLL_LCK_IRQ_ENA 0x0100
312#define WM8400_FLL_LCK_IRQ_ENA_MASK 0x0100
313#define WM8400_FLL_LCK_IRQ_ENA_SHIFT 8
314#define WM8400_FLL_LCK_IRQ_ENA_WIDTH 1
315#define WM8400_GPI8_DEB_ENA 0x0080
316#define WM8400_GPI8_DEB_ENA_MASK 0x0080
317#define WM8400_GPI8_DEB_ENA_SHIFT 7
318#define WM8400_GPI8_DEB_ENA_WIDTH 1
319#define WM8400_GPI8_IRQ_ENA 0x0040
320#define WM8400_GPI8_IRQ_ENA_MASK 0x0040
321#define WM8400_GPI8_IRQ_ENA_SHIFT 6
322#define WM8400_GPI8_IRQ_ENA_WIDTH 1
323#define WM8400_GPI8_ENA 0x0010
324#define WM8400_GPI8_ENA_MASK 0x0010
325#define WM8400_GPI8_ENA_SHIFT 4
326#define WM8400_GPI8_ENA_WIDTH 1
327#define WM8400_GPI7_DEB_ENA 0x0008
328#define WM8400_GPI7_DEB_ENA_MASK 0x0008
329#define WM8400_GPI7_DEB_ENA_SHIFT 3
330#define WM8400_GPI7_DEB_ENA_WIDTH 1
331#define WM8400_GPI7_IRQ_ENA 0x0004
332#define WM8400_GPI7_IRQ_ENA_MASK 0x0004
333#define WM8400_GPI7_IRQ_ENA_SHIFT 2
334#define WM8400_GPI7_IRQ_ENA_WIDTH 1
335#define WM8400_GPI7_ENA 0x0001
336#define WM8400_GPI7_ENA_MASK 0x0001
337#define WM8400_GPI7_ENA_SHIFT 0
338#define WM8400_GPI7_ENA_WIDTH 1
339
340
341
342
343#define WM8400_IRQ_INV 0x1000
344#define WM8400_IRQ_INV_MASK 0x1000
345#define WM8400_IRQ_INV_SHIFT 12
346#define WM8400_IRQ_INV_WIDTH 1
347#define WM8400_TEMPOK_POL 0x0800
348#define WM8400_TEMPOK_POL_MASK 0x0800
349#define WM8400_TEMPOK_POL_SHIFT 11
350#define WM8400_TEMPOK_POL_WIDTH 1
351#define WM8400_MIC1SHRT_POL 0x0400
352#define WM8400_MIC1SHRT_POL_MASK 0x0400
353#define WM8400_MIC1SHRT_POL_SHIFT 10
354#define WM8400_MIC1SHRT_POL_WIDTH 1
355#define WM8400_MIC1DET_POL 0x0200
356#define WM8400_MIC1DET_POL_MASK 0x0200
357#define WM8400_MIC1DET_POL_SHIFT 9
358#define WM8400_MIC1DET_POL_WIDTH 1
359#define WM8400_FLL_LCK_POL 0x0100
360#define WM8400_FLL_LCK_POL_MASK 0x0100
361#define WM8400_FLL_LCK_POL_SHIFT 8
362#define WM8400_FLL_LCK_POL_WIDTH 1
363#define WM8400_GPIO_POL_MASK 0x00FF
364#define WM8400_GPIO_POL_SHIFT 0
365#define WM8400_GPIO_POL_WIDTH 8
366
367
368
369
370#define WM8400_LDO1_ENA 0x8000
371#define WM8400_LDO1_ENA_MASK 0x8000
372#define WM8400_LDO1_ENA_SHIFT 15
373#define WM8400_LDO1_ENA_WIDTH 1
374#define WM8400_LDO1_SWI 0x4000
375#define WM8400_LDO1_SWI_MASK 0x4000
376#define WM8400_LDO1_SWI_SHIFT 14
377#define WM8400_LDO1_SWI_WIDTH 1
378#define WM8400_LDO1_OPFLT 0x1000
379#define WM8400_LDO1_OPFLT_MASK 0x1000
380#define WM8400_LDO1_OPFLT_SHIFT 12
381#define WM8400_LDO1_OPFLT_WIDTH 1
382#define WM8400_LDO1_ERRACT 0x0800
383#define WM8400_LDO1_ERRACT_MASK 0x0800
384#define WM8400_LDO1_ERRACT_SHIFT 11
385#define WM8400_LDO1_ERRACT_WIDTH 1
386#define WM8400_LDO1_HIB_MODE 0x0400
387#define WM8400_LDO1_HIB_MODE_MASK 0x0400
388#define WM8400_LDO1_HIB_MODE_SHIFT 10
389#define WM8400_LDO1_HIB_MODE_WIDTH 1
390#define WM8400_LDO1_VIMG_MASK 0x03E0
391#define WM8400_LDO1_VIMG_SHIFT 5
392#define WM8400_LDO1_VIMG_WIDTH 5
393#define WM8400_LDO1_VSEL_MASK 0x001F
394#define WM8400_LDO1_VSEL_SHIFT 0
395#define WM8400_LDO1_VSEL_WIDTH 5
396
397
398
399
400#define WM8400_LDO2_ENA 0x8000
401#define WM8400_LDO2_ENA_MASK 0x8000
402#define WM8400_LDO2_ENA_SHIFT 15
403#define WM8400_LDO2_ENA_WIDTH 1
404#define WM8400_LDO2_SWI 0x4000
405#define WM8400_LDO2_SWI_MASK 0x4000
406#define WM8400_LDO2_SWI_SHIFT 14
407#define WM8400_LDO2_SWI_WIDTH 1
408#define WM8400_LDO2_OPFLT 0x1000
409#define WM8400_LDO2_OPFLT_MASK 0x1000
410#define WM8400_LDO2_OPFLT_SHIFT 12
411#define WM8400_LDO2_OPFLT_WIDTH 1
412#define WM8400_LDO2_ERRACT 0x0800
413#define WM8400_LDO2_ERRACT_MASK 0x0800
414#define WM8400_LDO2_ERRACT_SHIFT 11
415#define WM8400_LDO2_ERRACT_WIDTH 1
416#define WM8400_LDO2_HIB_MODE 0x0400
417#define WM8400_LDO2_HIB_MODE_MASK 0x0400
418#define WM8400_LDO2_HIB_MODE_SHIFT 10
419#define WM8400_LDO2_HIB_MODE_WIDTH 1
420#define WM8400_LDO2_VIMG_MASK 0x03E0
421#define WM8400_LDO2_VIMG_SHIFT 5
422#define WM8400_LDO2_VIMG_WIDTH 5
423#define WM8400_LDO2_VSEL_MASK 0x001F
424#define WM8400_LDO2_VSEL_SHIFT 0
425#define WM8400_LDO2_VSEL_WIDTH 5
426
427
428
429
430#define WM8400_LDO3_ENA 0x8000
431#define WM8400_LDO3_ENA_MASK 0x8000
432#define WM8400_LDO3_ENA_SHIFT 15
433#define WM8400_LDO3_ENA_WIDTH 1
434#define WM8400_LDO3_SWI 0x4000
435#define WM8400_LDO3_SWI_MASK 0x4000
436#define WM8400_LDO3_SWI_SHIFT 14
437#define WM8400_LDO3_SWI_WIDTH 1
438#define WM8400_LDO3_OPFLT 0x1000
439#define WM8400_LDO3_OPFLT_MASK 0x1000
440#define WM8400_LDO3_OPFLT_SHIFT 12
441#define WM8400_LDO3_OPFLT_WIDTH 1
442#define WM8400_LDO3_ERRACT 0x0800
443#define WM8400_LDO3_ERRACT_MASK 0x0800
444#define WM8400_LDO3_ERRACT_SHIFT 11
445#define WM8400_LDO3_ERRACT_WIDTH 1
446#define WM8400_LDO3_HIB_MODE 0x0400
447#define WM8400_LDO3_HIB_MODE_MASK 0x0400
448#define WM8400_LDO3_HIB_MODE_SHIFT 10
449#define WM8400_LDO3_HIB_MODE_WIDTH 1
450#define WM8400_LDO3_VIMG_MASK 0x03E0
451#define WM8400_LDO3_VIMG_SHIFT 5
452#define WM8400_LDO3_VIMG_WIDTH 5
453#define WM8400_LDO3_VSEL_MASK 0x001F
454#define WM8400_LDO3_VSEL_SHIFT 0
455#define WM8400_LDO3_VSEL_WIDTH 5
456
457
458
459
460#define WM8400_LDO4_ENA 0x8000
461#define WM8400_LDO4_ENA_MASK 0x8000
462#define WM8400_LDO4_ENA_SHIFT 15
463#define WM8400_LDO4_ENA_WIDTH 1
464#define WM8400_LDO4_SWI 0x4000
465#define WM8400_LDO4_SWI_MASK 0x4000
466#define WM8400_LDO4_SWI_SHIFT 14
467#define WM8400_LDO4_SWI_WIDTH 1
468#define WM8400_LDO4_OPFLT 0x1000
469#define WM8400_LDO4_OPFLT_MASK 0x1000
470#define WM8400_LDO4_OPFLT_SHIFT 12
471#define WM8400_LDO4_OPFLT_WIDTH 1
472#define WM8400_LDO4_ERRACT 0x0800
473#define WM8400_LDO4_ERRACT_MASK 0x0800
474#define WM8400_LDO4_ERRACT_SHIFT 11
475#define WM8400_LDO4_ERRACT_WIDTH 1
476#define WM8400_LDO4_HIB_MODE 0x0400
477#define WM8400_LDO4_HIB_MODE_MASK 0x0400
478#define WM8400_LDO4_HIB_MODE_SHIFT 10
479#define WM8400_LDO4_HIB_MODE_WIDTH 1
480#define WM8400_LDO4_VIMG_MASK 0x03E0
481#define WM8400_LDO4_VIMG_SHIFT 5
482#define WM8400_LDO4_VIMG_WIDTH 5
483#define WM8400_LDO4_VSEL_MASK 0x001F
484#define WM8400_LDO4_VSEL_SHIFT 0
485#define WM8400_LDO4_VSEL_WIDTH 5
486
487
488
489
490#define WM8400_DC1_ENA 0x8000
491#define WM8400_DC1_ENA_MASK 0x8000
492#define WM8400_DC1_ENA_SHIFT 15
493#define WM8400_DC1_ENA_WIDTH 1
494#define WM8400_DC1_ACTIVE 0x4000
495#define WM8400_DC1_ACTIVE_MASK 0x4000
496#define WM8400_DC1_ACTIVE_SHIFT 14
497#define WM8400_DC1_ACTIVE_WIDTH 1
498#define WM8400_DC1_SLEEP 0x2000
499#define WM8400_DC1_SLEEP_MASK 0x2000
500#define WM8400_DC1_SLEEP_SHIFT 13
501#define WM8400_DC1_SLEEP_WIDTH 1
502#define WM8400_DC1_OPFLT 0x1000
503#define WM8400_DC1_OPFLT_MASK 0x1000
504#define WM8400_DC1_OPFLT_SHIFT 12
505#define WM8400_DC1_OPFLT_WIDTH 1
506#define WM8400_DC1_ERRACT 0x0800
507#define WM8400_DC1_ERRACT_MASK 0x0800
508#define WM8400_DC1_ERRACT_SHIFT 11
509#define WM8400_DC1_ERRACT_WIDTH 1
510#define WM8400_DC1_HIB_MODE 0x0400
511#define WM8400_DC1_HIB_MODE_MASK 0x0400
512#define WM8400_DC1_HIB_MODE_SHIFT 10
513#define WM8400_DC1_HIB_MODE_WIDTH 1
514#define WM8400_DC1_SOFTST_MASK 0x0300
515#define WM8400_DC1_SOFTST_SHIFT 8
516#define WM8400_DC1_SOFTST_WIDTH 2
517#define WM8400_DC1_OV_PROT 0x0080
518#define WM8400_DC1_OV_PROT_MASK 0x0080
519#define WM8400_DC1_OV_PROT_SHIFT 7
520#define WM8400_DC1_OV_PROT_WIDTH 1
521#define WM8400_DC1_VSEL_MASK 0x007F
522#define WM8400_DC1_VSEL_SHIFT 0
523#define WM8400_DC1_VSEL_WIDTH 7
524
525
526
527
528#define WM8400_DC1_FRC_PWM 0x2000
529#define WM8400_DC1_FRC_PWM_MASK 0x2000
530#define WM8400_DC1_FRC_PWM_SHIFT 13
531#define WM8400_DC1_FRC_PWM_WIDTH 1
532#define WM8400_DC1_STBY_LIM_MASK 0x0300
533#define WM8400_DC1_STBY_LIM_SHIFT 8
534#define WM8400_DC1_STBY_LIM_WIDTH 2
535#define WM8400_DC1_ACT_LIM 0x0080
536#define WM8400_DC1_ACT_LIM_MASK 0x0080
537#define WM8400_DC1_ACT_LIM_SHIFT 7
538#define WM8400_DC1_ACT_LIM_WIDTH 1
539#define WM8400_DC1_VIMG_MASK 0x007F
540#define WM8400_DC1_VIMG_SHIFT 0
541#define WM8400_DC1_VIMG_WIDTH 7
542
543
544
545
546#define WM8400_DC2_ENA 0x8000
547#define WM8400_DC2_ENA_MASK 0x8000
548#define WM8400_DC2_ENA_SHIFT 15
549#define WM8400_DC2_ENA_WIDTH 1
550#define WM8400_DC2_ACTIVE 0x4000
551#define WM8400_DC2_ACTIVE_MASK 0x4000
552#define WM8400_DC2_ACTIVE_SHIFT 14
553#define WM8400_DC2_ACTIVE_WIDTH 1
554#define WM8400_DC2_SLEEP 0x2000
555#define WM8400_DC2_SLEEP_MASK 0x2000
556#define WM8400_DC2_SLEEP_SHIFT 13
557#define WM8400_DC2_SLEEP_WIDTH 1
558#define WM8400_DC2_OPFLT 0x1000
559#define WM8400_DC2_OPFLT_MASK 0x1000
560#define WM8400_DC2_OPFLT_SHIFT 12
561#define WM8400_DC2_OPFLT_WIDTH 1
562#define WM8400_DC2_ERRACT 0x0800
563#define WM8400_DC2_ERRACT_MASK 0x0800
564#define WM8400_DC2_ERRACT_SHIFT 11
565#define WM8400_DC2_ERRACT_WIDTH 1
566#define WM8400_DC2_HIB_MODE 0x0400
567#define WM8400_DC2_HIB_MODE_MASK 0x0400
568#define WM8400_DC2_HIB_MODE_SHIFT 10
569#define WM8400_DC2_HIB_MODE_WIDTH 1
570#define WM8400_DC2_SOFTST_MASK 0x0300
571#define WM8400_DC2_SOFTST_SHIFT 8
572#define WM8400_DC2_SOFTST_WIDTH 2
573#define WM8400_DC2_OV_PROT 0x0080
574#define WM8400_DC2_OV_PROT_MASK 0x0080
575#define WM8400_DC2_OV_PROT_SHIFT 7
576#define WM8400_DC2_OV_PROT_WIDTH 1
577#define WM8400_DC2_VSEL_MASK 0x007F
578#define WM8400_DC2_VSEL_SHIFT 0
579#define WM8400_DC2_VSEL_WIDTH 7
580
581
582
583
584#define WM8400_DC2_FRC_PWM 0x2000
585#define WM8400_DC2_FRC_PWM_MASK 0x2000
586#define WM8400_DC2_FRC_PWM_SHIFT 13
587#define WM8400_DC2_FRC_PWM_WIDTH 1
588#define WM8400_DC2_STBY_LIM_MASK 0x0300
589#define WM8400_DC2_STBY_LIM_SHIFT 8
590#define WM8400_DC2_STBY_LIM_WIDTH 2
591#define WM8400_DC2_ACT_LIM 0x0080
592#define WM8400_DC2_ACT_LIM_MASK 0x0080
593#define WM8400_DC2_ACT_LIM_SHIFT 7
594#define WM8400_DC2_ACT_LIM_WIDTH 1
595#define WM8400_DC2_VIMG_MASK 0x007F
596#define WM8400_DC2_VIMG_SHIFT 0
597#define WM8400_DC2_VIMG_WIDTH 7
598
599
600
601
602#define WM8400_AUTOINC 0x0008
603#define WM8400_AUTOINC_MASK 0x0008
604#define WM8400_AUTOINC_SHIFT 3
605#define WM8400_AUTOINC_WIDTH 1
606#define WM8400_ARA_ENA 0x0004
607#define WM8400_ARA_ENA_MASK 0x0004
608#define WM8400_ARA_ENA_SHIFT 2
609#define WM8400_ARA_ENA_WIDTH 1
610#define WM8400_SPI_CFG 0x0002
611#define WM8400_SPI_CFG_MASK 0x0002
612#define WM8400_SPI_CFG_SHIFT 1
613#define WM8400_SPI_CFG_WIDTH 1
614
615
616
617
618#define WM8400_CODEC_SOFTST 0x8000
619#define WM8400_CODEC_SOFTST_MASK 0x8000
620#define WM8400_CODEC_SOFTST_SHIFT 15
621#define WM8400_CODEC_SOFTST_WIDTH 1
622#define WM8400_CODEC_SOFTSD 0x4000
623#define WM8400_CODEC_SOFTSD_MASK 0x4000
624#define WM8400_CODEC_SOFTSD_SHIFT 14
625#define WM8400_CODEC_SOFTSD_WIDTH 1
626#define WM8400_CHIP_SOFTSD 0x2000
627#define WM8400_CHIP_SOFTSD_MASK 0x2000
628#define WM8400_CHIP_SOFTSD_SHIFT 13
629#define WM8400_CHIP_SOFTSD_WIDTH 1
630#define WM8400_DSLEEP1_POL 0x0008
631#define WM8400_DSLEEP1_POL_MASK 0x0008
632#define WM8400_DSLEEP1_POL_SHIFT 3
633#define WM8400_DSLEEP1_POL_WIDTH 1
634#define WM8400_DSLEEP2_POL 0x0004
635#define WM8400_DSLEEP2_POL_MASK 0x0004
636#define WM8400_DSLEEP2_POL_SHIFT 2
637#define WM8400_DSLEEP2_POL_WIDTH 1
638#define WM8400_PWR_STATE_MASK 0x0003
639#define WM8400_PWR_STATE_SHIFT 0
640#define WM8400_PWR_STATE_WIDTH 2
641
642
643
644
645#define WM8400_CHIP_GT150_ERRACT 0x0200
646#define WM8400_CHIP_GT150_ERRACT_MASK 0x0200
647#define WM8400_CHIP_GT150_ERRACT_SHIFT 9
648#define WM8400_CHIP_GT150_ERRACT_WIDTH 1
649#define WM8400_CHIP_GT115_ERRACT 0x0100
650#define WM8400_CHIP_GT115_ERRACT_MASK 0x0100
651#define WM8400_CHIP_GT115_ERRACT_SHIFT 8
652#define WM8400_CHIP_GT115_ERRACT_WIDTH 1
653#define WM8400_LINE_CMP_ERRACT 0x0080
654#define WM8400_LINE_CMP_ERRACT_MASK 0x0080
655#define WM8400_LINE_CMP_ERRACT_SHIFT 7
656#define WM8400_LINE_CMP_ERRACT_WIDTH 1
657#define WM8400_UVLO_ERRACT 0x0040
658#define WM8400_UVLO_ERRACT_MASK 0x0040
659#define WM8400_UVLO_ERRACT_SHIFT 6
660#define WM8400_UVLO_ERRACT_WIDTH 1
661
662
663
664
665#define WM8400_MICD_CINT 0x8000
666#define WM8400_MICD_CINT_MASK 0x8000
667#define WM8400_MICD_CINT_SHIFT 15
668#define WM8400_MICD_CINT_WIDTH 1
669#define WM8400_MICSCD_CINT 0x4000
670#define WM8400_MICSCD_CINT_MASK 0x4000
671#define WM8400_MICSCD_CINT_SHIFT 14
672#define WM8400_MICSCD_CINT_WIDTH 1
673#define WM8400_JDL_CINT 0x2000
674#define WM8400_JDL_CINT_MASK 0x2000
675#define WM8400_JDL_CINT_SHIFT 13
676#define WM8400_JDL_CINT_WIDTH 1
677#define WM8400_JDR_CINT 0x1000
678#define WM8400_JDR_CINT_MASK 0x1000
679#define WM8400_JDR_CINT_SHIFT 12
680#define WM8400_JDR_CINT_WIDTH 1
681#define WM8400_CODEC_SEQ_END_EINT 0x0800
682#define WM8400_CODEC_SEQ_END_EINT_MASK 0x0800
683#define WM8400_CODEC_SEQ_END_EINT_SHIFT 11
684#define WM8400_CODEC_SEQ_END_EINT_WIDTH 1
685#define WM8400_CDEL_TO_EINT 0x0400
686#define WM8400_CDEL_TO_EINT_MASK 0x0400
687#define WM8400_CDEL_TO_EINT_SHIFT 10
688#define WM8400_CDEL_TO_EINT_WIDTH 1
689#define WM8400_CHIP_GT150_EINT 0x0200
690#define WM8400_CHIP_GT150_EINT_MASK 0x0200
691#define WM8400_CHIP_GT150_EINT_SHIFT 9
692#define WM8400_CHIP_GT150_EINT_WIDTH 1
693#define WM8400_CHIP_GT115_EINT 0x0100
694#define WM8400_CHIP_GT115_EINT_MASK 0x0100
695#define WM8400_CHIP_GT115_EINT_SHIFT 8
696#define WM8400_CHIP_GT115_EINT_WIDTH 1
697#define WM8400_LINE_CMP_EINT 0x0080
698#define WM8400_LINE_CMP_EINT_MASK 0x0080
699#define WM8400_LINE_CMP_EINT_SHIFT 7
700#define WM8400_LINE_CMP_EINT_WIDTH 1
701#define WM8400_UVLO_EINT 0x0040
702#define WM8400_UVLO_EINT_MASK 0x0040
703#define WM8400_UVLO_EINT_SHIFT 6
704#define WM8400_UVLO_EINT_WIDTH 1
705#define WM8400_DC2_UV_EINT 0x0020
706#define WM8400_DC2_UV_EINT_MASK 0x0020
707#define WM8400_DC2_UV_EINT_SHIFT 5
708#define WM8400_DC2_UV_EINT_WIDTH 1
709#define WM8400_DC1_UV_EINT 0x0010
710#define WM8400_DC1_UV_EINT_MASK 0x0010
711#define WM8400_DC1_UV_EINT_SHIFT 4
712#define WM8400_DC1_UV_EINT_WIDTH 1
713#define WM8400_LDO4_UV_EINT 0x0008
714#define WM8400_LDO4_UV_EINT_MASK 0x0008
715#define WM8400_LDO4_UV_EINT_SHIFT 3
716#define WM8400_LDO4_UV_EINT_WIDTH 1
717#define WM8400_LDO3_UV_EINT 0x0004
718#define WM8400_LDO3_UV_EINT_MASK 0x0004
719#define WM8400_LDO3_UV_EINT_SHIFT 2
720#define WM8400_LDO3_UV_EINT_WIDTH 1
721#define WM8400_LDO2_UV_EINT 0x0002
722#define WM8400_LDO2_UV_EINT_MASK 0x0002
723#define WM8400_LDO2_UV_EINT_SHIFT 1
724#define WM8400_LDO2_UV_EINT_WIDTH 1
725#define WM8400_LDO1_UV_EINT 0x0001
726#define WM8400_LDO1_UV_EINT_MASK 0x0001
727#define WM8400_LDO1_UV_EINT_SHIFT 0
728#define WM8400_LDO1_UV_EINT_WIDTH 1
729
730
731
732
733#define WM8400_IM_MICD_CINT 0x8000
734#define WM8400_IM_MICD_CINT_MASK 0x8000
735#define WM8400_IM_MICD_CINT_SHIFT 15
736#define WM8400_IM_MICD_CINT_WIDTH 1
737#define WM8400_IM_MICSCD_CINT 0x4000
738#define WM8400_IM_MICSCD_CINT_MASK 0x4000
739#define WM8400_IM_MICSCD_CINT_SHIFT 14
740#define WM8400_IM_MICSCD_CINT_WIDTH 1
741#define WM8400_IM_JDL_CINT 0x2000
742#define WM8400_IM_JDL_CINT_MASK 0x2000
743#define WM8400_IM_JDL_CINT_SHIFT 13
744#define WM8400_IM_JDL_CINT_WIDTH 1
745#define WM8400_IM_JDR_CINT 0x1000
746#define WM8400_IM_JDR_CINT_MASK 0x1000
747#define WM8400_IM_JDR_CINT_SHIFT 12
748#define WM8400_IM_JDR_CINT_WIDTH 1
749#define WM8400_IM_CODEC_SEQ_END_EINT 0x0800
750#define WM8400_IM_CODEC_SEQ_END_EINT_MASK 0x0800
751#define WM8400_IM_CODEC_SEQ_END_EINT_SHIFT 11
752#define WM8400_IM_CODEC_SEQ_END_EINT_WIDTH 1
753#define WM8400_IM_CDEL_TO_EINT 0x0400
754#define WM8400_IM_CDEL_TO_EINT_MASK 0x0400
755#define WM8400_IM_CDEL_TO_EINT_SHIFT 10
756#define WM8400_IM_CDEL_TO_EINT_WIDTH 1
757#define WM8400_IM_CHIP_GT150_EINT 0x0200
758#define WM8400_IM_CHIP_GT150_EINT_MASK 0x0200
759#define WM8400_IM_CHIP_GT150_EINT_SHIFT 9
760#define WM8400_IM_CHIP_GT150_EINT_WIDTH 1
761#define WM8400_IM_CHIP_GT115_EINT 0x0100
762#define WM8400_IM_CHIP_GT115_EINT_MASK 0x0100
763#define WM8400_IM_CHIP_GT115_EINT_SHIFT 8
764#define WM8400_IM_CHIP_GT115_EINT_WIDTH 1
765#define WM8400_IM_LINE_CMP_EINT 0x0080
766#define WM8400_IM_LINE_CMP_EINT_MASK 0x0080
767#define WM8400_IM_LINE_CMP_EINT_SHIFT 7
768#define WM8400_IM_LINE_CMP_EINT_WIDTH 1
769#define WM8400_IM_UVLO_EINT 0x0040
770#define WM8400_IM_UVLO_EINT_MASK 0x0040
771#define WM8400_IM_UVLO_EINT_SHIFT 6
772#define WM8400_IM_UVLO_EINT_WIDTH 1
773#define WM8400_IM_DC2_UV_EINT 0x0020
774#define WM8400_IM_DC2_UV_EINT_MASK 0x0020
775#define WM8400_IM_DC2_UV_EINT_SHIFT 5
776#define WM8400_IM_DC2_UV_EINT_WIDTH 1
777#define WM8400_IM_DC1_UV_EINT 0x0010
778#define WM8400_IM_DC1_UV_EINT_MASK 0x0010
779#define WM8400_IM_DC1_UV_EINT_SHIFT 4
780#define WM8400_IM_DC1_UV_EINT_WIDTH 1
781#define WM8400_IM_LDO4_UV_EINT 0x0008
782#define WM8400_IM_LDO4_UV_EINT_MASK 0x0008
783#define WM8400_IM_LDO4_UV_EINT_SHIFT 3
784#define WM8400_IM_LDO4_UV_EINT_WIDTH 1
785#define WM8400_IM_LDO3_UV_EINT 0x0004
786#define WM8400_IM_LDO3_UV_EINT_MASK 0x0004
787#define WM8400_IM_LDO3_UV_EINT_SHIFT 2
788#define WM8400_IM_LDO3_UV_EINT_WIDTH 1
789#define WM8400_IM_LDO2_UV_EINT 0x0002
790#define WM8400_IM_LDO2_UV_EINT_MASK 0x0002
791#define WM8400_IM_LDO2_UV_EINT_SHIFT 1
792#define WM8400_IM_LDO2_UV_EINT_WIDTH 1
793#define WM8400_IM_LDO1_UV_EINT 0x0001
794#define WM8400_IM_LDO1_UV_EINT_MASK 0x0001
795#define WM8400_IM_LDO1_UV_EINT_SHIFT 0
796#define WM8400_IM_LDO1_UV_EINT_WIDTH 1
797
798
799
800
801#define WM8400_MICD_LVL 0x8000
802#define WM8400_MICD_LVL_MASK 0x8000
803#define WM8400_MICD_LVL_SHIFT 15
804#define WM8400_MICD_LVL_WIDTH 1
805#define WM8400_MICSCD_LVL 0x4000
806#define WM8400_MICSCD_LVL_MASK 0x4000
807#define WM8400_MICSCD_LVL_SHIFT 14
808#define WM8400_MICSCD_LVL_WIDTH 1
809#define WM8400_JDL_LVL 0x2000
810#define WM8400_JDL_LVL_MASK 0x2000
811#define WM8400_JDL_LVL_SHIFT 13
812#define WM8400_JDL_LVL_WIDTH 1
813#define WM8400_JDR_LVL 0x1000
814#define WM8400_JDR_LVL_MASK 0x1000
815#define WM8400_JDR_LVL_SHIFT 12
816#define WM8400_JDR_LVL_WIDTH 1
817#define WM8400_CODEC_SEQ_END_LVL 0x0800
818#define WM8400_CODEC_SEQ_END_LVL_MASK 0x0800
819#define WM8400_CODEC_SEQ_END_LVL_SHIFT 11
820#define WM8400_CODEC_SEQ_END_LVL_WIDTH 1
821#define WM8400_CDEL_TO_LVL 0x0400
822#define WM8400_CDEL_TO_LVL_MASK 0x0400
823#define WM8400_CDEL_TO_LVL_SHIFT 10
824#define WM8400_CDEL_TO_LVL_WIDTH 1
825#define WM8400_CHIP_GT150_LVL 0x0200
826#define WM8400_CHIP_GT150_LVL_MASK 0x0200
827#define WM8400_CHIP_GT150_LVL_SHIFT 9
828#define WM8400_CHIP_GT150_LVL_WIDTH 1
829#define WM8400_CHIP_GT115_LVL 0x0100
830#define WM8400_CHIP_GT115_LVL_MASK 0x0100
831#define WM8400_CHIP_GT115_LVL_SHIFT 8
832#define WM8400_CHIP_GT115_LVL_WIDTH 1
833#define WM8400_LINE_CMP_LVL 0x0080
834#define WM8400_LINE_CMP_LVL_MASK 0x0080
835#define WM8400_LINE_CMP_LVL_SHIFT 7
836#define WM8400_LINE_CMP_LVL_WIDTH 1
837#define WM8400_UVLO_LVL 0x0040
838#define WM8400_UVLO_LVL_MASK 0x0040
839#define WM8400_UVLO_LVL_SHIFT 6
840#define WM8400_UVLO_LVL_WIDTH 1
841#define WM8400_DC2_UV_LVL 0x0020
842#define WM8400_DC2_UV_LVL_MASK 0x0020
843#define WM8400_DC2_UV_LVL_SHIFT 5
844#define WM8400_DC2_UV_LVL_WIDTH 1
845#define WM8400_DC1_UV_LVL 0x0010
846#define WM8400_DC1_UV_LVL_MASK 0x0010
847#define WM8400_DC1_UV_LVL_SHIFT 4
848#define WM8400_DC1_UV_LVL_WIDTH 1
849#define WM8400_LDO4_UV_LVL 0x0008
850#define WM8400_LDO4_UV_LVL_MASK 0x0008
851#define WM8400_LDO4_UV_LVL_SHIFT 3
852#define WM8400_LDO4_UV_LVL_WIDTH 1
853#define WM8400_LDO3_UV_LVL 0x0004
854#define WM8400_LDO3_UV_LVL_MASK 0x0004
855#define WM8400_LDO3_UV_LVL_SHIFT 2
856#define WM8400_LDO3_UV_LVL_WIDTH 1
857#define WM8400_LDO2_UV_LVL 0x0002
858#define WM8400_LDO2_UV_LVL_MASK 0x0002
859#define WM8400_LDO2_UV_LVL_SHIFT 1
860#define WM8400_LDO2_UV_LVL_WIDTH 1
861#define WM8400_LDO1_UV_LVL 0x0001
862#define WM8400_LDO1_UV_LVL_MASK 0x0001
863#define WM8400_LDO1_UV_LVL_SHIFT 0
864#define WM8400_LDO1_UV_LVL_WIDTH 1
865
866
867
868
869#define WM8400_SDR_CHIP_SOFTSD 0x2000
870#define WM8400_SDR_CHIP_SOFTSD_MASK 0x2000
871#define WM8400_SDR_CHIP_SOFTSD_SHIFT 13
872#define WM8400_SDR_CHIP_SOFTSD_WIDTH 1
873#define WM8400_SDR_NPDN 0x0800
874#define WM8400_SDR_NPDN_MASK 0x0800
875#define WM8400_SDR_NPDN_SHIFT 11
876#define WM8400_SDR_NPDN_WIDTH 1
877#define WM8400_SDR_CHIP_GT150 0x0200
878#define WM8400_SDR_CHIP_GT150_MASK 0x0200
879#define WM8400_SDR_CHIP_GT150_SHIFT 9
880#define WM8400_SDR_CHIP_GT150_WIDTH 1
881#define WM8400_SDR_CHIP_GT115 0x0100
882#define WM8400_SDR_CHIP_GT115_MASK 0x0100
883#define WM8400_SDR_CHIP_GT115_SHIFT 8
884#define WM8400_SDR_CHIP_GT115_WIDTH 1
885#define WM8400_SDR_LINE_CMP 0x0080
886#define WM8400_SDR_LINE_CMP_MASK 0x0080
887#define WM8400_SDR_LINE_CMP_SHIFT 7
888#define WM8400_SDR_LINE_CMP_WIDTH 1
889#define WM8400_SDR_UVLO 0x0040
890#define WM8400_SDR_UVLO_MASK 0x0040
891#define WM8400_SDR_UVLO_SHIFT 6
892#define WM8400_SDR_UVLO_WIDTH 1
893#define WM8400_SDR_DC2_UV 0x0020
894#define WM8400_SDR_DC2_UV_MASK 0x0020
895#define WM8400_SDR_DC2_UV_SHIFT 5
896#define WM8400_SDR_DC2_UV_WIDTH 1
897#define WM8400_SDR_DC1_UV 0x0010
898#define WM8400_SDR_DC1_UV_MASK 0x0010
899#define WM8400_SDR_DC1_UV_SHIFT 4
900#define WM8400_SDR_DC1_UV_WIDTH 1
901#define WM8400_SDR_LDO4_UV 0x0008
902#define WM8400_SDR_LDO4_UV_MASK 0x0008
903#define WM8400_SDR_LDO4_UV_SHIFT 3
904#define WM8400_SDR_LDO4_UV_WIDTH 1
905#define WM8400_SDR_LDO3_UV 0x0004
906#define WM8400_SDR_LDO3_UV_MASK 0x0004
907#define WM8400_SDR_LDO3_UV_SHIFT 2
908#define WM8400_SDR_LDO3_UV_WIDTH 1
909#define WM8400_SDR_LDO2_UV 0x0002
910#define WM8400_SDR_LDO2_UV_MASK 0x0002
911#define WM8400_SDR_LDO2_UV_SHIFT 1
912#define WM8400_SDR_LDO2_UV_WIDTH 1
913#define WM8400_SDR_LDO1_UV 0x0001
914#define WM8400_SDR_LDO1_UV_MASK 0x0001
915#define WM8400_SDR_LDO1_UV_SHIFT 0
916#define WM8400_SDR_LDO1_UV_WIDTH 1
917
918
919
920
921#define WM8400_BG_LINE_COMP 0x8000
922#define WM8400_BG_LINE_COMP_MASK 0x8000
923#define WM8400_BG_LINE_COMP_SHIFT 15
924#define WM8400_BG_LINE_COMP_WIDTH 1
925#define WM8400_LINE_CMP_VTHI_MASK 0x00F0
926#define WM8400_LINE_CMP_VTHI_SHIFT 4
927#define WM8400_LINE_CMP_VTHI_WIDTH 4
928#define WM8400_LINE_CMP_VTHD_MASK 0x000F
929#define WM8400_LINE_CMP_VTHD_SHIFT 0
930#define WM8400_LINE_CMP_VTHD_WIDTH 4
931
932u16 wm8400_reg_read(struct wm8400 *wm8400, u8 reg);
933int wm8400_block_read(struct wm8400 *wm8400, u8 reg, int count, u16 *data);
934int wm8400_set_bits(struct wm8400 *wm8400, u8 reg, u16 mask, u16 val);
935
936#endif
937