xref: /openbmc/linux/drivers/mfd/wm8997-tables.c (revision 56b8cea6)
1d2912cb1SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2dc7d4863SCharles Keepax /*
3dc7d4863SCharles Keepax  * wm8997-tables.c  --  WM8997 data tables
4dc7d4863SCharles Keepax  *
5dc7d4863SCharles Keepax  * Copyright 2012 Wolfson Microelectronics plc
6dc7d4863SCharles Keepax  *
7dc7d4863SCharles Keepax  * Author: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
8dc7d4863SCharles Keepax  */
9dc7d4863SCharles Keepax 
10dc7d4863SCharles Keepax #include <linux/module.h>
11dc7d4863SCharles Keepax 
12dc7d4863SCharles Keepax #include <linux/mfd/arizona/core.h>
13dc7d4863SCharles Keepax #include <linux/mfd/arizona/registers.h>
14dc7d4863SCharles Keepax 
15dc7d4863SCharles Keepax #include "arizona.h"
16dc7d4863SCharles Keepax 
178019ff6cSNariman Poushin static const struct reg_sequence wm8997_reva_patch[] = {
18dc7d4863SCharles Keepax 	{ 0x80, 0x0003 },
19dc7d4863SCharles Keepax 	{ 0x214, 0x0008 },
20dc7d4863SCharles Keepax 	{ 0x458, 0x0000 },
21dc7d4863SCharles Keepax 	{ 0x0081, 0xE022 },
22dc7d4863SCharles Keepax 	{ 0x294, 0x0000 },
23dc7d4863SCharles Keepax 	{ 0x80, 0x0000 },
24dc7d4863SCharles Keepax 	{ 0x171, 0x0000 },
25dc7d4863SCharles Keepax };
26dc7d4863SCharles Keepax 
27dc7d4863SCharles Keepax /* We use a function so we can use ARRAY_SIZE() */
wm8997_patch(struct arizona * arizona)28dc7d4863SCharles Keepax int wm8997_patch(struct arizona *arizona)
29dc7d4863SCharles Keepax {
30dc7d4863SCharles Keepax 	switch (arizona->rev) {
31dc7d4863SCharles Keepax 	case 0:
32dc7d4863SCharles Keepax 		return regmap_register_patch(arizona->regmap,
33dc7d4863SCharles Keepax 					     wm8997_reva_patch,
34dc7d4863SCharles Keepax 					     ARRAY_SIZE(wm8997_reva_patch));
35dc7d4863SCharles Keepax 	default:
36dc7d4863SCharles Keepax 		return 0;
37dc7d4863SCharles Keepax 	}
38dc7d4863SCharles Keepax }
39dc7d4863SCharles Keepax EXPORT_SYMBOL_GPL(wm8997_patch);
40dc7d4863SCharles Keepax 
41dc7d4863SCharles Keepax static const struct regmap_irq wm8997_aod_irqs[ARIZONA_NUM_IRQ] = {
42dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP5_FALL] = { .mask = ARIZONA_GP5_FALL_EINT1 },
43dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP5_RISE] = { .mask = ARIZONA_GP5_RISE_EINT1 },
44dc7d4863SCharles Keepax 	[ARIZONA_IRQ_JD_FALL] = { .mask = ARIZONA_JD1_FALL_EINT1 },
45dc7d4863SCharles Keepax 	[ARIZONA_IRQ_JD_RISE] = { .mask = ARIZONA_JD1_RISE_EINT1 },
46dc7d4863SCharles Keepax };
47dc7d4863SCharles Keepax 
48dc7d4863SCharles Keepax const struct regmap_irq_chip wm8997_aod = {
49dc7d4863SCharles Keepax 	.name = "wm8997 AOD",
50dc7d4863SCharles Keepax 	.status_base = ARIZONA_AOD_IRQ1,
51dc7d4863SCharles Keepax 	.mask_base = ARIZONA_AOD_IRQ_MASK_IRQ1,
52dc7d4863SCharles Keepax 	.ack_base = ARIZONA_AOD_IRQ1,
53dc7d4863SCharles Keepax 	.num_regs = 1,
54dc7d4863SCharles Keepax 	.irqs = wm8997_aod_irqs,
55dc7d4863SCharles Keepax 	.num_irqs = ARRAY_SIZE(wm8997_aod_irqs),
56dc7d4863SCharles Keepax };
57dc7d4863SCharles Keepax EXPORT_SYMBOL_GPL(wm8997_aod);
58dc7d4863SCharles Keepax 
59dc7d4863SCharles Keepax static const struct regmap_irq wm8997_irqs[ARIZONA_NUM_IRQ] = {
60dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP4] = { .reg_offset = 0, .mask = ARIZONA_GP4_EINT1 },
61dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP3] = { .reg_offset = 0, .mask = ARIZONA_GP3_EINT1 },
62dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP2] = { .reg_offset = 0, .mask = ARIZONA_GP2_EINT1 },
63dc7d4863SCharles Keepax 	[ARIZONA_IRQ_GP1] = { .reg_offset = 0, .mask = ARIZONA_GP1_EINT1 },
64dc7d4863SCharles Keepax 
65c0fe2c5bSCharles Keepax 	[ARIZONA_IRQ_SPK_OVERHEAT_WARN] = {
66c0fe2c5bSCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_SPK_OVERHEAT_WARN_EINT1
67dc7d4863SCharles Keepax 	},
68c0fe2c5bSCharles Keepax 	[ARIZONA_IRQ_SPK_OVERHEAT] = {
69c0fe2c5bSCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_SPK_OVERHEAT_EINT1
70dc7d4863SCharles Keepax 	},
71dc7d4863SCharles Keepax 	[ARIZONA_IRQ_HPDET] = {
72dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_HPDET_EINT1
73dc7d4863SCharles Keepax 	},
74dc7d4863SCharles Keepax 	[ARIZONA_IRQ_MICDET] = {
75dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_MICDET_EINT1
76dc7d4863SCharles Keepax 	},
77dc7d4863SCharles Keepax 	[ARIZONA_IRQ_WSEQ_DONE] = {
78dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_WSEQ_DONE_EINT1
79dc7d4863SCharles Keepax 	},
80dc7d4863SCharles Keepax 	[ARIZONA_IRQ_DRC1_SIG_DET] = {
81dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_DRC1_SIG_DET_EINT1
82dc7d4863SCharles Keepax 	},
83dc7d4863SCharles Keepax 	[ARIZONA_IRQ_UNDERCLOCKED] = {
84dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_UNDERCLOCKED_EINT1
85dc7d4863SCharles Keepax 	},
86dc7d4863SCharles Keepax 	[ARIZONA_IRQ_OVERCLOCKED] = {
87dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_OVERCLOCKED_EINT1
88dc7d4863SCharles Keepax 	},
89dc7d4863SCharles Keepax 	[ARIZONA_IRQ_FLL2_LOCK] = {
90dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_FLL2_LOCK_EINT1
91dc7d4863SCharles Keepax 	},
92dc7d4863SCharles Keepax 	[ARIZONA_IRQ_FLL1_LOCK] = {
93dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_FLL1_LOCK_EINT1
94dc7d4863SCharles Keepax 	},
95dc7d4863SCharles Keepax 	[ARIZONA_IRQ_CLKGEN_ERR] = {
96dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_CLKGEN_ERR_EINT1
97dc7d4863SCharles Keepax 	},
98dc7d4863SCharles Keepax 	[ARIZONA_IRQ_CLKGEN_ERR_ASYNC] = {
99dc7d4863SCharles Keepax 		.reg_offset = 2, .mask = ARIZONA_CLKGEN_ERR_ASYNC_EINT1
100dc7d4863SCharles Keepax 	},
101dc7d4863SCharles Keepax 
102dc7d4863SCharles Keepax 	[ARIZONA_IRQ_AIF2_ERR] = {
103dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_AIF2_ERR_EINT1
104dc7d4863SCharles Keepax 	},
105dc7d4863SCharles Keepax 	[ARIZONA_IRQ_AIF1_ERR] = {
106dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_AIF1_ERR_EINT1
107dc7d4863SCharles Keepax 	},
108dc7d4863SCharles Keepax 	[ARIZONA_IRQ_CTRLIF_ERR] = {
109dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_CTRLIF_ERR_EINT1
110dc7d4863SCharles Keepax 	},
111dc7d4863SCharles Keepax 	[ARIZONA_IRQ_MIXER_DROPPED_SAMPLES] = {
112dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_MIXER_DROPPED_SAMPLE_EINT1
113dc7d4863SCharles Keepax 	},
114dc7d4863SCharles Keepax 	[ARIZONA_IRQ_ASYNC_CLK_ENA_LOW] = {
115dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_ASYNC_CLK_ENA_LOW_EINT1
116dc7d4863SCharles Keepax 	},
117dc7d4863SCharles Keepax 	[ARIZONA_IRQ_SYSCLK_ENA_LOW] = {
118dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_SYSCLK_ENA_LOW_EINT1
119dc7d4863SCharles Keepax 	},
120dc7d4863SCharles Keepax 	[ARIZONA_IRQ_ISRC1_CFG_ERR] = {
121dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_ISRC1_CFG_ERR_EINT1
122dc7d4863SCharles Keepax 	},
123dc7d4863SCharles Keepax 	[ARIZONA_IRQ_ISRC2_CFG_ERR] = {
124dc7d4863SCharles Keepax 		.reg_offset = 3, .mask = ARIZONA_ISRC2_CFG_ERR_EINT1
125dc7d4863SCharles Keepax 	},
126dc7d4863SCharles Keepax 
127dc7d4863SCharles Keepax 	[ARIZONA_IRQ_BOOT_DONE] = {
128dc7d4863SCharles Keepax 		.reg_offset = 4, .mask = ARIZONA_BOOT_DONE_EINT1
129dc7d4863SCharles Keepax 	},
130dc7d4863SCharles Keepax 	[ARIZONA_IRQ_DCS_DAC_DONE] = {
131dc7d4863SCharles Keepax 		.reg_offset = 4, .mask = ARIZONA_DCS_DAC_DONE_EINT1
132dc7d4863SCharles Keepax 	},
133dc7d4863SCharles Keepax 	[ARIZONA_IRQ_DCS_HP_DONE] = {
134dc7d4863SCharles Keepax 		.reg_offset = 4, .mask = ARIZONA_DCS_HP_DONE_EINT1
135dc7d4863SCharles Keepax 	},
136dc7d4863SCharles Keepax 	[ARIZONA_IRQ_FLL2_CLOCK_OK] = {
137dc7d4863SCharles Keepax 		.reg_offset = 4, .mask = ARIZONA_FLL2_CLOCK_OK_EINT1
138dc7d4863SCharles Keepax 	},
139dc7d4863SCharles Keepax 	[ARIZONA_IRQ_FLL1_CLOCK_OK] = {
140dc7d4863SCharles Keepax 		.reg_offset = 4, .mask = ARIZONA_FLL1_CLOCK_OK_EINT1
141dc7d4863SCharles Keepax 	},
142dc7d4863SCharles Keepax };
143dc7d4863SCharles Keepax 
144dc7d4863SCharles Keepax const struct regmap_irq_chip wm8997_irq = {
145dc7d4863SCharles Keepax 	.name = "wm8997 IRQ",
146dc7d4863SCharles Keepax 	.status_base = ARIZONA_INTERRUPT_STATUS_1,
147dc7d4863SCharles Keepax 	.mask_base = ARIZONA_INTERRUPT_STATUS_1_MASK,
148dc7d4863SCharles Keepax 	.ack_base = ARIZONA_INTERRUPT_STATUS_1,
149dc7d4863SCharles Keepax 	.num_regs = 5,
150dc7d4863SCharles Keepax 	.irqs = wm8997_irqs,
151dc7d4863SCharles Keepax 	.num_irqs = ARRAY_SIZE(wm8997_irqs),
152dc7d4863SCharles Keepax };
153dc7d4863SCharles Keepax EXPORT_SYMBOL_GPL(wm8997_irq);
154dc7d4863SCharles Keepax 
155dc7d4863SCharles Keepax static const struct reg_default wm8997_reg_default[] = {
156dc7d4863SCharles Keepax 	{ 0x00000009, 0x0001 },    /* R9     - Ctrl IF I2C1 CFG 1 */
157dc7d4863SCharles Keepax 	{ 0x00000016, 0x0000 },    /* R22    - Write Sequencer Ctrl 0 */
158dc7d4863SCharles Keepax 	{ 0x00000017, 0x0000 },    /* R23    - Write Sequencer Ctrl 1 */
159dc7d4863SCharles Keepax 	{ 0x00000018, 0x0000 },    /* R24    - Write Sequencer Ctrl 2 */
160dc7d4863SCharles Keepax 	{ 0x00000020, 0x0000 },    /* R32    - Tone Generator 1 */
161dc7d4863SCharles Keepax 	{ 0x00000021, 0x1000 },    /* R33    - Tone Generator 2 */
162dc7d4863SCharles Keepax 	{ 0x00000022, 0x0000 },    /* R34    - Tone Generator 3 */
163dc7d4863SCharles Keepax 	{ 0x00000023, 0x1000 },    /* R35    - Tone Generator 4 */
164dc7d4863SCharles Keepax 	{ 0x00000024, 0x0000 },    /* R36    - Tone Generator 5 */
165dc7d4863SCharles Keepax 	{ 0x00000030, 0x0000 },    /* R48    - PWM Drive 1 */
166dc7d4863SCharles Keepax 	{ 0x00000031, 0x0100 },    /* R49    - PWM Drive 2 */
167dc7d4863SCharles Keepax 	{ 0x00000032, 0x0100 },    /* R50    - PWM Drive 3 */
168dc7d4863SCharles Keepax 	{ 0x00000040, 0x0000 },    /* R64    - Wake control */
169dc7d4863SCharles Keepax 	{ 0x00000041, 0x0000 },    /* R65    - Sequence control */
170dc7d4863SCharles Keepax 	{ 0x00000061, 0x01FF },    /* R97    - Sample Rate Sequence Select 1 */
171dc7d4863SCharles Keepax 	{ 0x00000062, 0x01FF },    /* R98    - Sample Rate Sequence Select 2 */
172dc7d4863SCharles Keepax 	{ 0x00000063, 0x01FF },    /* R99    - Sample Rate Sequence Select 3 */
173dc7d4863SCharles Keepax 	{ 0x00000064, 0x01FF },    /* R100   - Sample Rate Sequence Select 4 */
17423213218SLee Jones 	{ 0x00000068, 0x01FF },    /* R104   - AlwaysOn Triggers Seq Select 3 */
17523213218SLee Jones 	{ 0x00000069, 0x01FF },    /* R105   - AlwaysOn Triggers Seq Select 4 */
17623213218SLee Jones 	{ 0x0000006A, 0x01FF },    /* R106   - AlwaysOn Triggers Seq Select 5 */
17723213218SLee Jones 	{ 0x0000006B, 0x01FF },    /* R107   - AlwaysOn Triggers Seq Select 6 */
178dc7d4863SCharles Keepax 	{ 0x00000070, 0x0000 },    /* R112   - Comfort Noise Generator */
179dc7d4863SCharles Keepax 	{ 0x00000090, 0x0000 },    /* R144   - Haptics Control 1 */
180dc7d4863SCharles Keepax 	{ 0x00000091, 0x7FFF },    /* R145   - Haptics Control 2 */
181dc7d4863SCharles Keepax 	{ 0x00000092, 0x0000 },    /* R146   - Haptics phase 1 intensity */
182dc7d4863SCharles Keepax 	{ 0x00000093, 0x0000 },    /* R147   - Haptics phase 1 duration */
183dc7d4863SCharles Keepax 	{ 0x00000094, 0x0000 },    /* R148   - Haptics phase 2 intensity */
184dc7d4863SCharles Keepax 	{ 0x00000095, 0x0000 },    /* R149   - Haptics phase 2 duration */
185dc7d4863SCharles Keepax 	{ 0x00000096, 0x0000 },    /* R150   - Haptics phase 3 intensity */
186dc7d4863SCharles Keepax 	{ 0x00000097, 0x0000 },    /* R151   - Haptics phase 3 duration */
187dc7d4863SCharles Keepax 	{ 0x00000100, 0x0002 },    /* R256   - Clock 32k 1 */
188dc7d4863SCharles Keepax 	{ 0x00000101, 0x0304 },    /* R257   - System Clock 1 */
189dc7d4863SCharles Keepax 	{ 0x00000102, 0x0011 },    /* R258   - Sample rate 1 */
190dc7d4863SCharles Keepax 	{ 0x00000103, 0x0011 },    /* R259   - Sample rate 2 */
191dc7d4863SCharles Keepax 	{ 0x00000104, 0x0011 },    /* R260   - Sample rate 3 */
192dc7d4863SCharles Keepax 	{ 0x00000112, 0x0305 },    /* R274   - Async clock 1 */
193dc7d4863SCharles Keepax 	{ 0x00000113, 0x0011 },    /* R275   - Async sample rate 1 */
194dc7d4863SCharles Keepax 	{ 0x00000149, 0x0000 },    /* R329   - Output system clock */
195dc7d4863SCharles Keepax 	{ 0x0000014A, 0x0000 },    /* R330   - Output async clock */
196dc7d4863SCharles Keepax 	{ 0x00000152, 0x0000 },    /* R338   - Rate Estimator 1 */
197dc7d4863SCharles Keepax 	{ 0x00000153, 0x0000 },    /* R339   - Rate Estimator 2 */
198dc7d4863SCharles Keepax 	{ 0x00000154, 0x0000 },    /* R340   - Rate Estimator 3 */
199dc7d4863SCharles Keepax 	{ 0x00000155, 0x0000 },    /* R341   - Rate Estimator 4 */
200dc7d4863SCharles Keepax 	{ 0x00000156, 0x0000 },    /* R342   - Rate Estimator 5 */
201dc7d4863SCharles Keepax 	{ 0x00000161, 0x0000 },    /* R353   - Dynamic Frequency Scaling 1 */
202dc7d4863SCharles Keepax 	{ 0x00000171, 0x0000 },    /* R369   - FLL1 Control 1 */
203dc7d4863SCharles Keepax 	{ 0x00000172, 0x0008 },    /* R370   - FLL1 Control 2 */
204dc7d4863SCharles Keepax 	{ 0x00000173, 0x0018 },    /* R371   - FLL1 Control 3 */
205dc7d4863SCharles Keepax 	{ 0x00000174, 0x007D },    /* R372   - FLL1 Control 4 */
206dc7d4863SCharles Keepax 	{ 0x00000175, 0x0004 },    /* R373   - FLL1 Control 5 */
207dc7d4863SCharles Keepax 	{ 0x00000176, 0x0000 },    /* R374   - FLL1 Control 6 */
208dc7d4863SCharles Keepax 	{ 0x00000177, 0x0181 },    /* R375   - FLL1 Loop Filter Test 1 */
209dc7d4863SCharles Keepax 	{ 0x00000181, 0x0000 },    /* R385   - FLL1 Synchroniser 1 */
210dc7d4863SCharles Keepax 	{ 0x00000182, 0x0000 },    /* R386   - FLL1 Synchroniser 2 */
211dc7d4863SCharles Keepax 	{ 0x00000183, 0x0000 },    /* R387   - FLL1 Synchroniser 3 */
212dc7d4863SCharles Keepax 	{ 0x00000184, 0x0000 },    /* R388   - FLL1 Synchroniser 4 */
213dc7d4863SCharles Keepax 	{ 0x00000185, 0x0000 },    /* R389   - FLL1 Synchroniser 5 */
214dc7d4863SCharles Keepax 	{ 0x00000186, 0x0000 },    /* R390   - FLL1 Synchroniser 6 */
215dc7d4863SCharles Keepax 	{ 0x00000189, 0x0000 },    /* R393   - FLL1 Spread Spectrum */
216dc7d4863SCharles Keepax 	{ 0x0000018A, 0x0004 },    /* R394   - FLL1 GPIO Clock */
217dc7d4863SCharles Keepax 	{ 0x00000191, 0x0000 },    /* R401   - FLL2 Control 1 */
218dc7d4863SCharles Keepax 	{ 0x00000192, 0x0008 },    /* R402   - FLL2 Control 2 */
219dc7d4863SCharles Keepax 	{ 0x00000193, 0x0018 },    /* R403   - FLL2 Control 3 */
220dc7d4863SCharles Keepax 	{ 0x00000194, 0x007D },    /* R404   - FLL2 Control 4 */
221dc7d4863SCharles Keepax 	{ 0x00000195, 0x0004 },    /* R405   - FLL2 Control 5 */
222dc7d4863SCharles Keepax 	{ 0x00000196, 0x0000 },    /* R406   - FLL2 Control 6 */
223dc7d4863SCharles Keepax 	{ 0x00000197, 0x0000 },    /* R407   - FLL2 Loop Filter Test 1 */
224dc7d4863SCharles Keepax 	{ 0x000001A1, 0x0000 },    /* R417   - FLL2 Synchroniser 1 */
225dc7d4863SCharles Keepax 	{ 0x000001A2, 0x0000 },    /* R418   - FLL2 Synchroniser 2 */
226dc7d4863SCharles Keepax 	{ 0x000001A3, 0x0000 },    /* R419   - FLL2 Synchroniser 3 */
227dc7d4863SCharles Keepax 	{ 0x000001A4, 0x0000 },    /* R420   - FLL2 Synchroniser 4 */
228dc7d4863SCharles Keepax 	{ 0x000001A5, 0x0000 },    /* R421   - FLL2 Synchroniser 5 */
229dc7d4863SCharles Keepax 	{ 0x000001A6, 0x0000 },    /* R422   - FLL2 Synchroniser 6 */
230dc7d4863SCharles Keepax 	{ 0x000001A9, 0x0000 },    /* R425   - FLL2 Spread Spectrum */
231dc7d4863SCharles Keepax 	{ 0x000001AA, 0x0004 },    /* R426   - FLL2 GPIO Clock */
232dc7d4863SCharles Keepax 	{ 0x00000200, 0x0006 },    /* R512   - Mic Charge Pump 1 */
233dc7d4863SCharles Keepax 	{ 0x00000210, 0x00D4 },    /* R528   - LDO1 Control 1 */
234dc7d4863SCharles Keepax 	{ 0x00000212, 0x0000 },    /* R530   - LDO1 Control 2 */
235dc7d4863SCharles Keepax 	{ 0x00000213, 0x0344 },    /* R531   - LDO2 Control 1 */
236dc7d4863SCharles Keepax 	{ 0x00000218, 0x01A6 },    /* R536   - Mic Bias Ctrl 1 */
237dc7d4863SCharles Keepax 	{ 0x00000219, 0x01A6 },    /* R537   - Mic Bias Ctrl 2 */
238dc7d4863SCharles Keepax 	{ 0x0000021A, 0x01A6 },    /* R538   - Mic Bias Ctrl 3 */
239dc7d4863SCharles Keepax 	{ 0x00000293, 0x0000 },    /* R659   - Accessory Detect Mode 1 */
240dc7d4863SCharles Keepax 	{ 0x0000029B, 0x0020 },    /* R667   - Headphone Detect 1 */
241dc7d4863SCharles Keepax 	{ 0x000002A3, 0x1102 },    /* R675   - Mic Detect 1 */
242dc7d4863SCharles Keepax 	{ 0x000002A4, 0x009F },    /* R676   - Mic Detect 2 */
243dc7d4863SCharles Keepax 	{ 0x000002C3, 0x0000 },    /* R707   - Mic noise mix control 1 */
244dc7d4863SCharles Keepax 	{ 0x000002CB, 0x0000 },    /* R715   - Isolation control */
245dc7d4863SCharles Keepax 	{ 0x000002D3, 0x0000 },    /* R723   - Jack detect analogue */
246dc7d4863SCharles Keepax 	{ 0x00000300, 0x0000 },    /* R768   - Input Enables */
247dc7d4863SCharles Keepax 	{ 0x00000308, 0x0000 },    /* R776   - Input Rate */
248dc7d4863SCharles Keepax 	{ 0x00000309, 0x0022 },    /* R777   - Input Volume Ramp */
249dc7d4863SCharles Keepax 	{ 0x00000310, 0x2080 },    /* R784   - IN1L Control */
250dc7d4863SCharles Keepax 	{ 0x00000311, 0x0180 },    /* R785   - ADC Digital Volume 1L */
251dc7d4863SCharles Keepax 	{ 0x00000312, 0x0000 },    /* R786   - DMIC1L Control */
252dc7d4863SCharles Keepax 	{ 0x00000314, 0x0080 },    /* R788   - IN1R Control */
253dc7d4863SCharles Keepax 	{ 0x00000315, 0x0180 },    /* R789   - ADC Digital Volume 1R */
254dc7d4863SCharles Keepax 	{ 0x00000316, 0x0000 },    /* R790   - DMIC1R Control */
255dc7d4863SCharles Keepax 	{ 0x00000318, 0x2080 },    /* R792   - IN2L Control */
256dc7d4863SCharles Keepax 	{ 0x00000319, 0x0180 },    /* R793   - ADC Digital Volume 2L */
257dc7d4863SCharles Keepax 	{ 0x0000031A, 0x0000 },    /* R794   - DMIC2L Control */
258dc7d4863SCharles Keepax 	{ 0x0000031C, 0x0080 },    /* R796   - IN2R Control */
259dc7d4863SCharles Keepax 	{ 0x0000031D, 0x0180 },    /* R797   - ADC Digital Volume 2R */
260dc7d4863SCharles Keepax 	{ 0x0000031E, 0x0000 },    /* R798   - DMIC2R Control */
261dc7d4863SCharles Keepax 	{ 0x00000400, 0x0000 },    /* R1024  - Output Enables 1 */
262dc7d4863SCharles Keepax 	{ 0x00000408, 0x0000 },    /* R1032  - Output Rate 1 */
263dc7d4863SCharles Keepax 	{ 0x00000409, 0x0022 },    /* R1033  - Output Volume Ramp */
264dc7d4863SCharles Keepax 	{ 0x00000410, 0x0080 },    /* R1040  - Output Path Config 1L */
265dc7d4863SCharles Keepax 	{ 0x00000411, 0x0180 },    /* R1041  - DAC Digital Volume 1L */
266dc7d4863SCharles Keepax 	{ 0x00000412, 0x0080 },    /* R1042  - DAC Volume Limit 1L */
267dc7d4863SCharles Keepax 	{ 0x00000413, 0x0001 },    /* R1043  - Noise Gate Select 1L */
268dc7d4863SCharles Keepax 	{ 0x00000414, 0x0080 },    /* R1044  - Output Path Config 1R */
269dc7d4863SCharles Keepax 	{ 0x00000415, 0x0180 },    /* R1045  - DAC Digital Volume 1R */
270dc7d4863SCharles Keepax 	{ 0x00000416, 0x0080 },    /* R1046  - DAC Volume Limit 1R */
271dc7d4863SCharles Keepax 	{ 0x00000417, 0x0002 },    /* R1047  - Noise Gate Select 1R */
272dc7d4863SCharles Keepax 	{ 0x00000420, 0x0080 },    /* R1056  - Output Path Config 3L */
273dc7d4863SCharles Keepax 	{ 0x00000421, 0x0180 },    /* R1057  - DAC Digital Volume 3L */
274dc7d4863SCharles Keepax 	{ 0x00000422, 0x0080 },    /* R1058  - DAC Volume Limit 3L */
275dc7d4863SCharles Keepax 	{ 0x00000423, 0x0010 },    /* R1059  - Noise Gate Select 3L */
276dc7d4863SCharles Keepax 	{ 0x00000428, 0x0000 },    /* R1064  - Output Path Config 4L */
277dc7d4863SCharles Keepax 	{ 0x00000429, 0x0180 },    /* R1065  - DAC Digital Volume 4L */
278dc7d4863SCharles Keepax 	{ 0x0000042A, 0x0080 },    /* R1066  - Out Volume 4L */
279dc7d4863SCharles Keepax 	{ 0x0000042B, 0x0040 },    /* R1067  - Noise Gate Select 4L */
280dc7d4863SCharles Keepax 	{ 0x00000430, 0x0000 },    /* R1072  - Output Path Config 5L */
281dc7d4863SCharles Keepax 	{ 0x00000431, 0x0180 },    /* R1073  - DAC Digital Volume 5L */
282dc7d4863SCharles Keepax 	{ 0x00000432, 0x0080 },    /* R1074  - DAC Volume Limit 5L */
283dc7d4863SCharles Keepax 	{ 0x00000433, 0x0100 },    /* R1075  - Noise Gate Select 5L */
284dc7d4863SCharles Keepax 	{ 0x00000435, 0x0180 },    /* R1077  - DAC Digital Volume 5R */
285dc7d4863SCharles Keepax 	{ 0x00000436, 0x0080 },    /* R1078  - DAC Volume Limit 5R */
286dc7d4863SCharles Keepax 	{ 0x00000437, 0x0200 },    /* R1079  - Noise Gate Select 5R */
287dc7d4863SCharles Keepax 	{ 0x00000450, 0x0000 },    /* R1104  - DAC AEC Control 1 */
288dc7d4863SCharles Keepax 	{ 0x00000458, 0x0000 },    /* R1112  - Noise Gate Control */
289dc7d4863SCharles Keepax 	{ 0x00000490, 0x0069 },    /* R1168  - PDM SPK1 CTRL 1 */
290dc7d4863SCharles Keepax 	{ 0x00000491, 0x0000 },    /* R1169  - PDM SPK1 CTRL 2 */
291dc7d4863SCharles Keepax 	{ 0x00000500, 0x000C },    /* R1280  - AIF1 BCLK Ctrl */
292dc7d4863SCharles Keepax 	{ 0x00000501, 0x0008 },    /* R1281  - AIF1 Tx Pin Ctrl */
293dc7d4863SCharles Keepax 	{ 0x00000502, 0x0000 },    /* R1282  - AIF1 Rx Pin Ctrl */
294dc7d4863SCharles Keepax 	{ 0x00000503, 0x0000 },    /* R1283  - AIF1 Rate Ctrl */
295dc7d4863SCharles Keepax 	{ 0x00000504, 0x0000 },    /* R1284  - AIF1 Format */
296dc7d4863SCharles Keepax 	{ 0x00000505, 0x0040 },    /* R1285  - AIF1 Tx BCLK Rate */
297dc7d4863SCharles Keepax 	{ 0x00000506, 0x0040 },    /* R1286  - AIF1 Rx BCLK Rate */
298dc7d4863SCharles Keepax 	{ 0x00000507, 0x1818 },    /* R1287  - AIF1 Frame Ctrl 1 */
299dc7d4863SCharles Keepax 	{ 0x00000508, 0x1818 },    /* R1288  - AIF1 Frame Ctrl 2 */
300dc7d4863SCharles Keepax 	{ 0x00000509, 0x0000 },    /* R1289  - AIF1 Frame Ctrl 3 */
301dc7d4863SCharles Keepax 	{ 0x0000050A, 0x0001 },    /* R1290  - AIF1 Frame Ctrl 4 */
302dc7d4863SCharles Keepax 	{ 0x0000050B, 0x0002 },    /* R1291  - AIF1 Frame Ctrl 5 */
303dc7d4863SCharles Keepax 	{ 0x0000050C, 0x0003 },    /* R1292  - AIF1 Frame Ctrl 6 */
304dc7d4863SCharles Keepax 	{ 0x0000050D, 0x0004 },    /* R1293  - AIF1 Frame Ctrl 7 */
305dc7d4863SCharles Keepax 	{ 0x0000050E, 0x0005 },    /* R1294  - AIF1 Frame Ctrl 8 */
306dc7d4863SCharles Keepax 	{ 0x0000050F, 0x0006 },    /* R1295  - AIF1 Frame Ctrl 9 */
307dc7d4863SCharles Keepax 	{ 0x00000510, 0x0007 },    /* R1296  - AIF1 Frame Ctrl 10 */
308dc7d4863SCharles Keepax 	{ 0x00000511, 0x0000 },    /* R1297  - AIF1 Frame Ctrl 11 */
309dc7d4863SCharles Keepax 	{ 0x00000512, 0x0001 },    /* R1298  - AIF1 Frame Ctrl 12 */
310dc7d4863SCharles Keepax 	{ 0x00000513, 0x0002 },    /* R1299  - AIF1 Frame Ctrl 13 */
311dc7d4863SCharles Keepax 	{ 0x00000514, 0x0003 },    /* R1300  - AIF1 Frame Ctrl 14 */
312dc7d4863SCharles Keepax 	{ 0x00000515, 0x0004 },    /* R1301  - AIF1 Frame Ctrl 15 */
313dc7d4863SCharles Keepax 	{ 0x00000516, 0x0005 },    /* R1302  - AIF1 Frame Ctrl 16 */
314dc7d4863SCharles Keepax 	{ 0x00000517, 0x0006 },    /* R1303  - AIF1 Frame Ctrl 17 */
315dc7d4863SCharles Keepax 	{ 0x00000518, 0x0007 },    /* R1304  - AIF1 Frame Ctrl 18 */
316dc7d4863SCharles Keepax 	{ 0x00000519, 0x0000 },    /* R1305  - AIF1 Tx Enables */
317dc7d4863SCharles Keepax 	{ 0x0000051A, 0x0000 },    /* R1306  - AIF1 Rx Enables */
318dc7d4863SCharles Keepax 	{ 0x00000540, 0x000C },    /* R1344  - AIF2 BCLK Ctrl */
319dc7d4863SCharles Keepax 	{ 0x00000541, 0x0008 },    /* R1345  - AIF2 Tx Pin Ctrl */
320dc7d4863SCharles Keepax 	{ 0x00000542, 0x0000 },    /* R1346  - AIF2 Rx Pin Ctrl */
321dc7d4863SCharles Keepax 	{ 0x00000543, 0x0000 },    /* R1347  - AIF2 Rate Ctrl */
322dc7d4863SCharles Keepax 	{ 0x00000544, 0x0000 },    /* R1348  - AIF2 Format */
323dc7d4863SCharles Keepax 	{ 0x00000545, 0x0040 },    /* R1349  - AIF2 Tx BCLK Rate */
324dc7d4863SCharles Keepax 	{ 0x00000546, 0x0040 },    /* R1350  - AIF2 Rx BCLK Rate */
325dc7d4863SCharles Keepax 	{ 0x00000547, 0x1818 },    /* R1351  - AIF2 Frame Ctrl 1 */
326dc7d4863SCharles Keepax 	{ 0x00000548, 0x1818 },    /* R1352  - AIF2 Frame Ctrl 2 */
327dc7d4863SCharles Keepax 	{ 0x00000549, 0x0000 },    /* R1353  - AIF2 Frame Ctrl 3 */
328dc7d4863SCharles Keepax 	{ 0x0000054A, 0x0001 },    /* R1354  - AIF2 Frame Ctrl 4 */
329dc7d4863SCharles Keepax 	{ 0x00000551, 0x0000 },    /* R1361  - AIF2 Frame Ctrl 11 */
330dc7d4863SCharles Keepax 	{ 0x00000552, 0x0001 },    /* R1362  - AIF2 Frame Ctrl 12 */
331dc7d4863SCharles Keepax 	{ 0x00000559, 0x0000 },    /* R1369  - AIF2 Tx Enables */
332dc7d4863SCharles Keepax 	{ 0x0000055A, 0x0000 },    /* R1370  - AIF2 Rx Enables */
333dc7d4863SCharles Keepax 	{ 0x000005E3, 0x0004 },    /* R1507  - SLIMbus Framer Ref Gear */
334dc7d4863SCharles Keepax 	{ 0x000005E5, 0x0000 },    /* R1509  - SLIMbus Rates 1 */
335dc7d4863SCharles Keepax 	{ 0x000005E6, 0x0000 },    /* R1510  - SLIMbus Rates 2 */
336dc7d4863SCharles Keepax 	{ 0x000005E7, 0x0000 },    /* R1511  - SLIMbus Rates 3 */
337dc7d4863SCharles Keepax 	{ 0x000005E8, 0x0000 },    /* R1512  - SLIMbus Rates 4 */
338dc7d4863SCharles Keepax 	{ 0x000005E9, 0x0000 },    /* R1513  - SLIMbus Rates 5 */
339dc7d4863SCharles Keepax 	{ 0x000005EA, 0x0000 },    /* R1514  - SLIMbus Rates 6 */
340dc7d4863SCharles Keepax 	{ 0x000005EB, 0x0000 },    /* R1515  - SLIMbus Rates 7 */
341dc7d4863SCharles Keepax 	{ 0x000005EC, 0x0000 },    /* R1516  - SLIMbus Rates 8 */
342dc7d4863SCharles Keepax 	{ 0x000005F5, 0x0000 },    /* R1525  - SLIMbus RX Channel Enable */
343dc7d4863SCharles Keepax 	{ 0x000005F6, 0x0000 },    /* R1526  - SLIMbus TX Channel Enable */
344dc7d4863SCharles Keepax 	{ 0x00000640, 0x0000 },    /* R1600  - PWM1MIX Input 1 Source */
345dc7d4863SCharles Keepax 	{ 0x00000641, 0x0080 },    /* R1601  - PWM1MIX Input 1 Volume */
346dc7d4863SCharles Keepax 	{ 0x00000642, 0x0000 },    /* R1602  - PWM1MIX Input 2 Source */
347dc7d4863SCharles Keepax 	{ 0x00000643, 0x0080 },    /* R1603  - PWM1MIX Input 2 Volume */
348dc7d4863SCharles Keepax 	{ 0x00000644, 0x0000 },    /* R1604  - PWM1MIX Input 3 Source */
349dc7d4863SCharles Keepax 	{ 0x00000645, 0x0080 },    /* R1605  - PWM1MIX Input 3 Volume */
350dc7d4863SCharles Keepax 	{ 0x00000646, 0x0000 },    /* R1606  - PWM1MIX Input 4 Source */
351dc7d4863SCharles Keepax 	{ 0x00000647, 0x0080 },    /* R1607  - PWM1MIX Input 4 Volume */
352dc7d4863SCharles Keepax 	{ 0x00000648, 0x0000 },    /* R1608  - PWM2MIX Input 1 Source */
353dc7d4863SCharles Keepax 	{ 0x00000649, 0x0080 },    /* R1609  - PWM2MIX Input 1 Volume */
354dc7d4863SCharles Keepax 	{ 0x0000064A, 0x0000 },    /* R1610  - PWM2MIX Input 2 Source */
355dc7d4863SCharles Keepax 	{ 0x0000064B, 0x0080 },    /* R1611  - PWM2MIX Input 2 Volume */
356dc7d4863SCharles Keepax 	{ 0x0000064C, 0x0000 },    /* R1612  - PWM2MIX Input 3 Source */
357dc7d4863SCharles Keepax 	{ 0x0000064D, 0x0080 },    /* R1613  - PWM2MIX Input 3 Volume */
358dc7d4863SCharles Keepax 	{ 0x0000064E, 0x0000 },    /* R1614  - PWM2MIX Input 4 Source */
359dc7d4863SCharles Keepax 	{ 0x0000064F, 0x0080 },    /* R1615  - PWM2MIX Input 4 Volume */
360dc7d4863SCharles Keepax 	{ 0x00000660, 0x0000 },    /* R1632  - MICMIX Input 1 Source */
361dc7d4863SCharles Keepax 	{ 0x00000661, 0x0080 },    /* R1633  - MICMIX Input 1 Volume */
362dc7d4863SCharles Keepax 	{ 0x00000662, 0x0000 },    /* R1634  - MICMIX Input 2 Source */
363dc7d4863SCharles Keepax 	{ 0x00000663, 0x0080 },    /* R1635  - MICMIX Input 2 Volume */
364dc7d4863SCharles Keepax 	{ 0x00000664, 0x0000 },    /* R1636  - MICMIX Input 3 Source */
365dc7d4863SCharles Keepax 	{ 0x00000665, 0x0080 },    /* R1637  - MICMIX Input 3 Volume */
366dc7d4863SCharles Keepax 	{ 0x00000666, 0x0000 },    /* R1638  - MICMIX Input 4 Source */
367dc7d4863SCharles Keepax 	{ 0x00000667, 0x0080 },    /* R1639  - MICMIX Input 4 Volume */
368dc7d4863SCharles Keepax 	{ 0x00000668, 0x0000 },    /* R1640  - NOISEMIX Input 1 Source */
369dc7d4863SCharles Keepax 	{ 0x00000669, 0x0080 },    /* R1641  - NOISEMIX Input 1 Volume */
370dc7d4863SCharles Keepax 	{ 0x0000066A, 0x0000 },    /* R1642  - NOISEMIX Input 2 Source */
371dc7d4863SCharles Keepax 	{ 0x0000066B, 0x0080 },    /* R1643  - NOISEMIX Input 2 Volume */
372dc7d4863SCharles Keepax 	{ 0x0000066C, 0x0000 },    /* R1644  - NOISEMIX Input 3 Source */
373dc7d4863SCharles Keepax 	{ 0x0000066D, 0x0080 },    /* R1645  - NOISEMIX Input 3 Volume */
374dc7d4863SCharles Keepax 	{ 0x0000066E, 0x0000 },    /* R1646  - NOISEMIX Input 4 Source */
375dc7d4863SCharles Keepax 	{ 0x0000066F, 0x0080 },    /* R1647  - NOISEMIX Input 4 Volume */
376dc7d4863SCharles Keepax 	{ 0x00000680, 0x0000 },    /* R1664  - OUT1LMIX Input 1 Source */
377dc7d4863SCharles Keepax 	{ 0x00000681, 0x0080 },    /* R1665  - OUT1LMIX Input 1 Volume */
378dc7d4863SCharles Keepax 	{ 0x00000682, 0x0000 },    /* R1666  - OUT1LMIX Input 2 Source */
379dc7d4863SCharles Keepax 	{ 0x00000683, 0x0080 },    /* R1667  - OUT1LMIX Input 2 Volume */
380dc7d4863SCharles Keepax 	{ 0x00000684, 0x0000 },    /* R1668  - OUT1LMIX Input 3 Source */
381dc7d4863SCharles Keepax 	{ 0x00000685, 0x0080 },    /* R1669  - OUT1LMIX Input 3 Volume */
382dc7d4863SCharles Keepax 	{ 0x00000686, 0x0000 },    /* R1670  - OUT1LMIX Input 4 Source */
383dc7d4863SCharles Keepax 	{ 0x00000687, 0x0080 },    /* R1671  - OUT1LMIX Input 4 Volume */
384dc7d4863SCharles Keepax 	{ 0x00000688, 0x0000 },    /* R1672  - OUT1RMIX Input 1 Source */
385dc7d4863SCharles Keepax 	{ 0x00000689, 0x0080 },    /* R1673  - OUT1RMIX Input 1 Volume */
386dc7d4863SCharles Keepax 	{ 0x0000068A, 0x0000 },    /* R1674  - OUT1RMIX Input 2 Source */
387dc7d4863SCharles Keepax 	{ 0x0000068B, 0x0080 },    /* R1675  - OUT1RMIX Input 2 Volume */
388dc7d4863SCharles Keepax 	{ 0x0000068C, 0x0000 },    /* R1676  - OUT1RMIX Input 3 Source */
389dc7d4863SCharles Keepax 	{ 0x0000068D, 0x0080 },    /* R1677  - OUT1RMIX Input 3 Volume */
390dc7d4863SCharles Keepax 	{ 0x0000068E, 0x0000 },    /* R1678  - OUT1RMIX Input 4 Source */
391dc7d4863SCharles Keepax 	{ 0x0000068F, 0x0080 },    /* R1679  - OUT1RMIX Input 4 Volume */
392dc7d4863SCharles Keepax 	{ 0x000006A0, 0x0000 },    /* R1696  - OUT3LMIX Input 1 Source */
393dc7d4863SCharles Keepax 	{ 0x000006A1, 0x0080 },    /* R1697  - OUT3LMIX Input 1 Volume */
394dc7d4863SCharles Keepax 	{ 0x000006A2, 0x0000 },    /* R1698  - OUT3LMIX Input 2 Source */
395dc7d4863SCharles Keepax 	{ 0x000006A3, 0x0080 },    /* R1699  - OUT3LMIX Input 2 Volume */
396dc7d4863SCharles Keepax 	{ 0x000006A4, 0x0000 },    /* R1700  - OUT3LMIX Input 3 Source */
397dc7d4863SCharles Keepax 	{ 0x000006A5, 0x0080 },    /* R1701  - OUT3LMIX Input 3 Volume */
398dc7d4863SCharles Keepax 	{ 0x000006A6, 0x0000 },    /* R1702  - OUT3LMIX Input 4 Source */
399dc7d4863SCharles Keepax 	{ 0x000006A7, 0x0080 },    /* R1703  - OUT3LMIX Input 4 Volume */
400dc7d4863SCharles Keepax 	{ 0x000006B0, 0x0000 },    /* R1712  - OUT4LMIX Input 1 Source */
401dc7d4863SCharles Keepax 	{ 0x000006B1, 0x0080 },    /* R1713  - OUT4LMIX Input 1 Volume */
402dc7d4863SCharles Keepax 	{ 0x000006B2, 0x0000 },    /* R1714  - OUT4LMIX Input 2 Source */
403dc7d4863SCharles Keepax 	{ 0x000006B3, 0x0080 },    /* R1715  - OUT4LMIX Input 2 Volume */
404dc7d4863SCharles Keepax 	{ 0x000006B4, 0x0000 },    /* R1716  - OUT4LMIX Input 3 Source */
405dc7d4863SCharles Keepax 	{ 0x000006B5, 0x0080 },    /* R1717  - OUT4LMIX Input 3 Volume */
406dc7d4863SCharles Keepax 	{ 0x000006B6, 0x0000 },    /* R1718  - OUT4LMIX Input 4 Source */
407dc7d4863SCharles Keepax 	{ 0x000006B7, 0x0080 },    /* R1719  - OUT4LMIX Input 4 Volume */
408dc7d4863SCharles Keepax 	{ 0x000006C0, 0x0000 },    /* R1728  - OUT5LMIX Input 1 Source */
409dc7d4863SCharles Keepax 	{ 0x000006C1, 0x0080 },    /* R1729  - OUT5LMIX Input 1 Volume */
410dc7d4863SCharles Keepax 	{ 0x000006C2, 0x0000 },    /* R1730  - OUT5LMIX Input 2 Source */
411dc7d4863SCharles Keepax 	{ 0x000006C3, 0x0080 },    /* R1731  - OUT5LMIX Input 2 Volume */
412dc7d4863SCharles Keepax 	{ 0x000006C4, 0x0000 },    /* R1732  - OUT5LMIX Input 3 Source */
413dc7d4863SCharles Keepax 	{ 0x000006C5, 0x0080 },    /* R1733  - OUT5LMIX Input 3 Volume */
414dc7d4863SCharles Keepax 	{ 0x000006C6, 0x0000 },    /* R1734  - OUT5LMIX Input 4 Source */
415dc7d4863SCharles Keepax 	{ 0x000006C7, 0x0080 },    /* R1735  - OUT5LMIX Input 4 Volume */
416dc7d4863SCharles Keepax 	{ 0x000006C8, 0x0000 },    /* R1736  - OUT5RMIX Input 1 Source */
417dc7d4863SCharles Keepax 	{ 0x000006C9, 0x0080 },    /* R1737  - OUT5RMIX Input 1 Volume */
418dc7d4863SCharles Keepax 	{ 0x000006CA, 0x0000 },    /* R1738  - OUT5RMIX Input 2 Source */
419dc7d4863SCharles Keepax 	{ 0x000006CB, 0x0080 },    /* R1739  - OUT5RMIX Input 2 Volume */
420dc7d4863SCharles Keepax 	{ 0x000006CC, 0x0000 },    /* R1740  - OUT5RMIX Input 3 Source */
421dc7d4863SCharles Keepax 	{ 0x000006CD, 0x0080 },    /* R1741  - OUT5RMIX Input 3 Volume */
422dc7d4863SCharles Keepax 	{ 0x000006CE, 0x0000 },    /* R1742  - OUT5RMIX Input 4 Source */
423dc7d4863SCharles Keepax 	{ 0x000006CF, 0x0080 },    /* R1743  - OUT5RMIX Input 4 Volume */
424dc7d4863SCharles Keepax 	{ 0x00000700, 0x0000 },    /* R1792  - AIF1TX1MIX Input 1 Source */
425dc7d4863SCharles Keepax 	{ 0x00000701, 0x0080 },    /* R1793  - AIF1TX1MIX Input 1 Volume */
426dc7d4863SCharles Keepax 	{ 0x00000702, 0x0000 },    /* R1794  - AIF1TX1MIX Input 2 Source */
427dc7d4863SCharles Keepax 	{ 0x00000703, 0x0080 },    /* R1795  - AIF1TX1MIX Input 2 Volume */
428dc7d4863SCharles Keepax 	{ 0x00000704, 0x0000 },    /* R1796  - AIF1TX1MIX Input 3 Source */
429dc7d4863SCharles Keepax 	{ 0x00000705, 0x0080 },    /* R1797  - AIF1TX1MIX Input 3 Volume */
430dc7d4863SCharles Keepax 	{ 0x00000706, 0x0000 },    /* R1798  - AIF1TX1MIX Input 4 Source */
431dc7d4863SCharles Keepax 	{ 0x00000707, 0x0080 },    /* R1799  - AIF1TX1MIX Input 4 Volume */
432dc7d4863SCharles Keepax 	{ 0x00000708, 0x0000 },    /* R1800  - AIF1TX2MIX Input 1 Source */
433dc7d4863SCharles Keepax 	{ 0x00000709, 0x0080 },    /* R1801  - AIF1TX2MIX Input 1 Volume */
434dc7d4863SCharles Keepax 	{ 0x0000070A, 0x0000 },    /* R1802  - AIF1TX2MIX Input 2 Source */
435dc7d4863SCharles Keepax 	{ 0x0000070B, 0x0080 },    /* R1803  - AIF1TX2MIX Input 2 Volume */
436dc7d4863SCharles Keepax 	{ 0x0000070C, 0x0000 },    /* R1804  - AIF1TX2MIX Input 3 Source */
437dc7d4863SCharles Keepax 	{ 0x0000070D, 0x0080 },    /* R1805  - AIF1TX2MIX Input 3 Volume */
438dc7d4863SCharles Keepax 	{ 0x0000070E, 0x0000 },    /* R1806  - AIF1TX2MIX Input 4 Source */
439dc7d4863SCharles Keepax 	{ 0x0000070F, 0x0080 },    /* R1807  - AIF1TX2MIX Input 4 Volume */
440dc7d4863SCharles Keepax 	{ 0x00000710, 0x0000 },    /* R1808  - AIF1TX3MIX Input 1 Source */
441dc7d4863SCharles Keepax 	{ 0x00000711, 0x0080 },    /* R1809  - AIF1TX3MIX Input 1 Volume */
442dc7d4863SCharles Keepax 	{ 0x00000712, 0x0000 },    /* R1810  - AIF1TX3MIX Input 2 Source */
443dc7d4863SCharles Keepax 	{ 0x00000713, 0x0080 },    /* R1811  - AIF1TX3MIX Input 2 Volume */
444dc7d4863SCharles Keepax 	{ 0x00000714, 0x0000 },    /* R1812  - AIF1TX3MIX Input 3 Source */
445dc7d4863SCharles Keepax 	{ 0x00000715, 0x0080 },    /* R1813  - AIF1TX3MIX Input 3 Volume */
446dc7d4863SCharles Keepax 	{ 0x00000716, 0x0000 },    /* R1814  - AIF1TX3MIX Input 4 Source */
447dc7d4863SCharles Keepax 	{ 0x00000717, 0x0080 },    /* R1815  - AIF1TX3MIX Input 4 Volume */
448dc7d4863SCharles Keepax 	{ 0x00000718, 0x0000 },    /* R1816  - AIF1TX4MIX Input 1 Source */
449dc7d4863SCharles Keepax 	{ 0x00000719, 0x0080 },    /* R1817  - AIF1TX4MIX Input 1 Volume */
450dc7d4863SCharles Keepax 	{ 0x0000071A, 0x0000 },    /* R1818  - AIF1TX4MIX Input 2 Source */
451dc7d4863SCharles Keepax 	{ 0x0000071B, 0x0080 },    /* R1819  - AIF1TX4MIX Input 2 Volume */
452dc7d4863SCharles Keepax 	{ 0x0000071C, 0x0000 },    /* R1820  - AIF1TX4MIX Input 3 Source */
453dc7d4863SCharles Keepax 	{ 0x0000071D, 0x0080 },    /* R1821  - AIF1TX4MIX Input 3 Volume */
454dc7d4863SCharles Keepax 	{ 0x0000071E, 0x0000 },    /* R1822  - AIF1TX4MIX Input 4 Source */
455dc7d4863SCharles Keepax 	{ 0x0000071F, 0x0080 },    /* R1823  - AIF1TX4MIX Input 4 Volume */
456dc7d4863SCharles Keepax 	{ 0x00000720, 0x0000 },    /* R1824  - AIF1TX5MIX Input 1 Source */
457dc7d4863SCharles Keepax 	{ 0x00000721, 0x0080 },    /* R1825  - AIF1TX5MIX Input 1 Volume */
458dc7d4863SCharles Keepax 	{ 0x00000722, 0x0000 },    /* R1826  - AIF1TX5MIX Input 2 Source */
459dc7d4863SCharles Keepax 	{ 0x00000723, 0x0080 },    /* R1827  - AIF1TX5MIX Input 2 Volume */
460dc7d4863SCharles Keepax 	{ 0x00000724, 0x0000 },    /* R1828  - AIF1TX5MIX Input 3 Source */
461dc7d4863SCharles Keepax 	{ 0x00000725, 0x0080 },    /* R1829  - AIF1TX5MIX Input 3 Volume */
462dc7d4863SCharles Keepax 	{ 0x00000726, 0x0000 },    /* R1830  - AIF1TX5MIX Input 4 Source */
463dc7d4863SCharles Keepax 	{ 0x00000727, 0x0080 },    /* R1831  - AIF1TX5MIX Input 4 Volume */
464dc7d4863SCharles Keepax 	{ 0x00000728, 0x0000 },    /* R1832  - AIF1TX6MIX Input 1 Source */
465dc7d4863SCharles Keepax 	{ 0x00000729, 0x0080 },    /* R1833  - AIF1TX6MIX Input 1 Volume */
466dc7d4863SCharles Keepax 	{ 0x0000072A, 0x0000 },    /* R1834  - AIF1TX6MIX Input 2 Source */
467dc7d4863SCharles Keepax 	{ 0x0000072B, 0x0080 },    /* R1835  - AIF1TX6MIX Input 2 Volume */
468dc7d4863SCharles Keepax 	{ 0x0000072C, 0x0000 },    /* R1836  - AIF1TX6MIX Input 3 Source */
469dc7d4863SCharles Keepax 	{ 0x0000072D, 0x0080 },    /* R1837  - AIF1TX6MIX Input 3 Volume */
470dc7d4863SCharles Keepax 	{ 0x0000072E, 0x0000 },    /* R1838  - AIF1TX6MIX Input 4 Source */
471dc7d4863SCharles Keepax 	{ 0x0000072F, 0x0080 },    /* R1839  - AIF1TX6MIX Input 4 Volume */
472dc7d4863SCharles Keepax 	{ 0x00000730, 0x0000 },    /* R1840  - AIF1TX7MIX Input 1 Source */
473dc7d4863SCharles Keepax 	{ 0x00000731, 0x0080 },    /* R1841  - AIF1TX7MIX Input 1 Volume */
474dc7d4863SCharles Keepax 	{ 0x00000732, 0x0000 },    /* R1842  - AIF1TX7MIX Input 2 Source */
475dc7d4863SCharles Keepax 	{ 0x00000733, 0x0080 },    /* R1843  - AIF1TX7MIX Input 2 Volume */
476dc7d4863SCharles Keepax 	{ 0x00000734, 0x0000 },    /* R1844  - AIF1TX7MIX Input 3 Source */
477dc7d4863SCharles Keepax 	{ 0x00000735, 0x0080 },    /* R1845  - AIF1TX7MIX Input 3 Volume */
478dc7d4863SCharles Keepax 	{ 0x00000736, 0x0000 },    /* R1846  - AIF1TX7MIX Input 4 Source */
479dc7d4863SCharles Keepax 	{ 0x00000737, 0x0080 },    /* R1847  - AIF1TX7MIX Input 4 Volume */
480dc7d4863SCharles Keepax 	{ 0x00000738, 0x0000 },    /* R1848  - AIF1TX8MIX Input 1 Source */
481dc7d4863SCharles Keepax 	{ 0x00000739, 0x0080 },    /* R1849  - AIF1TX8MIX Input 1 Volume */
482dc7d4863SCharles Keepax 	{ 0x0000073A, 0x0000 },    /* R1850  - AIF1TX8MIX Input 2 Source */
483dc7d4863SCharles Keepax 	{ 0x0000073B, 0x0080 },    /* R1851  - AIF1TX8MIX Input 2 Volume */
484dc7d4863SCharles Keepax 	{ 0x0000073C, 0x0000 },    /* R1852  - AIF1TX8MIX Input 3 Source */
485dc7d4863SCharles Keepax 	{ 0x0000073D, 0x0080 },    /* R1853  - AIF1TX8MIX Input 3 Volume */
486dc7d4863SCharles Keepax 	{ 0x0000073E, 0x0000 },    /* R1854  - AIF1TX8MIX Input 4 Source */
487dc7d4863SCharles Keepax 	{ 0x0000073F, 0x0080 },    /* R1855  - AIF1TX8MIX Input 4 Volume */
488dc7d4863SCharles Keepax 	{ 0x00000740, 0x0000 },    /* R1856  - AIF2TX1MIX Input 1 Source */
489dc7d4863SCharles Keepax 	{ 0x00000741, 0x0080 },    /* R1857  - AIF2TX1MIX Input 1 Volume */
490dc7d4863SCharles Keepax 	{ 0x00000742, 0x0000 },    /* R1858  - AIF2TX1MIX Input 2 Source */
491dc7d4863SCharles Keepax 	{ 0x00000743, 0x0080 },    /* R1859  - AIF2TX1MIX Input 2 Volume */
492dc7d4863SCharles Keepax 	{ 0x00000744, 0x0000 },    /* R1860  - AIF2TX1MIX Input 3 Source */
493dc7d4863SCharles Keepax 	{ 0x00000745, 0x0080 },    /* R1861  - AIF2TX1MIX Input 3 Volume */
494dc7d4863SCharles Keepax 	{ 0x00000746, 0x0000 },    /* R1862  - AIF2TX1MIX Input 4 Source */
495dc7d4863SCharles Keepax 	{ 0x00000747, 0x0080 },    /* R1863  - AIF2TX1MIX Input 4 Volume */
496dc7d4863SCharles Keepax 	{ 0x00000748, 0x0000 },    /* R1864  - AIF2TX2MIX Input 1 Source */
497dc7d4863SCharles Keepax 	{ 0x00000749, 0x0080 },    /* R1865  - AIF2TX2MIX Input 1 Volume */
498dc7d4863SCharles Keepax 	{ 0x0000074A, 0x0000 },    /* R1866  - AIF2TX2MIX Input 2 Source */
499dc7d4863SCharles Keepax 	{ 0x0000074B, 0x0080 },    /* R1867  - AIF2TX2MIX Input 2 Volume */
500dc7d4863SCharles Keepax 	{ 0x0000074C, 0x0000 },    /* R1868  - AIF2TX2MIX Input 3 Source */
501dc7d4863SCharles Keepax 	{ 0x0000074D, 0x0080 },    /* R1869  - AIF2TX2MIX Input 3 Volume */
502dc7d4863SCharles Keepax 	{ 0x0000074E, 0x0000 },    /* R1870  - AIF2TX2MIX Input 4 Source */
503dc7d4863SCharles Keepax 	{ 0x0000074F, 0x0080 },    /* R1871  - AIF2TX2MIX Input 4 Volume */
504dc7d4863SCharles Keepax 	{ 0x000007C0, 0x0000 },    /* R1984  - SLIMTX1MIX Input 1 Source */
505dc7d4863SCharles Keepax 	{ 0x000007C1, 0x0080 },    /* R1985  - SLIMTX1MIX Input 1 Volume */
506dc7d4863SCharles Keepax 	{ 0x000007C2, 0x0000 },    /* R1986  - SLIMTX1MIX Input 2 Source */
507dc7d4863SCharles Keepax 	{ 0x000007C3, 0x0080 },    /* R1987  - SLIMTX1MIX Input 2 Volume */
508dc7d4863SCharles Keepax 	{ 0x000007C4, 0x0000 },    /* R1988  - SLIMTX1MIX Input 3 Source */
509dc7d4863SCharles Keepax 	{ 0x000007C5, 0x0080 },    /* R1989  - SLIMTX1MIX Input 3 Volume */
510dc7d4863SCharles Keepax 	{ 0x000007C6, 0x0000 },    /* R1990  - SLIMTX1MIX Input 4 Source */
511dc7d4863SCharles Keepax 	{ 0x000007C7, 0x0080 },    /* R1991  - SLIMTX1MIX Input 4 Volume */
512dc7d4863SCharles Keepax 	{ 0x000007C8, 0x0000 },    /* R1992  - SLIMTX2MIX Input 1 Source */
513dc7d4863SCharles Keepax 	{ 0x000007C9, 0x0080 },    /* R1993  - SLIMTX2MIX Input 1 Volume */
514dc7d4863SCharles Keepax 	{ 0x000007CA, 0x0000 },    /* R1994  - SLIMTX2MIX Input 2 Source */
515dc7d4863SCharles Keepax 	{ 0x000007CB, 0x0080 },    /* R1995  - SLIMTX2MIX Input 2 Volume */
516dc7d4863SCharles Keepax 	{ 0x000007CC, 0x0000 },    /* R1996  - SLIMTX2MIX Input 3 Source */
517dc7d4863SCharles Keepax 	{ 0x000007CD, 0x0080 },    /* R1997  - SLIMTX2MIX Input 3 Volume */
518dc7d4863SCharles Keepax 	{ 0x000007CE, 0x0000 },    /* R1998  - SLIMTX2MIX Input 4 Source */
519dc7d4863SCharles Keepax 	{ 0x000007CF, 0x0080 },    /* R1999  - SLIMTX2MIX Input 4 Volume */
520dc7d4863SCharles Keepax 	{ 0x000007D0, 0x0000 },    /* R2000  - SLIMTX3MIX Input 1 Source */
521dc7d4863SCharles Keepax 	{ 0x000007D1, 0x0080 },    /* R2001  - SLIMTX3MIX Input 1 Volume */
522dc7d4863SCharles Keepax 	{ 0x000007D2, 0x0000 },    /* R2002  - SLIMTX3MIX Input 2 Source */
523dc7d4863SCharles Keepax 	{ 0x000007D3, 0x0080 },    /* R2003  - SLIMTX3MIX Input 2 Volume */
524dc7d4863SCharles Keepax 	{ 0x000007D4, 0x0000 },    /* R2004  - SLIMTX3MIX Input 3 Source */
525dc7d4863SCharles Keepax 	{ 0x000007D5, 0x0080 },    /* R2005  - SLIMTX3MIX Input 3 Volume */
526dc7d4863SCharles Keepax 	{ 0x000007D6, 0x0000 },    /* R2006  - SLIMTX3MIX Input 4 Source */
527dc7d4863SCharles Keepax 	{ 0x000007D7, 0x0080 },    /* R2007  - SLIMTX3MIX Input 4 Volume */
528dc7d4863SCharles Keepax 	{ 0x000007D8, 0x0000 },    /* R2008  - SLIMTX4MIX Input 1 Source */
529dc7d4863SCharles Keepax 	{ 0x000007D9, 0x0080 },    /* R2009  - SLIMTX4MIX Input 1 Volume */
530dc7d4863SCharles Keepax 	{ 0x000007DA, 0x0000 },    /* R2010  - SLIMTX4MIX Input 2 Source */
531dc7d4863SCharles Keepax 	{ 0x000007DB, 0x0080 },    /* R2011  - SLIMTX4MIX Input 2 Volume */
532dc7d4863SCharles Keepax 	{ 0x000007DC, 0x0000 },    /* R2012  - SLIMTX4MIX Input 3 Source */
533dc7d4863SCharles Keepax 	{ 0x000007DD, 0x0080 },    /* R2013  - SLIMTX4MIX Input 3 Volume */
534dc7d4863SCharles Keepax 	{ 0x000007DE, 0x0000 },    /* R2014  - SLIMTX4MIX Input 4 Source */
535dc7d4863SCharles Keepax 	{ 0x000007DF, 0x0080 },    /* R2015  - SLIMTX4MIX Input 4 Volume */
536dc7d4863SCharles Keepax 	{ 0x000007E0, 0x0000 },    /* R2016  - SLIMTX5MIX Input 1 Source */
537dc7d4863SCharles Keepax 	{ 0x000007E1, 0x0080 },    /* R2017  - SLIMTX5MIX Input 1 Volume */
538dc7d4863SCharles Keepax 	{ 0x000007E2, 0x0000 },    /* R2018  - SLIMTX5MIX Input 2 Source */
539dc7d4863SCharles Keepax 	{ 0x000007E3, 0x0080 },    /* R2019  - SLIMTX5MIX Input 2 Volume */
540dc7d4863SCharles Keepax 	{ 0x000007E4, 0x0000 },    /* R2020  - SLIMTX5MIX Input 3 Source */
541dc7d4863SCharles Keepax 	{ 0x000007E5, 0x0080 },    /* R2021  - SLIMTX5MIX Input 3 Volume */
542dc7d4863SCharles Keepax 	{ 0x000007E6, 0x0000 },    /* R2022  - SLIMTX5MIX Input 4 Source */
543dc7d4863SCharles Keepax 	{ 0x000007E7, 0x0080 },    /* R2023  - SLIMTX5MIX Input 4 Volume */
544dc7d4863SCharles Keepax 	{ 0x000007E8, 0x0000 },    /* R2024  - SLIMTX6MIX Input 1 Source */
545dc7d4863SCharles Keepax 	{ 0x000007E9, 0x0080 },    /* R2025  - SLIMTX6MIX Input 1 Volume */
546dc7d4863SCharles Keepax 	{ 0x000007EA, 0x0000 },    /* R2026  - SLIMTX6MIX Input 2 Source */
547dc7d4863SCharles Keepax 	{ 0x000007EB, 0x0080 },    /* R2027  - SLIMTX6MIX Input 2 Volume */
548dc7d4863SCharles Keepax 	{ 0x000007EC, 0x0000 },    /* R2028  - SLIMTX6MIX Input 3 Source */
549dc7d4863SCharles Keepax 	{ 0x000007ED, 0x0080 },    /* R2029  - SLIMTX6MIX Input 3 Volume */
550dc7d4863SCharles Keepax 	{ 0x000007EE, 0x0000 },    /* R2030  - SLIMTX6MIX Input 4 Source */
551dc7d4863SCharles Keepax 	{ 0x000007EF, 0x0080 },    /* R2031  - SLIMTX6MIX Input 4 Volume */
552dc7d4863SCharles Keepax 	{ 0x000007F0, 0x0000 },    /* R2032  - SLIMTX7MIX Input 1 Source */
553dc7d4863SCharles Keepax 	{ 0x000007F1, 0x0080 },    /* R2033  - SLIMTX7MIX Input 1 Volume */
554dc7d4863SCharles Keepax 	{ 0x000007F2, 0x0000 },    /* R2034  - SLIMTX7MIX Input 2 Source */
555dc7d4863SCharles Keepax 	{ 0x000007F3, 0x0080 },    /* R2035  - SLIMTX7MIX Input 2 Volume */
556dc7d4863SCharles Keepax 	{ 0x000007F4, 0x0000 },    /* R2036  - SLIMTX7MIX Input 3 Source */
557dc7d4863SCharles Keepax 	{ 0x000007F5, 0x0080 },    /* R2037  - SLIMTX7MIX Input 3 Volume */
558dc7d4863SCharles Keepax 	{ 0x000007F6, 0x0000 },    /* R2038  - SLIMTX7MIX Input 4 Source */
559dc7d4863SCharles Keepax 	{ 0x000007F7, 0x0080 },    /* R2039  - SLIMTX7MIX Input 4 Volume */
560dc7d4863SCharles Keepax 	{ 0x000007F8, 0x0000 },    /* R2040  - SLIMTX8MIX Input 1 Source */
561dc7d4863SCharles Keepax 	{ 0x000007F9, 0x0080 },    /* R2041  - SLIMTX8MIX Input 1 Volume */
562dc7d4863SCharles Keepax 	{ 0x000007FA, 0x0000 },    /* R2042  - SLIMTX8MIX Input 2 Source */
563dc7d4863SCharles Keepax 	{ 0x000007FB, 0x0080 },    /* R2043  - SLIMTX8MIX Input 2 Volume */
564dc7d4863SCharles Keepax 	{ 0x000007FC, 0x0000 },    /* R2044  - SLIMTX8MIX Input 3 Source */
565dc7d4863SCharles Keepax 	{ 0x000007FD, 0x0080 },    /* R2045  - SLIMTX8MIX Input 3 Volume */
566dc7d4863SCharles Keepax 	{ 0x000007FE, 0x0000 },    /* R2046  - SLIMTX8MIX Input 4 Source */
567dc7d4863SCharles Keepax 	{ 0x000007FF, 0x0080 },    /* R2047  - SLIMTX8MIX Input 4 Volume */
568dc7d4863SCharles Keepax 	{ 0x00000880, 0x0000 },    /* R2176  - EQ1MIX Input 1 Source */
569dc7d4863SCharles Keepax 	{ 0x00000881, 0x0080 },    /* R2177  - EQ1MIX Input 1 Volume */
570dc7d4863SCharles Keepax 	{ 0x00000882, 0x0000 },    /* R2178  - EQ1MIX Input 2 Source */
571dc7d4863SCharles Keepax 	{ 0x00000883, 0x0080 },    /* R2179  - EQ1MIX Input 2 Volume */
572dc7d4863SCharles Keepax 	{ 0x00000884, 0x0000 },    /* R2180  - EQ1MIX Input 3 Source */
573dc7d4863SCharles Keepax 	{ 0x00000885, 0x0080 },    /* R2181  - EQ1MIX Input 3 Volume */
574dc7d4863SCharles Keepax 	{ 0x00000886, 0x0000 },    /* R2182  - EQ1MIX Input 4 Source */
575dc7d4863SCharles Keepax 	{ 0x00000887, 0x0080 },    /* R2183  - EQ1MIX Input 4 Volume */
576dc7d4863SCharles Keepax 	{ 0x00000888, 0x0000 },    /* R2184  - EQ2MIX Input 1 Source */
577dc7d4863SCharles Keepax 	{ 0x00000889, 0x0080 },    /* R2185  - EQ2MIX Input 1 Volume */
578dc7d4863SCharles Keepax 	{ 0x0000088A, 0x0000 },    /* R2186  - EQ2MIX Input 2 Source */
579dc7d4863SCharles Keepax 	{ 0x0000088B, 0x0080 },    /* R2187  - EQ2MIX Input 2 Volume */
580dc7d4863SCharles Keepax 	{ 0x0000088C, 0x0000 },    /* R2188  - EQ2MIX Input 3 Source */
581dc7d4863SCharles Keepax 	{ 0x0000088D, 0x0080 },    /* R2189  - EQ2MIX Input 3 Volume */
582dc7d4863SCharles Keepax 	{ 0x0000088E, 0x0000 },    /* R2190  - EQ2MIX Input 4 Source */
583dc7d4863SCharles Keepax 	{ 0x0000088F, 0x0080 },    /* R2191  - EQ2MIX Input 4 Volume */
584dc7d4863SCharles Keepax 	{ 0x00000890, 0x0000 },    /* R2192  - EQ3MIX Input 1 Source */
585dc7d4863SCharles Keepax 	{ 0x00000891, 0x0080 },    /* R2193  - EQ3MIX Input 1 Volume */
586dc7d4863SCharles Keepax 	{ 0x00000892, 0x0000 },    /* R2194  - EQ3MIX Input 2 Source */
587dc7d4863SCharles Keepax 	{ 0x00000893, 0x0080 },    /* R2195  - EQ3MIX Input 2 Volume */
588dc7d4863SCharles Keepax 	{ 0x00000894, 0x0000 },    /* R2196  - EQ3MIX Input 3 Source */
589dc7d4863SCharles Keepax 	{ 0x00000895, 0x0080 },    /* R2197  - EQ3MIX Input 3 Volume */
590dc7d4863SCharles Keepax 	{ 0x00000896, 0x0000 },    /* R2198  - EQ3MIX Input 4 Source */
591dc7d4863SCharles Keepax 	{ 0x00000897, 0x0080 },    /* R2199  - EQ3MIX Input 4 Volume */
592dc7d4863SCharles Keepax 	{ 0x00000898, 0x0000 },    /* R2200  - EQ4MIX Input 1 Source */
593dc7d4863SCharles Keepax 	{ 0x00000899, 0x0080 },    /* R2201  - EQ4MIX Input 1 Volume */
594dc7d4863SCharles Keepax 	{ 0x0000089A, 0x0000 },    /* R2202  - EQ4MIX Input 2 Source */
595dc7d4863SCharles Keepax 	{ 0x0000089B, 0x0080 },    /* R2203  - EQ4MIX Input 2 Volume */
596dc7d4863SCharles Keepax 	{ 0x0000089C, 0x0000 },    /* R2204  - EQ4MIX Input 3 Source */
597dc7d4863SCharles Keepax 	{ 0x0000089D, 0x0080 },    /* R2205  - EQ4MIX Input 3 Volume */
598dc7d4863SCharles Keepax 	{ 0x0000089E, 0x0000 },    /* R2206  - EQ4MIX Input 4 Source */
599dc7d4863SCharles Keepax 	{ 0x0000089F, 0x0080 },    /* R2207  - EQ4MIX Input 4 Volume */
600dc7d4863SCharles Keepax 	{ 0x000008C0, 0x0000 },    /* R2240  - DRC1LMIX Input 1 Source */
601dc7d4863SCharles Keepax 	{ 0x000008C1, 0x0080 },    /* R2241  - DRC1LMIX Input 1 Volume */
602dc7d4863SCharles Keepax 	{ 0x000008C2, 0x0000 },    /* R2242  - DRC1LMIX Input 2 Source */
603dc7d4863SCharles Keepax 	{ 0x000008C3, 0x0080 },    /* R2243  - DRC1LMIX Input 2 Volume */
604dc7d4863SCharles Keepax 	{ 0x000008C4, 0x0000 },    /* R2244  - DRC1LMIX Input 3 Source */
605dc7d4863SCharles Keepax 	{ 0x000008C5, 0x0080 },    /* R2245  - DRC1LMIX Input 3 Volume */
606dc7d4863SCharles Keepax 	{ 0x000008C6, 0x0000 },    /* R2246  - DRC1LMIX Input 4 Source */
607dc7d4863SCharles Keepax 	{ 0x000008C7, 0x0080 },    /* R2247  - DRC1LMIX Input 4 Volume */
608dc7d4863SCharles Keepax 	{ 0x000008C8, 0x0000 },    /* R2248  - DRC1RMIX Input 1 Source */
609dc7d4863SCharles Keepax 	{ 0x000008C9, 0x0080 },    /* R2249  - DRC1RMIX Input 1 Volume */
610dc7d4863SCharles Keepax 	{ 0x000008CA, 0x0000 },    /* R2250  - DRC1RMIX Input 2 Source */
611dc7d4863SCharles Keepax 	{ 0x000008CB, 0x0080 },    /* R2251  - DRC1RMIX Input 2 Volume */
612dc7d4863SCharles Keepax 	{ 0x000008CC, 0x0000 },    /* R2252  - DRC1RMIX Input 3 Source */
613dc7d4863SCharles Keepax 	{ 0x000008CD, 0x0080 },    /* R2253  - DRC1RMIX Input 3 Volume */
614dc7d4863SCharles Keepax 	{ 0x000008CE, 0x0000 },    /* R2254  - DRC1RMIX Input 4 Source */
615dc7d4863SCharles Keepax 	{ 0x000008CF, 0x0080 },    /* R2255  - DRC1RMIX Input 4 Volume */
616dc7d4863SCharles Keepax 	{ 0x00000900, 0x0000 },    /* R2304  - HPLP1MIX Input 1 Source */
617dc7d4863SCharles Keepax 	{ 0x00000901, 0x0080 },    /* R2305  - HPLP1MIX Input 1 Volume */
618dc7d4863SCharles Keepax 	{ 0x00000902, 0x0000 },    /* R2306  - HPLP1MIX Input 2 Source */
619dc7d4863SCharles Keepax 	{ 0x00000903, 0x0080 },    /* R2307  - HPLP1MIX Input 2 Volume */
620dc7d4863SCharles Keepax 	{ 0x00000904, 0x0000 },    /* R2308  - HPLP1MIX Input 3 Source */
621dc7d4863SCharles Keepax 	{ 0x00000905, 0x0080 },    /* R2309  - HPLP1MIX Input 3 Volume */
622dc7d4863SCharles Keepax 	{ 0x00000906, 0x0000 },    /* R2310  - HPLP1MIX Input 4 Source */
623dc7d4863SCharles Keepax 	{ 0x00000907, 0x0080 },    /* R2311  - HPLP1MIX Input 4 Volume */
624dc7d4863SCharles Keepax 	{ 0x00000908, 0x0000 },    /* R2312  - HPLP2MIX Input 1 Source */
625dc7d4863SCharles Keepax 	{ 0x00000909, 0x0080 },    /* R2313  - HPLP2MIX Input 1 Volume */
626dc7d4863SCharles Keepax 	{ 0x0000090A, 0x0000 },    /* R2314  - HPLP2MIX Input 2 Source */
627dc7d4863SCharles Keepax 	{ 0x0000090B, 0x0080 },    /* R2315  - HPLP2MIX Input 2 Volume */
628dc7d4863SCharles Keepax 	{ 0x0000090C, 0x0000 },    /* R2316  - HPLP2MIX Input 3 Source */
629dc7d4863SCharles Keepax 	{ 0x0000090D, 0x0080 },    /* R2317  - HPLP2MIX Input 3 Volume */
630dc7d4863SCharles Keepax 	{ 0x0000090E, 0x0000 },    /* R2318  - HPLP2MIX Input 4 Source */
631dc7d4863SCharles Keepax 	{ 0x0000090F, 0x0080 },    /* R2319  - HPLP2MIX Input 4 Volume */
632dc7d4863SCharles Keepax 	{ 0x00000910, 0x0000 },    /* R2320  - HPLP3MIX Input 1 Source */
633dc7d4863SCharles Keepax 	{ 0x00000911, 0x0080 },    /* R2321  - HPLP3MIX Input 1 Volume */
634dc7d4863SCharles Keepax 	{ 0x00000912, 0x0000 },    /* R2322  - HPLP3MIX Input 2 Source */
635dc7d4863SCharles Keepax 	{ 0x00000913, 0x0080 },    /* R2323  - HPLP3MIX Input 2 Volume */
636dc7d4863SCharles Keepax 	{ 0x00000914, 0x0000 },    /* R2324  - HPLP3MIX Input 3 Source */
637dc7d4863SCharles Keepax 	{ 0x00000915, 0x0080 },    /* R2325  - HPLP3MIX Input 3 Volume */
638dc7d4863SCharles Keepax 	{ 0x00000916, 0x0000 },    /* R2326  - HPLP3MIX Input 4 Source */
639dc7d4863SCharles Keepax 	{ 0x00000917, 0x0080 },    /* R2327  - HPLP3MIX Input 4 Volume */
640dc7d4863SCharles Keepax 	{ 0x00000918, 0x0000 },    /* R2328  - HPLP4MIX Input 1 Source */
641dc7d4863SCharles Keepax 	{ 0x00000919, 0x0080 },    /* R2329  - HPLP4MIX Input 1 Volume */
642dc7d4863SCharles Keepax 	{ 0x0000091A, 0x0000 },    /* R2330  - HPLP4MIX Input 2 Source */
643dc7d4863SCharles Keepax 	{ 0x0000091B, 0x0080 },    /* R2331  - HPLP4MIX Input 2 Volume */
644dc7d4863SCharles Keepax 	{ 0x0000091C, 0x0000 },    /* R2332  - HPLP4MIX Input 3 Source */
645dc7d4863SCharles Keepax 	{ 0x0000091D, 0x0080 },    /* R2333  - HPLP4MIX Input 3 Volume */
646dc7d4863SCharles Keepax 	{ 0x0000091E, 0x0000 },    /* R2334  - HPLP4MIX Input 4 Source */
647dc7d4863SCharles Keepax 	{ 0x0000091F, 0x0080 },    /* R2335  - HPLP4MIX Input 4 Volume */
648dc7d4863SCharles Keepax 	{ 0x00000B00, 0x0000 },    /* R2816  - ISRC1DEC1MIX Input 1 Source */
649dc7d4863SCharles Keepax 	{ 0x00000B08, 0x0000 },    /* R2824  - ISRC1DEC2MIX Input 1 Source */
650dc7d4863SCharles Keepax 	{ 0x00000B20, 0x0000 },    /* R2848  - ISRC1INT1MIX Input 1 Source */
651dc7d4863SCharles Keepax 	{ 0x00000B28, 0x0000 },    /* R2856  - ISRC1INT2MIX Input 1 Source */
652dc7d4863SCharles Keepax 	{ 0x00000B40, 0x0000 },    /* R2880  - ISRC2DEC1MIX Input 1 Source */
653dc7d4863SCharles Keepax 	{ 0x00000B48, 0x0000 },    /* R2888  - ISRC2DEC2MIX Input 1 Source */
654dc7d4863SCharles Keepax 	{ 0x00000B60, 0x0000 },    /* R2912  - ISRC2INT1MIX Input 1 Source */
655dc7d4863SCharles Keepax 	{ 0x00000B68, 0x0000 },    /* R2920  - ISRC2INT2MIX Input 1 Source */
656dc7d4863SCharles Keepax 	{ 0x00000C00, 0xA101 },    /* R3072  - GPIO1 CTRL */
657dc7d4863SCharles Keepax 	{ 0x00000C01, 0xA101 },    /* R3073  - GPIO2 CTRL */
658dc7d4863SCharles Keepax 	{ 0x00000C02, 0xA101 },    /* R3074  - GPIO3 CTRL */
659dc7d4863SCharles Keepax 	{ 0x00000C03, 0xA101 },    /* R3075  - GPIO4 CTRL */
660dc7d4863SCharles Keepax 	{ 0x00000C04, 0xA101 },    /* R3076  - GPIO5 CTRL */
661dc7d4863SCharles Keepax 	{ 0x00000C0F, 0x0400 },    /* R3087  - IRQ CTRL 1 */
662dc7d4863SCharles Keepax 	{ 0x00000C10, 0x1000 },    /* R3088  - GPIO Debounce Config */
663dc7d4863SCharles Keepax 	{ 0x00000C20, 0x8002 },    /* R3104  - Misc Pad Ctrl 1 */
664dc7d4863SCharles Keepax 	{ 0x00000C21, 0x0001 },    /* R3105  - Misc Pad Ctrl 2 */
665dc7d4863SCharles Keepax 	{ 0x00000C22, 0x0000 },    /* R3106  - Misc Pad Ctrl 3 */
666dc7d4863SCharles Keepax 	{ 0x00000C23, 0x0000 },    /* R3107  - Misc Pad Ctrl 4 */
667dc7d4863SCharles Keepax 	{ 0x00000C24, 0x0000 },    /* R3108  - Misc Pad Ctrl 5 */
668dc7d4863SCharles Keepax 	{ 0x00000D08, 0xFFFF },    /* R3336  - Interrupt Status 1 Mask */
669e62cace7SCharles Keepax 	{ 0x00000D09, 0xFFFF },    /* R3337  - Interrupt Status 2 Mask */
670dc7d4863SCharles Keepax 	{ 0x00000D0A, 0xFFFF },    /* R3338  - Interrupt Status 3 Mask */
671dc7d4863SCharles Keepax 	{ 0x00000D0B, 0xFFFF },    /* R3339  - Interrupt Status 4 Mask */
672dc7d4863SCharles Keepax 	{ 0x00000D0C, 0xFEFF },    /* R3340  - Interrupt Status 5 Mask */
673dc7d4863SCharles Keepax 	{ 0x00000D0F, 0x0000 },    /* R3343  - Interrupt Control */
674dc7d4863SCharles Keepax 	{ 0x00000D18, 0xFFFF },    /* R3352  - IRQ2 Status 1 Mask */
675dc7d4863SCharles Keepax 	{ 0x00000D1A, 0xFFFF },    /* R3354  - IRQ2 Status 3 Mask */
676dc7d4863SCharles Keepax 	{ 0x00000D1B, 0xFFFF },    /* R3355  - IRQ2 Status 4 Mask */
677dc7d4863SCharles Keepax 	{ 0x00000D1C, 0xFFFF },    /* R3356  - IRQ2 Status 5 Mask */
678dc7d4863SCharles Keepax 	{ 0x00000D1F, 0x0000 },    /* R3359  - IRQ2 Control */
679dc7d4863SCharles Keepax 	{ 0x00000D53, 0xFFFF },    /* R3411  - AOD IRQ Mask IRQ1 */
680dc7d4863SCharles Keepax 	{ 0x00000D54, 0xFFFF },    /* R3412  - AOD IRQ Mask IRQ2 */
681dc7d4863SCharles Keepax 	{ 0x00000D56, 0x0000 },    /* R3414  - Jack detect debounce */
682dc7d4863SCharles Keepax 	{ 0x00000E00, 0x0000 },    /* R3584  - FX_Ctrl1 */
683dc7d4863SCharles Keepax 	{ 0x00000E10, 0x6318 },    /* R3600  - EQ1_1 */
684dc7d4863SCharles Keepax 	{ 0x00000E11, 0x6300 },    /* R3601  - EQ1_2 */
685dc7d4863SCharles Keepax 	{ 0x00000E12, 0x0FC8 },    /* R3602  - EQ1_3 */
686dc7d4863SCharles Keepax 	{ 0x00000E13, 0x03FE },    /* R3603  - EQ1_4 */
687dc7d4863SCharles Keepax 	{ 0x00000E14, 0x00E0 },    /* R3604  - EQ1_5 */
688dc7d4863SCharles Keepax 	{ 0x00000E15, 0x1EC4 },    /* R3605  - EQ1_6 */
689dc7d4863SCharles Keepax 	{ 0x00000E16, 0xF136 },    /* R3606  - EQ1_7 */
690dc7d4863SCharles Keepax 	{ 0x00000E17, 0x0409 },    /* R3607  - EQ1_8 */
691dc7d4863SCharles Keepax 	{ 0x00000E18, 0x04CC },    /* R3608  - EQ1_9 */
692dc7d4863SCharles Keepax 	{ 0x00000E19, 0x1C9B },    /* R3609  - EQ1_10 */
693dc7d4863SCharles Keepax 	{ 0x00000E1A, 0xF337 },    /* R3610  - EQ1_11 */
694dc7d4863SCharles Keepax 	{ 0x00000E1B, 0x040B },    /* R3611  - EQ1_12 */
695dc7d4863SCharles Keepax 	{ 0x00000E1C, 0x0CBB },    /* R3612  - EQ1_13 */
696dc7d4863SCharles Keepax 	{ 0x00000E1D, 0x16F8 },    /* R3613  - EQ1_14 */
697dc7d4863SCharles Keepax 	{ 0x00000E1E, 0xF7D9 },    /* R3614  - EQ1_15 */
698dc7d4863SCharles Keepax 	{ 0x00000E1F, 0x040A },    /* R3615  - EQ1_16 */
699dc7d4863SCharles Keepax 	{ 0x00000E20, 0x1F14 },    /* R3616  - EQ1_17 */
700dc7d4863SCharles Keepax 	{ 0x00000E21, 0x058C },    /* R3617  - EQ1_18 */
701dc7d4863SCharles Keepax 	{ 0x00000E22, 0x0563 },    /* R3618  - EQ1_19 */
702dc7d4863SCharles Keepax 	{ 0x00000E23, 0x4000 },    /* R3619  - EQ1_20 */
703dc7d4863SCharles Keepax 	{ 0x00000E24, 0x0B75 },    /* R3620  - EQ1_21 */
704dc7d4863SCharles Keepax 	{ 0x00000E26, 0x6318 },    /* R3622  - EQ2_1 */
705dc7d4863SCharles Keepax 	{ 0x00000E27, 0x6300 },    /* R3623  - EQ2_2 */
706dc7d4863SCharles Keepax 	{ 0x00000E28, 0x0FC8 },    /* R3624  - EQ2_3 */
707dc7d4863SCharles Keepax 	{ 0x00000E29, 0x03FE },    /* R3625  - EQ2_4 */
708dc7d4863SCharles Keepax 	{ 0x00000E2A, 0x00E0 },    /* R3626  - EQ2_5 */
709dc7d4863SCharles Keepax 	{ 0x00000E2B, 0x1EC4 },    /* R3627  - EQ2_6 */
710dc7d4863SCharles Keepax 	{ 0x00000E2C, 0xF136 },    /* R3628  - EQ2_7 */
711dc7d4863SCharles Keepax 	{ 0x00000E2D, 0x0409 },    /* R3629  - EQ2_8 */
712dc7d4863SCharles Keepax 	{ 0x00000E2E, 0x04CC },    /* R3630  - EQ2_9 */
713dc7d4863SCharles Keepax 	{ 0x00000E2F, 0x1C9B },    /* R3631  - EQ2_10 */
714dc7d4863SCharles Keepax 	{ 0x00000E30, 0xF337 },    /* R3632  - EQ2_11 */
715dc7d4863SCharles Keepax 	{ 0x00000E31, 0x040B },    /* R3633  - EQ2_12 */
716dc7d4863SCharles Keepax 	{ 0x00000E32, 0x0CBB },    /* R3634  - EQ2_13 */
717dc7d4863SCharles Keepax 	{ 0x00000E33, 0x16F8 },    /* R3635  - EQ2_14 */
718dc7d4863SCharles Keepax 	{ 0x00000E34, 0xF7D9 },    /* R3636  - EQ2_15 */
719dc7d4863SCharles Keepax 	{ 0x00000E35, 0x040A },    /* R3637  - EQ2_16 */
720dc7d4863SCharles Keepax 	{ 0x00000E36, 0x1F14 },    /* R3638  - EQ2_17 */
721dc7d4863SCharles Keepax 	{ 0x00000E37, 0x058C },    /* R3639  - EQ2_18 */
722dc7d4863SCharles Keepax 	{ 0x00000E38, 0x0563 },    /* R3640  - EQ2_19 */
723dc7d4863SCharles Keepax 	{ 0x00000E39, 0x4000 },    /* R3641  - EQ2_20 */
724dc7d4863SCharles Keepax 	{ 0x00000E3A, 0x0B75 },    /* R3642  - EQ2_21 */
725dc7d4863SCharles Keepax 	{ 0x00000E3C, 0x6318 },    /* R3644  - EQ3_1 */
726dc7d4863SCharles Keepax 	{ 0x00000E3D, 0x6300 },    /* R3645  - EQ3_2 */
727dc7d4863SCharles Keepax 	{ 0x00000E3E, 0x0FC8 },    /* R3646  - EQ3_3 */
728dc7d4863SCharles Keepax 	{ 0x00000E3F, 0x03FE },    /* R3647  - EQ3_4 */
729dc7d4863SCharles Keepax 	{ 0x00000E40, 0x00E0 },    /* R3648  - EQ3_5 */
730dc7d4863SCharles Keepax 	{ 0x00000E41, 0x1EC4 },    /* R3649  - EQ3_6 */
731dc7d4863SCharles Keepax 	{ 0x00000E42, 0xF136 },    /* R3650  - EQ3_7 */
732dc7d4863SCharles Keepax 	{ 0x00000E43, 0x0409 },    /* R3651  - EQ3_8 */
733dc7d4863SCharles Keepax 	{ 0x00000E44, 0x04CC },    /* R3652  - EQ3_9 */
734dc7d4863SCharles Keepax 	{ 0x00000E45, 0x1C9B },    /* R3653  - EQ3_10 */
735dc7d4863SCharles Keepax 	{ 0x00000E46, 0xF337 },    /* R3654  - EQ3_11 */
736dc7d4863SCharles Keepax 	{ 0x00000E47, 0x040B },    /* R3655  - EQ3_12 */
737dc7d4863SCharles Keepax 	{ 0x00000E48, 0x0CBB },    /* R3656  - EQ3_13 */
738dc7d4863SCharles Keepax 	{ 0x00000E49, 0x16F8 },    /* R3657  - EQ3_14 */
739dc7d4863SCharles Keepax 	{ 0x00000E4A, 0xF7D9 },    /* R3658  - EQ3_15 */
740dc7d4863SCharles Keepax 	{ 0x00000E4B, 0x040A },    /* R3659  - EQ3_16 */
741dc7d4863SCharles Keepax 	{ 0x00000E4C, 0x1F14 },    /* R3660  - EQ3_17 */
742dc7d4863SCharles Keepax 	{ 0x00000E4D, 0x058C },    /* R3661  - EQ3_18 */
743dc7d4863SCharles Keepax 	{ 0x00000E4E, 0x0563 },    /* R3662  - EQ3_19 */
744dc7d4863SCharles Keepax 	{ 0x00000E4F, 0x4000 },    /* R3663  - EQ3_20 */
745dc7d4863SCharles Keepax 	{ 0x00000E50, 0x0B75 },    /* R3664  - EQ3_21 */
746dc7d4863SCharles Keepax 	{ 0x00000E52, 0x6318 },    /* R3666  - EQ4_1 */
747dc7d4863SCharles Keepax 	{ 0x00000E53, 0x6300 },    /* R3667  - EQ4_2 */
748dc7d4863SCharles Keepax 	{ 0x00000E54, 0x0FC8 },    /* R3668  - EQ4_3 */
749dc7d4863SCharles Keepax 	{ 0x00000E55, 0x03FE },    /* R3669  - EQ4_4 */
750dc7d4863SCharles Keepax 	{ 0x00000E56, 0x00E0 },    /* R3670  - EQ4_5 */
751dc7d4863SCharles Keepax 	{ 0x00000E57, 0x1EC4 },    /* R3671  - EQ4_6 */
752dc7d4863SCharles Keepax 	{ 0x00000E58, 0xF136 },    /* R3672  - EQ4_7 */
753dc7d4863SCharles Keepax 	{ 0x00000E59, 0x0409 },    /* R3673  - EQ4_8 */
754dc7d4863SCharles Keepax 	{ 0x00000E5A, 0x04CC },    /* R3674  - EQ4_9 */
755dc7d4863SCharles Keepax 	{ 0x00000E5B, 0x1C9B },    /* R3675  - EQ4_10 */
756dc7d4863SCharles Keepax 	{ 0x00000E5C, 0xF337 },    /* R3676  - EQ4_11 */
757dc7d4863SCharles Keepax 	{ 0x00000E5D, 0x040B },    /* R3677  - EQ4_12 */
758dc7d4863SCharles Keepax 	{ 0x00000E5E, 0x0CBB },    /* R3678  - EQ4_13 */
759dc7d4863SCharles Keepax 	{ 0x00000E5F, 0x16F8 },    /* R3679  - EQ4_14 */
760dc7d4863SCharles Keepax 	{ 0x00000E60, 0xF7D9 },    /* R3680  - EQ4_15 */
761dc7d4863SCharles Keepax 	{ 0x00000E61, 0x040A },    /* R3681  - EQ4_16 */
762dc7d4863SCharles Keepax 	{ 0x00000E62, 0x1F14 },    /* R3682  - EQ4_17 */
763dc7d4863SCharles Keepax 	{ 0x00000E63, 0x058C },    /* R3683  - EQ4_18 */
764dc7d4863SCharles Keepax 	{ 0x00000E64, 0x0563 },    /* R3684  - EQ4_19 */
765dc7d4863SCharles Keepax 	{ 0x00000E65, 0x4000 },    /* R3685  - EQ4_20 */
766dc7d4863SCharles Keepax 	{ 0x00000E66, 0x0B75 },    /* R3686  - EQ4_21 */
767dc7d4863SCharles Keepax 	{ 0x00000E80, 0x0018 },    /* R3712  - DRC1 ctrl1 */
768dc7d4863SCharles Keepax 	{ 0x00000E81, 0x0933 },    /* R3713  - DRC1 ctrl2 */
769dc7d4863SCharles Keepax 	{ 0x00000E82, 0x0018 },    /* R3714  - DRC1 ctrl3 */
770dc7d4863SCharles Keepax 	{ 0x00000E83, 0x0000 },    /* R3715  - DRC1 ctrl4 */
771dc7d4863SCharles Keepax 	{ 0x00000E84, 0x0000 },    /* R3716  - DRC1 ctrl5 */
772dc7d4863SCharles Keepax 	{ 0x00000EC0, 0x0000 },    /* R3776  - HPLPF1_1 */
773dc7d4863SCharles Keepax 	{ 0x00000EC1, 0x0000 },    /* R3777  - HPLPF1_2 */
774dc7d4863SCharles Keepax 	{ 0x00000EC4, 0x0000 },    /* R3780  - HPLPF2_1 */
775dc7d4863SCharles Keepax 	{ 0x00000EC5, 0x0000 },    /* R3781  - HPLPF2_2 */
776dc7d4863SCharles Keepax 	{ 0x00000EC8, 0x0000 },    /* R3784  - HPLPF3_1 */
777dc7d4863SCharles Keepax 	{ 0x00000EC9, 0x0000 },    /* R3785  - HPLPF3_2 */
778dc7d4863SCharles Keepax 	{ 0x00000ECC, 0x0000 },    /* R3788  - HPLPF4_1 */
779dc7d4863SCharles Keepax 	{ 0x00000ECD, 0x0000 },    /* R3789  - HPLPF4_2 */
780dc7d4863SCharles Keepax 	{ 0x00000EF0, 0x0000 },    /* R3824  - ISRC 1 CTRL 1 */
781dc7d4863SCharles Keepax 	{ 0x00000EF1, 0x0000 },    /* R3825  - ISRC 1 CTRL 2 */
782dc7d4863SCharles Keepax 	{ 0x00000EF2, 0x0000 },    /* R3826  - ISRC 1 CTRL 3 */
783dc7d4863SCharles Keepax 	{ 0x00000EF3, 0x0000 },    /* R3827  - ISRC 2 CTRL 1 */
784dc7d4863SCharles Keepax 	{ 0x00000EF4, 0x0000 },    /* R3828  - ISRC 2 CTRL 2 */
785dc7d4863SCharles Keepax 	{ 0x00000EF5, 0x0000 },    /* R3829  - ISRC 2 CTRL 3 */
786dc7d4863SCharles Keepax };
787dc7d4863SCharles Keepax 
wm8997_readable_register(struct device * dev,unsigned int reg)788dc7d4863SCharles Keepax static bool wm8997_readable_register(struct device *dev, unsigned int reg)
789dc7d4863SCharles Keepax {
790dc7d4863SCharles Keepax 	switch (reg) {
791dc7d4863SCharles Keepax 	case ARIZONA_SOFTWARE_RESET:
792dc7d4863SCharles Keepax 	case ARIZONA_DEVICE_REVISION:
793dc7d4863SCharles Keepax 	case ARIZONA_CTRL_IF_I2C1_CFG_1:
794dc7d4863SCharles Keepax 	case ARIZONA_WRITE_SEQUENCER_CTRL_0:
795dc7d4863SCharles Keepax 	case ARIZONA_WRITE_SEQUENCER_CTRL_1:
796dc7d4863SCharles Keepax 	case ARIZONA_WRITE_SEQUENCER_CTRL_2:
797dc7d4863SCharles Keepax 	case ARIZONA_TONE_GENERATOR_1:
798dc7d4863SCharles Keepax 	case ARIZONA_TONE_GENERATOR_2:
799dc7d4863SCharles Keepax 	case ARIZONA_TONE_GENERATOR_3:
800dc7d4863SCharles Keepax 	case ARIZONA_TONE_GENERATOR_4:
801dc7d4863SCharles Keepax 	case ARIZONA_TONE_GENERATOR_5:
802dc7d4863SCharles Keepax 	case ARIZONA_PWM_DRIVE_1:
803dc7d4863SCharles Keepax 	case ARIZONA_PWM_DRIVE_2:
804dc7d4863SCharles Keepax 	case ARIZONA_PWM_DRIVE_3:
805dc7d4863SCharles Keepax 	case ARIZONA_WAKE_CONTROL:
806dc7d4863SCharles Keepax 	case ARIZONA_SEQUENCE_CONTROL:
807dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_1:
808dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_2:
809dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_3:
810dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_4:
811dc7d4863SCharles Keepax 	case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_3:
812dc7d4863SCharles Keepax 	case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_4:
813a9cd92acSRichard Fitzgerald 	case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_5:
814a9cd92acSRichard Fitzgerald 	case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_6:
815dc7d4863SCharles Keepax 	case ARIZONA_COMFORT_NOISE_GENERATOR:
816dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_CONTROL_1:
817dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_CONTROL_2:
818dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_1_INTENSITY:
819dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_1_DURATION:
820dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_2_INTENSITY:
821dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_2_DURATION:
822dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_3_INTENSITY:
823dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_PHASE_3_DURATION:
824dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_STATUS:
825dc7d4863SCharles Keepax 	case ARIZONA_CLOCK_32K_1:
826dc7d4863SCharles Keepax 	case ARIZONA_SYSTEM_CLOCK_1:
827dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_1:
828dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_2:
829dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_3:
830dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_1_STATUS:
831dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_2_STATUS:
832dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_3_STATUS:
833dc7d4863SCharles Keepax 	case ARIZONA_ASYNC_CLOCK_1:
834dc7d4863SCharles Keepax 	case ARIZONA_ASYNC_SAMPLE_RATE_1:
835dc7d4863SCharles Keepax 	case ARIZONA_ASYNC_SAMPLE_RATE_1_STATUS:
836dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_SYSTEM_CLOCK:
837dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_ASYNC_CLOCK:
838dc7d4863SCharles Keepax 	case ARIZONA_RATE_ESTIMATOR_1:
839dc7d4863SCharles Keepax 	case ARIZONA_RATE_ESTIMATOR_2:
840dc7d4863SCharles Keepax 	case ARIZONA_RATE_ESTIMATOR_3:
841dc7d4863SCharles Keepax 	case ARIZONA_RATE_ESTIMATOR_4:
842dc7d4863SCharles Keepax 	case ARIZONA_RATE_ESTIMATOR_5:
843bcc36b40SCharles Keepax 	case ARIZONA_DYNAMIC_FREQUENCY_SCALING_1:
844dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_1:
845dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_2:
846dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_3:
847dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_4:
848dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_5:
849dc7d4863SCharles Keepax 	case ARIZONA_FLL1_CONTROL_6:
850dc7d4863SCharles Keepax 	case ARIZONA_FLL1_LOOP_FILTER_TEST_1:
851dc7d4863SCharles Keepax 	case ARIZONA_FLL1_NCO_TEST_0:
852dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_1:
853dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_2:
854dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_3:
855dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_4:
856dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_5:
857dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SYNCHRONISER_6:
858dc7d4863SCharles Keepax 	case ARIZONA_FLL1_SPREAD_SPECTRUM:
859dc7d4863SCharles Keepax 	case ARIZONA_FLL1_GPIO_CLOCK:
860dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_1:
861dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_2:
862dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_3:
863dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_4:
864dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_5:
865dc7d4863SCharles Keepax 	case ARIZONA_FLL2_CONTROL_6:
866dc7d4863SCharles Keepax 	case ARIZONA_FLL2_LOOP_FILTER_TEST_1:
867dc7d4863SCharles Keepax 	case ARIZONA_FLL2_NCO_TEST_0:
868dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_1:
869dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_2:
870dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_3:
871dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_4:
872dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_5:
873dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SYNCHRONISER_6:
874dc7d4863SCharles Keepax 	case ARIZONA_FLL2_SPREAD_SPECTRUM:
875dc7d4863SCharles Keepax 	case ARIZONA_FLL2_GPIO_CLOCK:
876dc7d4863SCharles Keepax 	case ARIZONA_MIC_CHARGE_PUMP_1:
877dc7d4863SCharles Keepax 	case ARIZONA_LDO1_CONTROL_1:
878bcc36b40SCharles Keepax 	case ARIZONA_LDO1_CONTROL_2:
879dc7d4863SCharles Keepax 	case ARIZONA_LDO2_CONTROL_1:
880dc7d4863SCharles Keepax 	case ARIZONA_MIC_BIAS_CTRL_1:
881dc7d4863SCharles Keepax 	case ARIZONA_MIC_BIAS_CTRL_2:
882dc7d4863SCharles Keepax 	case ARIZONA_MIC_BIAS_CTRL_3:
88347958c5aSCharles Keepax 	case ARIZONA_HP_CTRL_1L:
88447958c5aSCharles Keepax 	case ARIZONA_HP_CTRL_1R:
885dc7d4863SCharles Keepax 	case ARIZONA_ACCESSORY_DETECT_MODE_1:
886dc7d4863SCharles Keepax 	case ARIZONA_HEADPHONE_DETECT_1:
887dc7d4863SCharles Keepax 	case ARIZONA_HEADPHONE_DETECT_2:
888dc7d4863SCharles Keepax 	case ARIZONA_MIC_DETECT_1:
889dc7d4863SCharles Keepax 	case ARIZONA_MIC_DETECT_2:
890dc7d4863SCharles Keepax 	case ARIZONA_MIC_DETECT_3:
891dc7d4863SCharles Keepax 	case ARIZONA_MIC_NOISE_MIX_CONTROL_1:
892dc7d4863SCharles Keepax 	case ARIZONA_ISOLATION_CONTROL:
893dc7d4863SCharles Keepax 	case ARIZONA_JACK_DETECT_ANALOGUE:
894dc7d4863SCharles Keepax 	case ARIZONA_INPUT_ENABLES:
895dc7d4863SCharles Keepax 	case ARIZONA_INPUT_ENABLES_STATUS:
896dc7d4863SCharles Keepax 	case ARIZONA_INPUT_RATE:
897dc7d4863SCharles Keepax 	case ARIZONA_INPUT_VOLUME_RAMP:
898dc7d4863SCharles Keepax 	case ARIZONA_IN1L_CONTROL:
899dc7d4863SCharles Keepax 	case ARIZONA_ADC_DIGITAL_VOLUME_1L:
900dc7d4863SCharles Keepax 	case ARIZONA_DMIC1L_CONTROL:
901dc7d4863SCharles Keepax 	case ARIZONA_IN1R_CONTROL:
902dc7d4863SCharles Keepax 	case ARIZONA_ADC_DIGITAL_VOLUME_1R:
903dc7d4863SCharles Keepax 	case ARIZONA_DMIC1R_CONTROL:
904dc7d4863SCharles Keepax 	case ARIZONA_IN2L_CONTROL:
905dc7d4863SCharles Keepax 	case ARIZONA_ADC_DIGITAL_VOLUME_2L:
906dc7d4863SCharles Keepax 	case ARIZONA_DMIC2L_CONTROL:
907dc7d4863SCharles Keepax 	case ARIZONA_IN2R_CONTROL:
908dc7d4863SCharles Keepax 	case ARIZONA_ADC_DIGITAL_VOLUME_2R:
909dc7d4863SCharles Keepax 	case ARIZONA_DMIC2R_CONTROL:
910dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_ENABLES_1:
911dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_STATUS_1:
912dc7d4863SCharles Keepax 	case ARIZONA_RAW_OUTPUT_STATUS_1:
913dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_RATE_1:
914dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_VOLUME_RAMP:
915dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_PATH_CONFIG_1L:
916dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_1L:
917dc7d4863SCharles Keepax 	case ARIZONA_DAC_VOLUME_LIMIT_1L:
918dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_1L:
919dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_PATH_CONFIG_1R:
920dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_1R:
921dc7d4863SCharles Keepax 	case ARIZONA_DAC_VOLUME_LIMIT_1R:
922dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_1R:
923dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_PATH_CONFIG_3L:
924dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_3L:
925dc7d4863SCharles Keepax 	case ARIZONA_DAC_VOLUME_LIMIT_3L:
926dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_3L:
927dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_PATH_CONFIG_4L:
928dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_4L:
929dc7d4863SCharles Keepax 	case ARIZONA_OUT_VOLUME_4L:
930dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_4L:
931dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_PATH_CONFIG_5L:
932dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_5L:
933dc7d4863SCharles Keepax 	case ARIZONA_DAC_VOLUME_LIMIT_5L:
934dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_5L:
935dc7d4863SCharles Keepax 	case ARIZONA_DAC_DIGITAL_VOLUME_5R:
936dc7d4863SCharles Keepax 	case ARIZONA_DAC_VOLUME_LIMIT_5R:
937dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_SELECT_5R:
938dc7d4863SCharles Keepax 	case ARIZONA_DAC_AEC_CONTROL_1:
939dc7d4863SCharles Keepax 	case ARIZONA_NOISE_GATE_CONTROL:
940dc7d4863SCharles Keepax 	case ARIZONA_PDM_SPK1_CTRL_1:
941dc7d4863SCharles Keepax 	case ARIZONA_PDM_SPK1_CTRL_2:
942dc7d4863SCharles Keepax 	case ARIZONA_AIF1_BCLK_CTRL:
943dc7d4863SCharles Keepax 	case ARIZONA_AIF1_TX_PIN_CTRL:
944dc7d4863SCharles Keepax 	case ARIZONA_AIF1_RX_PIN_CTRL:
945dc7d4863SCharles Keepax 	case ARIZONA_AIF1_RATE_CTRL:
946dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FORMAT:
947dc7d4863SCharles Keepax 	case ARIZONA_AIF1_TX_BCLK_RATE:
948dc7d4863SCharles Keepax 	case ARIZONA_AIF1_RX_BCLK_RATE:
949dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_1:
950dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_2:
951dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_3:
952dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_4:
953dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_5:
954dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_6:
955dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_7:
956dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_8:
957dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_9:
958dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_10:
959dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_11:
960dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_12:
961dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_13:
962dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_14:
963dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_15:
964dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_16:
965dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_17:
966dc7d4863SCharles Keepax 	case ARIZONA_AIF1_FRAME_CTRL_18:
967dc7d4863SCharles Keepax 	case ARIZONA_AIF1_TX_ENABLES:
968dc7d4863SCharles Keepax 	case ARIZONA_AIF1_RX_ENABLES:
969dc7d4863SCharles Keepax 	case ARIZONA_AIF2_BCLK_CTRL:
970dc7d4863SCharles Keepax 	case ARIZONA_AIF2_TX_PIN_CTRL:
971dc7d4863SCharles Keepax 	case ARIZONA_AIF2_RX_PIN_CTRL:
972dc7d4863SCharles Keepax 	case ARIZONA_AIF2_RATE_CTRL:
973dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FORMAT:
974dc7d4863SCharles Keepax 	case ARIZONA_AIF2_TX_BCLK_RATE:
975dc7d4863SCharles Keepax 	case ARIZONA_AIF2_RX_BCLK_RATE:
976dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_1:
977dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_2:
978dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_3:
979dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_4:
980dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_11:
981dc7d4863SCharles Keepax 	case ARIZONA_AIF2_FRAME_CTRL_12:
982dc7d4863SCharles Keepax 	case ARIZONA_AIF2_TX_ENABLES:
983dc7d4863SCharles Keepax 	case ARIZONA_AIF2_RX_ENABLES:
984dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_FRAMER_REF_GEAR:
985dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_1:
986dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_2:
987dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_3:
988dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_4:
989dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_5:
990dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_6:
991dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_7:
992dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RATES_8:
993dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RX_CHANNEL_ENABLE:
994dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_TX_CHANNEL_ENABLE:
995dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RX_PORT_STATUS:
996dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_TX_PORT_STATUS:
997dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_1_SOURCE:
998dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_1_VOLUME:
999dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_2_SOURCE:
1000dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_2_VOLUME:
1001dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_3_SOURCE:
1002dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_3_VOLUME:
1003dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_4_SOURCE:
1004dc7d4863SCharles Keepax 	case ARIZONA_PWM1MIX_INPUT_4_VOLUME:
1005dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_1_SOURCE:
1006dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_1_VOLUME:
1007dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_2_SOURCE:
1008dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_2_VOLUME:
1009dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_3_SOURCE:
1010dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_3_VOLUME:
1011dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_4_SOURCE:
1012dc7d4863SCharles Keepax 	case ARIZONA_PWM2MIX_INPUT_4_VOLUME:
1013dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_1_SOURCE:
1014dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_1_VOLUME:
1015dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_2_SOURCE:
1016dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_2_VOLUME:
1017dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_3_SOURCE:
1018dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_3_VOLUME:
1019dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_4_SOURCE:
1020dc7d4863SCharles Keepax 	case ARIZONA_MICMIX_INPUT_4_VOLUME:
1021dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_1_SOURCE:
1022dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_1_VOLUME:
1023dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_2_SOURCE:
1024dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_2_VOLUME:
1025dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_3_SOURCE:
1026dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_3_VOLUME:
1027dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_4_SOURCE:
1028dc7d4863SCharles Keepax 	case ARIZONA_NOISEMIX_INPUT_4_VOLUME:
1029dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_1_SOURCE:
1030dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_1_VOLUME:
1031dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_2_SOURCE:
1032dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_2_VOLUME:
1033dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_3_SOURCE:
1034dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_3_VOLUME:
1035dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_4_SOURCE:
1036dc7d4863SCharles Keepax 	case ARIZONA_OUT1LMIX_INPUT_4_VOLUME:
1037dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_1_SOURCE:
1038dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_1_VOLUME:
1039dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_2_SOURCE:
1040dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_2_VOLUME:
1041dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_3_SOURCE:
1042dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_3_VOLUME:
1043dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_4_SOURCE:
1044dc7d4863SCharles Keepax 	case ARIZONA_OUT1RMIX_INPUT_4_VOLUME:
1045dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_1_SOURCE:
1046dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_1_VOLUME:
1047dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_2_SOURCE:
1048dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_2_VOLUME:
1049dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_3_SOURCE:
1050dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_3_VOLUME:
1051dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_4_SOURCE:
1052dc7d4863SCharles Keepax 	case ARIZONA_OUT3LMIX_INPUT_4_VOLUME:
1053dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_1_SOURCE:
1054dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_1_VOLUME:
1055dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_2_SOURCE:
1056dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_2_VOLUME:
1057dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_3_SOURCE:
1058dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_3_VOLUME:
1059dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_4_SOURCE:
1060dc7d4863SCharles Keepax 	case ARIZONA_OUT4LMIX_INPUT_4_VOLUME:
1061dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_1_SOURCE:
1062dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_1_VOLUME:
1063dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_2_SOURCE:
1064dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_2_VOLUME:
1065dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_3_SOURCE:
1066dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_3_VOLUME:
1067dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_4_SOURCE:
1068dc7d4863SCharles Keepax 	case ARIZONA_OUT5LMIX_INPUT_4_VOLUME:
1069dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_1_SOURCE:
1070dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_1_VOLUME:
1071dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_2_SOURCE:
1072dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_2_VOLUME:
1073dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_3_SOURCE:
1074dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_3_VOLUME:
1075dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_4_SOURCE:
1076dc7d4863SCharles Keepax 	case ARIZONA_OUT5RMIX_INPUT_4_VOLUME:
1077dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_1_SOURCE:
1078dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_1_VOLUME:
1079dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_2_SOURCE:
1080dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_2_VOLUME:
1081dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_3_SOURCE:
1082dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_3_VOLUME:
1083dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_4_SOURCE:
1084dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX1MIX_INPUT_4_VOLUME:
1085dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_1_SOURCE:
1086dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_1_VOLUME:
1087dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_2_SOURCE:
1088dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_2_VOLUME:
1089dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_3_SOURCE:
1090dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_3_VOLUME:
1091dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_4_SOURCE:
1092dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX2MIX_INPUT_4_VOLUME:
1093dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_1_SOURCE:
1094dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_1_VOLUME:
1095dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_2_SOURCE:
1096dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_2_VOLUME:
1097dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_3_SOURCE:
1098dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_3_VOLUME:
1099dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_4_SOURCE:
1100dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX3MIX_INPUT_4_VOLUME:
1101dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_1_SOURCE:
1102dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_1_VOLUME:
1103dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_2_SOURCE:
1104dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_2_VOLUME:
1105dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_3_SOURCE:
1106dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_3_VOLUME:
1107dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_4_SOURCE:
1108dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX4MIX_INPUT_4_VOLUME:
1109dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_1_SOURCE:
1110dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_1_VOLUME:
1111dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_2_SOURCE:
1112dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_2_VOLUME:
1113dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_3_SOURCE:
1114dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_3_VOLUME:
1115dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_4_SOURCE:
1116dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX5MIX_INPUT_4_VOLUME:
1117dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_1_SOURCE:
1118dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_1_VOLUME:
1119dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_2_SOURCE:
1120dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_2_VOLUME:
1121dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_3_SOURCE:
1122dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_3_VOLUME:
1123dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_4_SOURCE:
1124dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX6MIX_INPUT_4_VOLUME:
1125dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_1_SOURCE:
1126dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_1_VOLUME:
1127dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_2_SOURCE:
1128dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_2_VOLUME:
1129dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_3_SOURCE:
1130dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_3_VOLUME:
1131dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_4_SOURCE:
1132dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX7MIX_INPUT_4_VOLUME:
1133dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_1_SOURCE:
1134dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_1_VOLUME:
1135dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_2_SOURCE:
1136dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_2_VOLUME:
1137dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_3_SOURCE:
1138dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_3_VOLUME:
1139dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_4_SOURCE:
1140dc7d4863SCharles Keepax 	case ARIZONA_AIF1TX8MIX_INPUT_4_VOLUME:
1141dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_1_SOURCE:
1142dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_1_VOLUME:
1143dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_2_SOURCE:
1144dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_2_VOLUME:
1145dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_3_SOURCE:
1146dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_3_VOLUME:
1147dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_4_SOURCE:
1148dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX1MIX_INPUT_4_VOLUME:
1149dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_1_SOURCE:
1150dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_1_VOLUME:
1151dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_2_SOURCE:
1152dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_2_VOLUME:
1153dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_3_SOURCE:
1154dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_3_VOLUME:
1155dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_4_SOURCE:
1156dc7d4863SCharles Keepax 	case ARIZONA_AIF2TX2MIX_INPUT_4_VOLUME:
1157dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_1_SOURCE:
1158dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_1_VOLUME:
1159dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_2_SOURCE:
1160dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_2_VOLUME:
1161dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_3_SOURCE:
1162dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_3_VOLUME:
1163dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_4_SOURCE:
1164dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX1MIX_INPUT_4_VOLUME:
1165dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_1_SOURCE:
1166dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_1_VOLUME:
1167dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_2_SOURCE:
1168dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_2_VOLUME:
1169dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_3_SOURCE:
1170dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_3_VOLUME:
1171dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_4_SOURCE:
1172dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX2MIX_INPUT_4_VOLUME:
1173dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_1_SOURCE:
1174dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_1_VOLUME:
1175dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_2_SOURCE:
1176dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_2_VOLUME:
1177dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_3_SOURCE:
1178dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_3_VOLUME:
1179dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_4_SOURCE:
1180dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX3MIX_INPUT_4_VOLUME:
1181dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_1_SOURCE:
1182dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_1_VOLUME:
1183dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_2_SOURCE:
1184dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_2_VOLUME:
1185dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_3_SOURCE:
1186dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_3_VOLUME:
1187dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_4_SOURCE:
1188dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX4MIX_INPUT_4_VOLUME:
1189dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_1_SOURCE:
1190dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_1_VOLUME:
1191dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_2_SOURCE:
1192dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_2_VOLUME:
1193dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_3_SOURCE:
1194dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_3_VOLUME:
1195dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_4_SOURCE:
1196dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX5MIX_INPUT_4_VOLUME:
1197dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_1_SOURCE:
1198dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_1_VOLUME:
1199dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_2_SOURCE:
1200dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_2_VOLUME:
1201dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_3_SOURCE:
1202dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_3_VOLUME:
1203dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_4_SOURCE:
1204dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX6MIX_INPUT_4_VOLUME:
1205dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_1_SOURCE:
1206dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_1_VOLUME:
1207dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_2_SOURCE:
1208dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_2_VOLUME:
1209dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_3_SOURCE:
1210dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_3_VOLUME:
1211dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_4_SOURCE:
1212dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX7MIX_INPUT_4_VOLUME:
1213dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_1_SOURCE:
1214dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_1_VOLUME:
1215dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_2_SOURCE:
1216dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_2_VOLUME:
1217dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_3_SOURCE:
1218dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_3_VOLUME:
1219dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_4_SOURCE:
1220dc7d4863SCharles Keepax 	case ARIZONA_SLIMTX8MIX_INPUT_4_VOLUME:
1221dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_1_SOURCE:
1222dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_1_VOLUME:
1223dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_2_SOURCE:
1224dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_2_VOLUME:
1225dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_3_SOURCE:
1226dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_3_VOLUME:
1227dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_4_SOURCE:
1228dc7d4863SCharles Keepax 	case ARIZONA_EQ1MIX_INPUT_4_VOLUME:
1229dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_1_SOURCE:
1230dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_1_VOLUME:
1231dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_2_SOURCE:
1232dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_2_VOLUME:
1233dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_3_SOURCE:
1234dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_3_VOLUME:
1235dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_4_SOURCE:
1236dc7d4863SCharles Keepax 	case ARIZONA_EQ2MIX_INPUT_4_VOLUME:
1237dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_1_SOURCE:
1238dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_1_VOLUME:
1239dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_2_SOURCE:
1240dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_2_VOLUME:
1241dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_3_SOURCE:
1242dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_3_VOLUME:
1243dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_4_SOURCE:
1244dc7d4863SCharles Keepax 	case ARIZONA_EQ3MIX_INPUT_4_VOLUME:
1245dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_1_SOURCE:
1246dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_1_VOLUME:
1247dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_2_SOURCE:
1248dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_2_VOLUME:
1249dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_3_SOURCE:
1250dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_3_VOLUME:
1251dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_4_SOURCE:
1252dc7d4863SCharles Keepax 	case ARIZONA_EQ4MIX_INPUT_4_VOLUME:
1253dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_1_SOURCE:
1254dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_1_VOLUME:
1255dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_2_SOURCE:
1256dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_2_VOLUME:
1257dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_3_SOURCE:
1258dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_3_VOLUME:
1259dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_4_SOURCE:
1260dc7d4863SCharles Keepax 	case ARIZONA_DRC1LMIX_INPUT_4_VOLUME:
1261dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_1_SOURCE:
1262dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_1_VOLUME:
1263dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_2_SOURCE:
1264dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_2_VOLUME:
1265dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_3_SOURCE:
1266dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_3_VOLUME:
1267dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_4_SOURCE:
1268dc7d4863SCharles Keepax 	case ARIZONA_DRC1RMIX_INPUT_4_VOLUME:
1269dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_1_SOURCE:
1270dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_1_VOLUME:
1271dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_2_SOURCE:
1272dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_2_VOLUME:
1273dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_3_SOURCE:
1274dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_3_VOLUME:
1275dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_4_SOURCE:
1276dc7d4863SCharles Keepax 	case ARIZONA_HPLP1MIX_INPUT_4_VOLUME:
1277dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_1_SOURCE:
1278dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_1_VOLUME:
1279dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_2_SOURCE:
1280dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_2_VOLUME:
1281dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_3_SOURCE:
1282dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_3_VOLUME:
1283dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_4_SOURCE:
1284dc7d4863SCharles Keepax 	case ARIZONA_HPLP2MIX_INPUT_4_VOLUME:
1285dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_1_SOURCE:
1286dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_1_VOLUME:
1287dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_2_SOURCE:
1288dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_2_VOLUME:
1289dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_3_SOURCE:
1290dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_3_VOLUME:
1291dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_4_SOURCE:
1292dc7d4863SCharles Keepax 	case ARIZONA_HPLP3MIX_INPUT_4_VOLUME:
1293dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_1_SOURCE:
1294dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_1_VOLUME:
1295dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_2_SOURCE:
1296dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_2_VOLUME:
1297dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_3_SOURCE:
1298dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_3_VOLUME:
1299dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_4_SOURCE:
1300dc7d4863SCharles Keepax 	case ARIZONA_HPLP4MIX_INPUT_4_VOLUME:
1301dc7d4863SCharles Keepax 	case ARIZONA_ISRC1DEC1MIX_INPUT_1_SOURCE:
1302dc7d4863SCharles Keepax 	case ARIZONA_ISRC1DEC2MIX_INPUT_1_SOURCE:
1303dc7d4863SCharles Keepax 	case ARIZONA_ISRC1INT1MIX_INPUT_1_SOURCE:
1304dc7d4863SCharles Keepax 	case ARIZONA_ISRC1INT2MIX_INPUT_1_SOURCE:
1305dc7d4863SCharles Keepax 	case ARIZONA_ISRC2DEC1MIX_INPUT_1_SOURCE:
1306dc7d4863SCharles Keepax 	case ARIZONA_ISRC2DEC2MIX_INPUT_1_SOURCE:
1307dc7d4863SCharles Keepax 	case ARIZONA_ISRC2INT1MIX_INPUT_1_SOURCE:
1308dc7d4863SCharles Keepax 	case ARIZONA_ISRC2INT2MIX_INPUT_1_SOURCE:
1309dc7d4863SCharles Keepax 	case ARIZONA_GPIO1_CTRL:
1310dc7d4863SCharles Keepax 	case ARIZONA_GPIO2_CTRL:
1311dc7d4863SCharles Keepax 	case ARIZONA_GPIO3_CTRL:
1312dc7d4863SCharles Keepax 	case ARIZONA_GPIO4_CTRL:
1313dc7d4863SCharles Keepax 	case ARIZONA_GPIO5_CTRL:
1314dc7d4863SCharles Keepax 	case ARIZONA_IRQ_CTRL_1:
1315dc7d4863SCharles Keepax 	case ARIZONA_GPIO_DEBOUNCE_CONFIG:
1316dc7d4863SCharles Keepax 	case ARIZONA_MISC_PAD_CTRL_1:
1317dc7d4863SCharles Keepax 	case ARIZONA_MISC_PAD_CTRL_2:
1318dc7d4863SCharles Keepax 	case ARIZONA_MISC_PAD_CTRL_3:
1319dc7d4863SCharles Keepax 	case ARIZONA_MISC_PAD_CTRL_4:
1320dc7d4863SCharles Keepax 	case ARIZONA_MISC_PAD_CTRL_5:
1321dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_1:
1322dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_2:
1323dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_3:
1324dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_4:
1325dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_5:
1326dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_1_MASK:
1327e62cace7SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_2_MASK:
1328dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_3_MASK:
1329dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_4_MASK:
1330dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_5_MASK:
1331dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_CONTROL:
1332dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_1:
1333dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_3:
1334dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_4:
1335dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_5:
1336dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_1_MASK:
1337dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_3_MASK:
1338dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_4_MASK:
1339dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_5_MASK:
1340dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_CONTROL:
1341dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_3:
1342dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_4:
1343dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_5:
1344dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_6:
1345dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_7:
1346dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_8:
1347dc7d4863SCharles Keepax 	case ARIZONA_IRQ_PIN_STATUS:
1348dc7d4863SCharles Keepax 	case ARIZONA_AOD_WKUP_AND_TRIG:
1349dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ1:
1350dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ2:
1351dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ_MASK_IRQ1:
1352dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ_MASK_IRQ2:
1353dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ_RAW_STATUS:
1354dc7d4863SCharles Keepax 	case ARIZONA_JACK_DETECT_DEBOUNCE:
1355dc7d4863SCharles Keepax 	case ARIZONA_FX_CTRL1:
1356dc7d4863SCharles Keepax 	case ARIZONA_FX_CTRL2:
1357dc7d4863SCharles Keepax 	case ARIZONA_EQ1_1:
1358dc7d4863SCharles Keepax 	case ARIZONA_EQ1_2:
1359dc7d4863SCharles Keepax 	case ARIZONA_EQ1_3:
1360dc7d4863SCharles Keepax 	case ARIZONA_EQ1_4:
1361dc7d4863SCharles Keepax 	case ARIZONA_EQ1_5:
1362dc7d4863SCharles Keepax 	case ARIZONA_EQ1_6:
1363dc7d4863SCharles Keepax 	case ARIZONA_EQ1_7:
1364dc7d4863SCharles Keepax 	case ARIZONA_EQ1_8:
1365dc7d4863SCharles Keepax 	case ARIZONA_EQ1_9:
1366dc7d4863SCharles Keepax 	case ARIZONA_EQ1_10:
1367dc7d4863SCharles Keepax 	case ARIZONA_EQ1_11:
1368dc7d4863SCharles Keepax 	case ARIZONA_EQ1_12:
1369dc7d4863SCharles Keepax 	case ARIZONA_EQ1_13:
1370dc7d4863SCharles Keepax 	case ARIZONA_EQ1_14:
1371dc7d4863SCharles Keepax 	case ARIZONA_EQ1_15:
1372dc7d4863SCharles Keepax 	case ARIZONA_EQ1_16:
1373dc7d4863SCharles Keepax 	case ARIZONA_EQ1_17:
1374dc7d4863SCharles Keepax 	case ARIZONA_EQ1_18:
1375dc7d4863SCharles Keepax 	case ARIZONA_EQ1_19:
1376dc7d4863SCharles Keepax 	case ARIZONA_EQ1_20:
1377dc7d4863SCharles Keepax 	case ARIZONA_EQ1_21:
1378dc7d4863SCharles Keepax 	case ARIZONA_EQ2_1:
1379dc7d4863SCharles Keepax 	case ARIZONA_EQ2_2:
1380dc7d4863SCharles Keepax 	case ARIZONA_EQ2_3:
1381dc7d4863SCharles Keepax 	case ARIZONA_EQ2_4:
1382dc7d4863SCharles Keepax 	case ARIZONA_EQ2_5:
1383dc7d4863SCharles Keepax 	case ARIZONA_EQ2_6:
1384dc7d4863SCharles Keepax 	case ARIZONA_EQ2_7:
1385dc7d4863SCharles Keepax 	case ARIZONA_EQ2_8:
1386dc7d4863SCharles Keepax 	case ARIZONA_EQ2_9:
1387dc7d4863SCharles Keepax 	case ARIZONA_EQ2_10:
1388dc7d4863SCharles Keepax 	case ARIZONA_EQ2_11:
1389dc7d4863SCharles Keepax 	case ARIZONA_EQ2_12:
1390dc7d4863SCharles Keepax 	case ARIZONA_EQ2_13:
1391dc7d4863SCharles Keepax 	case ARIZONA_EQ2_14:
1392dc7d4863SCharles Keepax 	case ARIZONA_EQ2_15:
1393dc7d4863SCharles Keepax 	case ARIZONA_EQ2_16:
1394dc7d4863SCharles Keepax 	case ARIZONA_EQ2_17:
1395dc7d4863SCharles Keepax 	case ARIZONA_EQ2_18:
1396dc7d4863SCharles Keepax 	case ARIZONA_EQ2_19:
1397dc7d4863SCharles Keepax 	case ARIZONA_EQ2_20:
1398dc7d4863SCharles Keepax 	case ARIZONA_EQ2_21:
1399dc7d4863SCharles Keepax 	case ARIZONA_EQ3_1:
1400dc7d4863SCharles Keepax 	case ARIZONA_EQ3_2:
1401dc7d4863SCharles Keepax 	case ARIZONA_EQ3_3:
1402dc7d4863SCharles Keepax 	case ARIZONA_EQ3_4:
1403dc7d4863SCharles Keepax 	case ARIZONA_EQ3_5:
1404dc7d4863SCharles Keepax 	case ARIZONA_EQ3_6:
1405dc7d4863SCharles Keepax 	case ARIZONA_EQ3_7:
1406dc7d4863SCharles Keepax 	case ARIZONA_EQ3_8:
1407dc7d4863SCharles Keepax 	case ARIZONA_EQ3_9:
1408dc7d4863SCharles Keepax 	case ARIZONA_EQ3_10:
1409dc7d4863SCharles Keepax 	case ARIZONA_EQ3_11:
1410dc7d4863SCharles Keepax 	case ARIZONA_EQ3_12:
1411dc7d4863SCharles Keepax 	case ARIZONA_EQ3_13:
1412dc7d4863SCharles Keepax 	case ARIZONA_EQ3_14:
1413dc7d4863SCharles Keepax 	case ARIZONA_EQ3_15:
1414dc7d4863SCharles Keepax 	case ARIZONA_EQ3_16:
1415dc7d4863SCharles Keepax 	case ARIZONA_EQ3_17:
1416dc7d4863SCharles Keepax 	case ARIZONA_EQ3_18:
1417dc7d4863SCharles Keepax 	case ARIZONA_EQ3_19:
1418dc7d4863SCharles Keepax 	case ARIZONA_EQ3_20:
1419dc7d4863SCharles Keepax 	case ARIZONA_EQ3_21:
1420dc7d4863SCharles Keepax 	case ARIZONA_EQ4_1:
1421dc7d4863SCharles Keepax 	case ARIZONA_EQ4_2:
1422dc7d4863SCharles Keepax 	case ARIZONA_EQ4_3:
1423dc7d4863SCharles Keepax 	case ARIZONA_EQ4_4:
1424dc7d4863SCharles Keepax 	case ARIZONA_EQ4_5:
1425dc7d4863SCharles Keepax 	case ARIZONA_EQ4_6:
1426dc7d4863SCharles Keepax 	case ARIZONA_EQ4_7:
1427dc7d4863SCharles Keepax 	case ARIZONA_EQ4_8:
1428dc7d4863SCharles Keepax 	case ARIZONA_EQ4_9:
1429dc7d4863SCharles Keepax 	case ARIZONA_EQ4_10:
1430dc7d4863SCharles Keepax 	case ARIZONA_EQ4_11:
1431dc7d4863SCharles Keepax 	case ARIZONA_EQ4_12:
1432dc7d4863SCharles Keepax 	case ARIZONA_EQ4_13:
1433dc7d4863SCharles Keepax 	case ARIZONA_EQ4_14:
1434dc7d4863SCharles Keepax 	case ARIZONA_EQ4_15:
1435dc7d4863SCharles Keepax 	case ARIZONA_EQ4_16:
1436dc7d4863SCharles Keepax 	case ARIZONA_EQ4_17:
1437dc7d4863SCharles Keepax 	case ARIZONA_EQ4_18:
1438dc7d4863SCharles Keepax 	case ARIZONA_EQ4_19:
1439dc7d4863SCharles Keepax 	case ARIZONA_EQ4_20:
1440dc7d4863SCharles Keepax 	case ARIZONA_EQ4_21:
1441dc7d4863SCharles Keepax 	case ARIZONA_DRC1_CTRL1:
1442dc7d4863SCharles Keepax 	case ARIZONA_DRC1_CTRL2:
1443dc7d4863SCharles Keepax 	case ARIZONA_DRC1_CTRL3:
1444dc7d4863SCharles Keepax 	case ARIZONA_DRC1_CTRL4:
1445dc7d4863SCharles Keepax 	case ARIZONA_DRC1_CTRL5:
1446dc7d4863SCharles Keepax 	case ARIZONA_HPLPF1_1:
1447dc7d4863SCharles Keepax 	case ARIZONA_HPLPF1_2:
1448dc7d4863SCharles Keepax 	case ARIZONA_HPLPF2_1:
1449dc7d4863SCharles Keepax 	case ARIZONA_HPLPF2_2:
1450dc7d4863SCharles Keepax 	case ARIZONA_HPLPF3_1:
1451dc7d4863SCharles Keepax 	case ARIZONA_HPLPF3_2:
1452dc7d4863SCharles Keepax 	case ARIZONA_HPLPF4_1:
1453dc7d4863SCharles Keepax 	case ARIZONA_HPLPF4_2:
1454dc7d4863SCharles Keepax 	case ARIZONA_ISRC_1_CTRL_1:
1455dc7d4863SCharles Keepax 	case ARIZONA_ISRC_1_CTRL_2:
1456dc7d4863SCharles Keepax 	case ARIZONA_ISRC_1_CTRL_3:
1457dc7d4863SCharles Keepax 	case ARIZONA_ISRC_2_CTRL_1:
1458dc7d4863SCharles Keepax 	case ARIZONA_ISRC_2_CTRL_2:
1459dc7d4863SCharles Keepax 	case ARIZONA_ISRC_2_CTRL_3:
1460dc7d4863SCharles Keepax 		return true;
1461dc7d4863SCharles Keepax 	default:
1462dc7d4863SCharles Keepax 		return false;
1463dc7d4863SCharles Keepax 	}
1464dc7d4863SCharles Keepax }
1465dc7d4863SCharles Keepax 
wm8997_volatile_register(struct device * dev,unsigned int reg)1466dc7d4863SCharles Keepax static bool wm8997_volatile_register(struct device *dev, unsigned int reg)
1467dc7d4863SCharles Keepax {
1468dc7d4863SCharles Keepax 	switch (reg) {
1469dc7d4863SCharles Keepax 	case ARIZONA_SOFTWARE_RESET:
1470dc7d4863SCharles Keepax 	case ARIZONA_DEVICE_REVISION:
1471dc7d4863SCharles Keepax 	case ARIZONA_HAPTICS_STATUS:
1472dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_1_STATUS:
1473dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_2_STATUS:
1474dc7d4863SCharles Keepax 	case ARIZONA_SAMPLE_RATE_3_STATUS:
1475dc7d4863SCharles Keepax 	case ARIZONA_ASYNC_SAMPLE_RATE_1_STATUS:
1476e6c7efa7SCharles Keepax 	case ARIZONA_FLL1_NCO_TEST_0:
1477e6c7efa7SCharles Keepax 	case ARIZONA_FLL2_NCO_TEST_0:
1478dc7d4863SCharles Keepax 	case ARIZONA_MIC_DETECT_3:
147947958c5aSCharles Keepax 	case ARIZONA_HP_CTRL_1L:
148047958c5aSCharles Keepax 	case ARIZONA_HP_CTRL_1R:
1481dc7d4863SCharles Keepax 	case ARIZONA_HEADPHONE_DETECT_2:
1482dc7d4863SCharles Keepax 	case ARIZONA_INPUT_ENABLES_STATUS:
1483dc7d4863SCharles Keepax 	case ARIZONA_OUTPUT_STATUS_1:
1484dc7d4863SCharles Keepax 	case ARIZONA_RAW_OUTPUT_STATUS_1:
1485dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_RX_PORT_STATUS:
1486dc7d4863SCharles Keepax 	case ARIZONA_SLIMBUS_TX_PORT_STATUS:
1487dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_1:
1488dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_2:
1489dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_3:
1490dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_4:
1491dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_STATUS_5:
1492dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_1:
1493dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_3:
1494dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_4:
1495dc7d4863SCharles Keepax 	case ARIZONA_IRQ2_STATUS_5:
1496dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_3:
1497dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_4:
1498dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_5:
1499dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_6:
1500dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_7:
1501dc7d4863SCharles Keepax 	case ARIZONA_INTERRUPT_RAW_STATUS_8:
1502dc7d4863SCharles Keepax 	case ARIZONA_IRQ_PIN_STATUS:
1503dc7d4863SCharles Keepax 	case ARIZONA_AOD_WKUP_AND_TRIG:
1504dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ1:
1505dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ2:
1506dc7d4863SCharles Keepax 	case ARIZONA_AOD_IRQ_RAW_STATUS:
1507dc7d4863SCharles Keepax 	case ARIZONA_FX_CTRL2:
1508dc7d4863SCharles Keepax 		return true;
1509dc7d4863SCharles Keepax 	default:
1510dc7d4863SCharles Keepax 		return false;
1511dc7d4863SCharles Keepax 	}
1512dc7d4863SCharles Keepax }
1513dc7d4863SCharles Keepax 
1514dc7d4863SCharles Keepax #define WM8997_MAX_REGISTER 0x31ff
1515dc7d4863SCharles Keepax 
1516dc7d4863SCharles Keepax const struct regmap_config wm8997_i2c_regmap = {
1517dc7d4863SCharles Keepax 	.reg_bits = 32,
1518dc7d4863SCharles Keepax 	.val_bits = 16,
1519496e43aeSRichard Fitzgerald 	.reg_format_endian = REGMAP_ENDIAN_BIG,
1520496e43aeSRichard Fitzgerald 	.val_format_endian = REGMAP_ENDIAN_BIG,
1521dc7d4863SCharles Keepax 
1522dc7d4863SCharles Keepax 	.max_register = WM8997_MAX_REGISTER,
1523dc7d4863SCharles Keepax 	.readable_reg = wm8997_readable_register,
1524dc7d4863SCharles Keepax 	.volatile_reg = wm8997_volatile_register,
1525dc7d4863SCharles Keepax 
1526*56b8cea6SMark Brown 	.cache_type = REGCACHE_MAPLE,
1527dc7d4863SCharles Keepax 	.reg_defaults = wm8997_reg_default,
1528dc7d4863SCharles Keepax 	.num_reg_defaults = ARRAY_SIZE(wm8997_reg_default),
1529dc7d4863SCharles Keepax };
1530dc7d4863SCharles Keepax EXPORT_SYMBOL_GPL(wm8997_i2c_regmap);
1531