ASoC: Add register write logging for WM8994
[safe/jmp/linux-2.6] / sound / soc / codecs / wm8994.c
1 /*
2  * wm8994.c  --  WM8994 ALSA SoC Audio driver
3  *
4  * Copyright 2009 Wolfson Microelectronics plc
5  *
6  * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7  *
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
18 #include <linux/pm.h>
19 #include <linux/i2c.h>
20 #include <linux/platform_device.h>
21 #include <linux/regulator/consumer.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dapm.h>
27 #include <sound/initval.h>
28 #include <sound/tlv.h>
29
30 #include <linux/mfd/wm8994/core.h>
31 #include <linux/mfd/wm8994/registers.h>
32 #include <linux/mfd/wm8994/pdata.h>
33 #include <linux/mfd/wm8994/gpio.h>
34
35 #include "wm8994.h"
36 #include "wm_hubs.h"
37
38 static struct snd_soc_codec *wm8994_codec;
39 struct snd_soc_codec_device soc_codec_dev_wm8994;
40
41 struct fll_config {
42         int src;
43         int in;
44         int out;
45 };
46
47 #define WM8994_NUM_DRC 3
48 #define WM8994_NUM_EQ  3
49
50 static int wm8994_drc_base[] = {
51         WM8994_AIF1_DRC1_1,
52         WM8994_AIF1_DRC2_1,
53         WM8994_AIF2_DRC_1,
54 };
55
56 static int wm8994_retune_mobile_base[] = {
57         WM8994_AIF1_DAC1_EQ_GAINS_1,
58         WM8994_AIF1_DAC2_EQ_GAINS_1,
59         WM8994_AIF2_EQ_GAINS_1,
60 };
61
62 #define WM8994_REG_CACHE_SIZE  0x621
63
64 struct wm8994_micdet {
65         struct snd_soc_jack *jack;
66         int det;
67         int shrt;
68 };
69
70 /* codec private data */
71 struct wm8994_priv {
72         struct wm_hubs_data hubs;
73         struct snd_soc_codec codec;
74         u16 reg_cache[WM8994_REG_CACHE_SIZE + 1];
75         int sysclk[2];
76         int sysclk_rate[2];
77         int mclk[2];
78         int aifclk[2];
79         struct fll_config fll[2], fll_suspend[2];
80
81         int dac_rates[2];
82         int lrclk_shared[2];
83
84         /* Platform dependant DRC configuration */
85         const char **drc_texts;
86         int drc_cfg[WM8994_NUM_DRC];
87         struct soc_enum drc_enum;
88
89         /* Platform dependant ReTune mobile configuration */
90         int num_retune_mobile_texts;
91         const char **retune_mobile_texts;
92         int retune_mobile_cfg[WM8994_NUM_EQ];
93         struct soc_enum retune_mobile_enum;
94
95         struct wm8994_micdet micdet[2];
96
97         struct wm8994_pdata *pdata;
98 };
99
100 static struct {
101         unsigned short  readable;   /* Mask of readable bits */
102         unsigned short  writable;   /* Mask of writable bits */
103         unsigned short  vol;        /* Mask of volatile bits */
104 } access_masks[] = {
105         { 0xFFFF, 0xFFFF, 0x0000 }, /* R0     - Software Reset */
106         { 0x3B37, 0x3B37, 0x0000 }, /* R1     - Power Management (1) */
107         { 0x6BF0, 0x6BF0, 0x0000 }, /* R2     - Power Management (2) */
108         { 0x3FF0, 0x3FF0, 0x0000 }, /* R3     - Power Management (3) */
109         { 0x3F3F, 0x3F3F, 0x0000 }, /* R4     - Power Management (4) */
110         { 0x3F0F, 0x3F0F, 0x0000 }, /* R5     - Power Management (5) */
111         { 0x003F, 0x003F, 0x0000 }, /* R6     - Power Management (6) */
112         { 0x0000, 0x0000, 0x0000 }, /* R7 */
113         { 0x0000, 0x0000, 0x0000 }, /* R8 */
114         { 0x0000, 0x0000, 0x0000 }, /* R9 */
115         { 0x0000, 0x0000, 0x0000 }, /* R10 */
116         { 0x0000, 0x0000, 0x0000 }, /* R11 */
117         { 0x0000, 0x0000, 0x0000 }, /* R12 */
118         { 0x0000, 0x0000, 0x0000 }, /* R13 */
119         { 0x0000, 0x0000, 0x0000 }, /* R14 */
120         { 0x0000, 0x0000, 0x0000 }, /* R15 */
121         { 0x0000, 0x0000, 0x0000 }, /* R16 */
122         { 0x0000, 0x0000, 0x0000 }, /* R17 */
123         { 0x0000, 0x0000, 0x0000 }, /* R18 */
124         { 0x0000, 0x0000, 0x0000 }, /* R19 */
125         { 0x0000, 0x0000, 0x0000 }, /* R20 */
126         { 0x01C0, 0x01C0, 0x0000 }, /* R21    - Input Mixer (1) */
127         { 0x0000, 0x0000, 0x0000 }, /* R22 */
128         { 0x0000, 0x0000, 0x0000 }, /* R23 */
129         { 0x00DF, 0x01DF, 0x0000 }, /* R24    - Left Line Input 1&2 Volume */
130         { 0x00DF, 0x01DF, 0x0000 }, /* R25    - Left Line Input 3&4 Volume */
131         { 0x00DF, 0x01DF, 0x0000 }, /* R26    - Right Line Input 1&2 Volume */
132         { 0x00DF, 0x01DF, 0x0000 }, /* R27    - Right Line Input 3&4 Volume */
133         { 0x00FF, 0x01FF, 0x0000 }, /* R28    - Left Output Volume */
134         { 0x00FF, 0x01FF, 0x0000 }, /* R29    - Right Output Volume */
135         { 0x0077, 0x0077, 0x0000 }, /* R30    - Line Outputs Volume */
136         { 0x0030, 0x0030, 0x0000 }, /* R31    - HPOUT2 Volume */
137         { 0x00FF, 0x01FF, 0x0000 }, /* R32    - Left OPGA Volume */
138         { 0x00FF, 0x01FF, 0x0000 }, /* R33    - Right OPGA Volume */
139         { 0x007F, 0x007F, 0x0000 }, /* R34    - SPKMIXL Attenuation */
140         { 0x017F, 0x017F, 0x0000 }, /* R35    - SPKMIXR Attenuation */
141         { 0x003F, 0x003F, 0x0000 }, /* R36    - SPKOUT Mixers */
142         { 0x003F, 0x003F, 0x0000 }, /* R37    - ClassD */
143         { 0x00FF, 0x01FF, 0x0000 }, /* R38    - Speaker Volume Left */
144         { 0x00FF, 0x01FF, 0x0000 }, /* R39    - Speaker Volume Right */
145         { 0x00FF, 0x00FF, 0x0000 }, /* R40    - Input Mixer (2) */
146         { 0x01B7, 0x01B7, 0x0000 }, /* R41    - Input Mixer (3) */
147         { 0x01B7, 0x01B7, 0x0000 }, /* R42    - Input Mixer (4) */
148         { 0x01C7, 0x01C7, 0x0000 }, /* R43    - Input Mixer (5) */
149         { 0x01C7, 0x01C7, 0x0000 }, /* R44    - Input Mixer (6) */
150         { 0x01FF, 0x01FF, 0x0000 }, /* R45    - Output Mixer (1) */
151         { 0x01FF, 0x01FF, 0x0000 }, /* R46    - Output Mixer (2) */
152         { 0x0FFF, 0x0FFF, 0x0000 }, /* R47    - Output Mixer (3) */
153         { 0x0FFF, 0x0FFF, 0x0000 }, /* R48    - Output Mixer (4) */
154         { 0x0FFF, 0x0FFF, 0x0000 }, /* R49    - Output Mixer (5) */
155         { 0x0FFF, 0x0FFF, 0x0000 }, /* R50    - Output Mixer (6) */
156         { 0x0038, 0x0038, 0x0000 }, /* R51    - HPOUT2 Mixer */
157         { 0x0077, 0x0077, 0x0000 }, /* R52    - Line Mixer (1) */
158         { 0x0077, 0x0077, 0x0000 }, /* R53    - Line Mixer (2) */
159         { 0x03FF, 0x03FF, 0x0000 }, /* R54    - Speaker Mixer */
160         { 0x00C1, 0x00C1, 0x0000 }, /* R55    - Additional Control */
161         { 0x00F0, 0x00F0, 0x0000 }, /* R56    - AntiPOP (1) */
162         { 0x01EF, 0x01EF, 0x0000 }, /* R57    - AntiPOP (2) */
163         { 0x00FF, 0x00FF, 0x0000 }, /* R58    - MICBIAS */
164         { 0x000F, 0x000F, 0x0000 }, /* R59    - LDO 1 */
165         { 0x0007, 0x0007, 0x0000 }, /* R60    - LDO 2 */
166         { 0x0000, 0x0000, 0x0000 }, /* R61 */
167         { 0x0000, 0x0000, 0x0000 }, /* R62 */
168         { 0x0000, 0x0000, 0x0000 }, /* R63 */
169         { 0x0000, 0x0000, 0x0000 }, /* R64 */
170         { 0x0000, 0x0000, 0x0000 }, /* R65 */
171         { 0x0000, 0x0000, 0x0000 }, /* R66 */
172         { 0x0000, 0x0000, 0x0000 }, /* R67 */
173         { 0x0000, 0x0000, 0x0000 }, /* R68 */
174         { 0x0000, 0x0000, 0x0000 }, /* R69 */
175         { 0x0000, 0x0000, 0x0000 }, /* R70 */
176         { 0x0000, 0x0000, 0x0000 }, /* R71 */
177         { 0x0000, 0x0000, 0x0000 }, /* R72 */
178         { 0x0000, 0x0000, 0x0000 }, /* R73 */
179         { 0x0000, 0x0000, 0x0000 }, /* R74 */
180         { 0x0000, 0x0000, 0x0000 }, /* R75 */
181         { 0x8000, 0x8000, 0x0000 }, /* R76    - Charge Pump (1) */
182         { 0x0000, 0x0000, 0x0000 }, /* R77 */
183         { 0x0000, 0x0000, 0x0000 }, /* R78 */
184         { 0x0000, 0x0000, 0x0000 }, /* R79 */
185         { 0x0000, 0x0000, 0x0000 }, /* R80 */
186         { 0x0301, 0x0301, 0x0000 }, /* R81    - Class W (1) */
187         { 0x0000, 0x0000, 0x0000 }, /* R82 */
188         { 0x0000, 0x0000, 0x0000 }, /* R83 */
189         { 0x333F, 0x333F, 0x0000 }, /* R84    - DC Servo (1) */
190         { 0x0FEF, 0x0FEF, 0x0000 }, /* R85    - DC Servo (2) */
191         { 0x0000, 0x0000, 0x0000 }, /* R86 */
192         { 0xFFFF, 0xFFFF, 0x0000 }, /* R87    - DC Servo (4) */
193         { 0x0333, 0x0000, 0x0000 }, /* R88    - DC Servo Readback */
194         { 0x0000, 0x0000, 0x0000 }, /* R89 */
195         { 0x0000, 0x0000, 0x0000 }, /* R90 */
196         { 0x0000, 0x0000, 0x0000 }, /* R91 */
197         { 0x0000, 0x0000, 0x0000 }, /* R92 */
198         { 0x0000, 0x0000, 0x0000 }, /* R93 */
199         { 0x0000, 0x0000, 0x0000 }, /* R94 */
200         { 0x0000, 0x0000, 0x0000 }, /* R95 */
201         { 0x00EE, 0x00EE, 0x0000 }, /* R96    - Analogue HP (1) */
202         { 0x0000, 0x0000, 0x0000 }, /* R97 */
203         { 0x0000, 0x0000, 0x0000 }, /* R98 */
204         { 0x0000, 0x0000, 0x0000 }, /* R99 */
205         { 0x0000, 0x0000, 0x0000 }, /* R100 */
206         { 0x0000, 0x0000, 0x0000 }, /* R101 */
207         { 0x0000, 0x0000, 0x0000 }, /* R102 */
208         { 0x0000, 0x0000, 0x0000 }, /* R103 */
209         { 0x0000, 0x0000, 0x0000 }, /* R104 */
210         { 0x0000, 0x0000, 0x0000 }, /* R105 */
211         { 0x0000, 0x0000, 0x0000 }, /* R106 */
212         { 0x0000, 0x0000, 0x0000 }, /* R107 */
213         { 0x0000, 0x0000, 0x0000 }, /* R108 */
214         { 0x0000, 0x0000, 0x0000 }, /* R109 */
215         { 0x0000, 0x0000, 0x0000 }, /* R110 */
216         { 0x0000, 0x0000, 0x0000 }, /* R111 */
217         { 0x0000, 0x0000, 0x0000 }, /* R112 */
218         { 0x0000, 0x0000, 0x0000 }, /* R113 */
219         { 0x0000, 0x0000, 0x0000 }, /* R114 */
220         { 0x0000, 0x0000, 0x0000 }, /* R115 */
221         { 0x0000, 0x0000, 0x0000 }, /* R116 */
222         { 0x0000, 0x0000, 0x0000 }, /* R117 */
223         { 0x0000, 0x0000, 0x0000 }, /* R118 */
224         { 0x0000, 0x0000, 0x0000 }, /* R119 */
225         { 0x0000, 0x0000, 0x0000 }, /* R120 */
226         { 0x0000, 0x0000, 0x0000 }, /* R121 */
227         { 0x0000, 0x0000, 0x0000 }, /* R122 */
228         { 0x0000, 0x0000, 0x0000 }, /* R123 */
229         { 0x0000, 0x0000, 0x0000 }, /* R124 */
230         { 0x0000, 0x0000, 0x0000 }, /* R125 */
231         { 0x0000, 0x0000, 0x0000 }, /* R126 */
232         { 0x0000, 0x0000, 0x0000 }, /* R127 */
233         { 0x0000, 0x0000, 0x0000 }, /* R128 */
234         { 0x0000, 0x0000, 0x0000 }, /* R129 */
235         { 0x0000, 0x0000, 0x0000 }, /* R130 */
236         { 0x0000, 0x0000, 0x0000 }, /* R131 */
237         { 0x0000, 0x0000, 0x0000 }, /* R132 */
238         { 0x0000, 0x0000, 0x0000 }, /* R133 */
239         { 0x0000, 0x0000, 0x0000 }, /* R134 */
240         { 0x0000, 0x0000, 0x0000 }, /* R135 */
241         { 0x0000, 0x0000, 0x0000 }, /* R136 */
242         { 0x0000, 0x0000, 0x0000 }, /* R137 */
243         { 0x0000, 0x0000, 0x0000 }, /* R138 */
244         { 0x0000, 0x0000, 0x0000 }, /* R139 */
245         { 0x0000, 0x0000, 0x0000 }, /* R140 */
246         { 0x0000, 0x0000, 0x0000 }, /* R141 */
247         { 0x0000, 0x0000, 0x0000 }, /* R142 */
248         { 0x0000, 0x0000, 0x0000 }, /* R143 */
249         { 0x0000, 0x0000, 0x0000 }, /* R144 */
250         { 0x0000, 0x0000, 0x0000 }, /* R145 */
251         { 0x0000, 0x0000, 0x0000 }, /* R146 */
252         { 0x0000, 0x0000, 0x0000 }, /* R147 */
253         { 0x0000, 0x0000, 0x0000 }, /* R148 */
254         { 0x0000, 0x0000, 0x0000 }, /* R149 */
255         { 0x0000, 0x0000, 0x0000 }, /* R150 */
256         { 0x0000, 0x0000, 0x0000 }, /* R151 */
257         { 0x0000, 0x0000, 0x0000 }, /* R152 */
258         { 0x0000, 0x0000, 0x0000 }, /* R153 */
259         { 0x0000, 0x0000, 0x0000 }, /* R154 */
260         { 0x0000, 0x0000, 0x0000 }, /* R155 */
261         { 0x0000, 0x0000, 0x0000 }, /* R156 */
262         { 0x0000, 0x0000, 0x0000 }, /* R157 */
263         { 0x0000, 0x0000, 0x0000 }, /* R158 */
264         { 0x0000, 0x0000, 0x0000 }, /* R159 */
265         { 0x0000, 0x0000, 0x0000 }, /* R160 */
266         { 0x0000, 0x0000, 0x0000 }, /* R161 */
267         { 0x0000, 0x0000, 0x0000 }, /* R162 */
268         { 0x0000, 0x0000, 0x0000 }, /* R163 */
269         { 0x0000, 0x0000, 0x0000 }, /* R164 */
270         { 0x0000, 0x0000, 0x0000 }, /* R165 */
271         { 0x0000, 0x0000, 0x0000 }, /* R166 */
272         { 0x0000, 0x0000, 0x0000 }, /* R167 */
273         { 0x0000, 0x0000, 0x0000 }, /* R168 */
274         { 0x0000, 0x0000, 0x0000 }, /* R169 */
275         { 0x0000, 0x0000, 0x0000 }, /* R170 */
276         { 0x0000, 0x0000, 0x0000 }, /* R171 */
277         { 0x0000, 0x0000, 0x0000 }, /* R172 */
278         { 0x0000, 0x0000, 0x0000 }, /* R173 */
279         { 0x0000, 0x0000, 0x0000 }, /* R174 */
280         { 0x0000, 0x0000, 0x0000 }, /* R175 */
281         { 0x0000, 0x0000, 0x0000 }, /* R176 */
282         { 0x0000, 0x0000, 0x0000 }, /* R177 */
283         { 0x0000, 0x0000, 0x0000 }, /* R178 */
284         { 0x0000, 0x0000, 0x0000 }, /* R179 */
285         { 0x0000, 0x0000, 0x0000 }, /* R180 */
286         { 0x0000, 0x0000, 0x0000 }, /* R181 */
287         { 0x0000, 0x0000, 0x0000 }, /* R182 */
288         { 0x0000, 0x0000, 0x0000 }, /* R183 */
289         { 0x0000, 0x0000, 0x0000 }, /* R184 */
290         { 0x0000, 0x0000, 0x0000 }, /* R185 */
291         { 0x0000, 0x0000, 0x0000 }, /* R186 */
292         { 0x0000, 0x0000, 0x0000 }, /* R187 */
293         { 0x0000, 0x0000, 0x0000 }, /* R188 */
294         { 0x0000, 0x0000, 0x0000 }, /* R189 */
295         { 0x0000, 0x0000, 0x0000 }, /* R190 */
296         { 0x0000, 0x0000, 0x0000 }, /* R191 */
297         { 0x0000, 0x0000, 0x0000 }, /* R192 */
298         { 0x0000, 0x0000, 0x0000 }, /* R193 */
299         { 0x0000, 0x0000, 0x0000 }, /* R194 */
300         { 0x0000, 0x0000, 0x0000 }, /* R195 */
301         { 0x0000, 0x0000, 0x0000 }, /* R196 */
302         { 0x0000, 0x0000, 0x0000 }, /* R197 */
303         { 0x0000, 0x0000, 0x0000 }, /* R198 */
304         { 0x0000, 0x0000, 0x0000 }, /* R199 */
305         { 0x0000, 0x0000, 0x0000 }, /* R200 */
306         { 0x0000, 0x0000, 0x0000 }, /* R201 */
307         { 0x0000, 0x0000, 0x0000 }, /* R202 */
308         { 0x0000, 0x0000, 0x0000 }, /* R203 */
309         { 0x0000, 0x0000, 0x0000 }, /* R204 */
310         { 0x0000, 0x0000, 0x0000 }, /* R205 */
311         { 0x0000, 0x0000, 0x0000 }, /* R206 */
312         { 0x0000, 0x0000, 0x0000 }, /* R207 */
313         { 0x0000, 0x0000, 0x0000 }, /* R208 */
314         { 0x0000, 0x0000, 0x0000 }, /* R209 */
315         { 0x0000, 0x0000, 0x0000 }, /* R210 */
316         { 0x0000, 0x0000, 0x0000 }, /* R211 */
317         { 0x0000, 0x0000, 0x0000 }, /* R212 */
318         { 0x0000, 0x0000, 0x0000 }, /* R213 */
319         { 0x0000, 0x0000, 0x0000 }, /* R214 */
320         { 0x0000, 0x0000, 0x0000 }, /* R215 */
321         { 0x0000, 0x0000, 0x0000 }, /* R216 */
322         { 0x0000, 0x0000, 0x0000 }, /* R217 */
323         { 0x0000, 0x0000, 0x0000 }, /* R218 */
324         { 0x0000, 0x0000, 0x0000 }, /* R219 */
325         { 0x0000, 0x0000, 0x0000 }, /* R220 */
326         { 0x0000, 0x0000, 0x0000 }, /* R221 */
327         { 0x0000, 0x0000, 0x0000 }, /* R222 */
328         { 0x0000, 0x0000, 0x0000 }, /* R223 */
329         { 0x0000, 0x0000, 0x0000 }, /* R224 */
330         { 0x0000, 0x0000, 0x0000 }, /* R225 */
331         { 0x0000, 0x0000, 0x0000 }, /* R226 */
332         { 0x0000, 0x0000, 0x0000 }, /* R227 */
333         { 0x0000, 0x0000, 0x0000 }, /* R228 */
334         { 0x0000, 0x0000, 0x0000 }, /* R229 */
335         { 0x0000, 0x0000, 0x0000 }, /* R230 */
336         { 0x0000, 0x0000, 0x0000 }, /* R231 */
337         { 0x0000, 0x0000, 0x0000 }, /* R232 */
338         { 0x0000, 0x0000, 0x0000 }, /* R233 */
339         { 0x0000, 0x0000, 0x0000 }, /* R234 */
340         { 0x0000, 0x0000, 0x0000 }, /* R235 */
341         { 0x0000, 0x0000, 0x0000 }, /* R236 */
342         { 0x0000, 0x0000, 0x0000 }, /* R237 */
343         { 0x0000, 0x0000, 0x0000 }, /* R238 */
344         { 0x0000, 0x0000, 0x0000 }, /* R239 */
345         { 0x0000, 0x0000, 0x0000 }, /* R240 */
346         { 0x0000, 0x0000, 0x0000 }, /* R241 */
347         { 0x0000, 0x0000, 0x0000 }, /* R242 */
348         { 0x0000, 0x0000, 0x0000 }, /* R243 */
349         { 0x0000, 0x0000, 0x0000 }, /* R244 */
350         { 0x0000, 0x0000, 0x0000 }, /* R245 */
351         { 0x0000, 0x0000, 0x0000 }, /* R246 */
352         { 0x0000, 0x0000, 0x0000 }, /* R247 */
353         { 0x0000, 0x0000, 0x0000 }, /* R248 */
354         { 0x0000, 0x0000, 0x0000 }, /* R249 */
355         { 0x0000, 0x0000, 0x0000 }, /* R250 */
356         { 0x0000, 0x0000, 0x0000 }, /* R251 */
357         { 0x0000, 0x0000, 0x0000 }, /* R252 */
358         { 0x0000, 0x0000, 0x0000 }, /* R253 */
359         { 0x0000, 0x0000, 0x0000 }, /* R254 */
360         { 0x0000, 0x0000, 0x0000 }, /* R255 */
361         { 0x000F, 0x0000, 0x0000 }, /* R256   - Chip Revision */
362         { 0x0074, 0x0074, 0x0000 }, /* R257   - Control Interface */
363         { 0x0000, 0x0000, 0x0000 }, /* R258 */
364         { 0x0000, 0x0000, 0x0000 }, /* R259 */
365         { 0x0000, 0x0000, 0x0000 }, /* R260 */
366         { 0x0000, 0x0000, 0x0000 }, /* R261 */
367         { 0x0000, 0x0000, 0x0000 }, /* R262 */
368         { 0x0000, 0x0000, 0x0000 }, /* R263 */
369         { 0x0000, 0x0000, 0x0000 }, /* R264 */
370         { 0x0000, 0x0000, 0x0000 }, /* R265 */
371         { 0x0000, 0x0000, 0x0000 }, /* R266 */
372         { 0x0000, 0x0000, 0x0000 }, /* R267 */
373         { 0x0000, 0x0000, 0x0000 }, /* R268 */
374         { 0x0000, 0x0000, 0x0000 }, /* R269 */
375         { 0x0000, 0x0000, 0x0000 }, /* R270 */
376         { 0x0000, 0x0000, 0x0000 }, /* R271 */
377         { 0x807F, 0x837F, 0x0000 }, /* R272   - Write Sequencer Ctrl (1) */
378         { 0x017F, 0x0000, 0x0000 }, /* R273   - Write Sequencer Ctrl (2) */
379         { 0x0000, 0x0000, 0x0000 }, /* R274 */
380         { 0x0000, 0x0000, 0x0000 }, /* R275 */
381         { 0x0000, 0x0000, 0x0000 }, /* R276 */
382         { 0x0000, 0x0000, 0x0000 }, /* R277 */
383         { 0x0000, 0x0000, 0x0000 }, /* R278 */
384         { 0x0000, 0x0000, 0x0000 }, /* R279 */
385         { 0x0000, 0x0000, 0x0000 }, /* R280 */
386         { 0x0000, 0x0000, 0x0000 }, /* R281 */
387         { 0x0000, 0x0000, 0x0000 }, /* R282 */
388         { 0x0000, 0x0000, 0x0000 }, /* R283 */
389         { 0x0000, 0x0000, 0x0000 }, /* R284 */
390         { 0x0000, 0x0000, 0x0000 }, /* R285 */
391         { 0x0000, 0x0000, 0x0000 }, /* R286 */
392         { 0x0000, 0x0000, 0x0000 }, /* R287 */
393         { 0x0000, 0x0000, 0x0000 }, /* R288 */
394         { 0x0000, 0x0000, 0x0000 }, /* R289 */
395         { 0x0000, 0x0000, 0x0000 }, /* R290 */
396         { 0x0000, 0x0000, 0x0000 }, /* R291 */
397         { 0x0000, 0x0000, 0x0000 }, /* R292 */
398         { 0x0000, 0x0000, 0x0000 }, /* R293 */
399         { 0x0000, 0x0000, 0x0000 }, /* R294 */
400         { 0x0000, 0x0000, 0x0000 }, /* R295 */
401         { 0x0000, 0x0000, 0x0000 }, /* R296 */
402         { 0x0000, 0x0000, 0x0000 }, /* R297 */
403         { 0x0000, 0x0000, 0x0000 }, /* R298 */
404         { 0x0000, 0x0000, 0x0000 }, /* R299 */
405         { 0x0000, 0x0000, 0x0000 }, /* R300 */
406         { 0x0000, 0x0000, 0x0000 }, /* R301 */
407         { 0x0000, 0x0000, 0x0000 }, /* R302 */
408         { 0x0000, 0x0000, 0x0000 }, /* R303 */
409         { 0x0000, 0x0000, 0x0000 }, /* R304 */
410         { 0x0000, 0x0000, 0x0000 }, /* R305 */
411         { 0x0000, 0x0000, 0x0000 }, /* R306 */
412         { 0x0000, 0x0000, 0x0000 }, /* R307 */
413         { 0x0000, 0x0000, 0x0000 }, /* R308 */
414         { 0x0000, 0x0000, 0x0000 }, /* R309 */
415         { 0x0000, 0x0000, 0x0000 }, /* R310 */
416         { 0x0000, 0x0000, 0x0000 }, /* R311 */
417         { 0x0000, 0x0000, 0x0000 }, /* R312 */
418         { 0x0000, 0x0000, 0x0000 }, /* R313 */
419         { 0x0000, 0x0000, 0x0000 }, /* R314 */
420         { 0x0000, 0x0000, 0x0000 }, /* R315 */
421         { 0x0000, 0x0000, 0x0000 }, /* R316 */
422         { 0x0000, 0x0000, 0x0000 }, /* R317 */
423         { 0x0000, 0x0000, 0x0000 }, /* R318 */
424         { 0x0000, 0x0000, 0x0000 }, /* R319 */
425         { 0x0000, 0x0000, 0x0000 }, /* R320 */
426         { 0x0000, 0x0000, 0x0000 }, /* R321 */
427         { 0x0000, 0x0000, 0x0000 }, /* R322 */
428         { 0x0000, 0x0000, 0x0000 }, /* R323 */
429         { 0x0000, 0x0000, 0x0000 }, /* R324 */
430         { 0x0000, 0x0000, 0x0000 }, /* R325 */
431         { 0x0000, 0x0000, 0x0000 }, /* R326 */
432         { 0x0000, 0x0000, 0x0000 }, /* R327 */
433         { 0x0000, 0x0000, 0x0000 }, /* R328 */
434         { 0x0000, 0x0000, 0x0000 }, /* R329 */
435         { 0x0000, 0x0000, 0x0000 }, /* R330 */
436         { 0x0000, 0x0000, 0x0000 }, /* R331 */
437         { 0x0000, 0x0000, 0x0000 }, /* R332 */
438         { 0x0000, 0x0000, 0x0000 }, /* R333 */
439         { 0x0000, 0x0000, 0x0000 }, /* R334 */
440         { 0x0000, 0x0000, 0x0000 }, /* R335 */
441         { 0x0000, 0x0000, 0x0000 }, /* R336 */
442         { 0x0000, 0x0000, 0x0000 }, /* R337 */
443         { 0x0000, 0x0000, 0x0000 }, /* R338 */
444         { 0x0000, 0x0000, 0x0000 }, /* R339 */
445         { 0x0000, 0x0000, 0x0000 }, /* R340 */
446         { 0x0000, 0x0000, 0x0000 }, /* R341 */
447         { 0x0000, 0x0000, 0x0000 }, /* R342 */
448         { 0x0000, 0x0000, 0x0000 }, /* R343 */
449         { 0x0000, 0x0000, 0x0000 }, /* R344 */
450         { 0x0000, 0x0000, 0x0000 }, /* R345 */
451         { 0x0000, 0x0000, 0x0000 }, /* R346 */
452         { 0x0000, 0x0000, 0x0000 }, /* R347 */
453         { 0x0000, 0x0000, 0x0000 }, /* R348 */
454         { 0x0000, 0x0000, 0x0000 }, /* R349 */
455         { 0x0000, 0x0000, 0x0000 }, /* R350 */
456         { 0x0000, 0x0000, 0x0000 }, /* R351 */
457         { 0x0000, 0x0000, 0x0000 }, /* R352 */
458         { 0x0000, 0x0000, 0x0000 }, /* R353 */
459         { 0x0000, 0x0000, 0x0000 }, /* R354 */
460         { 0x0000, 0x0000, 0x0000 }, /* R355 */
461         { 0x0000, 0x0000, 0x0000 }, /* R356 */
462         { 0x0000, 0x0000, 0x0000 }, /* R357 */
463         { 0x0000, 0x0000, 0x0000 }, /* R358 */
464         { 0x0000, 0x0000, 0x0000 }, /* R359 */
465         { 0x0000, 0x0000, 0x0000 }, /* R360 */
466         { 0x0000, 0x0000, 0x0000 }, /* R361 */
467         { 0x0000, 0x0000, 0x0000 }, /* R362 */
468         { 0x0000, 0x0000, 0x0000 }, /* R363 */
469         { 0x0000, 0x0000, 0x0000 }, /* R364 */
470         { 0x0000, 0x0000, 0x0000 }, /* R365 */
471         { 0x0000, 0x0000, 0x0000 }, /* R366 */
472         { 0x0000, 0x0000, 0x0000 }, /* R367 */
473         { 0x0000, 0x0000, 0x0000 }, /* R368 */
474         { 0x0000, 0x0000, 0x0000 }, /* R369 */
475         { 0x0000, 0x0000, 0x0000 }, /* R370 */
476         { 0x0000, 0x0000, 0x0000 }, /* R371 */
477         { 0x0000, 0x0000, 0x0000 }, /* R372 */
478         { 0x0000, 0x0000, 0x0000 }, /* R373 */
479         { 0x0000, 0x0000, 0x0000 }, /* R374 */
480         { 0x0000, 0x0000, 0x0000 }, /* R375 */
481         { 0x0000, 0x0000, 0x0000 }, /* R376 */
482         { 0x0000, 0x0000, 0x0000 }, /* R377 */
483         { 0x0000, 0x0000, 0x0000 }, /* R378 */
484         { 0x0000, 0x0000, 0x0000 }, /* R379 */
485         { 0x0000, 0x0000, 0x0000 }, /* R380 */
486         { 0x0000, 0x0000, 0x0000 }, /* R381 */
487         { 0x0000, 0x0000, 0x0000 }, /* R382 */
488         { 0x0000, 0x0000, 0x0000 }, /* R383 */
489         { 0x0000, 0x0000, 0x0000 }, /* R384 */
490         { 0x0000, 0x0000, 0x0000 }, /* R385 */
491         { 0x0000, 0x0000, 0x0000 }, /* R386 */
492         { 0x0000, 0x0000, 0x0000 }, /* R387 */
493         { 0x0000, 0x0000, 0x0000 }, /* R388 */
494         { 0x0000, 0x0000, 0x0000 }, /* R389 */
495         { 0x0000, 0x0000, 0x0000 }, /* R390 */
496         { 0x0000, 0x0000, 0x0000 }, /* R391 */
497         { 0x0000, 0x0000, 0x0000 }, /* R392 */
498         { 0x0000, 0x0000, 0x0000 }, /* R393 */
499         { 0x0000, 0x0000, 0x0000 }, /* R394 */
500         { 0x0000, 0x0000, 0x0000 }, /* R395 */
501         { 0x0000, 0x0000, 0x0000 }, /* R396 */
502         { 0x0000, 0x0000, 0x0000 }, /* R397 */
503         { 0x0000, 0x0000, 0x0000 }, /* R398 */
504         { 0x0000, 0x0000, 0x0000 }, /* R399 */
505         { 0x0000, 0x0000, 0x0000 }, /* R400 */
506         { 0x0000, 0x0000, 0x0000 }, /* R401 */
507         { 0x0000, 0x0000, 0x0000 }, /* R402 */
508         { 0x0000, 0x0000, 0x0000 }, /* R403 */
509         { 0x0000, 0x0000, 0x0000 }, /* R404 */
510         { 0x0000, 0x0000, 0x0000 }, /* R405 */
511         { 0x0000, 0x0000, 0x0000 }, /* R406 */
512         { 0x0000, 0x0000, 0x0000 }, /* R407 */
513         { 0x0000, 0x0000, 0x0000 }, /* R408 */
514         { 0x0000, 0x0000, 0x0000 }, /* R409 */
515         { 0x0000, 0x0000, 0x0000 }, /* R410 */
516         { 0x0000, 0x0000, 0x0000 }, /* R411 */
517         { 0x0000, 0x0000, 0x0000 }, /* R412 */
518         { 0x0000, 0x0000, 0x0000 }, /* R413 */
519         { 0x0000, 0x0000, 0x0000 }, /* R414 */
520         { 0x0000, 0x0000, 0x0000 }, /* R415 */
521         { 0x0000, 0x0000, 0x0000 }, /* R416 */
522         { 0x0000, 0x0000, 0x0000 }, /* R417 */
523         { 0x0000, 0x0000, 0x0000 }, /* R418 */
524         { 0x0000, 0x0000, 0x0000 }, /* R419 */
525         { 0x0000, 0x0000, 0x0000 }, /* R420 */
526         { 0x0000, 0x0000, 0x0000 }, /* R421 */
527         { 0x0000, 0x0000, 0x0000 }, /* R422 */
528         { 0x0000, 0x0000, 0x0000 }, /* R423 */
529         { 0x0000, 0x0000, 0x0000 }, /* R424 */
530         { 0x0000, 0x0000, 0x0000 }, /* R425 */
531         { 0x0000, 0x0000, 0x0000 }, /* R426 */
532         { 0x0000, 0x0000, 0x0000 }, /* R427 */
533         { 0x0000, 0x0000, 0x0000 }, /* R428 */
534         { 0x0000, 0x0000, 0x0000 }, /* R429 */
535         { 0x0000, 0x0000, 0x0000 }, /* R430 */
536         { 0x0000, 0x0000, 0x0000 }, /* R431 */
537         { 0x0000, 0x0000, 0x0000 }, /* R432 */
538         { 0x0000, 0x0000, 0x0000 }, /* R433 */
539         { 0x0000, 0x0000, 0x0000 }, /* R434 */
540         { 0x0000, 0x0000, 0x0000 }, /* R435 */
541         { 0x0000, 0x0000, 0x0000 }, /* R436 */
542         { 0x0000, 0x0000, 0x0000 }, /* R437 */
543         { 0x0000, 0x0000, 0x0000 }, /* R438 */
544         { 0x0000, 0x0000, 0x0000 }, /* R439 */
545         { 0x0000, 0x0000, 0x0000 }, /* R440 */
546         { 0x0000, 0x0000, 0x0000 }, /* R441 */
547         { 0x0000, 0x0000, 0x0000 }, /* R442 */
548         { 0x0000, 0x0000, 0x0000 }, /* R443 */
549         { 0x0000, 0x0000, 0x0000 }, /* R444 */
550         { 0x0000, 0x0000, 0x0000 }, /* R445 */
551         { 0x0000, 0x0000, 0x0000 }, /* R446 */
552         { 0x0000, 0x0000, 0x0000 }, /* R447 */
553         { 0x0000, 0x0000, 0x0000 }, /* R448 */
554         { 0x0000, 0x0000, 0x0000 }, /* R449 */
555         { 0x0000, 0x0000, 0x0000 }, /* R450 */
556         { 0x0000, 0x0000, 0x0000 }, /* R451 */
557         { 0x0000, 0x0000, 0x0000 }, /* R452 */
558         { 0x0000, 0x0000, 0x0000 }, /* R453 */
559         { 0x0000, 0x0000, 0x0000 }, /* R454 */
560         { 0x0000, 0x0000, 0x0000 }, /* R455 */
561         { 0x0000, 0x0000, 0x0000 }, /* R456 */
562         { 0x0000, 0x0000, 0x0000 }, /* R457 */
563         { 0x0000, 0x0000, 0x0000 }, /* R458 */
564         { 0x0000, 0x0000, 0x0000 }, /* R459 */
565         { 0x0000, 0x0000, 0x0000 }, /* R460 */
566         { 0x0000, 0x0000, 0x0000 }, /* R461 */
567         { 0x0000, 0x0000, 0x0000 }, /* R462 */
568         { 0x0000, 0x0000, 0x0000 }, /* R463 */
569         { 0x0000, 0x0000, 0x0000 }, /* R464 */
570         { 0x0000, 0x0000, 0x0000 }, /* R465 */
571         { 0x0000, 0x0000, 0x0000 }, /* R466 */
572         { 0x0000, 0x0000, 0x0000 }, /* R467 */
573         { 0x0000, 0x0000, 0x0000 }, /* R468 */
574         { 0x0000, 0x0000, 0x0000 }, /* R469 */
575         { 0x0000, 0x0000, 0x0000 }, /* R470 */
576         { 0x0000, 0x0000, 0x0000 }, /* R471 */
577         { 0x0000, 0x0000, 0x0000 }, /* R472 */
578         { 0x0000, 0x0000, 0x0000 }, /* R473 */
579         { 0x0000, 0x0000, 0x0000 }, /* R474 */
580         { 0x0000, 0x0000, 0x0000 }, /* R475 */
581         { 0x0000, 0x0000, 0x0000 }, /* R476 */
582         { 0x0000, 0x0000, 0x0000 }, /* R477 */
583         { 0x0000, 0x0000, 0x0000 }, /* R478 */
584         { 0x0000, 0x0000, 0x0000 }, /* R479 */
585         { 0x0000, 0x0000, 0x0000 }, /* R480 */
586         { 0x0000, 0x0000, 0x0000 }, /* R481 */
587         { 0x0000, 0x0000, 0x0000 }, /* R482 */
588         { 0x0000, 0x0000, 0x0000 }, /* R483 */
589         { 0x0000, 0x0000, 0x0000 }, /* R484 */
590         { 0x0000, 0x0000, 0x0000 }, /* R485 */
591         { 0x0000, 0x0000, 0x0000 }, /* R486 */
592         { 0x0000, 0x0000, 0x0000 }, /* R487 */
593         { 0x0000, 0x0000, 0x0000 }, /* R488 */
594         { 0x0000, 0x0000, 0x0000 }, /* R489 */
595         { 0x0000, 0x0000, 0x0000 }, /* R490 */
596         { 0x0000, 0x0000, 0x0000 }, /* R491 */
597         { 0x0000, 0x0000, 0x0000 }, /* R492 */
598         { 0x0000, 0x0000, 0x0000 }, /* R493 */
599         { 0x0000, 0x0000, 0x0000 }, /* R494 */
600         { 0x0000, 0x0000, 0x0000 }, /* R495 */
601         { 0x0000, 0x0000, 0x0000 }, /* R496 */
602         { 0x0000, 0x0000, 0x0000 }, /* R497 */
603         { 0x0000, 0x0000, 0x0000 }, /* R498 */
604         { 0x0000, 0x0000, 0x0000 }, /* R499 */
605         { 0x0000, 0x0000, 0x0000 }, /* R500 */
606         { 0x0000, 0x0000, 0x0000 }, /* R501 */
607         { 0x0000, 0x0000, 0x0000 }, /* R502 */
608         { 0x0000, 0x0000, 0x0000 }, /* R503 */
609         { 0x0000, 0x0000, 0x0000 }, /* R504 */
610         { 0x0000, 0x0000, 0x0000 }, /* R505 */
611         { 0x0000, 0x0000, 0x0000 }, /* R506 */
612         { 0x0000, 0x0000, 0x0000 }, /* R507 */
613         { 0x0000, 0x0000, 0x0000 }, /* R508 */
614         { 0x0000, 0x0000, 0x0000 }, /* R509 */
615         { 0x0000, 0x0000, 0x0000 }, /* R510 */
616         { 0x0000, 0x0000, 0x0000 }, /* R511 */
617         { 0x001F, 0x001F, 0x0000 }, /* R512   - AIF1 Clocking (1) */
618         { 0x003F, 0x003F, 0x0000 }, /* R513   - AIF1 Clocking (2) */
619         { 0x0000, 0x0000, 0x0000 }, /* R514 */
620         { 0x0000, 0x0000, 0x0000 }, /* R515 */
621         { 0x001F, 0x001F, 0x0000 }, /* R516   - AIF2 Clocking (1) */
622         { 0x003F, 0x003F, 0x0000 }, /* R517   - AIF2 Clocking (2) */
623         { 0x0000, 0x0000, 0x0000 }, /* R518 */
624         { 0x0000, 0x0000, 0x0000 }, /* R519 */
625         { 0x001F, 0x001F, 0x0000 }, /* R520   - Clocking (1) */
626         { 0x0777, 0x0777, 0x0000 }, /* R521   - Clocking (2) */
627         { 0x0000, 0x0000, 0x0000 }, /* R522 */
628         { 0x0000, 0x0000, 0x0000 }, /* R523 */
629         { 0x0000, 0x0000, 0x0000 }, /* R524 */
630         { 0x0000, 0x0000, 0x0000 }, /* R525 */
631         { 0x0000, 0x0000, 0x0000 }, /* R526 */
632         { 0x0000, 0x0000, 0x0000 }, /* R527 */
633         { 0x00FF, 0x00FF, 0x0000 }, /* R528   - AIF1 Rate */
634         { 0x00FF, 0x00FF, 0x0000 }, /* R529   - AIF2 Rate */
635         { 0x000F, 0x0000, 0x0000 }, /* R530   - Rate Status */
636         { 0x0000, 0x0000, 0x0000 }, /* R531 */
637         { 0x0000, 0x0000, 0x0000 }, /* R532 */
638         { 0x0000, 0x0000, 0x0000 }, /* R533 */
639         { 0x0000, 0x0000, 0x0000 }, /* R534 */
640         { 0x0000, 0x0000, 0x0000 }, /* R535 */
641         { 0x0000, 0x0000, 0x0000 }, /* R536 */
642         { 0x0000, 0x0000, 0x0000 }, /* R537 */
643         { 0x0000, 0x0000, 0x0000 }, /* R538 */
644         { 0x0000, 0x0000, 0x0000 }, /* R539 */
645         { 0x0000, 0x0000, 0x0000 }, /* R540 */
646         { 0x0000, 0x0000, 0x0000 }, /* R541 */
647         { 0x0000, 0x0000, 0x0000 }, /* R542 */
648         { 0x0000, 0x0000, 0x0000 }, /* R543 */
649         { 0x0007, 0x0007, 0x0000 }, /* R544   - FLL1 Control (1) */
650         { 0x3F77, 0x3F77, 0x0000 }, /* R545   - FLL1 Control (2) */
651         { 0xFFFF, 0xFFFF, 0x0000 }, /* R546   - FLL1 Control (3) */
652         { 0x7FEF, 0x7FEF, 0x0000 }, /* R547   - FLL1 Control (4) */
653         { 0x1FDB, 0x1FDB, 0x0000 }, /* R548   - FLL1 Control (5) */
654         { 0x0000, 0x0000, 0x0000 }, /* R549 */
655         { 0x0000, 0x0000, 0x0000 }, /* R550 */
656         { 0x0000, 0x0000, 0x0000 }, /* R551 */
657         { 0x0000, 0x0000, 0x0000 }, /* R552 */
658         { 0x0000, 0x0000, 0x0000 }, /* R553 */
659         { 0x0000, 0x0000, 0x0000 }, /* R554 */
660         { 0x0000, 0x0000, 0x0000 }, /* R555 */
661         { 0x0000, 0x0000, 0x0000 }, /* R556 */
662         { 0x0000, 0x0000, 0x0000 }, /* R557 */
663         { 0x0000, 0x0000, 0x0000 }, /* R558 */
664         { 0x0000, 0x0000, 0x0000 }, /* R559 */
665         { 0x0000, 0x0000, 0x0000 }, /* R560 */
666         { 0x0000, 0x0000, 0x0000 }, /* R561 */
667         { 0x0000, 0x0000, 0x0000 }, /* R562 */
668         { 0x0000, 0x0000, 0x0000 }, /* R563 */
669         { 0x0000, 0x0000, 0x0000 }, /* R564 */
670         { 0x0000, 0x0000, 0x0000 }, /* R565 */
671         { 0x0000, 0x0000, 0x0000 }, /* R566 */
672         { 0x0000, 0x0000, 0x0000 }, /* R567 */
673         { 0x0000, 0x0000, 0x0000 }, /* R568 */
674         { 0x0000, 0x0000, 0x0000 }, /* R569 */
675         { 0x0000, 0x0000, 0x0000 }, /* R570 */
676         { 0x0000, 0x0000, 0x0000 }, /* R571 */
677         { 0x0000, 0x0000, 0x0000 }, /* R572 */
678         { 0x0000, 0x0000, 0x0000 }, /* R573 */
679         { 0x0000, 0x0000, 0x0000 }, /* R574 */
680         { 0x0000, 0x0000, 0x0000 }, /* R575 */
681         { 0x0007, 0x0007, 0x0000 }, /* R576   - FLL2 Control (1) */
682         { 0x3F77, 0x3F77, 0x0000 }, /* R577   - FLL2 Control (2) */
683         { 0xFFFF, 0xFFFF, 0x0000 }, /* R578   - FLL2 Control (3) */
684         { 0x7FEF, 0x7FEF, 0x0000 }, /* R579   - FLL2 Control (4) */
685         { 0x1FDB, 0x1FDB, 0x0000 }, /* R580   - FLL2 Control (5) */
686         { 0x0000, 0x0000, 0x0000 }, /* R581 */
687         { 0x0000, 0x0000, 0x0000 }, /* R582 */
688         { 0x0000, 0x0000, 0x0000 }, /* R583 */
689         { 0x0000, 0x0000, 0x0000 }, /* R584 */
690         { 0x0000, 0x0000, 0x0000 }, /* R585 */
691         { 0x0000, 0x0000, 0x0000 }, /* R586 */
692         { 0x0000, 0x0000, 0x0000 }, /* R587 */
693         { 0x0000, 0x0000, 0x0000 }, /* R588 */
694         { 0x0000, 0x0000, 0x0000 }, /* R589 */
695         { 0x0000, 0x0000, 0x0000 }, /* R590 */
696         { 0x0000, 0x0000, 0x0000 }, /* R591 */
697         { 0x0000, 0x0000, 0x0000 }, /* R592 */
698         { 0x0000, 0x0000, 0x0000 }, /* R593 */
699         { 0x0000, 0x0000, 0x0000 }, /* R594 */
700         { 0x0000, 0x0000, 0x0000 }, /* R595 */
701         { 0x0000, 0x0000, 0x0000 }, /* R596 */
702         { 0x0000, 0x0000, 0x0000 }, /* R597 */
703         { 0x0000, 0x0000, 0x0000 }, /* R598 */
704         { 0x0000, 0x0000, 0x0000 }, /* R599 */
705         { 0x0000, 0x0000, 0x0000 }, /* R600 */
706         { 0x0000, 0x0000, 0x0000 }, /* R601 */
707         { 0x0000, 0x0000, 0x0000 }, /* R602 */
708         { 0x0000, 0x0000, 0x0000 }, /* R603 */
709         { 0x0000, 0x0000, 0x0000 }, /* R604 */
710         { 0x0000, 0x0000, 0x0000 }, /* R605 */
711         { 0x0000, 0x0000, 0x0000 }, /* R606 */
712         { 0x0000, 0x0000, 0x0000 }, /* R607 */
713         { 0x0000, 0x0000, 0x0000 }, /* R608 */
714         { 0x0000, 0x0000, 0x0000 }, /* R609 */
715         { 0x0000, 0x0000, 0x0000 }, /* R610 */
716         { 0x0000, 0x0000, 0x0000 }, /* R611 */
717         { 0x0000, 0x0000, 0x0000 }, /* R612 */
718         { 0x0000, 0x0000, 0x0000 }, /* R613 */
719         { 0x0000, 0x0000, 0x0000 }, /* R614 */
720         { 0x0000, 0x0000, 0x0000 }, /* R615 */
721         { 0x0000, 0x0000, 0x0000 }, /* R616 */
722         { 0x0000, 0x0000, 0x0000 }, /* R617 */
723         { 0x0000, 0x0000, 0x0000 }, /* R618 */
724         { 0x0000, 0x0000, 0x0000 }, /* R619 */
725         { 0x0000, 0x0000, 0x0000 }, /* R620 */
726         { 0x0000, 0x0000, 0x0000 }, /* R621 */
727         { 0x0000, 0x0000, 0x0000 }, /* R622 */
728         { 0x0000, 0x0000, 0x0000 }, /* R623 */
729         { 0x0000, 0x0000, 0x0000 }, /* R624 */
730         { 0x0000, 0x0000, 0x0000 }, /* R625 */
731         { 0x0000, 0x0000, 0x0000 }, /* R626 */
732         { 0x0000, 0x0000, 0x0000 }, /* R627 */
733         { 0x0000, 0x0000, 0x0000 }, /* R628 */
734         { 0x0000, 0x0000, 0x0000 }, /* R629 */
735         { 0x0000, 0x0000, 0x0000 }, /* R630 */
736         { 0x0000, 0x0000, 0x0000 }, /* R631 */
737         { 0x0000, 0x0000, 0x0000 }, /* R632 */
738         { 0x0000, 0x0000, 0x0000 }, /* R633 */
739         { 0x0000, 0x0000, 0x0000 }, /* R634 */
740         { 0x0000, 0x0000, 0x0000 }, /* R635 */
741         { 0x0000, 0x0000, 0x0000 }, /* R636 */
742         { 0x0000, 0x0000, 0x0000 }, /* R637 */
743         { 0x0000, 0x0000, 0x0000 }, /* R638 */
744         { 0x0000, 0x0000, 0x0000 }, /* R639 */
745         { 0x0000, 0x0000, 0x0000 }, /* R640 */
746         { 0x0000, 0x0000, 0x0000 }, /* R641 */
747         { 0x0000, 0x0000, 0x0000 }, /* R642 */
748         { 0x0000, 0x0000, 0x0000 }, /* R643 */
749         { 0x0000, 0x0000, 0x0000 }, /* R644 */
750         { 0x0000, 0x0000, 0x0000 }, /* R645 */
751         { 0x0000, 0x0000, 0x0000 }, /* R646 */
752         { 0x0000, 0x0000, 0x0000 }, /* R647 */
753         { 0x0000, 0x0000, 0x0000 }, /* R648 */
754         { 0x0000, 0x0000, 0x0000 }, /* R649 */
755         { 0x0000, 0x0000, 0x0000 }, /* R650 */
756         { 0x0000, 0x0000, 0x0000 }, /* R651 */
757         { 0x0000, 0x0000, 0x0000 }, /* R652 */
758         { 0x0000, 0x0000, 0x0000 }, /* R653 */
759         { 0x0000, 0x0000, 0x0000 }, /* R654 */
760         { 0x0000, 0x0000, 0x0000 }, /* R655 */
761         { 0x0000, 0x0000, 0x0000 }, /* R656 */
762         { 0x0000, 0x0000, 0x0000 }, /* R657 */
763         { 0x0000, 0x0000, 0x0000 }, /* R658 */
764         { 0x0000, 0x0000, 0x0000 }, /* R659 */
765         { 0x0000, 0x0000, 0x0000 }, /* R660 */
766         { 0x0000, 0x0000, 0x0000 }, /* R661 */
767         { 0x0000, 0x0000, 0x0000 }, /* R662 */
768         { 0x0000, 0x0000, 0x0000 }, /* R663 */
769         { 0x0000, 0x0000, 0x0000 }, /* R664 */
770         { 0x0000, 0x0000, 0x0000 }, /* R665 */
771         { 0x0000, 0x0000, 0x0000 }, /* R666 */
772         { 0x0000, 0x0000, 0x0000 }, /* R667 */
773         { 0x0000, 0x0000, 0x0000 }, /* R668 */
774         { 0x0000, 0x0000, 0x0000 }, /* R669 */
775         { 0x0000, 0x0000, 0x0000 }, /* R670 */
776         { 0x0000, 0x0000, 0x0000 }, /* R671 */
777         { 0x0000, 0x0000, 0x0000 }, /* R672 */
778         { 0x0000, 0x0000, 0x0000 }, /* R673 */
779         { 0x0000, 0x0000, 0x0000 }, /* R674 */
780         { 0x0000, 0x0000, 0x0000 }, /* R675 */
781         { 0x0000, 0x0000, 0x0000 }, /* R676 */
782         { 0x0000, 0x0000, 0x0000 }, /* R677 */
783         { 0x0000, 0x0000, 0x0000 }, /* R678 */
784         { 0x0000, 0x0000, 0x0000 }, /* R679 */
785         { 0x0000, 0x0000, 0x0000 }, /* R680 */
786         { 0x0000, 0x0000, 0x0000 }, /* R681 */
787         { 0x0000, 0x0000, 0x0000 }, /* R682 */
788         { 0x0000, 0x0000, 0x0000 }, /* R683 */
789         { 0x0000, 0x0000, 0x0000 }, /* R684 */
790         { 0x0000, 0x0000, 0x0000 }, /* R685 */
791         { 0x0000, 0x0000, 0x0000 }, /* R686 */
792         { 0x0000, 0x0000, 0x0000 }, /* R687 */
793         { 0x0000, 0x0000, 0x0000 }, /* R688 */
794         { 0x0000, 0x0000, 0x0000 }, /* R689 */
795         { 0x0000, 0x0000, 0x0000 }, /* R690 */
796         { 0x0000, 0x0000, 0x0000 }, /* R691 */
797         { 0x0000, 0x0000, 0x0000 }, /* R692 */
798         { 0x0000, 0x0000, 0x0000 }, /* R693 */
799         { 0x0000, 0x0000, 0x0000 }, /* R694 */
800         { 0x0000, 0x0000, 0x0000 }, /* R695 */
801         { 0x0000, 0x0000, 0x0000 }, /* R696 */
802         { 0x0000, 0x0000, 0x0000 }, /* R697 */
803         { 0x0000, 0x0000, 0x0000 }, /* R698 */
804         { 0x0000, 0x0000, 0x0000 }, /* R699 */
805         { 0x0000, 0x0000, 0x0000 }, /* R700 */
806         { 0x0000, 0x0000, 0x0000 }, /* R701 */
807         { 0x0000, 0x0000, 0x0000 }, /* R702 */
808         { 0x0000, 0x0000, 0x0000 }, /* R703 */
809         { 0x0000, 0x0000, 0x0000 }, /* R704 */
810         { 0x0000, 0x0000, 0x0000 }, /* R705 */
811         { 0x0000, 0x0000, 0x0000 }, /* R706 */
812         { 0x0000, 0x0000, 0x0000 }, /* R707 */
813         { 0x0000, 0x0000, 0x0000 }, /* R708 */
814         { 0x0000, 0x0000, 0x0000 }, /* R709 */
815         { 0x0000, 0x0000, 0x0000 }, /* R710 */
816         { 0x0000, 0x0000, 0x0000 }, /* R711 */
817         { 0x0000, 0x0000, 0x0000 }, /* R712 */
818         { 0x0000, 0x0000, 0x0000 }, /* R713 */
819         { 0x0000, 0x0000, 0x0000 }, /* R714 */
820         { 0x0000, 0x0000, 0x0000 }, /* R715 */
821         { 0x0000, 0x0000, 0x0000 }, /* R716 */
822         { 0x0000, 0x0000, 0x0000 }, /* R717 */
823         { 0x0000, 0x0000, 0x0000 }, /* R718 */
824         { 0x0000, 0x0000, 0x0000 }, /* R719 */
825         { 0x0000, 0x0000, 0x0000 }, /* R720 */
826         { 0x0000, 0x0000, 0x0000 }, /* R721 */
827         { 0x0000, 0x0000, 0x0000 }, /* R722 */
828         { 0x0000, 0x0000, 0x0000 }, /* R723 */
829         { 0x0000, 0x0000, 0x0000 }, /* R724 */
830         { 0x0000, 0x0000, 0x0000 }, /* R725 */
831         { 0x0000, 0x0000, 0x0000 }, /* R726 */
832         { 0x0000, 0x0000, 0x0000 }, /* R727 */
833         { 0x0000, 0x0000, 0x0000 }, /* R728 */
834         { 0x0000, 0x0000, 0x0000 }, /* R729 */
835         { 0x0000, 0x0000, 0x0000 }, /* R730 */
836         { 0x0000, 0x0000, 0x0000 }, /* R731 */
837         { 0x0000, 0x0000, 0x0000 }, /* R732 */
838         { 0x0000, 0x0000, 0x0000 }, /* R733 */
839         { 0x0000, 0x0000, 0x0000 }, /* R734 */
840         { 0x0000, 0x0000, 0x0000 }, /* R735 */
841         { 0x0000, 0x0000, 0x0000 }, /* R736 */
842         { 0x0000, 0x0000, 0x0000 }, /* R737 */
843         { 0x0000, 0x0000, 0x0000 }, /* R738 */
844         { 0x0000, 0x0000, 0x0000 }, /* R739 */
845         { 0x0000, 0x0000, 0x0000 }, /* R740 */
846         { 0x0000, 0x0000, 0x0000 }, /* R741 */
847         { 0x0000, 0x0000, 0x0000 }, /* R742 */
848         { 0x0000, 0x0000, 0x0000 }, /* R743 */
849         { 0x0000, 0x0000, 0x0000 }, /* R744 */
850         { 0x0000, 0x0000, 0x0000 }, /* R745 */
851         { 0x0000, 0x0000, 0x0000 }, /* R746 */
852         { 0x0000, 0x0000, 0x0000 }, /* R747 */
853         { 0x0000, 0x0000, 0x0000 }, /* R748 */
854         { 0x0000, 0x0000, 0x0000 }, /* R749 */
855         { 0x0000, 0x0000, 0x0000 }, /* R750 */
856         { 0x0000, 0x0000, 0x0000 }, /* R751 */
857         { 0x0000, 0x0000, 0x0000 }, /* R752 */
858         { 0x0000, 0x0000, 0x0000 }, /* R753 */
859         { 0x0000, 0x0000, 0x0000 }, /* R754 */
860         { 0x0000, 0x0000, 0x0000 }, /* R755 */
861         { 0x0000, 0x0000, 0x0000 }, /* R756 */
862         { 0x0000, 0x0000, 0x0000 }, /* R757 */
863         { 0x0000, 0x0000, 0x0000 }, /* R758 */
864         { 0x0000, 0x0000, 0x0000 }, /* R759 */
865         { 0x0000, 0x0000, 0x0000 }, /* R760 */
866         { 0x0000, 0x0000, 0x0000 }, /* R761 */
867         { 0x0000, 0x0000, 0x0000 }, /* R762 */
868         { 0x0000, 0x0000, 0x0000 }, /* R763 */
869         { 0x0000, 0x0000, 0x0000 }, /* R764 */
870         { 0x0000, 0x0000, 0x0000 }, /* R765 */
871         { 0x0000, 0x0000, 0x0000 }, /* R766 */
872         { 0x0000, 0x0000, 0x0000 }, /* R767 */
873         { 0xE1F8, 0xE1F8, 0x0000 }, /* R768   - AIF1 Control (1) */
874         { 0xCD1F, 0xCD1F, 0x0000 }, /* R769   - AIF1 Control (2) */
875         { 0xF000, 0xF000, 0x0000 }, /* R770   - AIF1 Master/Slave */
876         { 0x01F0, 0x01F0, 0x0000 }, /* R771   - AIF1 BCLK */
877         { 0x0FFF, 0x0FFF, 0x0000 }, /* R772   - AIF1ADC LRCLK */
878         { 0x0FFF, 0x0FFF, 0x0000 }, /* R773   - AIF1DAC LRCLK */
879         { 0x0003, 0x0003, 0x0000 }, /* R774   - AIF1DAC Data */
880         { 0x0003, 0x0003, 0x0000 }, /* R775   - AIF1ADC Data */
881         { 0x0000, 0x0000, 0x0000 }, /* R776 */
882         { 0x0000, 0x0000, 0x0000 }, /* R777 */
883         { 0x0000, 0x0000, 0x0000 }, /* R778 */
884         { 0x0000, 0x0000, 0x0000 }, /* R779 */
885         { 0x0000, 0x0000, 0x0000 }, /* R780 */
886         { 0x0000, 0x0000, 0x0000 }, /* R781 */
887         { 0x0000, 0x0000, 0x0000 }, /* R782 */
888         { 0x0000, 0x0000, 0x0000 }, /* R783 */
889         { 0xF1F8, 0xF1F8, 0x0000 }, /* R784   - AIF2 Control (1) */
890         { 0xFD1F, 0xFD1F, 0x0000 }, /* R785   - AIF2 Control (2) */
891         { 0xF000, 0xF000, 0x0000 }, /* R786   - AIF2 Master/Slave */
892         { 0x01F0, 0x01F0, 0x0000 }, /* R787   - AIF2 BCLK */
893         { 0x0FFF, 0x0FFF, 0x0000 }, /* R788   - AIF2ADC LRCLK */
894         { 0x0FFF, 0x0FFF, 0x0000 }, /* R789   - AIF2DAC LRCLK */
895         { 0x0003, 0x0003, 0x0000 }, /* R790   - AIF2DAC Data */
896         { 0x0003, 0x0003, 0x0000 }, /* R791   - AIF2ADC Data */
897         { 0x0000, 0x0000, 0x0000 }, /* R792 */
898         { 0x0000, 0x0000, 0x0000 }, /* R793 */
899         { 0x0000, 0x0000, 0x0000 }, /* R794 */
900         { 0x0000, 0x0000, 0x0000 }, /* R795 */
901         { 0x0000, 0x0000, 0x0000 }, /* R796 */
902         { 0x0000, 0x0000, 0x0000 }, /* R797 */
903         { 0x0000, 0x0000, 0x0000 }, /* R798 */
904         { 0x0000, 0x0000, 0x0000 }, /* R799 */
905         { 0x0000, 0x0000, 0x0000 }, /* R800 */
906         { 0x0000, 0x0000, 0x0000 }, /* R801 */
907         { 0x0000, 0x0000, 0x0000 }, /* R802 */
908         { 0x0000, 0x0000, 0x0000 }, /* R803 */
909         { 0x0000, 0x0000, 0x0000 }, /* R804 */
910         { 0x0000, 0x0000, 0x0000 }, /* R805 */
911         { 0x0000, 0x0000, 0x0000 }, /* R806 */
912         { 0x0000, 0x0000, 0x0000 }, /* R807 */
913         { 0x0000, 0x0000, 0x0000 }, /* R808 */
914         { 0x0000, 0x0000, 0x0000 }, /* R809 */
915         { 0x0000, 0x0000, 0x0000 }, /* R810 */
916         { 0x0000, 0x0000, 0x0000 }, /* R811 */
917         { 0x0000, 0x0000, 0x0000 }, /* R812 */
918         { 0x0000, 0x0000, 0x0000 }, /* R813 */
919         { 0x0000, 0x0000, 0x0000 }, /* R814 */
920         { 0x0000, 0x0000, 0x0000 }, /* R815 */
921         { 0x0000, 0x0000, 0x0000 }, /* R816 */
922         { 0x0000, 0x0000, 0x0000 }, /* R817 */
923         { 0x0000, 0x0000, 0x0000 }, /* R818 */
924         { 0x0000, 0x0000, 0x0000 }, /* R819 */
925         { 0x0000, 0x0000, 0x0000 }, /* R820 */
926         { 0x0000, 0x0000, 0x0000 }, /* R821 */
927         { 0x0000, 0x0000, 0x0000 }, /* R822 */
928         { 0x0000, 0x0000, 0x0000 }, /* R823 */
929         { 0x0000, 0x0000, 0x0000 }, /* R824 */
930         { 0x0000, 0x0000, 0x0000 }, /* R825 */
931         { 0x0000, 0x0000, 0x0000 }, /* R826 */
932         { 0x0000, 0x0000, 0x0000 }, /* R827 */
933         { 0x0000, 0x0000, 0x0000 }, /* R828 */
934         { 0x0000, 0x0000, 0x0000 }, /* R829 */
935         { 0x0000, 0x0000, 0x0000 }, /* R830 */
936         { 0x0000, 0x0000, 0x0000 }, /* R831 */
937         { 0x0000, 0x0000, 0x0000 }, /* R832 */
938         { 0x0000, 0x0000, 0x0000 }, /* R833 */
939         { 0x0000, 0x0000, 0x0000 }, /* R834 */
940         { 0x0000, 0x0000, 0x0000 }, /* R835 */
941         { 0x0000, 0x0000, 0x0000 }, /* R836 */
942         { 0x0000, 0x0000, 0x0000 }, /* R837 */
943         { 0x0000, 0x0000, 0x0000 }, /* R838 */
944         { 0x0000, 0x0000, 0x0000 }, /* R839 */
945         { 0x0000, 0x0000, 0x0000 }, /* R840 */
946         { 0x0000, 0x0000, 0x0000 }, /* R841 */
947         { 0x0000, 0x0000, 0x0000 }, /* R842 */
948         { 0x0000, 0x0000, 0x0000 }, /* R843 */
949         { 0x0000, 0x0000, 0x0000 }, /* R844 */
950         { 0x0000, 0x0000, 0x0000 }, /* R845 */
951         { 0x0000, 0x0000, 0x0000 }, /* R846 */
952         { 0x0000, 0x0000, 0x0000 }, /* R847 */
953         { 0x0000, 0x0000, 0x0000 }, /* R848 */
954         { 0x0000, 0x0000, 0x0000 }, /* R849 */
955         { 0x0000, 0x0000, 0x0000 }, /* R850 */
956         { 0x0000, 0x0000, 0x0000 }, /* R851 */
957         { 0x0000, 0x0000, 0x0000 }, /* R852 */
958         { 0x0000, 0x0000, 0x0000 }, /* R853 */
959         { 0x0000, 0x0000, 0x0000 }, /* R854 */
960         { 0x0000, 0x0000, 0x0000 }, /* R855 */
961         { 0x0000, 0x0000, 0x0000 }, /* R856 */
962         { 0x0000, 0x0000, 0x0000 }, /* R857 */
963         { 0x0000, 0x0000, 0x0000 }, /* R858 */
964         { 0x0000, 0x0000, 0x0000 }, /* R859 */
965         { 0x0000, 0x0000, 0x0000 }, /* R860 */
966         { 0x0000, 0x0000, 0x0000 }, /* R861 */
967         { 0x0000, 0x0000, 0x0000 }, /* R862 */
968         { 0x0000, 0x0000, 0x0000 }, /* R863 */
969         { 0x0000, 0x0000, 0x0000 }, /* R864 */
970         { 0x0000, 0x0000, 0x0000 }, /* R865 */
971         { 0x0000, 0x0000, 0x0000 }, /* R866 */
972         { 0x0000, 0x0000, 0x0000 }, /* R867 */
973         { 0x0000, 0x0000, 0x0000 }, /* R868 */
974         { 0x0000, 0x0000, 0x0000 }, /* R869 */
975         { 0x0000, 0x0000, 0x0000 }, /* R870 */
976         { 0x0000, 0x0000, 0x0000 }, /* R871 */
977         { 0x0000, 0x0000, 0x0000 }, /* R872 */
978         { 0x0000, 0x0000, 0x0000 }, /* R873 */
979         { 0x0000, 0x0000, 0x0000 }, /* R874 */
980         { 0x0000, 0x0000, 0x0000 }, /* R875 */
981         { 0x0000, 0x0000, 0x0000 }, /* R876 */
982         { 0x0000, 0x0000, 0x0000 }, /* R877 */
983         { 0x0000, 0x0000, 0x0000 }, /* R878 */
984         { 0x0000, 0x0000, 0x0000 }, /* R879 */
985         { 0x0000, 0x0000, 0x0000 }, /* R880 */
986         { 0x0000, 0x0000, 0x0000 }, /* R881 */
987         { 0x0000, 0x0000, 0x0000 }, /* R882 */
988         { 0x0000, 0x0000, 0x0000 }, /* R883 */
989         { 0x0000, 0x0000, 0x0000 }, /* R884 */
990         { 0x0000, 0x0000, 0x0000 }, /* R885 */
991         { 0x0000, 0x0000, 0x0000 }, /* R886 */
992         { 0x0000, 0x0000, 0x0000 }, /* R887 */
993         { 0x0000, 0x0000, 0x0000 }, /* R888 */
994         { 0x0000, 0x0000, 0x0000 }, /* R889 */
995         { 0x0000, 0x0000, 0x0000 }, /* R890 */
996         { 0x0000, 0x0000, 0x0000 }, /* R891 */
997         { 0x0000, 0x0000, 0x0000 }, /* R892 */
998         { 0x0000, 0x0000, 0x0000 }, /* R893 */
999         { 0x0000, 0x0000, 0x0000 }, /* R894 */
1000         { 0x0000, 0x0000, 0x0000 }, /* R895 */
1001         { 0x0000, 0x0000, 0x0000 }, /* R896 */
1002         { 0x0000, 0x0000, 0x0000 }, /* R897 */
1003         { 0x0000, 0x0000, 0x0000 }, /* R898 */
1004         { 0x0000, 0x0000, 0x0000 }, /* R899 */
1005         { 0x0000, 0x0000, 0x0000 }, /* R900 */
1006         { 0x0000, 0x0000, 0x0000 }, /* R901 */
1007         { 0x0000, 0x0000, 0x0000 }, /* R902 */
1008         { 0x0000, 0x0000, 0x0000 }, /* R903 */
1009         { 0x0000, 0x0000, 0x0000 }, /* R904 */
1010         { 0x0000, 0x0000, 0x0000 }, /* R905 */
1011         { 0x0000, 0x0000, 0x0000 }, /* R906 */
1012         { 0x0000, 0x0000, 0x0000 }, /* R907 */
1013         { 0x0000, 0x0000, 0x0000 }, /* R908 */
1014         { 0x0000, 0x0000, 0x0000 }, /* R909 */
1015         { 0x0000, 0x0000, 0x0000 }, /* R910 */
1016         { 0x0000, 0x0000, 0x0000 }, /* R911 */
1017         { 0x0000, 0x0000, 0x0000 }, /* R912 */
1018         { 0x0000, 0x0000, 0x0000 }, /* R913 */
1019         { 0x0000, 0x0000, 0x0000 }, /* R914 */
1020         { 0x0000, 0x0000, 0x0000 }, /* R915 */
1021         { 0x0000, 0x0000, 0x0000 }, /* R916 */
1022         { 0x0000, 0x0000, 0x0000 }, /* R917 */
1023         { 0x0000, 0x0000, 0x0000 }, /* R918 */
1024         { 0x0000, 0x0000, 0x0000 }, /* R919 */
1025         { 0x0000, 0x0000, 0x0000 }, /* R920 */
1026         { 0x0000, 0x0000, 0x0000 }, /* R921 */
1027         { 0x0000, 0x0000, 0x0000 }, /* R922 */
1028         { 0x0000, 0x0000, 0x0000 }, /* R923 */
1029         { 0x0000, 0x0000, 0x0000 }, /* R924 */
1030         { 0x0000, 0x0000, 0x0000 }, /* R925 */
1031         { 0x0000, 0x0000, 0x0000 }, /* R926 */
1032         { 0x0000, 0x0000, 0x0000 }, /* R927 */
1033         { 0x0000, 0x0000, 0x0000 }, /* R928 */
1034         { 0x0000, 0x0000, 0x0000 }, /* R929 */
1035         { 0x0000, 0x0000, 0x0000 }, /* R930 */
1036         { 0x0000, 0x0000, 0x0000 }, /* R931 */
1037         { 0x0000, 0x0000, 0x0000 }, /* R932 */
1038         { 0x0000, 0x0000, 0x0000 }, /* R933 */
1039         { 0x0000, 0x0000, 0x0000 }, /* R934 */
1040         { 0x0000, 0x0000, 0x0000 }, /* R935 */
1041         { 0x0000, 0x0000, 0x0000 }, /* R936 */
1042         { 0x0000, 0x0000, 0x0000 }, /* R937 */
1043         { 0x0000, 0x0000, 0x0000 }, /* R938 */
1044         { 0x0000, 0x0000, 0x0000 }, /* R939 */
1045         { 0x0000, 0x0000, 0x0000 }, /* R940 */
1046         { 0x0000, 0x0000, 0x0000 }, /* R941 */
1047         { 0x0000, 0x0000, 0x0000 }, /* R942 */
1048         { 0x0000, 0x0000, 0x0000 }, /* R943 */
1049         { 0x0000, 0x0000, 0x0000 }, /* R944 */
1050         { 0x0000, 0x0000, 0x0000 }, /* R945 */
1051         { 0x0000, 0x0000, 0x0000 }, /* R946 */
1052         { 0x0000, 0x0000, 0x0000 }, /* R947 */
1053         { 0x0000, 0x0000, 0x0000 }, /* R948 */
1054         { 0x0000, 0x0000, 0x0000 }, /* R949 */
1055         { 0x0000, 0x0000, 0x0000 }, /* R950 */
1056         { 0x0000, 0x0000, 0x0000 }, /* R951 */
1057         { 0x0000, 0x0000, 0x0000 }, /* R952 */
1058         { 0x0000, 0x0000, 0x0000 }, /* R953 */
1059         { 0x0000, 0x0000, 0x0000 }, /* R954 */
1060         { 0x0000, 0x0000, 0x0000 }, /* R955 */
1061         { 0x0000, 0x0000, 0x0000 }, /* R956 */
1062         { 0x0000, 0x0000, 0x0000 }, /* R957 */
1063         { 0x0000, 0x0000, 0x0000 }, /* R958 */
1064         { 0x0000, 0x0000, 0x0000 }, /* R959 */
1065         { 0x0000, 0x0000, 0x0000 }, /* R960 */
1066         { 0x0000, 0x0000, 0x0000 }, /* R961 */
1067         { 0x0000, 0x0000, 0x0000 }, /* R962 */
1068         { 0x0000, 0x0000, 0x0000 }, /* R963 */
1069         { 0x0000, 0x0000, 0x0000 }, /* R964 */
1070         { 0x0000, 0x0000, 0x0000 }, /* R965 */
1071         { 0x0000, 0x0000, 0x0000 }, /* R966 */
1072         { 0x0000, 0x0000, 0x0000 }, /* R967 */
1073         { 0x0000, 0x0000, 0x0000 }, /* R968 */
1074         { 0x0000, 0x0000, 0x0000 }, /* R969 */
1075         { 0x0000, 0x0000, 0x0000 }, /* R970 */
1076         { 0x0000, 0x0000, 0x0000 }, /* R971 */
1077         { 0x0000, 0x0000, 0x0000 }, /* R972 */
1078         { 0x0000, 0x0000, 0x0000 }, /* R973 */
1079         { 0x0000, 0x0000, 0x0000 }, /* R974 */
1080         { 0x0000, 0x0000, 0x0000 }, /* R975 */
1081         { 0x0000, 0x0000, 0x0000 }, /* R976 */
1082         { 0x0000, 0x0000, 0x0000 }, /* R977 */
1083         { 0x0000, 0x0000, 0x0000 }, /* R978 */
1084         { 0x0000, 0x0000, 0x0000 }, /* R979 */
1085         { 0x0000, 0x0000, 0x0000 }, /* R980 */
1086         { 0x0000, 0x0000, 0x0000 }, /* R981 */
1087         { 0x0000, 0x0000, 0x0000 }, /* R982 */
1088         { 0x0000, 0x0000, 0x0000 }, /* R983 */
1089         { 0x0000, 0x0000, 0x0000 }, /* R984 */
1090         { 0x0000, 0x0000, 0x0000 }, /* R985 */
1091         { 0x0000, 0x0000, 0x0000 }, /* R986 */
1092         { 0x0000, 0x0000, 0x0000 }, /* R987 */
1093         { 0x0000, 0x0000, 0x0000 }, /* R988 */
1094         { 0x0000, 0x0000, 0x0000 }, /* R989 */
1095         { 0x0000, 0x0000, 0x0000 }, /* R990 */
1096         { 0x0000, 0x0000, 0x0000 }, /* R991 */
1097         { 0x0000, 0x0000, 0x0000 }, /* R992 */
1098         { 0x0000, 0x0000, 0x0000 }, /* R993 */
1099         { 0x0000, 0x0000, 0x0000 }, /* R994 */
1100         { 0x0000, 0x0000, 0x0000 }, /* R995 */
1101         { 0x0000, 0x0000, 0x0000 }, /* R996 */
1102         { 0x0000, 0x0000, 0x0000 }, /* R997 */
1103         { 0x0000, 0x0000, 0x0000 }, /* R998 */
1104         { 0x0000, 0x0000, 0x0000 }, /* R999 */
1105         { 0x0000, 0x0000, 0x0000 }, /* R1000 */
1106         { 0x0000, 0x0000, 0x0000 }, /* R1001 */
1107         { 0x0000, 0x0000, 0x0000 }, /* R1002 */
1108         { 0x0000, 0x0000, 0x0000 }, /* R1003 */
1109         { 0x0000, 0x0000, 0x0000 }, /* R1004 */
1110         { 0x0000, 0x0000, 0x0000 }, /* R1005 */
1111         { 0x0000, 0x0000, 0x0000 }, /* R1006 */
1112         { 0x0000, 0x0000, 0x0000 }, /* R1007 */
1113         { 0x0000, 0x0000, 0x0000 }, /* R1008 */
1114         { 0x0000, 0x0000, 0x0000 }, /* R1009 */
1115         { 0x0000, 0x0000, 0x0000 }, /* R1010 */
1116         { 0x0000, 0x0000, 0x0000 }, /* R1011 */
1117         { 0x0000, 0x0000, 0x0000 }, /* R1012 */
1118         { 0x0000, 0x0000, 0x0000 }, /* R1013 */
1119         { 0x0000, 0x0000, 0x0000 }, /* R1014 */
1120         { 0x0000, 0x0000, 0x0000 }, /* R1015 */
1121         { 0x0000, 0x0000, 0x0000 }, /* R1016 */
1122         { 0x0000, 0x0000, 0x0000 }, /* R1017 */
1123         { 0x0000, 0x0000, 0x0000 }, /* R1018 */
1124         { 0x0000, 0x0000, 0x0000 }, /* R1019 */
1125         { 0x0000, 0x0000, 0x0000 }, /* R1020 */
1126         { 0x0000, 0x0000, 0x0000 }, /* R1021 */
1127         { 0x0000, 0x0000, 0x0000 }, /* R1022 */
1128         { 0x0000, 0x0000, 0x0000 }, /* R1023 */
1129         { 0x00FF, 0x01FF, 0x0000 }, /* R1024  - AIF1 ADC1 Left Volume */
1130         { 0x00FF, 0x01FF, 0x0000 }, /* R1025  - AIF1 ADC1 Right Volume */
1131         { 0x00FF, 0x01FF, 0x0000 }, /* R1026  - AIF1 DAC1 Left Volume */
1132         { 0x00FF, 0x01FF, 0x0000 }, /* R1027  - AIF1 DAC1 Right Volume */
1133         { 0x00FF, 0x01FF, 0x0000 }, /* R1028  - AIF1 ADC2 Left Volume */
1134         { 0x00FF, 0x01FF, 0x0000 }, /* R1029  - AIF1 ADC2 Right Volume */
1135         { 0x00FF, 0x01FF, 0x0000 }, /* R1030  - AIF1 DAC2 Left Volume */
1136         { 0x00FF, 0x01FF, 0x0000 }, /* R1031  - AIF1 DAC2 Right Volume */
1137         { 0x0000, 0x0000, 0x0000 }, /* R1032 */
1138         { 0x0000, 0x0000, 0x0000 }, /* R1033 */
1139         { 0x0000, 0x0000, 0x0000 }, /* R1034 */
1140         { 0x0000, 0x0000, 0x0000 }, /* R1035 */
1141         { 0x0000, 0x0000, 0x0000 }, /* R1036 */
1142         { 0x0000, 0x0000, 0x0000 }, /* R1037 */
1143         { 0x0000, 0x0000, 0x0000 }, /* R1038 */
1144         { 0x0000, 0x0000, 0x0000 }, /* R1039 */
1145         { 0xF800, 0xF800, 0x0000 }, /* R1040  - AIF1 ADC1 Filters */
1146         { 0x7800, 0x7800, 0x0000 }, /* R1041  - AIF1 ADC2 Filters */
1147         { 0x0000, 0x0000, 0x0000 }, /* R1042 */
1148         { 0x0000, 0x0000, 0x0000 }, /* R1043 */
1149         { 0x0000, 0x0000, 0x0000 }, /* R1044 */
1150         { 0x0000, 0x0000, 0x0000 }, /* R1045 */
1151         { 0x0000, 0x0000, 0x0000 }, /* R1046 */
1152         { 0x0000, 0x0000, 0x0000 }, /* R1047 */
1153         { 0x0000, 0x0000, 0x0000 }, /* R1048 */
1154         { 0x0000, 0x0000, 0x0000 }, /* R1049 */
1155         { 0x0000, 0x0000, 0x0000 }, /* R1050 */
1156         { 0x0000, 0x0000, 0x0000 }, /* R1051 */
1157         { 0x0000, 0x0000, 0x0000 }, /* R1052 */
1158         { 0x0000, 0x0000, 0x0000 }, /* R1053 */
1159         { 0x0000, 0x0000, 0x0000 }, /* R1054 */
1160         { 0x0000, 0x0000, 0x0000 }, /* R1055 */
1161         { 0x02B6, 0x02B6, 0x0000 }, /* R1056  - AIF1 DAC1 Filters (1) */
1162         { 0x3F00, 0x3F00, 0x0000 }, /* R1057  - AIF1 DAC1 Filters (2) */
1163         { 0x02B6, 0x02B6, 0x0000 }, /* R1058  - AIF1 DAC2 Filters (1) */
1164         { 0x3F00, 0x3F00, 0x0000 }, /* R1059  - AIF1 DAC2 Filters (2) */
1165         { 0x0000, 0x0000, 0x0000 }, /* R1060 */
1166         { 0x0000, 0x0000, 0x0000 }, /* R1061 */
1167         { 0x0000, 0x0000, 0x0000 }, /* R1062 */
1168         { 0x0000, 0x0000, 0x0000 }, /* R1063 */
1169         { 0x0000, 0x0000, 0x0000 }, /* R1064 */
1170         { 0x0000, 0x0000, 0x0000 }, /* R1065 */
1171         { 0x0000, 0x0000, 0x0000 }, /* R1066 */
1172         { 0x0000, 0x0000, 0x0000 }, /* R1067 */
1173         { 0x0000, 0x0000, 0x0000 }, /* R1068 */
1174         { 0x0000, 0x0000, 0x0000 }, /* R1069 */
1175         { 0x0000, 0x0000, 0x0000 }, /* R1070 */
1176         { 0x0000, 0x0000, 0x0000 }, /* R1071 */
1177         { 0x0000, 0x0000, 0x0000 }, /* R1072 */
1178         { 0x0000, 0x0000, 0x0000 }, /* R1073 */
1179         { 0x0000, 0x0000, 0x0000 }, /* R1074 */
1180         { 0x0000, 0x0000, 0x0000 }, /* R1075 */
1181         { 0x0000, 0x0000, 0x0000 }, /* R1076 */
1182         { 0x0000, 0x0000, 0x0000 }, /* R1077 */
1183         { 0x0000, 0x0000, 0x0000 }, /* R1078 */
1184         { 0x0000, 0x0000, 0x0000 }, /* R1079 */
1185         { 0x0000, 0x0000, 0x0000 }, /* R1080 */
1186         { 0x0000, 0x0000, 0x0000 }, /* R1081 */
1187         { 0x0000, 0x0000, 0x0000 }, /* R1082 */
1188         { 0x0000, 0x0000, 0x0000 }, /* R1083 */
1189         { 0x0000, 0x0000, 0x0000 }, /* R1084 */
1190         { 0x0000, 0x0000, 0x0000 }, /* R1085 */
1191         { 0x0000, 0x0000, 0x0000 }, /* R1086 */
1192         { 0x0000, 0x0000, 0x0000 }, /* R1087 */
1193         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1088  - AIF1 DRC1 (1) */
1194         { 0x1FFF, 0x1FFF, 0x0000 }, /* R1089  - AIF1 DRC1 (2) */
1195         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1090  - AIF1 DRC1 (3) */
1196         { 0x07FF, 0x07FF, 0x0000 }, /* R1091  - AIF1 DRC1 (4) */
1197         { 0x03FF, 0x03FF, 0x0000 }, /* R1092  - AIF1 DRC1 (5) */
1198         { 0x0000, 0x0000, 0x0000 }, /* R1093 */
1199         { 0x0000, 0x0000, 0x0000 }, /* R1094 */
1200         { 0x0000, 0x0000, 0x0000 }, /* R1095 */
1201         { 0x0000, 0x0000, 0x0000 }, /* R1096 */
1202         { 0x0000, 0x0000, 0x0000 }, /* R1097 */
1203         { 0x0000, 0x0000, 0x0000 }, /* R1098 */
1204         { 0x0000, 0x0000, 0x0000 }, /* R1099 */
1205         { 0x0000, 0x0000, 0x0000 }, /* R1100 */
1206         { 0x0000, 0x0000, 0x0000 }, /* R1101 */
1207         { 0x0000, 0x0000, 0x0000 }, /* R1102 */
1208         { 0x0000, 0x0000, 0x0000 }, /* R1103 */
1209         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1104  - AIF1 DRC2 (1) */
1210         { 0x1FFF, 0x1FFF, 0x0000 }, /* R1105  - AIF1 DRC2 (2) */
1211         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1106  - AIF1 DRC2 (3) */
1212         { 0x07FF, 0x07FF, 0x0000 }, /* R1107  - AIF1 DRC2 (4) */
1213         { 0x03FF, 0x03FF, 0x0000 }, /* R1108  - AIF1 DRC2 (5) */
1214         { 0x0000, 0x0000, 0x0000 }, /* R1109 */
1215         { 0x0000, 0x0000, 0x0000 }, /* R1110 */
1216         { 0x0000, 0x0000, 0x0000 }, /* R1111 */
1217         { 0x0000, 0x0000, 0x0000 }, /* R1112 */
1218         { 0x0000, 0x0000, 0x0000 }, /* R1113 */
1219         { 0x0000, 0x0000, 0x0000 }, /* R1114 */
1220         { 0x0000, 0x0000, 0x0000 }, /* R1115 */
1221         { 0x0000, 0x0000, 0x0000 }, /* R1116 */
1222         { 0x0000, 0x0000, 0x0000 }, /* R1117 */
1223         { 0x0000, 0x0000, 0x0000 }, /* R1118 */
1224         { 0x0000, 0x0000, 0x0000 }, /* R1119 */
1225         { 0x0000, 0x0000, 0x0000 }, /* R1120 */
1226         { 0x0000, 0x0000, 0x0000 }, /* R1121 */
1227         { 0x0000, 0x0000, 0x0000 }, /* R1122 */
1228         { 0x0000, 0x0000, 0x0000 }, /* R1123 */
1229         { 0x0000, 0x0000, 0x0000 }, /* R1124 */
1230         { 0x0000, 0x0000, 0x0000 }, /* R1125 */
1231         { 0x0000, 0x0000, 0x0000 }, /* R1126 */
1232         { 0x0000, 0x0000, 0x0000 }, /* R1127 */
1233         { 0x0000, 0x0000, 0x0000 }, /* R1128 */
1234         { 0x0000, 0x0000, 0x0000 }, /* R1129 */
1235         { 0x0000, 0x0000, 0x0000 }, /* R1130 */
1236         { 0x0000, 0x0000, 0x0000 }, /* R1131 */
1237         { 0x0000, 0x0000, 0x0000 }, /* R1132 */
1238         { 0x0000, 0x0000, 0x0000 }, /* R1133 */
1239         { 0x0000, 0x0000, 0x0000 }, /* R1134 */
1240         { 0x0000, 0x0000, 0x0000 }, /* R1135 */
1241         { 0x0000, 0x0000, 0x0000 }, /* R1136 */
1242         { 0x0000, 0x0000, 0x0000 }, /* R1137 */
1243         { 0x0000, 0x0000, 0x0000 }, /* R1138 */
1244         { 0x0000, 0x0000, 0x0000 }, /* R1139 */
1245         { 0x0000, 0x0000, 0x0000 }, /* R1140 */
1246         { 0x0000, 0x0000, 0x0000 }, /* R1141 */
1247         { 0x0000, 0x0000, 0x0000 }, /* R1142 */
1248         { 0x0000, 0x0000, 0x0000 }, /* R1143 */
1249         { 0x0000, 0x0000, 0x0000 }, /* R1144 */
1250         { 0x0000, 0x0000, 0x0000 }, /* R1145 */
1251         { 0x0000, 0x0000, 0x0000 }, /* R1146 */
1252         { 0x0000, 0x0000, 0x0000 }, /* R1147 */
1253         { 0x0000, 0x0000, 0x0000 }, /* R1148 */
1254         { 0x0000, 0x0000, 0x0000 }, /* R1149 */
1255         { 0x0000, 0x0000, 0x0000 }, /* R1150 */
1256         { 0x0000, 0x0000, 0x0000 }, /* R1151 */
1257         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1152  - AIF1 DAC1 EQ Gains (1) */
1258         { 0xFFC0, 0xFFC0, 0x0000 }, /* R1153  - AIF1 DAC1 EQ Gains (2) */
1259         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1154  - AIF1 DAC1 EQ Band 1 A */
1260         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1155  - AIF1 DAC1 EQ Band 1 B */
1261         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1156  - AIF1 DAC1 EQ Band 1 PG */
1262         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1157  - AIF1 DAC1 EQ Band 2 A */
1263         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1158  - AIF1 DAC1 EQ Band 2 B */
1264         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1159  - AIF1 DAC1 EQ Band 2 C */
1265         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1160  - AIF1 DAC1 EQ Band 2 PG */
1266         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1161  - AIF1 DAC1 EQ Band 3 A */
1267         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1162  - AIF1 DAC1 EQ Band 3 B */
1268         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1163  - AIF1 DAC1 EQ Band 3 C */
1269         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1164  - AIF1 DAC1 EQ Band 3 PG */
1270         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1165  - AIF1 DAC1 EQ Band 4 A */
1271         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1166  - AIF1 DAC1 EQ Band 4 B */
1272         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1167  - AIF1 DAC1 EQ Band 4 C */
1273         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1168  - AIF1 DAC1 EQ Band 4 PG */
1274         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1169  - AIF1 DAC1 EQ Band 5 A */
1275         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1170  - AIF1 DAC1 EQ Band 5 B */
1276         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1171  - AIF1 DAC1 EQ Band 5 PG */
1277         { 0x0000, 0x0000, 0x0000 }, /* R1172 */
1278         { 0x0000, 0x0000, 0x0000 }, /* R1173 */
1279         { 0x0000, 0x0000, 0x0000 }, /* R1174 */
1280         { 0x0000, 0x0000, 0x0000 }, /* R1175 */
1281         { 0x0000, 0x0000, 0x0000 }, /* R1176 */
1282         { 0x0000, 0x0000, 0x0000 }, /* R1177 */
1283         { 0x0000, 0x0000, 0x0000 }, /* R1178 */
1284         { 0x0000, 0x0000, 0x0000 }, /* R1179 */
1285         { 0x0000, 0x0000, 0x0000 }, /* R1180 */
1286         { 0x0000, 0x0000, 0x0000 }, /* R1181 */
1287         { 0x0000, 0x0000, 0x0000 }, /* R1182 */
1288         { 0x0000, 0x0000, 0x0000 }, /* R1183 */
1289         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1184  - AIF1 DAC2 EQ Gains (1) */
1290         { 0xFFC0, 0xFFC0, 0x0000 }, /* R1185  - AIF1 DAC2 EQ Gains (2) */
1291         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1186  - AIF1 DAC2 EQ Band 1 A */
1292         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1187  - AIF1 DAC2 EQ Band 1 B */
1293         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1188  - AIF1 DAC2 EQ Band 1 PG */
1294         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1189  - AIF1 DAC2 EQ Band 2 A */
1295         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1190  - AIF1 DAC2 EQ Band 2 B */
1296         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1191  - AIF1 DAC2 EQ Band 2 C */
1297         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1192  - AIF1 DAC2 EQ Band 2 PG */
1298         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1193  - AIF1 DAC2 EQ Band 3 A */
1299         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1194  - AIF1 DAC2 EQ Band 3 B */
1300         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1195  - AIF1 DAC2 EQ Band 3 C */
1301         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1196  - AIF1 DAC2 EQ Band 3 PG */
1302         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1197  - AIF1 DAC2 EQ Band 4 A */
1303         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1198  - AIF1 DAC2 EQ Band 4 B */
1304         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1199  - AIF1 DAC2 EQ Band 4 C */
1305         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1200  - AIF1 DAC2 EQ Band 4 PG */
1306         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1201  - AIF1 DAC2 EQ Band 5 A */
1307         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1202  - AIF1 DAC2 EQ Band 5 B */
1308         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1203  - AIF1 DAC2 EQ Band 5 PG */
1309         { 0x0000, 0x0000, 0x0000 }, /* R1204 */
1310         { 0x0000, 0x0000, 0x0000 }, /* R1205 */
1311         { 0x0000, 0x0000, 0x0000 }, /* R1206 */
1312         { 0x0000, 0x0000, 0x0000 }, /* R1207 */
1313         { 0x0000, 0x0000, 0x0000 }, /* R1208 */
1314         { 0x0000, 0x0000, 0x0000 }, /* R1209 */
1315         { 0x0000, 0x0000, 0x0000 }, /* R1210 */
1316         { 0x0000, 0x0000, 0x0000 }, /* R1211 */
1317         { 0x0000, 0x0000, 0x0000 }, /* R1212 */
1318         { 0x0000, 0x0000, 0x0000 }, /* R1213 */
1319         { 0x0000, 0x0000, 0x0000 }, /* R1214 */
1320         { 0x0000, 0x0000, 0x0000 }, /* R1215 */
1321         { 0x0000, 0x0000, 0x0000 }, /* R1216 */
1322         { 0x0000, 0x0000, 0x0000 }, /* R1217 */
1323         { 0x0000, 0x0000, 0x0000 }, /* R1218 */
1324         { 0x0000, 0x0000, 0x0000 }, /* R1219 */
1325         { 0x0000, 0x0000, 0x0000 }, /* R1220 */
1326         { 0x0000, 0x0000, 0x0000 }, /* R1221 */
1327         { 0x0000, 0x0000, 0x0000 }, /* R1222 */
1328         { 0x0000, 0x0000, 0x0000 }, /* R1223 */
1329         { 0x0000, 0x0000, 0x0000 }, /* R1224 */
1330         { 0x0000, 0x0000, 0x0000 }, /* R1225 */
1331         { 0x0000, 0x0000, 0x0000 }, /* R1226 */
1332         { 0x0000, 0x0000, 0x0000 }, /* R1227 */
1333         { 0x0000, 0x0000, 0x0000 }, /* R1228 */
1334         { 0x0000, 0x0000, 0x0000 }, /* R1229 */
1335         { 0x0000, 0x0000, 0x0000 }, /* R1230 */
1336         { 0x0000, 0x0000, 0x0000 }, /* R1231 */
1337         { 0x0000, 0x0000, 0x0000 }, /* R1232 */
1338         { 0x0000, 0x0000, 0x0000 }, /* R1233 */
1339         { 0x0000, 0x0000, 0x0000 }, /* R1234 */
1340         { 0x0000, 0x0000, 0x0000 }, /* R1235 */
1341         { 0x0000, 0x0000, 0x0000 }, /* R1236 */
1342         { 0x0000, 0x0000, 0x0000 }, /* R1237 */
1343         { 0x0000, 0x0000, 0x0000 }, /* R1238 */
1344         { 0x0000, 0x0000, 0x0000 }, /* R1239 */
1345         { 0x0000, 0x0000, 0x0000 }, /* R1240 */
1346         { 0x0000, 0x0000, 0x0000 }, /* R1241 */
1347         { 0x0000, 0x0000, 0x0000 }, /* R1242 */
1348         { 0x0000, 0x0000, 0x0000 }, /* R1243 */
1349         { 0x0000, 0x0000, 0x0000 }, /* R1244 */
1350         { 0x0000, 0x0000, 0x0000 }, /* R1245 */
1351         { 0x0000, 0x0000, 0x0000 }, /* R1246 */
1352         { 0x0000, 0x0000, 0x0000 }, /* R1247 */
1353         { 0x0000, 0x0000, 0x0000 }, /* R1248 */
1354         { 0x0000, 0x0000, 0x0000 }, /* R1249 */
1355         { 0x0000, 0x0000, 0x0000 }, /* R1250 */
1356         { 0x0000, 0x0000, 0x0000 }, /* R1251 */
1357         { 0x0000, 0x0000, 0x0000 }, /* R1252 */
1358         { 0x0000, 0x0000, 0x0000 }, /* R1253 */
1359         { 0x0000, 0x0000, 0x0000 }, /* R1254 */
1360         { 0x0000, 0x0000, 0x0000 }, /* R1255 */
1361         { 0x0000, 0x0000, 0x0000 }, /* R1256 */
1362         { 0x0000, 0x0000, 0x0000 }, /* R1257 */
1363         { 0x0000, 0x0000, 0x0000 }, /* R1258 */
1364         { 0x0000, 0x0000, 0x0000 }, /* R1259 */
1365         { 0x0000, 0x0000, 0x0000 }, /* R1260 */
1366         { 0x0000, 0x0000, 0x0000 }, /* R1261 */
1367         { 0x0000, 0x0000, 0x0000 }, /* R1262 */
1368         { 0x0000, 0x0000, 0x0000 }, /* R1263 */
1369         { 0x0000, 0x0000, 0x0000 }, /* R1264 */
1370         { 0x0000, 0x0000, 0x0000 }, /* R1265 */
1371         { 0x0000, 0x0000, 0x0000 }, /* R1266 */
1372         { 0x0000, 0x0000, 0x0000 }, /* R1267 */
1373         { 0x0000, 0x0000, 0x0000 }, /* R1268 */
1374         { 0x0000, 0x0000, 0x0000 }, /* R1269 */
1375         { 0x0000, 0x0000, 0x0000 }, /* R1270 */
1376         { 0x0000, 0x0000, 0x0000 }, /* R1271 */
1377         { 0x0000, 0x0000, 0x0000 }, /* R1272 */
1378         { 0x0000, 0x0000, 0x0000 }, /* R1273 */
1379         { 0x0000, 0x0000, 0x0000 }, /* R1274 */
1380         { 0x0000, 0x0000, 0x0000 }, /* R1275 */
1381         { 0x0000, 0x0000, 0x0000 }, /* R1276 */
1382         { 0x0000, 0x0000, 0x0000 }, /* R1277 */
1383         { 0x0000, 0x0000, 0x0000 }, /* R1278 */
1384         { 0x0000, 0x0000, 0x0000 }, /* R1279 */
1385         { 0x00FF, 0x01FF, 0x0000 }, /* R1280  - AIF2 ADC Left Volume */
1386         { 0x00FF, 0x01FF, 0x0000 }, /* R1281  - AIF2 ADC Right Volume */
1387         { 0x00FF, 0x01FF, 0x0000 }, /* R1282  - AIF2 DAC Left Volume */
1388         { 0x00FF, 0x01FF, 0x0000 }, /* R1283  - AIF2 DAC Right Volume */
1389         { 0x0000, 0x0000, 0x0000 }, /* R1284 */
1390         { 0x0000, 0x0000, 0x0000 }, /* R1285 */
1391         { 0x0000, 0x0000, 0x0000 }, /* R1286 */
1392         { 0x0000, 0x0000, 0x0000 }, /* R1287 */
1393         { 0x0000, 0x0000, 0x0000 }, /* R1288 */
1394         { 0x0000, 0x0000, 0x0000 }, /* R1289 */
1395         { 0x0000, 0x0000, 0x0000 }, /* R1290 */
1396         { 0x0000, 0x0000, 0x0000 }, /* R1291 */
1397         { 0x0000, 0x0000, 0x0000 }, /* R1292 */
1398         { 0x0000, 0x0000, 0x0000 }, /* R1293 */
1399         { 0x0000, 0x0000, 0x0000 }, /* R1294 */
1400         { 0x0000, 0x0000, 0x0000 }, /* R1295 */
1401         { 0xF800, 0xF800, 0x0000 }, /* R1296  - AIF2 ADC Filters */
1402         { 0x0000, 0x0000, 0x0000 }, /* R1297 */
1403         { 0x0000, 0x0000, 0x0000 }, /* R1298 */
1404         { 0x0000, 0x0000, 0x0000 }, /* R1299 */
1405         { 0x0000, 0x0000, 0x0000 }, /* R1300 */
1406         { 0x0000, 0x0000, 0x0000 }, /* R1301 */
1407         { 0x0000, 0x0000, 0x0000 }, /* R1302 */
1408         { 0x0000, 0x0000, 0x0000 }, /* R1303 */
1409         { 0x0000, 0x0000, 0x0000 }, /* R1304 */
1410         { 0x0000, 0x0000, 0x0000 }, /* R1305 */
1411         { 0x0000, 0x0000, 0x0000 }, /* R1306 */
1412         { 0x0000, 0x0000, 0x0000 }, /* R1307 */
1413         { 0x0000, 0x0000, 0x0000 }, /* R1308 */
1414         { 0x0000, 0x0000, 0x0000 }, /* R1309 */
1415         { 0x0000, 0x0000, 0x0000 }, /* R1310 */
1416         { 0x0000, 0x0000, 0x0000 }, /* R1311 */
1417         { 0x02B6, 0x02B6, 0x0000 }, /* R1312  - AIF2 DAC Filters (1) */
1418         { 0x3F00, 0x3F00, 0x0000 }, /* R1313  - AIF2 DAC Filters (2) */
1419         { 0x0000, 0x0000, 0x0000 }, /* R1314 */
1420         { 0x0000, 0x0000, 0x0000 }, /* R1315 */
1421         { 0x0000, 0x0000, 0x0000 }, /* R1316 */
1422         { 0x0000, 0x0000, 0x0000 }, /* R1317 */
1423         { 0x0000, 0x0000, 0x0000 }, /* R1318 */
1424         { 0x0000, 0x0000, 0x0000 }, /* R1319 */
1425         { 0x0000, 0x0000, 0x0000 }, /* R1320 */
1426         { 0x0000, 0x0000, 0x0000 }, /* R1321 */
1427         { 0x0000, 0x0000, 0x0000 }, /* R1322 */
1428         { 0x0000, 0x0000, 0x0000 }, /* R1323 */
1429         { 0x0000, 0x0000, 0x0000 }, /* R1324 */
1430         { 0x0000, 0x0000, 0x0000 }, /* R1325 */
1431         { 0x0000, 0x0000, 0x0000 }, /* R1326 */
1432         { 0x0000, 0x0000, 0x0000 }, /* R1327 */
1433         { 0x0000, 0x0000, 0x0000 }, /* R1328 */
1434         { 0x0000, 0x0000, 0x0000 }, /* R1329 */
1435         { 0x0000, 0x0000, 0x0000 }, /* R1330 */
1436         { 0x0000, 0x0000, 0x0000 }, /* R1331 */
1437         { 0x0000, 0x0000, 0x0000 }, /* R1332 */
1438         { 0x0000, 0x0000, 0x0000 }, /* R1333 */
1439         { 0x0000, 0x0000, 0x0000 }, /* R1334 */
1440         { 0x0000, 0x0000, 0x0000 }, /* R1335 */
1441         { 0x0000, 0x0000, 0x0000 }, /* R1336 */
1442         { 0x0000, 0x0000, 0x0000 }, /* R1337 */
1443         { 0x0000, 0x0000, 0x0000 }, /* R1338 */
1444         { 0x0000, 0x0000, 0x0000 }, /* R1339 */
1445         { 0x0000, 0x0000, 0x0000 }, /* R1340 */
1446         { 0x0000, 0x0000, 0x0000 }, /* R1341 */
1447         { 0x0000, 0x0000, 0x0000 }, /* R1342 */
1448         { 0x0000, 0x0000, 0x0000 }, /* R1343 */
1449         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1344  - AIF2 DRC (1) */
1450         { 0x1FFF, 0x1FFF, 0x0000 }, /* R1345  - AIF2 DRC (2) */
1451         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1346  - AIF2 DRC (3) */
1452         { 0x07FF, 0x07FF, 0x0000 }, /* R1347  - AIF2 DRC (4) */
1453         { 0x03FF, 0x03FF, 0x0000 }, /* R1348  - AIF2 DRC (5) */
1454         { 0x0000, 0x0000, 0x0000 }, /* R1349 */
1455         { 0x0000, 0x0000, 0x0000 }, /* R1350 */
1456         { 0x0000, 0x0000, 0x0000 }, /* R1351 */
1457         { 0x0000, 0x0000, 0x0000 }, /* R1352 */
1458         { 0x0000, 0x0000, 0x0000 }, /* R1353 */
1459         { 0x0000, 0x0000, 0x0000 }, /* R1354 */
1460         { 0x0000, 0x0000, 0x0000 }, /* R1355 */
1461         { 0x0000, 0x0000, 0x0000 }, /* R1356 */
1462         { 0x0000, 0x0000, 0x0000 }, /* R1357 */
1463         { 0x0000, 0x0000, 0x0000 }, /* R1358 */
1464         { 0x0000, 0x0000, 0x0000 }, /* R1359 */
1465         { 0x0000, 0x0000, 0x0000 }, /* R1360 */
1466         { 0x0000, 0x0000, 0x0000 }, /* R1361 */
1467         { 0x0000, 0x0000, 0x0000 }, /* R1362 */
1468         { 0x0000, 0x0000, 0x0000 }, /* R1363 */
1469         { 0x0000, 0x0000, 0x0000 }, /* R1364 */
1470         { 0x0000, 0x0000, 0x0000 }, /* R1365 */
1471         { 0x0000, 0x0000, 0x0000 }, /* R1366 */
1472         { 0x0000, 0x0000, 0x0000 }, /* R1367 */
1473         { 0x0000, 0x0000, 0x0000 }, /* R1368 */
1474         { 0x0000, 0x0000, 0x0000 }, /* R1369 */
1475         { 0x0000, 0x0000, 0x0000 }, /* R1370 */
1476         { 0x0000, 0x0000, 0x0000 }, /* R1371 */
1477         { 0x0000, 0x0000, 0x0000 }, /* R1372 */
1478         { 0x0000, 0x0000, 0x0000 }, /* R1373 */
1479         { 0x0000, 0x0000, 0x0000 }, /* R1374 */
1480         { 0x0000, 0x0000, 0x0000 }, /* R1375 */
1481         { 0x0000, 0x0000, 0x0000 }, /* R1376 */
1482         { 0x0000, 0x0000, 0x0000 }, /* R1377 */
1483         { 0x0000, 0x0000, 0x0000 }, /* R1378 */
1484         { 0x0000, 0x0000, 0x0000 }, /* R1379 */
1485         { 0x0000, 0x0000, 0x0000 }, /* R1380 */
1486         { 0x0000, 0x0000, 0x0000 }, /* R1381 */
1487         { 0x0000, 0x0000, 0x0000 }, /* R1382 */
1488         { 0x0000, 0x0000, 0x0000 }, /* R1383 */
1489         { 0x0000, 0x0000, 0x0000 }, /* R1384 */
1490         { 0x0000, 0x0000, 0x0000 }, /* R1385 */
1491         { 0x0000, 0x0000, 0x0000 }, /* R1386 */
1492         { 0x0000, 0x0000, 0x0000 }, /* R1387 */
1493         { 0x0000, 0x0000, 0x0000 }, /* R1388 */
1494         { 0x0000, 0x0000, 0x0000 }, /* R1389 */
1495         { 0x0000, 0x0000, 0x0000 }, /* R1390 */
1496         { 0x0000, 0x0000, 0x0000 }, /* R1391 */
1497         { 0x0000, 0x0000, 0x0000 }, /* R1392 */
1498         { 0x0000, 0x0000, 0x0000 }, /* R1393 */
1499         { 0x0000, 0x0000, 0x0000 }, /* R1394 */
1500         { 0x0000, 0x0000, 0x0000 }, /* R1395 */
1501         { 0x0000, 0x0000, 0x0000 }, /* R1396 */
1502         { 0x0000, 0x0000, 0x0000 }, /* R1397 */
1503         { 0x0000, 0x0000, 0x0000 }, /* R1398 */
1504         { 0x0000, 0x0000, 0x0000 }, /* R1399 */
1505         { 0x0000, 0x0000, 0x0000 }, /* R1400 */
1506         { 0x0000, 0x0000, 0x0000 }, /* R1401 */
1507         { 0x0000, 0x0000, 0x0000 }, /* R1402 */
1508         { 0x0000, 0x0000, 0x0000 }, /* R1403 */
1509         { 0x0000, 0x0000, 0x0000 }, /* R1404 */
1510         { 0x0000, 0x0000, 0x0000 }, /* R1405 */
1511         { 0x0000, 0x0000, 0x0000 }, /* R1406 */
1512         { 0x0000, 0x0000, 0x0000 }, /* R1407 */
1513         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1408  - AIF2 EQ Gains (1) */
1514         { 0xFFC0, 0xFFC0, 0x0000 }, /* R1409  - AIF2 EQ Gains (2) */
1515         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1410  - AIF2 EQ Band 1 A */
1516         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1411  - AIF2 EQ Band 1 B */
1517         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1412  - AIF2 EQ Band 1 PG */
1518         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1413  - AIF2 EQ Band 2 A */
1519         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1414  - AIF2 EQ Band 2 B */
1520         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1415  - AIF2 EQ Band 2 C */
1521         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1416  - AIF2 EQ Band 2 PG */
1522         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1417  - AIF2 EQ Band 3 A */
1523         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1418  - AIF2 EQ Band 3 B */
1524         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1419  - AIF2 EQ Band 3 C */
1525         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1420  - AIF2 EQ Band 3 PG */
1526         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1421  - AIF2 EQ Band 4 A */
1527         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1422  - AIF2 EQ Band 4 B */
1528         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1423  - AIF2 EQ Band 4 C */
1529         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1424  - AIF2 EQ Band 4 PG */
1530         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1425  - AIF2 EQ Band 5 A */
1531         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1426  - AIF2 EQ Band 5 B */
1532         { 0xFFFF, 0xFFFF, 0x0000 }, /* R1427  - AIF2 EQ Band 5 PG */
1533         { 0x0000, 0x0000, 0x0000 }, /* R1428 */
1534         { 0x0000, 0x0000, 0x0000 }, /* R1429 */
1535         { 0x0000, 0x0000, 0x0000 }, /* R1430 */
1536         { 0x0000, 0x0000, 0x0000 }, /* R1431 */
1537         { 0x0000, 0x0000, 0x0000 }, /* R1432 */
1538         { 0x0000, 0x0000, 0x0000 }, /* R1433 */
1539         { 0x0000, 0x0000, 0x0000 }, /* R1434 */
1540         { 0x0000, 0x0000, 0x0000 }, /* R1435 */
1541         { 0x0000, 0x0000, 0x0000 }, /* R1436 */
1542         { 0x0000, 0x0000, 0x0000 }, /* R1437 */
1543         { 0x0000, 0x0000, 0x0000 }, /* R1438 */
1544         { 0x0000, 0x0000, 0x0000 }, /* R1439 */
1545         { 0x0000, 0x0000, 0x0000 }, /* R1440 */
1546         { 0x0000, 0x0000, 0x0000 }, /* R1441 */
1547         { 0x0000, 0x0000, 0x0000 }, /* R1442 */
1548         { 0x0000, 0x0000, 0x0000 }, /* R1443 */
1549         { 0x0000, 0x0000, 0x0000 }, /* R1444 */
1550         { 0x0000, 0x0000, 0x0000 }, /* R1445 */
1551         { 0x0000, 0x0000, 0x0000 }, /* R1446 */
1552         { 0x0000, 0x0000, 0x0000 }, /* R1447 */
1553         { 0x0000, 0x0000, 0x0000 }, /* R1448 */
1554         { 0x0000, 0x0000, 0x0000 }, /* R1449 */
1555         { 0x0000, 0x0000, 0x0000 }, /* R1450 */
1556         { 0x0000, 0x0000, 0x0000 }, /* R1451 */
1557         { 0x0000, 0x0000, 0x0000 }, /* R1452 */
1558         { 0x0000, 0x0000, 0x0000 }, /* R1453 */
1559         { 0x0000, 0x0000, 0x0000 }, /* R1454 */
1560         { 0x0000, 0x0000, 0x0000 }, /* R1455 */
1561         { 0x0000, 0x0000, 0x0000 }, /* R1456 */
1562         { 0x0000, 0x0000, 0x0000 }, /* R1457 */
1563         { 0x0000, 0x0000, 0x0000 }, /* R1458 */
1564         { 0x0000, 0x0000, 0x0000 }, /* R1459 */
1565         { 0x0000, 0x0000, 0x0000 }, /* R1460 */
1566         { 0x0000, 0x0000, 0x0000 }, /* R1461 */
1567         { 0x0000, 0x0000, 0x0000 }, /* R1462 */
1568         { 0x0000, 0x0000, 0x0000 }, /* R1463 */
1569         { 0x0000, 0x0000, 0x0000 }, /* R1464 */
1570         { 0x0000, 0x0000, 0x0000 }, /* R1465 */
1571         { 0x0000, 0x0000, 0x0000 }, /* R1466 */
1572         { 0x0000, 0x0000, 0x0000 }, /* R1467 */
1573         { 0x0000, 0x0000, 0x0000 }, /* R1468 */
1574         { 0x0000, 0x0000, 0x0000 }, /* R1469 */
1575         { 0x0000, 0x0000, 0x0000 }, /* R1470 */
1576         { 0x0000, 0x0000, 0x0000 }, /* R1471 */
1577         { 0x0000, 0x0000, 0x0000 }, /* R1472 */
1578         { 0x0000, 0x0000, 0x0000 }, /* R1473 */
1579         { 0x0000, 0x0000, 0x0000 }, /* R1474 */
1580         { 0x0000, 0x0000, 0x0000 }, /* R1475 */
1581         { 0x0000, 0x0000, 0x0000 }, /* R1476 */
1582         { 0x0000, 0x0000, 0x0000 }, /* R1477 */
1583         { 0x0000, 0x0000, 0x0000 }, /* R1478 */
1584         { 0x0000, 0x0000, 0x0000 }, /* R1479 */
1585         { 0x0000, 0x0000, 0x0000 }, /* R1480 */
1586         { 0x0000, 0x0000, 0x0000 }, /* R1481 */
1587         { 0x0000, 0x0000, 0x0000 }, /* R1482 */
1588         { 0x0000, 0x0000, 0x0000 }, /* R1483 */
1589         { 0x0000, 0x0000, 0x0000 }, /* R1484 */
1590         { 0x0000, 0x0000, 0x0000 }, /* R1485 */
1591         { 0x0000, 0x0000, 0x0000 }, /* R1486 */
1592         { 0x0000, 0x0000, 0x0000 }, /* R1487 */
1593         { 0x0000, 0x0000, 0x0000 }, /* R1488 */
1594         { 0x0000, 0x0000, 0x0000 }, /* R1489 */
1595         { 0x0000, 0x0000, 0x0000 }, /* R1490 */
1596         { 0x0000, 0x0000, 0x0000 }, /* R1491 */
1597         { 0x0000, 0x0000, 0x0000 }, /* R1492 */
1598         { 0x0000, 0x0000, 0x0000 }, /* R1493 */
1599         { 0x0000, 0x0000, 0x0000 }, /* R1494 */
1600         { 0x0000, 0x0000, 0x0000 }, /* R1495 */
1601         { 0x0000, 0x0000, 0x0000 }, /* R1496 */
1602         { 0x0000, 0x0000, 0x0000 }, /* R1497 */
1603         { 0x0000, 0x0000, 0x0000 }, /* R1498 */
1604         { 0x0000, 0x0000, 0x0000 }, /* R1499 */
1605         { 0x0000, 0x0000, 0x0000 }, /* R1500 */
1606         { 0x0000, 0x0000, 0x0000 }, /* R1501 */
1607         { 0x0000, 0x0000, 0x0000 }, /* R1502 */
1608         { 0x0000, 0x0000, 0x0000 }, /* R1503 */
1609         { 0x0000, 0x0000, 0x0000 }, /* R1504 */
1610         { 0x0000, 0x0000, 0x0000 }, /* R1505 */
1611         { 0x0000, 0x0000, 0x0000 }, /* R1506 */
1612         { 0x0000, 0x0000, 0x0000 }, /* R1507 */
1613         { 0x0000, 0x0000, 0x0000 }, /* R1508 */
1614         { 0x0000, 0x0000, 0x0000 }, /* R1509 */
1615         { 0x0000, 0x0000, 0x0000 }, /* R1510 */
1616         { 0x0000, 0x0000, 0x0000 }, /* R1511 */
1617         { 0x0000, 0x0000, 0x0000 }, /* R1512 */
1618         { 0x0000, 0x0000, 0x0000 }, /* R1513 */
1619         { 0x0000, 0x0000, 0x0000 }, /* R1514 */
1620         { 0x0000, 0x0000, 0x0000 }, /* R1515 */
1621         { 0x0000, 0x0000, 0x0000 }, /* R1516 */
1622         { 0x0000, 0x0000, 0x0000 }, /* R1517 */
1623         { 0x0000, 0x0000, 0x0000 }, /* R1518 */
1624         { 0x0000, 0x0000, 0x0000 }, /* R1519 */
1625         { 0x0000, 0x0000, 0x0000 }, /* R1520 */
1626         { 0x0000, 0x0000, 0x0000 }, /* R1521 */
1627         { 0x0000, 0x0000, 0x0000 }, /* R1522 */
1628         { 0x0000, 0x0000, 0x0000 }, /* R1523 */
1629         { 0x0000, 0x0000, 0x0000 }, /* R1524 */
1630         { 0x0000, 0x0000, 0x0000 }, /* R1525 */
1631         { 0x0000, 0x0000, 0x0000 }, /* R1526 */
1632         { 0x0000, 0x0000, 0x0000 }, /* R1527 */
1633         { 0x0000, 0x0000, 0x0000 }, /* R1528 */
1634         { 0x0000, 0x0000, 0x0000 }, /* R1529 */
1635         { 0x0000, 0x0000, 0x0000 }, /* R1530 */
1636         { 0x0000, 0x0000, 0x0000 }, /* R1531 */
1637         { 0x0000, 0x0000, 0x0000 }, /* R1532 */
1638         { 0x0000, 0x0000, 0x0000 }, /* R1533 */
1639         { 0x0000, 0x0000, 0x0000 }, /* R1534 */
1640         { 0x0000, 0x0000, 0x0000 }, /* R1535 */
1641         { 0x01EF, 0x01EF, 0x0000 }, /* R1536  - DAC1 Mixer Volumes */
1642         { 0x0037, 0x0037, 0x0000 }, /* R1537  - DAC1 Left Mixer Routing */
1643         { 0x0037, 0x0037, 0x0000 }, /* R1538  - DAC1 Right Mixer Routing */
1644         { 0x01EF, 0x01EF, 0x0000 }, /* R1539  - DAC2 Mixer Volumes */
1645         { 0x0037, 0x0037, 0x0000 }, /* R1540  - DAC2 Left Mixer Routing */
1646         { 0x0037, 0x0037, 0x0000 }, /* R1541  - DAC2 Right Mixer Routing */
1647         { 0x0003, 0x0003, 0x0000 }, /* R1542  - AIF1 ADC1 Left Mixer Routing */
1648         { 0x0003, 0x0003, 0x0000 }, /* R1543  - AIF1 ADC1 Right Mixer Routing */
1649         { 0x0003, 0x0003, 0x0000 }, /* R1544  - AIF1 ADC2 Left Mixer Routing */
1650         { 0x0003, 0x0003, 0x0000 }, /* R1545  - AIF1 ADC2 Right mixer Routing */
1651         { 0x0000, 0x0000, 0x0000 }, /* R1546 */
1652         { 0x0000, 0x0000, 0x0000 }, /* R1547 */
1653         { 0x0000, 0x0000, 0x0000 }, /* R1548 */
1654         { 0x0000, 0x0000, 0x0000 }, /* R1549 */
1655         { 0x0000, 0x0000, 0x0000 }, /* R1550 */
1656         { 0x0000, 0x0000, 0x0000 }, /* R1551 */
1657         { 0x02FF, 0x03FF, 0x0000 }, /* R1552  - DAC1 Left Volume */
1658         { 0x02FF, 0x03FF, 0x0000 }, /* R1553  - DAC1 Right Volume */
1659         { 0x02FF, 0x03FF, 0x0000 }, /* R1554  - DAC2 Left Volume */
1660         { 0x02FF, 0x03FF, 0x0000 }, /* R1555  - DAC2 Right Volume */
1661         { 0x0003, 0x0003, 0x0000 }, /* R1556  - DAC Softmute */
1662         { 0x0000, 0x0000, 0x0000 }, /* R1557 */
1663         { 0x0000, 0x0000, 0x0000 }, /* R1558 */
1664         { 0x0000, 0x0000, 0x0000 }, /* R1559 */
1665         { 0x0000, 0x0000, 0x0000 }, /* R1560 */
1666         { 0x0000, 0x0000, 0x0000 }, /* R1561 */
1667         { 0x0000, 0x0000, 0x0000 }, /* R1562 */
1668         { 0x0000, 0x0000, 0x0000 }, /* R1563 */
1669         { 0x0000, 0x0000, 0x0000 }, /* R1564 */
1670         { 0x0000, 0x0000, 0x0000 }, /* R1565 */
1671         { 0x0000, 0x0000, 0x0000 }, /* R1566 */
1672         { 0x0000, 0x0000, 0x0000 }, /* R1567 */
1673         { 0x0003, 0x0003, 0x0000 }, /* R1568  - Oversampling */
1674         { 0x03C3, 0x03C3, 0x0000 }, /* R1569  - Sidetone */
1675 };
1676
1677 static int wm8994_readable(unsigned int reg)
1678 {
1679         if (reg >= ARRAY_SIZE(access_masks))
1680                 return 0;
1681         return access_masks[reg].readable != 0;
1682 }
1683
1684 static int wm8994_volatile(unsigned int reg)
1685 {
1686         if (reg >= WM8994_REG_CACHE_SIZE)
1687                 return 1;
1688
1689         switch (reg) {
1690         case WM8994_SOFTWARE_RESET:
1691         case WM8994_CHIP_REVISION:
1692         case WM8994_DC_SERVO_1:
1693         case WM8994_DC_SERVO_READBACK:
1694         case WM8994_RATE_STATUS:
1695         case WM8994_LDO_1:
1696         case WM8994_LDO_2:
1697                 return 1;
1698         default:
1699                 return 0;
1700         }
1701 }
1702
1703 static int wm8994_write(struct snd_soc_codec *codec, unsigned int reg,
1704         unsigned int value)
1705 {
1706         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1707
1708         BUG_ON(reg > WM8994_MAX_REGISTER);
1709
1710         if (!wm8994_volatile(reg))
1711                 wm8994->reg_cache[reg] = value;
1712
1713         dev_dbg(codec->dev, "0x%x = 0x%x\n", reg, value);
1714
1715         return wm8994_reg_write(codec->control_data, reg, value);
1716 }
1717
1718 static unsigned int wm8994_read(struct snd_soc_codec *codec,
1719                                 unsigned int reg)
1720 {
1721         u16 *reg_cache = codec->reg_cache;
1722
1723         BUG_ON(reg > WM8994_MAX_REGISTER);
1724
1725         if (wm8994_volatile(reg))
1726                 return wm8994_reg_read(codec->control_data, reg);
1727         else
1728                 return reg_cache[reg];
1729 }
1730
1731 static int configure_aif_clock(struct snd_soc_codec *codec, int aif)
1732 {
1733         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1734         int rate;
1735         int reg1 = 0;
1736         int offset;
1737
1738         if (aif)
1739                 offset = 4;
1740         else
1741                 offset = 0;
1742
1743         switch (wm8994->sysclk[aif]) {
1744         case WM8994_SYSCLK_MCLK1:
1745                 rate = wm8994->mclk[0];
1746                 break;
1747
1748         case WM8994_SYSCLK_MCLK2:
1749                 reg1 |= 0x8;
1750                 rate = wm8994->mclk[1];
1751                 break;
1752
1753         case WM8994_SYSCLK_FLL1:
1754                 reg1 |= 0x10;
1755                 rate = wm8994->fll[0].out;
1756                 break;
1757
1758         case WM8994_SYSCLK_FLL2:
1759                 reg1 |= 0x18;
1760                 rate = wm8994->fll[1].out;
1761                 break;
1762
1763         default:
1764                 return -EINVAL;
1765         }
1766
1767         if (rate >= 13500000) {
1768                 rate /= 2;
1769                 reg1 |= WM8994_AIF1CLK_DIV;
1770
1771                 dev_dbg(codec->dev, "Dividing AIF%d clock to %dHz\n",
1772                         aif + 1, rate);
1773         }
1774
1775         if (rate && rate < 3000000)
1776                 dev_warn(codec->dev, "AIF%dCLK is %dHz, should be >=3MHz for optimal performance\n",
1777                          aif + 1, rate);
1778
1779         wm8994->aifclk[aif] = rate;
1780
1781         snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1 + offset,
1782                             WM8994_AIF1CLK_SRC_MASK | WM8994_AIF1CLK_DIV,
1783                             reg1);
1784
1785         return 0;
1786 }
1787
1788 static int configure_clock(struct snd_soc_codec *codec)
1789 {
1790         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1791         int old, new;
1792
1793         /* Bring up the AIF clocks first */
1794         configure_aif_clock(codec, 0);
1795         configure_aif_clock(codec, 1);
1796
1797         /* Then switch CLK_SYS over to the higher of them; a change
1798          * can only happen as a result of a clocking change which can
1799          * only be made outside of DAPM so we can safely redo the
1800          * clocking.
1801          */
1802
1803         /* If they're equal it doesn't matter which is used */
1804         if (wm8994->aifclk[0] == wm8994->aifclk[1])
1805                 return 0;
1806
1807         if (wm8994->aifclk[0] < wm8994->aifclk[1])
1808                 new = WM8994_SYSCLK_SRC;
1809         else
1810                 new = 0;
1811
1812         old = snd_soc_read(codec, WM8994_CLOCKING_1) & WM8994_SYSCLK_SRC;
1813
1814         /* If there's no change then we're done. */
1815         if (old == new)
1816                 return 0;
1817
1818         snd_soc_update_bits(codec, WM8994_CLOCKING_1, WM8994_SYSCLK_SRC, new);
1819
1820         snd_soc_dapm_sync(codec);
1821
1822         return 0;
1823 }
1824
1825 static int check_clk_sys(struct snd_soc_dapm_widget *source,
1826                          struct snd_soc_dapm_widget *sink)
1827 {
1828         int reg = snd_soc_read(source->codec, WM8994_CLOCKING_1);
1829         const char *clk;
1830
1831         /* Check what we're currently using for CLK_SYS */
1832         if (reg & WM8994_SYSCLK_SRC)
1833                 clk = "AIF2CLK";
1834         else
1835                 clk = "AIF1CLK";
1836
1837         return strcmp(source->name, clk) == 0;
1838 }
1839
1840 static const char *sidetone_hpf_text[] = {
1841         "2.7kHz", "1.35kHz", "675Hz", "370Hz", "180Hz", "90Hz", "45Hz"
1842 };
1843
1844 static const struct soc_enum sidetone_hpf =
1845         SOC_ENUM_SINGLE(WM8994_SIDETONE, 7, 7, sidetone_hpf_text);
1846
1847 static const DECLARE_TLV_DB_SCALE(aif_tlv, 0, 600, 0);
1848 static const DECLARE_TLV_DB_SCALE(digital_tlv, -7200, 75, 1);
1849 static const DECLARE_TLV_DB_SCALE(st_tlv, -3600, 300, 0);
1850 static const DECLARE_TLV_DB_SCALE(wm8994_3d_tlv, -1600, 183, 0);
1851 static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
1852
1853 #define WM8994_DRC_SWITCH(xname, reg, shift) \
1854 {       .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1855         .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
1856         .put = wm8994_put_drc_sw, \
1857         .private_value =  SOC_SINGLE_VALUE(reg, shift, 1, 0) }
1858
1859 static int wm8994_put_drc_sw(struct snd_kcontrol *kcontrol,
1860                              struct snd_ctl_elem_value *ucontrol)
1861 {
1862         struct soc_mixer_control *mc =
1863                 (struct soc_mixer_control *)kcontrol->private_value;
1864         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1865         int mask, ret;
1866
1867         /* Can't enable both ADC and DAC paths simultaneously */
1868         if (mc->shift == WM8994_AIF1DAC1_DRC_ENA_SHIFT)
1869                 mask = WM8994_AIF1ADC1L_DRC_ENA_MASK |
1870                         WM8994_AIF1ADC1R_DRC_ENA_MASK;
1871         else
1872                 mask = WM8994_AIF1DAC1_DRC_ENA_MASK;
1873
1874         ret = snd_soc_read(codec, mc->reg);
1875         if (ret < 0)
1876                 return ret;
1877         if (ret & mask)
1878                 return -EINVAL;
1879
1880         return snd_soc_put_volsw(kcontrol, ucontrol);
1881 }
1882
1883
1884
1885 static void wm8994_set_drc(struct snd_soc_codec *codec, int drc)
1886 {
1887         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1888         struct wm8994_pdata *pdata = wm8994->pdata;
1889         int base = wm8994_drc_base[drc];
1890         int cfg = wm8994->drc_cfg[drc];
1891         int save, i;
1892
1893         /* Save any enables; the configuration should clear them. */
1894         save = snd_soc_read(codec, base);
1895         save &= WM8994_AIF1DAC1_DRC_ENA | WM8994_AIF1ADC1L_DRC_ENA |
1896                 WM8994_AIF1ADC1R_DRC_ENA;
1897
1898         for (i = 0; i < WM8994_DRC_REGS; i++)
1899                 snd_soc_update_bits(codec, base + i, 0xffff,
1900                                     pdata->drc_cfgs[cfg].regs[i]);
1901
1902         snd_soc_update_bits(codec, base, WM8994_AIF1DAC1_DRC_ENA |
1903                              WM8994_AIF1ADC1L_DRC_ENA |
1904                              WM8994_AIF1ADC1R_DRC_ENA, save);
1905 }
1906
1907 /* Icky as hell but saves code duplication */
1908 static int wm8994_get_drc(const char *name)
1909 {
1910         if (strcmp(name, "AIF1DRC1 Mode") == 0)
1911                 return 0;
1912         if (strcmp(name, "AIF1DRC2 Mode") == 0)
1913                 return 1;
1914         if (strcmp(name, "AIF2DRC Mode") == 0)
1915                 return 2;
1916         return -EINVAL;
1917 }
1918
1919 static int wm8994_put_drc_enum(struct snd_kcontrol *kcontrol,
1920                                struct snd_ctl_elem_value *ucontrol)
1921 {
1922         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1923         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);  
1924         struct wm8994_pdata *pdata = wm8994->pdata;
1925         int drc = wm8994_get_drc(kcontrol->id.name);
1926         int value = ucontrol->value.integer.value[0];
1927
1928         if (drc < 0)
1929                 return drc;
1930
1931         if (value >= pdata->num_drc_cfgs)
1932                 return -EINVAL;
1933
1934         wm8994->drc_cfg[drc] = value;
1935
1936         wm8994_set_drc(codec, drc);
1937
1938         return 0;
1939 }
1940
1941 static int wm8994_get_drc_enum(struct snd_kcontrol *kcontrol,
1942                                struct snd_ctl_elem_value *ucontrol)
1943 {
1944         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1945         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1946         int drc = wm8994_get_drc(kcontrol->id.name);
1947
1948         ucontrol->value.enumerated.item[0] = wm8994->drc_cfg[drc];
1949
1950         return 0;
1951 }
1952
1953 static void wm8994_set_retune_mobile(struct snd_soc_codec *codec, int block)
1954 {
1955         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
1956         struct wm8994_pdata *pdata = wm8994->pdata;
1957         int base = wm8994_retune_mobile_base[block];
1958         int iface, best, best_val, save, i, cfg;
1959
1960         if (!pdata || !wm8994->num_retune_mobile_texts)
1961                 return;
1962
1963         switch (block) {
1964         case 0:
1965         case 1:
1966                 iface = 0;
1967                 break;
1968         case 2:
1969                 iface = 1;
1970                 break;
1971         default:
1972                 return;
1973         }
1974
1975         /* Find the version of the currently selected configuration
1976          * with the nearest sample rate. */
1977         cfg = wm8994->retune_mobile_cfg[block];
1978         best = 0;
1979         best_val = INT_MAX;
1980         for (i = 0; i < pdata->num_retune_mobile_cfgs; i++) {
1981                 if (strcmp(pdata->retune_mobile_cfgs[i].name,
1982                            wm8994->retune_mobile_texts[cfg]) == 0 &&
1983                     abs(pdata->retune_mobile_cfgs[i].rate
1984                         - wm8994->dac_rates[iface]) < best_val) {
1985                         best = i;
1986                         best_val = abs(pdata->retune_mobile_cfgs[i].rate
1987                                        - wm8994->dac_rates[iface]);
1988                 }
1989         }
1990
1991         dev_dbg(codec->dev, "ReTune Mobile %d %s/%dHz for %dHz sample rate\n",
1992                 block,
1993                 pdata->retune_mobile_cfgs[best].name,
1994                 pdata->retune_mobile_cfgs[best].rate,
1995                 wm8994->dac_rates[iface]);
1996
1997         /* The EQ will be disabled while reconfiguring it, remember the
1998          * current configuration. 
1999          */
2000         save = snd_soc_read(codec, base);
2001         save &= WM8994_AIF1DAC1_EQ_ENA;
2002
2003         for (i = 0; i < WM8994_EQ_REGS; i++)
2004                 snd_soc_update_bits(codec, base + i, 0xffff,
2005                                 pdata->retune_mobile_cfgs[best].regs[i]);
2006
2007         snd_soc_update_bits(codec, base, WM8994_AIF1DAC1_EQ_ENA, save);
2008 }
2009
2010 /* Icky as hell but saves code duplication */
2011 static int wm8994_get_retune_mobile_block(const char *name)
2012 {
2013         if (strcmp(name, "AIF1.1 EQ Mode") == 0)
2014                 return 0;
2015         if (strcmp(name, "AIF1.2 EQ Mode") == 0)
2016                 return 1;
2017         if (strcmp(name, "AIF2 EQ Mode") == 0)
2018                 return 2;
2019         return -EINVAL;
2020 }
2021
2022 static int wm8994_put_retune_mobile_enum(struct snd_kcontrol *kcontrol,
2023                                          struct snd_ctl_elem_value *ucontrol)
2024 {
2025         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2026         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);  
2027         struct wm8994_pdata *pdata = wm8994->pdata;
2028         int block = wm8994_get_retune_mobile_block(kcontrol->id.name);
2029         int value = ucontrol->value.integer.value[0];
2030
2031         if (block < 0)
2032                 return block;
2033
2034         if (value >= pdata->num_retune_mobile_cfgs)
2035                 return -EINVAL;
2036
2037         wm8994->retune_mobile_cfg[block] = value;
2038
2039         wm8994_set_retune_mobile(codec, block);
2040
2041         return 0;
2042 }
2043
2044 static int wm8994_get_retune_mobile_enum(struct snd_kcontrol *kcontrol,
2045                                          struct snd_ctl_elem_value *ucontrol)
2046 {
2047         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2048         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
2049         int block = wm8994_get_retune_mobile_block(kcontrol->id.name);
2050
2051         ucontrol->value.enumerated.item[0] = wm8994->retune_mobile_cfg[block];
2052
2053         return 0;
2054 }
2055
2056 static const struct snd_kcontrol_new wm8994_snd_controls[] = {
2057 SOC_DOUBLE_R_TLV("AIF1ADC1 Volume", WM8994_AIF1_ADC1_LEFT_VOLUME,
2058                  WM8994_AIF1_ADC1_RIGHT_VOLUME,
2059                  1, 119, 0, digital_tlv),
2060 SOC_DOUBLE_R_TLV("AIF1ADC2 Volume", WM8994_AIF1_ADC2_LEFT_VOLUME,
2061                  WM8994_AIF1_ADC2_RIGHT_VOLUME,
2062                  1, 119, 0, digital_tlv),
2063 SOC_DOUBLE_R_TLV("AIF2ADC Volume", WM8994_AIF2_ADC_LEFT_VOLUME,
2064                  WM8994_AIF2_ADC_RIGHT_VOLUME,
2065                  1, 119, 0, digital_tlv),
2066
2067 SOC_DOUBLE_R_TLV("AIF1DAC1 Volume", WM8994_AIF1_DAC1_LEFT_VOLUME,
2068                  WM8994_AIF1_DAC1_RIGHT_VOLUME, 1, 96, 0, digital_tlv),
2069 SOC_DOUBLE_R_TLV("AIF1DAC2 Volume", WM8994_AIF1_DAC2_LEFT_VOLUME,
2070                  WM8994_AIF1_DAC2_RIGHT_VOLUME, 1, 96, 0, digital_tlv),
2071 SOC_DOUBLE_R_TLV("AIF2DAC Volume", WM8994_AIF2_DAC_LEFT_VOLUME,
2072                  WM8994_AIF2_DAC_RIGHT_VOLUME, 1, 96, 0, digital_tlv),
2073
2074 SOC_SINGLE_TLV("AIF1 Boost Volume", WM8994_AIF1_CONTROL_2, 10, 3, 0, aif_tlv),
2075 SOC_SINGLE_TLV("AIF2 Boost Volume", WM8994_AIF2_CONTROL_2, 10, 3, 0, aif_tlv),
2076
2077 SOC_SINGLE("AIF1DAC1 EQ Switch", WM8994_AIF1_DAC1_EQ_GAINS_1, 0, 1, 0),
2078 SOC_SINGLE("AIF1DAC2 EQ Switch", WM8994_AIF1_DAC2_EQ_GAINS_1, 0, 1, 0),
2079 SOC_SINGLE("AIF2 EQ Switch", WM8994_AIF2_EQ_GAINS_1, 0, 1, 0),
2080
2081 WM8994_DRC_SWITCH("AIF1DAC1 DRC Switch", WM8994_AIF1_DRC1_1, 2),
2082 WM8994_DRC_SWITCH("AIF1ADC1L DRC Switch", WM8994_AIF1_DRC1_1, 1),
2083 WM8994_DRC_SWITCH("AIF1ADC1R DRC Switch", WM8994_AIF1_DRC1_1, 0),
2084
2085 WM8994_DRC_SWITCH("AIF1DAC2 DRC Switch", WM8994_AIF1_DRC2_1, 2),
2086 WM8994_DRC_SWITCH("AIF1ADC2L DRC Switch", WM8994_AIF1_DRC2_1, 1),
2087 WM8994_DRC_SWITCH("AIF1ADC2R DRC Switch", WM8994_AIF1_DRC2_1, 0),
2088
2089 WM8994_DRC_SWITCH("AIF2DAC DRC Switch", WM8994_AIF2_DRC_1, 2),
2090 WM8994_DRC_SWITCH("AIF2ADCL DRC Switch", WM8994_AIF2_DRC_1, 1),
2091 WM8994_DRC_SWITCH("AIF2ADCR DRC Switch", WM8994_AIF2_DRC_1, 0),
2092
2093 SOC_SINGLE_TLV("DAC1 Right Sidetone Volume", WM8994_DAC1_MIXER_VOLUMES,
2094                5, 12, 0, st_tlv),
2095 SOC_SINGLE_TLV("DAC1 Left Sidetone Volume", WM8994_DAC1_MIXER_VOLUMES,
2096                0, 12, 0, st_tlv),
2097 SOC_SINGLE_TLV("DAC2 Right Sidetone Volume", WM8994_DAC2_MIXER_VOLUMES,
2098                5, 12, 0, st_tlv),
2099 SOC_SINGLE_TLV("DAC2 Left Sidetone Volume", WM8994_DAC2_MIXER_VOLUMES,
2100                0, 12, 0, st_tlv),
2101 SOC_ENUM("Sidetone HPF Mux", sidetone_hpf),
2102 SOC_SINGLE("Sidetone HPF Switch", WM8994_SIDETONE, 6, 1, 0),
2103
2104 SOC_DOUBLE_R_TLV("DAC1 Volume", WM8994_DAC1_LEFT_VOLUME,
2105                  WM8994_DAC1_RIGHT_VOLUME, 1, 96, 0, digital_tlv),
2106 SOC_DOUBLE_R("DAC1 Switch", WM8994_DAC1_LEFT_VOLUME,
2107              WM8994_DAC1_RIGHT_VOLUME, 9, 1, 1),
2108
2109 SOC_DOUBLE_R_TLV("DAC2 Volume", WM8994_DAC2_LEFT_VOLUME,
2110                  WM8994_DAC2_RIGHT_VOLUME, 1, 96, 0, digital_tlv),
2111 SOC_DOUBLE_R("DAC2 Switch", WM8994_DAC2_LEFT_VOLUME,
2112              WM8994_DAC2_RIGHT_VOLUME, 9, 1, 1),
2113
2114 SOC_SINGLE_TLV("SPKL DAC2 Volume", WM8994_SPKMIXL_ATTENUATION,
2115                6, 1, 1, wm_hubs_spkmix_tlv),
2116 SOC_SINGLE_TLV("SPKL DAC1 Volume", WM8994_SPKMIXL_ATTENUATION,
2117                2, 1, 1, wm_hubs_spkmix_tlv),
2118
2119 SOC_SINGLE_TLV("SPKR DAC2 Volume", WM8994_SPKMIXR_ATTENUATION,
2120                6, 1, 1, wm_hubs_spkmix_tlv),
2121 SOC_SINGLE_TLV("SPKR DAC1 Volume", WM8994_SPKMIXR_ATTENUATION,
2122                2, 1, 1, wm_hubs_spkmix_tlv),
2123
2124 SOC_SINGLE_TLV("AIF1DAC1 3D Stereo Volume", WM8994_AIF1_DAC1_FILTERS_2,
2125                10, 15, 0, wm8994_3d_tlv),
2126 SOC_SINGLE("AIF1DAC1 3D Stereo Switch", WM8994_AIF1_DAC2_FILTERS_2,
2127            8, 1, 0),
2128 SOC_SINGLE_TLV("AIF1DAC2 3D Stereo Volume", WM8994_AIF1_DAC2_FILTERS_2,
2129                10, 15, 0, wm8994_3d_tlv),
2130 SOC_SINGLE("AIF1DAC2 3D Stereo Switch", WM8994_AIF1_DAC2_FILTERS_2,
2131            8, 1, 0),
2132 SOC_SINGLE_TLV("AIF2DAC 3D Stereo Volume", WM8994_AIF1_DAC1_FILTERS_2,
2133                10, 15, 0, wm8994_3d_tlv),
2134 SOC_SINGLE("AIF2DAC 3D Stereo Switch", WM8994_AIF1_DAC2_FILTERS_2,
2135            8, 1, 0),
2136 };
2137
2138 static const struct snd_kcontrol_new wm8994_eq_controls[] = {
2139 SOC_SINGLE_TLV("AIF1DAC1 EQ1 Volume", WM8994_AIF1_DAC1_EQ_GAINS_1, 11, 31, 0,
2140                eq_tlv),
2141 SOC_SINGLE_TLV("AIF1DAC1 EQ2 Volume", WM8994_AIF1_DAC1_EQ_GAINS_1, 6, 31, 0,
2142                eq_tlv),
2143 SOC_SINGLE_TLV("AIF1DAC1 EQ3 Volume", WM8994_AIF1_DAC1_EQ_GAINS_1, 1, 31, 0,
2144                eq_tlv),
2145 SOC_SINGLE_TLV("AIF1DAC1 EQ4 Volume", WM8994_AIF1_DAC1_EQ_GAINS_2, 11, 31, 0,
2146                eq_tlv),
2147 SOC_SINGLE_TLV("AIF1DAC1 EQ5 Volume", WM8994_AIF1_DAC1_EQ_GAINS_2, 6, 31, 0,
2148                eq_tlv),
2149
2150 SOC_SINGLE_TLV("AIF1DAC2 EQ1 Volume", WM8994_AIF1_DAC2_EQ_GAINS_1, 11, 31, 0,
2151                eq_tlv),
2152 SOC_SINGLE_TLV("AIF1DAC2 EQ2 Volume", WM8994_AIF1_DAC2_EQ_GAINS_1, 6, 31, 0,
2153                eq_tlv),
2154 SOC_SINGLE_TLV("AIF1DAC2 EQ3 Volume", WM8994_AIF1_DAC2_EQ_GAINS_1, 1, 31, 0,
2155                eq_tlv),
2156 SOC_SINGLE_TLV("AIF1DAC2 EQ4 Volume", WM8994_AIF1_DAC2_EQ_GAINS_2, 11, 31, 0,
2157                eq_tlv),
2158 SOC_SINGLE_TLV("AIF1DAC2 EQ5 Volume", WM8994_AIF1_DAC2_EQ_GAINS_2, 6, 31, 0,
2159                eq_tlv),
2160
2161 SOC_SINGLE_TLV("AIF2 EQ1 Volume", WM8994_AIF2_EQ_GAINS_1, 11, 31, 0,
2162                eq_tlv),
2163 SOC_SINGLE_TLV("AIF2 EQ2 Volume", WM8994_AIF2_EQ_GAINS_1, 6, 31, 0,
2164                eq_tlv),
2165 SOC_SINGLE_TLV("AIF2 EQ3 Volume", WM8994_AIF2_EQ_GAINS_1, 1, 31, 0,
2166                eq_tlv),
2167 SOC_SINGLE_TLV("AIF2 EQ4 Volume", WM8994_AIF2_EQ_GAINS_2, 11, 31, 0,
2168                eq_tlv),
2169 SOC_SINGLE_TLV("AIF2 EQ5 Volume", WM8994_AIF2_EQ_GAINS_2, 6, 31, 0,
2170                eq_tlv),
2171 };
2172
2173 static int clk_sys_event(struct snd_soc_dapm_widget *w,
2174                          struct snd_kcontrol *kcontrol, int event)
2175 {
2176         struct snd_soc_codec *codec = w->codec;
2177
2178         switch (event) {
2179         case SND_SOC_DAPM_PRE_PMU:
2180                 return configure_clock(codec);
2181
2182         case SND_SOC_DAPM_POST_PMD:
2183                 configure_clock(codec);
2184                 break;
2185         }
2186
2187         return 0;
2188 }
2189
2190 static void wm8994_update_class_w(struct snd_soc_codec *codec)
2191 {
2192         int enable = 1;
2193         int source = 0;  /* GCC flow analysis can't track enable */
2194         int reg, reg_r;
2195
2196         /* Only support direct DAC->headphone paths */
2197         reg = snd_soc_read(codec, WM8994_OUTPUT_MIXER_1);
2198         if (!(reg & WM8994_DAC1L_TO_HPOUT1L)) {
2199                 dev_vdbg(codec->dev, "HPL connected to output mixer\n");
2200                 enable = 0;
2201         }
2202
2203         reg = snd_soc_read(codec, WM8994_OUTPUT_MIXER_2);
2204         if (!(reg & WM8994_DAC1R_TO_HPOUT1R)) {
2205                 dev_vdbg(codec->dev, "HPR connected to output mixer\n");
2206                 enable = 0;
2207         }
2208
2209         /* We also need the same setting for L/R and only one path */
2210         reg = snd_soc_read(codec, WM8994_DAC1_LEFT_MIXER_ROUTING);
2211         switch (reg) {
2212         case WM8994_AIF2DACL_TO_DAC1L:
2213                 dev_vdbg(codec->dev, "Class W source AIF2DAC\n");
2214                 source = 2 << WM8994_CP_DYN_SRC_SEL_SHIFT;
2215                 break;
2216         case WM8994_AIF1DAC2L_TO_DAC1L:
2217                 dev_vdbg(codec->dev, "Class W source AIF1DAC2\n");
2218                 source = 1 << WM8994_CP_DYN_SRC_SEL_SHIFT;
2219                 break;
2220         case WM8994_AIF1DAC1L_TO_DAC1L:
2221                 dev_vdbg(codec->dev, "Class W source AIF1DAC1\n");
2222                 source = 0 << WM8994_CP_DYN_SRC_SEL_SHIFT;
2223                 break;
2224         default:
2225                 dev_vdbg(codec->dev, "DAC mixer setting: %x\n", reg);
2226                 enable = 0;
2227                 break;
2228         }
2229
2230         reg_r = snd_soc_read(codec, WM8994_DAC1_RIGHT_MIXER_ROUTING);
2231         if (reg_r != reg) {
2232                 dev_vdbg(codec->dev, "Left and right DAC mixers different\n");
2233                 enable = 0;
2234         }
2235
2236         if (enable) {
2237                 dev_dbg(codec->dev, "Class W enabled\n");
2238                 snd_soc_update_bits(codec, WM8994_CLASS_W_1,
2239                                     WM8994_CP_DYN_PWR |
2240                                     WM8994_CP_DYN_SRC_SEL_MASK,
2241                                     source | WM8994_CP_DYN_PWR);
2242                 
2243         } else {
2244                 dev_dbg(codec->dev, "Class W disabled\n");
2245                 snd_soc_update_bits(codec, WM8994_CLASS_W_1,
2246                                     WM8994_CP_DYN_PWR, 0);
2247         }
2248 }
2249
2250 static const char *hp_mux_text[] = {
2251         "Mixer",
2252         "DAC",
2253 };
2254
2255 #define WM8994_HP_ENUM(xname, xenum) \
2256 {       .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2257         .info = snd_soc_info_enum_double, \
2258         .get = snd_soc_dapm_get_enum_double, \
2259         .put = wm8994_put_hp_enum, \
2260         .private_value = (unsigned long)&xenum }
2261
2262 static int wm8994_put_hp_enum(struct snd_kcontrol *kcontrol,
2263                               struct snd_ctl_elem_value *ucontrol)
2264 {
2265         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
2266         struct snd_soc_codec *codec = w->codec;
2267         int ret;
2268
2269         ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
2270
2271         wm8994_update_class_w(codec);
2272
2273         return ret;
2274 }
2275
2276 static const struct soc_enum hpl_enum =
2277         SOC_ENUM_SINGLE(WM8994_OUTPUT_MIXER_1, 8, 2, hp_mux_text);
2278
2279 static const struct snd_kcontrol_new hpl_mux =
2280         WM8994_HP_ENUM("Left Headphone Mux", hpl_enum);
2281
2282 static const struct soc_enum hpr_enum =
2283         SOC_ENUM_SINGLE(WM8994_OUTPUT_MIXER_2, 8, 2, hp_mux_text);
2284
2285 static const struct snd_kcontrol_new hpr_mux =
2286         WM8994_HP_ENUM("Right Headphone Mux", hpr_enum);
2287
2288 static const char *adc_mux_text[] = {
2289         "ADC",
2290         "DMIC",
2291 };
2292
2293 static const struct soc_enum adc_enum =
2294         SOC_ENUM_SINGLE(0, 0, 2, adc_mux_text);
2295
2296 static const struct snd_kcontrol_new adcl_mux =
2297         SOC_DAPM_ENUM_VIRT("ADCL Mux", adc_enum);
2298
2299 static const struct snd_kcontrol_new adcr_mux =
2300         SOC_DAPM_ENUM_VIRT("ADCR Mux", adc_enum);
2301
2302 static const struct snd_kcontrol_new left_speaker_mixer[] = {
2303 SOC_DAPM_SINGLE("DAC2 Switch", WM8994_SPEAKER_MIXER, 9, 1, 0),
2304 SOC_DAPM_SINGLE("Input Switch", WM8994_SPEAKER_MIXER, 7, 1, 0),
2305 SOC_DAPM_SINGLE("IN1LP Switch", WM8994_SPEAKER_MIXER, 5, 1, 0),
2306 SOC_DAPM_SINGLE("Output Switch", WM8994_SPEAKER_MIXER, 3, 1, 0),
2307 SOC_DAPM_SINGLE("DAC1 Switch", WM8994_SPEAKER_MIXER, 1, 1, 0),
2308 };
2309
2310 static const struct snd_kcontrol_new right_speaker_mixer[] = {
2311 SOC_DAPM_SINGLE("DAC2 Switch", WM8994_SPEAKER_MIXER, 8, 1, 0),
2312 SOC_DAPM_SINGLE("Input Switch", WM8994_SPEAKER_MIXER, 6, 1, 0),
2313 SOC_DAPM_SINGLE("IN1RP Switch", WM8994_SPEAKER_MIXER, 4, 1, 0),
2314 SOC_DAPM_SINGLE("Output Switch", WM8994_SPEAKER_MIXER, 2, 1, 0),
2315 SOC_DAPM_SINGLE("DAC1 Switch", WM8994_SPEAKER_MIXER, 0, 1, 0),
2316 };
2317
2318 /* Debugging; dump chip status after DAPM transitions */
2319 static int post_ev(struct snd_soc_dapm_widget *w,
2320             struct snd_kcontrol *kcontrol, int event)
2321 {
2322         struct snd_soc_codec *codec = w->codec;
2323         dev_dbg(codec->dev, "SRC status: %x\n",
2324                 snd_soc_read(codec,
2325                              WM8994_RATE_STATUS));
2326         return 0;
2327 }
2328
2329 static const struct snd_kcontrol_new aif1adc1l_mix[] = {
2330 SOC_DAPM_SINGLE("ADC/DMIC Switch", WM8994_AIF1_ADC1_LEFT_MIXER_ROUTING,
2331                 1, 1, 0),
2332 SOC_DAPM_SINGLE("AIF2 Switch", WM8994_AIF1_ADC1_LEFT_MIXER_ROUTING,
2333                 0, 1, 0),
2334 };
2335
2336 static const struct snd_kcontrol_new aif1adc1r_mix[] = {
2337 SOC_DAPM_SINGLE("ADC/DMIC Switch", WM8994_AIF1_ADC1_RIGHT_MIXER_ROUTING,
2338                 1, 1, 0),
2339 SOC_DAPM_SINGLE("AIF2 Switch", WM8994_AIF1_ADC1_RIGHT_MIXER_ROUTING,
2340                 0, 1, 0),
2341 };
2342
2343 static const struct snd_kcontrol_new aif2dac2l_mix[] = {
2344 SOC_DAPM_SINGLE("Right Sidetone Switch", WM8994_DAC2_LEFT_MIXER_ROUTING,
2345                 5, 1, 0),
2346 SOC_DAPM_SINGLE("Left Sidetone Switch", WM8994_DAC2_LEFT_MIXER_ROUTING,
2347                 4, 1, 0),
2348 SOC_DAPM_SINGLE("AIF2 Switch", WM8994_DAC2_LEFT_MIXER_ROUTING,
2349                 2, 1, 0),
2350 SOC_DAPM_SINGLE("AIF1.2 Switch", WM8994_DAC2_LEFT_MIXER_ROUTING,
2351                 1, 1, 0),
2352 SOC_DAPM_SINGLE("AIF1.1 Switch", WM8994_DAC2_LEFT_MIXER_ROUTING,
2353                 0, 1, 0),
2354 };
2355
2356 static const struct snd_kcontrol_new aif2dac2r_mix[] = {
2357 SOC_DAPM_SINGLE("Right Sidetone Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING,
2358                 5, 1, 0),
2359 SOC_DAPM_SINGLE("Left Sidetone Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING,
2360                 4, 1, 0),
2361 SOC_DAPM_SINGLE("AIF2 Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING,
2362                 2, 1, 0),
2363 SOC_DAPM_SINGLE("AIF1.2 Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING,
2364                 1, 1, 0),
2365 SOC_DAPM_SINGLE("AIF1.1 Switch", WM8994_DAC2_RIGHT_MIXER_ROUTING,
2366                 0, 1, 0),
2367 };
2368
2369 #define WM8994_CLASS_W_SWITCH(xname, reg, shift, max, invert) \
2370 {       .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2371         .info = snd_soc_info_volsw, \
2372         .get = snd_soc_dapm_get_volsw, .put = wm8994_put_class_w, \
2373         .private_value =  SOC_SINGLE_VALUE(reg, shift, max, invert) }
2374
2375 static int wm8994_put_class_w(struct snd_kcontrol *kcontrol,
2376                               struct snd_ctl_elem_value *ucontrol)
2377 {
2378         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
2379         struct snd_soc_codec *codec = w->codec;
2380         int ret;
2381
2382         ret = snd_soc_dapm_put_volsw(kcontrol, ucontrol);
2383
2384         wm8994_update_class_w(codec);
2385
2386         return ret;
2387 }
2388
2389 static const struct snd_kcontrol_new dac1l_mix[] = {
2390 WM8994_CLASS_W_SWITCH("Right Sidetone Switch", WM8994_DAC1_LEFT_MIXER_ROUTING,
2391                       5, 1, 0),
2392 WM8994_CLASS_W_SWITCH("Left Sidetone Switch", WM8994_DAC1_LEFT_MIXER_ROUTING,
2393                       4, 1, 0),
2394 WM8994_CLASS_W_SWITCH("AIF2 Switch", WM8994_DAC1_LEFT_MIXER_ROUTING,
2395                       2, 1, 0),
2396 WM8994_CLASS_W_SWITCH("AIF1.2 Switch", WM8994_DAC1_LEFT_MIXER_ROUTING,
2397                       1, 1, 0),
2398 WM8994_CLASS_W_SWITCH("AIF1.1 Switch", WM8994_DAC1_LEFT_MIXER_ROUTING,
2399                       0, 1, 0),
2400 };
2401
2402 static const struct snd_kcontrol_new dac1r_mix[] = {
2403 WM8994_CLASS_W_SWITCH("Right Sidetone Switch", WM8994_DAC1_RIGHT_MIXER_ROUTING,
2404                       5, 1, 0),
2405 WM8994_CLASS_W_SWITCH("Left Sidetone Switch", WM8994_DAC1_RIGHT_MIXER_ROUTING,
2406                       4, 1, 0),
2407 WM8994_CLASS_W_SWITCH("AIF2 Switch", WM8994_DAC1_RIGHT_MIXER_ROUTING,
2408                       2, 1, 0),
2409 WM8994_CLASS_W_SWITCH("AIF1.2 Switch", WM8994_DAC1_RIGHT_MIXER_ROUTING,
2410                       1, 1, 0),
2411 WM8994_CLASS_W_SWITCH("AIF1.1 Switch", WM8994_DAC1_RIGHT_MIXER_ROUTING,
2412                       0, 1, 0),
2413 };
2414
2415 static const char *sidetone_text[] = {
2416         "ADC/DMIC1", "DMIC2",
2417 };
2418
2419 static const struct soc_enum sidetone1_enum =
2420         SOC_ENUM_SINGLE(WM8994_SIDETONE, 0, 2, sidetone_text);
2421
2422 static const struct snd_kcontrol_new sidetone1_mux =
2423         SOC_DAPM_ENUM("Left Sidetone Mux", sidetone1_enum);
2424
2425 static const struct soc_enum sidetone2_enum =
2426         SOC_ENUM_SINGLE(WM8994_SIDETONE, 1, 2, sidetone_text);
2427
2428 static const struct snd_kcontrol_new sidetone2_mux =
2429         SOC_DAPM_ENUM("Right Sidetone Mux", sidetone2_enum);
2430
2431 static const char *aif1dac_text[] = {
2432         "AIF1DACDAT", "AIF3DACDAT",
2433 };
2434
2435 static const struct soc_enum aif1dac_enum =
2436         SOC_ENUM_SINGLE(WM8994_POWER_MANAGEMENT_6, 0, 2, aif1dac_text);
2437
2438 static const struct snd_kcontrol_new aif1dac_mux =
2439         SOC_DAPM_ENUM("AIF1DAC Mux", aif1dac_enum);
2440
2441 static const char *aif2dac_text[] = {
2442         "AIF2DACDAT", "AIF3DACDAT",
2443 };
2444
2445 static const struct soc_enum aif2dac_enum =
2446         SOC_ENUM_SINGLE(WM8994_POWER_MANAGEMENT_6, 1, 2, aif2dac_text);
2447
2448 static const struct snd_kcontrol_new aif2dac_mux =
2449         SOC_DAPM_ENUM("AIF2DAC Mux", aif2dac_enum);
2450
2451 static const char *aif2adc_text[] = {
2452         "AIF2ADCDAT", "AIF3DACDAT",
2453 };
2454
2455 static const struct soc_enum aif2adc_enum =
2456         SOC_ENUM_SINGLE(WM8994_POWER_MANAGEMENT_6, 2, 2, aif2adc_text);
2457
2458 static const struct snd_kcontrol_new aif2adc_mux =
2459         SOC_DAPM_ENUM("AIF2ADC Mux", aif2adc_enum);
2460
2461 static const char *aif3adc_text[] = {
2462         "AIF1ADCDAT", "AIF2ADCDAT", "AIF2DACDAT",
2463 };
2464
2465 static const struct soc_enum aif3adc_enum =
2466         SOC_ENUM_SINGLE(WM8994_POWER_MANAGEMENT_6, 3, 3, aif3adc_text);
2467
2468 static const struct snd_kcontrol_new aif3adc_mux =
2469         SOC_DAPM_ENUM("AIF3ADC Mux", aif3adc_enum);
2470
2471 static const struct snd_soc_dapm_widget wm8994_dapm_widgets[] = {
2472 SND_SOC_DAPM_INPUT("DMIC1DAT"),
2473 SND_SOC_DAPM_INPUT("DMIC2DAT"),
2474
2475 SND_SOC_DAPM_SUPPLY("CLK_SYS", SND_SOC_NOPM, 0, 0, clk_sys_event,
2476                     SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
2477
2478 SND_SOC_DAPM_SUPPLY("DSP1CLK", WM8994_CLOCKING_1, 3, 0, NULL, 0),
2479 SND_SOC_DAPM_SUPPLY("DSP2CLK", WM8994_CLOCKING_1, 2, 0, NULL, 0),
2480 SND_SOC_DAPM_SUPPLY("DSPINTCLK", WM8994_CLOCKING_1, 1, 0, NULL, 0),
2481
2482 SND_SOC_DAPM_SUPPLY("AIF1CLK", WM8994_AIF1_CLOCKING_1, 0, 0, NULL, 0),
2483 SND_SOC_DAPM_SUPPLY("AIF2CLK", WM8994_AIF2_CLOCKING_1, 0, 0, NULL, 0),
2484
2485 SND_SOC_DAPM_AIF_OUT("AIF1ADC1L", "AIF1 Capture",
2486                      0, WM8994_POWER_MANAGEMENT_4, 9, 0),
2487 SND_SOC_DAPM_AIF_OUT("AIF1ADC1R", "AIF1 Capture",
2488                      0, WM8994_POWER_MANAGEMENT_4, 8, 0),
2489 SND_SOC_DAPM_AIF_IN("AIF1DAC1L", NULL, 0,
2490                     WM8994_POWER_MANAGEMENT_5, 9, 0),
2491 SND_SOC_DAPM_AIF_IN("AIF1DAC1R", NULL, 0,
2492                     WM8994_POWER_MANAGEMENT_5, 8, 0),
2493
2494 SND_SOC_DAPM_AIF_OUT("AIF1ADC2L", "AIF1 Capture",
2495                      0, WM8994_POWER_MANAGEMENT_4, 11, 0),
2496 SND_SOC_DAPM_AIF_OUT("AIF1ADC2R", "AIF1 Capture",
2497                      0, WM8994_POWER_MANAGEMENT_4, 10, 0),
2498 SND_SOC_DAPM_AIF_IN("AIF1DAC2L", NULL, 0,
2499                     WM8994_POWER_MANAGEMENT_5, 11, 0),
2500 SND_SOC_DAPM_AIF_IN("AIF1DAC2R", NULL, 0,
2501                     WM8994_POWER_MANAGEMENT_5, 10, 0),
2502
2503 SND_SOC_DAPM_MIXER("AIF1ADC1L Mixer", SND_SOC_NOPM, 0, 0,
2504                    aif1adc1l_mix, ARRAY_SIZE(aif1adc1l_mix)),
2505 SND_SOC_DAPM_MIXER("AIF1ADC1R Mixer", SND_SOC_NOPM, 0, 0,
2506                    aif1adc1r_mix, ARRAY_SIZE(aif1adc1r_mix)),
2507
2508 SND_SOC_DAPM_MIXER("AIF2DAC2L Mixer", SND_SOC_NOPM, 0, 0,
2509                    aif2dac2l_mix, ARRAY_SIZE(aif2dac2l_mix)),
2510 SND_SOC_DAPM_MIXER("AIF2DAC2R Mixer", SND_SOC_NOPM, 0, 0,
2511                    aif2dac2r_mix, ARRAY_SIZE(aif2dac2r_mix)),
2512
2513 SND_SOC_DAPM_MUX("Left Sidetone", SND_SOC_NOPM, 0, 0, &sidetone1_mux),
2514 SND_SOC_DAPM_MUX("Right Sidetone", SND_SOC_NOPM, 0, 0, &sidetone2_mux),
2515
2516 SND_SOC_DAPM_MIXER("DAC1L Mixer", SND_SOC_NOPM, 0, 0,
2517                    dac1l_mix, ARRAY_SIZE(dac1l_mix)),
2518 SND_SOC_DAPM_MIXER("DAC1R Mixer", SND_SOC_NOPM, 0, 0,
2519                    dac1r_mix, ARRAY_SIZE(dac1r_mix)),
2520
2521 SND_SOC_DAPM_AIF_OUT("AIF2ADCL", NULL, 0,
2522                      WM8994_POWER_MANAGEMENT_4, 13, 0),
2523 SND_SOC_DAPM_AIF_OUT("AIF2ADCR", NULL, 0,
2524                      WM8994_POWER_MANAGEMENT_4, 12, 0),
2525 SND_SOC_DAPM_AIF_IN("AIF2DACL", NULL, 0,
2526                     WM8994_POWER_MANAGEMENT_5, 13, 0),
2527 SND_SOC_DAPM_AIF_IN("AIF2DACR", NULL, 0,
2528                     WM8994_POWER_MANAGEMENT_5, 12, 0),
2529
2530 SND_SOC_DAPM_AIF_IN("AIF1DACDAT", "AIF1 Playback", 0, SND_SOC_NOPM, 0, 0),
2531 SND_SOC_DAPM_AIF_IN("AIF2DACDAT", "AIF2 Playback", 0, SND_SOC_NOPM, 0, 0),
2532 SND_SOC_DAPM_AIF_OUT("AIF2ADCDAT", "AIF2 Capture", 0, SND_SOC_NOPM, 0, 0),
2533
2534 SND_SOC_DAPM_MUX("AIF1DAC Mux", SND_SOC_NOPM, 0, 0, &aif1dac_mux),
2535 SND_SOC_DAPM_MUX("AIF2DAC Mux", SND_SOC_NOPM, 0, 0, &aif2dac_mux),
2536 SND_SOC_DAPM_MUX("AIF2ADC Mux", SND_SOC_NOPM, 0, 0, &aif2adc_mux),
2537 SND_SOC_DAPM_MUX("AIF3ADC Mux", SND_SOC_NOPM, 0, 0, &aif3adc_mux),
2538
2539 SND_SOC_DAPM_AIF_IN("AIF3DACDAT", "AIF3 Playback", 0, SND_SOC_NOPM, 0, 0),
2540 SND_SOC_DAPM_AIF_IN("AIF3ADCDAT", "AIF3 Capture", 0, SND_SOC_NOPM, 0, 0),
2541
2542 SND_SOC_DAPM_SUPPLY("TOCLK", WM8994_CLOCKING_1, 4, 0, NULL, 0),
2543
2544 SND_SOC_DAPM_ADC("DMIC2L", NULL, WM8994_POWER_MANAGEMENT_4, 5, 0),
2545 SND_SOC_DAPM_ADC("DMIC2R", NULL, WM8994_POWER_MANAGEMENT_4, 4, 0),
2546 SND_SOC_DAPM_ADC("DMIC1L", NULL, WM8994_POWER_MANAGEMENT_4, 3, 0),
2547 SND_SOC_DAPM_ADC("DMIC1R", NULL, WM8994_POWER_MANAGEMENT_4, 2, 0),
2548
2549 /* Power is done with the muxes since the ADC power also controls the
2550  * downsampling chain, the chip will automatically manage the analogue
2551  * specific portions.
2552  */
2553 SND_SOC_DAPM_ADC("ADCL", NULL, SND_SOC_NOPM, 1, 0),
2554 SND_SOC_DAPM_ADC("ADCR", NULL, SND_SOC_NOPM, 0, 0),
2555
2556 SND_SOC_DAPM_MUX("ADCL Mux", WM8994_POWER_MANAGEMENT_4, 1, 0, &adcl_mux),
2557 SND_SOC_DAPM_MUX("ADCR Mux", WM8994_POWER_MANAGEMENT_4, 0, 0, &adcr_mux),
2558
2559 SND_SOC_DAPM_DAC("DAC2L", NULL, WM8994_POWER_MANAGEMENT_5, 3, 0),
2560 SND_SOC_DAPM_DAC("DAC2R", NULL, WM8994_POWER_MANAGEMENT_5, 2, 0),
2561 SND_SOC_DAPM_DAC("DAC1L", NULL, WM8994_POWER_MANAGEMENT_5, 1, 0),
2562 SND_SOC_DAPM_DAC("DAC1R", NULL, WM8994_POWER_MANAGEMENT_5, 0, 0),
2563
2564 SND_SOC_DAPM_MUX("Left Headphone Mux", SND_SOC_NOPM, 0, 0, &hpl_mux),
2565 SND_SOC_DAPM_MUX("Right Headphone Mux", SND_SOC_NOPM, 0, 0, &hpr_mux),
2566
2567 SND_SOC_DAPM_MIXER("SPKL", WM8994_POWER_MANAGEMENT_3, 8, 0,
2568                    left_speaker_mixer, ARRAY_SIZE(left_speaker_mixer)),
2569 SND_SOC_DAPM_MIXER("SPKR", WM8994_POWER_MANAGEMENT_3, 9, 0,
2570                    right_speaker_mixer, ARRAY_SIZE(right_speaker_mixer)),
2571
2572 SND_SOC_DAPM_POST("Debug log", post_ev),
2573 };
2574
2575 static const struct snd_soc_dapm_route intercon[] = {
2576
2577         { "CLK_SYS", NULL, "AIF1CLK", check_clk_sys },
2578         { "CLK_SYS", NULL, "AIF2CLK", check_clk_sys },
2579
2580         { "DSP1CLK", NULL, "CLK_SYS" },
2581         { "DSP2CLK", NULL, "CLK_SYS" },
2582         { "DSPINTCLK", NULL, "CLK_SYS" },
2583
2584         { "AIF1ADC1L", NULL, "AIF1CLK" },
2585         { "AIF1ADC1L", NULL, "DSP1CLK" },
2586         { "AIF1ADC1R", NULL, "AIF1CLK" },
2587         { "AIF1ADC1R", NULL, "DSP1CLK" },
2588         { "AIF1ADC1R", NULL, "DSPINTCLK" },
2589
2590         { "AIF1DAC1L", NULL, "AIF1CLK" },
2591         { "AIF1DAC1L", NULL, "DSP1CLK" },
2592         { "AIF1DAC1R", NULL, "AIF1CLK" },
2593         { "AIF1DAC1R", NULL, "DSP1CLK" },
2594         { "AIF1DAC1R", NULL, "DSPINTCLK" },
2595
2596         { "AIF1ADC2L", NULL, "AIF1CLK" },
2597         { "AIF1ADC2L", NULL, "DSP1CLK" },
2598         { "AIF1ADC2R", NULL, "AIF1CLK" },
2599         { "AIF1ADC2R", NULL, "DSP1CLK" },
2600         { "AIF1ADC2R", NULL, "DSPINTCLK" },
2601
2602         { "AIF1DAC2L", NULL, "AIF1CLK" },
2603         { "AIF1DAC2L", NULL, "DSP1CLK" },
2604         { "AIF1DAC2R", NULL, "AIF1CLK" },
2605         { "AIF1DAC2R", NULL, "DSP1CLK" },
2606         { "AIF1DAC2R", NULL, "DSPINTCLK" },
2607
2608         { "AIF2ADCL", NULL, "AIF2CLK" },
2609         { "AIF2ADCL", NULL, "DSP2CLK" },
2610         { "AIF2ADCR", NULL, "AIF2CLK" },
2611         { "AIF2ADCR", NULL, "DSP2CLK" },
2612         { "AIF2ADCR", NULL, "DSPINTCLK" },
2613
2614         { "AIF2DACL", NULL, "AIF2CLK" },
2615         { "AIF2DACL", NULL, "DSP2CLK" },
2616         { "AIF2DACR", NULL, "AIF2CLK" },
2617         { "AIF2DACR", NULL, "DSP2CLK" },
2618         { "AIF2DACR", NULL, "DSPINTCLK" },
2619
2620         { "DMIC1L", NULL, "DMIC1DAT" },
2621         { "DMIC1L", NULL, "CLK_SYS" },
2622         { "DMIC1R", NULL, "DMIC1DAT" },
2623         { "DMIC1R", NULL, "CLK_SYS" },
2624         { "DMIC2L", NULL, "DMIC2DAT" },
2625         { "DMIC2L", NULL, "CLK_SYS" },
2626         { "DMIC2R", NULL, "DMIC2DAT" },
2627         { "DMIC2R", NULL, "CLK_SYS" },
2628
2629         { "ADCL", NULL, "AIF1CLK" },
2630         { "ADCL", NULL, "DSP1CLK" },
2631         { "ADCL", NULL, "DSPINTCLK" },
2632
2633         { "ADCR", NULL, "AIF1CLK" },
2634         { "ADCR", NULL, "DSP1CLK" },
2635         { "ADCR", NULL, "DSPINTCLK" },
2636
2637         { "ADCL Mux", "ADC", "ADCL" },
2638         { "ADCL Mux", "DMIC", "DMIC1L" },
2639         { "ADCR Mux", "ADC", "ADCR" },
2640         { "ADCR Mux", "DMIC", "DMIC1R" },
2641
2642         { "DAC1L", NULL, "AIF1CLK" },
2643         { "DAC1L", NULL, "DSP1CLK" },
2644         { "DAC1L", NULL, "DSPINTCLK" },
2645
2646         { "DAC1R", NULL, "AIF1CLK" },
2647         { "DAC1R", NULL, "DSP1CLK" },
2648         { "DAC1R", NULL, "DSPINTCLK" },
2649
2650         { "DAC2L", NULL, "AIF2CLK" },
2651         { "DAC2L", NULL, "DSP2CLK" },
2652         { "DAC2L", NULL, "DSPINTCLK" },
2653
2654         { "DAC2R", NULL, "AIF2DACR" },
2655         { "DAC2R", NULL, "AIF2CLK" },
2656         { "DAC2R", NULL, "DSP2CLK" },
2657         { "DAC2R", NULL, "DSPINTCLK" },
2658
2659         { "TOCLK", NULL, "CLK_SYS" },
2660
2661         /* AIF1 outputs */
2662         { "AIF1ADC1L", NULL, "AIF1ADC1L Mixer" },
2663         { "AIF1ADC1L Mixer", "ADC/DMIC Switch", "ADCL Mux" },
2664         { "AIF1ADC1L Mixer", "AIF2 Switch", "AIF2DACL" },
2665
2666         { "AIF1ADC1R", NULL, "AIF1ADC1R Mixer" },
2667         { "AIF1ADC1R Mixer", "ADC/DMIC Switch", "ADCR Mux" },
2668         { "AIF1ADC1R Mixer", "AIF2 Switch", "AIF2DACR" },
2669
2670         /* Pin level routing for AIF3 */
2671         { "AIF1DAC1L", NULL, "AIF1DAC Mux" },
2672         { "AIF1DAC1R", NULL, "AIF1DAC Mux" },
2673         { "AIF1DAC2L", NULL, "AIF1DAC Mux" },
2674         { "AIF1DAC2R", NULL, "AIF1DAC Mux" },
2675
2676         { "AIF2DACL", NULL, "AIF2DAC Mux" },
2677         { "AIF2DACR", NULL, "AIF2DAC Mux" },
2678
2679         { "AIF1DAC Mux", "AIF1DACDAT", "AIF1DACDAT" },
2680         { "AIF1DAC Mux", "AIF3DACDAT", "AIF3DACDAT" },
2681         { "AIF2DAC Mux", "AIF2DACDAT", "AIF2DACDAT" },
2682         { "AIF2DAC Mux", "AIF3DACDAT", "AIF3DACDAT" },
2683         { "AIF2ADC Mux", "AIF2ADCDAT", "AIF2ADCL" },
2684         { "AIF2ADC Mux", "AIF2ADCDAT", "AIF2ADCR" },
2685         { "AIF2ADC Mux", "AIF3DACDAT", "AIF3ADCDAT" },
2686
2687         /* DAC1 inputs */
2688         { "DAC1L", NULL, "DAC1L Mixer" },
2689         { "DAC1L Mixer", "AIF2 Switch", "AIF2DACL" },
2690         { "DAC1L Mixer", "AIF1.2 Switch", "AIF1DAC2L" },
2691         { "DAC1L Mixer", "AIF1.1 Switch", "AIF1DAC1L" },
2692         { "DAC1L Mixer", "Left Sidetone Switch", "Left Sidetone" },
2693         { "DAC1L Mixer", "Right Sidetone Switch", "Right Sidetone" },
2694
2695         { "DAC1R", NULL, "DAC1R Mixer" },
2696         { "DAC1R Mixer", "AIF2 Switch", "AIF2DACR" },
2697         { "DAC1R Mixer", "AIF1.2 Switch", "AIF1DAC2R" },
2698         { "DAC1R Mixer", "AIF1.1 Switch", "AIF1DAC1R" },
2699         { "DAC1R Mixer", "Left Sidetone Switch", "Left Sidetone" },
2700         { "DAC1R Mixer", "Right Sidetone Switch", "Right Sidetone" },
2701
2702         /* DAC2/AIF2 outputs  */
2703         { "AIF2ADCL", NULL, "AIF2DAC2L Mixer" },
2704         { "DAC2L", NULL, "AIF2DAC2L Mixer" },
2705         { "AIF2DAC2L Mixer", "AIF2 Switch", "AIF2DACL" },
2706         { "AIF2DAC2L Mixer", "AIF1.2 Switch", "AIF1DAC2L" },
2707         { "AIF2DAC2L Mixer", "AIF1.1 Switch", "AIF1DAC1L" },
2708         { "AIF2DAC2L Mixer", "Left Sidetone Switch", "Left Sidetone" },
2709         { "AIF2DAC2L Mixer", "Right Sidetone Switch", "Right Sidetone" },
2710
2711         { "AIF2ADCR", NULL, "AIF2DAC2R Mixer" },
2712         { "DAC2R", NULL, "AIF2DAC2R Mixer" },
2713         { "AIF2DAC2R Mixer", "AIF2 Switch", "AIF2DACR" },
2714         { "AIF2DAC2R Mixer", "AIF1.2 Switch", "AIF1DAC2R" },
2715         { "AIF2DAC2R Mixer", "AIF1.1 Switch", "AIF1DAC1R" },
2716         { "AIF2DAC2R Mixer", "Left Sidetone Switch", "Left Sidetone" },
2717         { "AIF2DAC2R Mixer", "Right Sidetone Switch", "Right Sidetone" },
2718
2719         { "AIF2ADCDAT", NULL, "AIF2ADC Mux" },
2720
2721         /* AIF3 output */
2722         { "AIF3ADCDAT", "AIF1ADCDAT", "AIF1ADC1L" },
2723         { "AIF3ADCDAT", "AIF1ADCDAT", "AIF1ADC1R" },
2724         { "AIF3ADCDAT", "AIF1ADCDAT", "AIF1ADC2L" },
2725         { "AIF3ADCDAT", "AIF1ADCDAT", "AIF1ADC2R" },
2726         { "AIF3ADCDAT", "AIF2ADCDAT", "AIF2ADCL" },
2727         { "AIF3ADCDAT", "AIF2ADCDAT", "AIF2ADCR" },
2728         { "AIF3ADCDAT", "AIF2DACDAT", "AIF2DACL" },
2729         { "AIF3ADCDAT", "AIF2DACDAT", "AIF2DACR" },
2730
2731         /* Sidetone */
2732         { "Left Sidetone", "ADC/DMIC1", "ADCL Mux" },
2733         { "Left Sidetone", "DMIC2", "DMIC2L" },
2734         { "Right Sidetone", "ADC/DMIC1", "ADCR Mux" },
2735         { "Right Sidetone", "DMIC2", "DMIC2R" },
2736
2737         /* Output stages */
2738         { "Left Output Mixer", "DAC Switch", "DAC1L" },
2739         { "Right Output Mixer", "DAC Switch", "DAC1R" },
2740
2741         { "SPKL", "DAC1 Switch", "DAC1L" },
2742         { "SPKL", "DAC2 Switch", "DAC2L" },
2743
2744         { "SPKR", "DAC1 Switch", "DAC1R" },
2745         { "SPKR", "DAC2 Switch", "DAC2R" },
2746
2747         { "Left Headphone Mux", "DAC", "DAC1L" },
2748         { "Right Headphone Mux", "DAC", "DAC1R" },
2749 };
2750
2751 /* The size in bits of the FLL divide multiplied by 10
2752  * to allow rounding later */
2753 #define FIXED_FLL_SIZE ((1 << 16) * 10)
2754
2755 struct fll_div {
2756         u16 outdiv;
2757         u16 n;
2758         u16 k;
2759         u16 clk_ref_div;
2760         u16 fll_fratio;
2761 };
2762
2763 static int wm8994_get_fll_config(struct fll_div *fll,
2764                                  int freq_in, int freq_out)
2765 {
2766         u64 Kpart;
2767         unsigned int K, Ndiv, Nmod;
2768
2769         pr_debug("FLL input=%dHz, output=%dHz\n", freq_in, freq_out);
2770
2771         /* Scale the input frequency down to <= 13.5MHz */
2772         fll->clk_ref_div = 0;
2773         while (freq_in > 13500000) {
2774                 fll->clk_ref_div++;
2775                 freq_in /= 2;
2776
2777                 if (fll->clk_ref_div > 3)
2778                         return -EINVAL;
2779         }
2780         pr_debug("CLK_REF_DIV=%d, Fref=%dHz\n", fll->clk_ref_div, freq_in);
2781
2782         /* Scale the output to give 90MHz<=Fvco<=100MHz */
2783         fll->outdiv = 3;
2784         while (freq_out * (fll->outdiv + 1) < 90000000) {
2785                 fll->outdiv++;
2786                 if (fll->outdiv > 63)
2787                         return -EINVAL;
2788         }
2789         freq_out *= fll->outdiv + 1;
2790         pr_debug("OUTDIV=%d, Fvco=%dHz\n", fll->outdiv, freq_out);
2791
2792         if (freq_in > 1000000) {
2793                 fll->fll_fratio = 0;
2794         } else if (freq_in > 256000) {
2795                 fll->fll_fratio = 1;
2796                 freq_in *= 2;
2797         } else if (freq_in > 128000) {
2798                 fll->fll_fratio = 2;
2799                 freq_in *= 4;
2800         } else if (freq_in > 64000) {
2801                 fll->fll_fratio = 3;
2802                 freq_in *= 8;
2803         } else {
2804                 fll->fll_fratio = 4;
2805                 freq_in *= 16;
2806         }
2807         pr_debug("FLL_FRATIO=%d, Fref=%dHz\n", fll->fll_fratio, freq_in);
2808
2809         /* Now, calculate N.K */
2810         Ndiv = freq_out / freq_in;
2811
2812         fll->n = Ndiv;
2813         Nmod = freq_out % freq_in;
2814         pr_debug("Nmod=%d\n", Nmod);
2815
2816         /* Calculate fractional part - scale up so we can round. */
2817         Kpart = FIXED_FLL_SIZE * (long long)Nmod;
2818
2819         do_div(Kpart, freq_in);
2820
2821         K = Kpart & 0xFFFFFFFF;
2822
2823         if ((K % 10) >= 5)
2824                 K += 5;
2825
2826         /* Move down to proper range now rounding is done */
2827         fll->k = K / 10;
2828
2829         pr_debug("N=%x K=%x\n", fll->n, fll->k);
2830
2831         return 0;
2832 }
2833
2834 static int wm8994_set_fll(struct snd_soc_dai *dai, int id, int src,
2835                           unsigned int freq_in, unsigned int freq_out)
2836 {
2837         struct snd_soc_codec *codec = dai->codec;
2838         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
2839         int reg_offset, ret;
2840         struct fll_div fll;
2841         u16 reg, aif1, aif2;
2842
2843         aif1 = snd_soc_read(codec, WM8994_AIF1_CLOCKING_1)
2844                 & WM8994_AIF1CLK_ENA;
2845
2846         aif2 = snd_soc_read(codec, WM8994_AIF2_CLOCKING_1)
2847                 & WM8994_AIF2CLK_ENA;
2848
2849         switch (id) {
2850         case WM8994_FLL1:
2851                 reg_offset = 0;
2852                 id = 0;
2853                 break;
2854         case WM8994_FLL2:
2855                 reg_offset = 0x20;
2856                 id = 1;
2857                 break;
2858         default:
2859                 return -EINVAL;
2860         }
2861
2862         switch (src) {
2863         case 0:
2864                 /* Allow no source specification when stopping */
2865                 if (freq_out)
2866                         return -EINVAL;
2867                 break;
2868         case WM8994_FLL_SRC_MCLK1:
2869         case WM8994_FLL_SRC_MCLK2:
2870         case WM8994_FLL_SRC_LRCLK:
2871         case WM8994_FLL_SRC_BCLK:
2872                 break;
2873         default:
2874                 return -EINVAL;
2875         }
2876
2877         /* Are we changing anything? */
2878         if (wm8994->fll[id].src == src &&
2879             wm8994->fll[id].in == freq_in && wm8994->fll[id].out == freq_out)
2880                 return 0;
2881
2882         /* If we're stopping the FLL redo the old config - no
2883          * registers will actually be written but we avoid GCC flow
2884          * analysis bugs spewing warnings.
2885          */
2886         if (freq_out)
2887                 ret = wm8994_get_fll_config(&fll, freq_in, freq_out);
2888         else
2889                 ret = wm8994_get_fll_config(&fll, wm8994->fll[id].in,
2890                                             wm8994->fll[id].out);
2891         if (ret < 0)
2892                 return ret;
2893
2894         /* Gate the AIF clocks while we reclock */
2895         snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1,
2896                             WM8994_AIF1CLK_ENA, 0);
2897         snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1,
2898                             WM8994_AIF2CLK_ENA, 0);
2899
2900         /* We always need to disable the FLL while reconfiguring */
2901         snd_soc_update_bits(codec, WM8994_FLL1_CONTROL_1 + reg_offset,
2902                             WM8994_FLL1_ENA, 0);
2903
2904         reg = (fll.outdiv << WM8994_FLL1_OUTDIV_SHIFT) |
2905                 (fll.fll_fratio << WM8994_FLL1_FRATIO_SHIFT);
2906         snd_soc_update_bits(codec, WM8994_FLL1_CONTROL_2 + reg_offset,
2907                             WM8994_FLL1_OUTDIV_MASK |
2908                             WM8994_FLL1_FRATIO_MASK, reg);
2909
2910         snd_soc_write(codec, WM8994_FLL1_CONTROL_3 + reg_offset, fll.k);
2911
2912         snd_soc_update_bits(codec, WM8994_FLL1_CONTROL_4 + reg_offset,
2913                             WM8994_FLL1_N_MASK,
2914                                     fll.n << WM8994_FLL1_N_SHIFT);
2915
2916         snd_soc_update_bits(codec, WM8994_FLL1_CONTROL_5 + reg_offset,
2917                             WM8994_FLL1_REFCLK_DIV_MASK |
2918                             WM8994_FLL1_REFCLK_SRC_MASK,
2919                             (fll.clk_ref_div << WM8994_FLL1_REFCLK_DIV_SHIFT) |
2920                             (src - 1));
2921
2922         /* Enable (with fractional mode if required) */
2923         if (freq_out) {
2924                 if (fll.k)
2925                         reg = WM8994_FLL1_ENA | WM8994_FLL1_FRAC;
2926                 else
2927                         reg = WM8994_FLL1_ENA;
2928                 snd_soc_update_bits(codec, WM8994_FLL1_CONTROL_1 + reg_offset,
2929                                     WM8994_FLL1_ENA | WM8994_FLL1_FRAC,
2930                                     reg);
2931         }
2932
2933         wm8994->fll[id].in = freq_in;
2934         wm8994->fll[id].out = freq_out;
2935         wm8994->fll[id].src = src;
2936
2937         /* Enable any gated AIF clocks */
2938         snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1,
2939                             WM8994_AIF1CLK_ENA, aif1);
2940         snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1,
2941                             WM8994_AIF2CLK_ENA, aif2);
2942
2943         configure_clock(codec);
2944
2945         return 0;
2946 }
2947
2948 static int wm8994_set_dai_sysclk(struct snd_soc_dai *dai,
2949                 int clk_id, unsigned int freq, int dir)
2950 {
2951         struct snd_soc_codec *codec = dai->codec;
2952         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
2953
2954         switch (dai->id) {
2955         case 1:
2956         case 2:
2957                 break;
2958
2959         default:
2960                 /* AIF3 shares clocking with AIF1/2 */
2961                 return -EINVAL;
2962         }
2963
2964         switch (clk_id) {
2965         case WM8994_SYSCLK_MCLK1:
2966                 wm8994->sysclk[dai->id - 1] = WM8994_SYSCLK_MCLK1;
2967                 wm8994->mclk[0] = freq;
2968                 dev_dbg(dai->dev, "AIF%d using MCLK1 at %uHz\n",
2969                         dai->id, freq);
2970                 break;
2971
2972         case WM8994_SYSCLK_MCLK2:
2973                 /* TODO: Set GPIO AF */
2974                 wm8994->sysclk[dai->id - 1] = WM8994_SYSCLK_MCLK2;
2975                 wm8994->mclk[1] = freq;
2976                 dev_dbg(dai->dev, "AIF%d using MCLK2 at %uHz\n",
2977                         dai->id, freq);
2978                 break;
2979
2980         case WM8994_SYSCLK_FLL1:
2981                 wm8994->sysclk[dai->id - 1] = WM8994_SYSCLK_FLL1;
2982                 dev_dbg(dai->dev, "AIF%d using FLL1\n", dai->id);
2983                 break;
2984
2985         case WM8994_SYSCLK_FLL2:
2986                 wm8994->sysclk[dai->id - 1] = WM8994_SYSCLK_FLL2;
2987                 dev_dbg(dai->dev, "AIF%d using FLL2\n", dai->id);
2988                 break;
2989
2990         default:
2991                 return -EINVAL;
2992         }
2993
2994         configure_clock(codec);
2995
2996         return 0;
2997 }
2998
2999 static int wm8994_set_bias_level(struct snd_soc_codec *codec,
3000                                  enum snd_soc_bias_level level)
3001 {
3002         switch (level) {
3003         case SND_SOC_BIAS_ON:
3004                 break;
3005
3006         case SND_SOC_BIAS_PREPARE:
3007                 /* VMID=2x40k */
3008                 snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
3009                                     WM8994_VMID_SEL_MASK, 0x2);
3010                 break;
3011
3012         case SND_SOC_BIAS_STANDBY:
3013                 if (codec->bias_level == SND_SOC_BIAS_OFF) {
3014                         /* Tweak DC servo configuration for improved
3015                          * performance. */
3016                         snd_soc_write(codec, 0x102, 0x3);
3017                         snd_soc_write(codec, 0x56, 0x3);
3018                         snd_soc_write(codec, 0x102, 0);
3019
3020                         /* Discharge LINEOUT1 & 2 */
3021                         snd_soc_update_bits(codec, WM8994_ANTIPOP_1,
3022                                             WM8994_LINEOUT1_DISCH |
3023                                             WM8994_LINEOUT2_DISCH,
3024                                             WM8994_LINEOUT1_DISCH |
3025                                             WM8994_LINEOUT2_DISCH);
3026
3027                         /* Startup bias, VMID ramp & buffer */
3028                         snd_soc_update_bits(codec, WM8994_ANTIPOP_2,
3029                                             WM8994_STARTUP_BIAS_ENA |
3030                                             WM8994_VMID_BUF_ENA |
3031                                             WM8994_VMID_RAMP_MASK,
3032                                             WM8994_STARTUP_BIAS_ENA |
3033                                             WM8994_VMID_BUF_ENA |
3034                                             (0x11 << WM8994_VMID_RAMP_SHIFT));
3035
3036                         /* Main bias enable, VMID=2x40k */
3037                         snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
3038                                             WM8994_BIAS_ENA |
3039                                             WM8994_VMID_SEL_MASK,
3040                                             WM8994_BIAS_ENA | 0x2);
3041
3042                         msleep(20);
3043                 }
3044
3045                 /* VMID=2x500k */
3046                 snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
3047                                     WM8994_VMID_SEL_MASK, 0x4);
3048
3049                 break;
3050
3051         case SND_SOC_BIAS_OFF:
3052                 if (codec->bias_level == SND_SOC_BIAS_STANDBY) {
3053                         /* Switch over to startup biases */
3054                         snd_soc_update_bits(codec, WM8994_ANTIPOP_2,
3055                                             WM8994_BIAS_SRC |
3056                                             WM8994_STARTUP_BIAS_ENA |
3057                                             WM8994_VMID_BUF_ENA |
3058                                             WM8994_VMID_RAMP_MASK,
3059                                             WM8994_BIAS_SRC |
3060                                             WM8994_STARTUP_BIAS_ENA |
3061                                             WM8994_VMID_BUF_ENA |
3062                                             (1 << WM8994_VMID_RAMP_SHIFT));
3063
3064                         /* Disable main biases */
3065                         snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
3066                                             WM8994_BIAS_ENA |
3067                                             WM8994_VMID_SEL_MASK, 0);
3068
3069                         /* Discharge line */
3070                         snd_soc_update_bits(codec, WM8994_ANTIPOP_1,
3071                                             WM8994_LINEOUT1_DISCH |
3072                                             WM8994_LINEOUT2_DISCH,
3073                                             WM8994_LINEOUT1_DISCH |
3074                                             WM8994_LINEOUT2_DISCH);
3075
3076                         msleep(5);
3077
3078                         /* Switch off startup biases */
3079                         snd_soc_update_bits(codec, WM8994_ANTIPOP_2,
3080                                             WM8994_BIAS_SRC |
3081                                             WM8994_STARTUP_BIAS_ENA |
3082                                             WM8994_VMID_BUF_ENA |
3083                                             WM8994_VMID_RAMP_MASK, 0);
3084                 }
3085                 break;
3086         }
3087         codec->bias_level = level;
3088         return 0;
3089 }
3090
3091 static int wm8994_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3092 {
3093         struct snd_soc_codec *codec = dai->codec;
3094         int ms_reg;
3095         int aif1_reg;
3096         int ms = 0;
3097         int aif1 = 0;
3098
3099         switch (dai->id) {
3100         case 1:
3101                 ms_reg = WM8994_AIF1_MASTER_SLAVE;
3102                 aif1_reg = WM8994_AIF1_CONTROL_1;
3103                 break;
3104         case 2:
3105                 ms_reg = WM8994_AIF2_MASTER_SLAVE;
3106                 aif1_reg = WM8994_AIF2_CONTROL_1;
3107                 break;
3108         default:
3109                 return -EINVAL;
3110         }
3111
3112         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
3113         case SND_SOC_DAIFMT_CBS_CFS:
3114                 break;
3115         case SND_SOC_DAIFMT_CBM_CFM:
3116                 ms = WM8994_AIF1_MSTR;
3117                 break;
3118         default:
3119                 return -EINVAL;
3120         }
3121
3122         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
3123         case SND_SOC_DAIFMT_DSP_B:
3124                 aif1 |= WM8994_AIF1_LRCLK_INV;
3125         case SND_SOC_DAIFMT_DSP_A:
3126                 aif1 |= 0x18;
3127                 break;
3128         case SND_SOC_DAIFMT_I2S:
3129                 aif1 |= 0x10;
3130                 break;
3131         case SND_SOC_DAIFMT_RIGHT_J:
3132                 break;
3133         case SND_SOC_DAIFMT_LEFT_J:
3134                 aif1 |= 0x8;
3135                 break;
3136         default:
3137                 return -EINVAL;
3138         }
3139
3140         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
3141         case SND_SOC_DAIFMT_DSP_A:
3142         case SND_SOC_DAIFMT_DSP_B:
3143                 /* frame inversion not valid for DSP modes */
3144                 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
3145                 case SND_SOC_DAIFMT_NB_NF:
3146                         break;
3147                 case SND_SOC_DAIFMT_IB_NF:
3148                         aif1 |= WM8994_AIF1_BCLK_INV;
3149                         break;
3150                 default:
3151                         return -EINVAL;
3152                 }
3153                 break;
3154
3155         case SND_SOC_DAIFMT_I2S:
3156         case SND_SOC_DAIFMT_RIGHT_J:
3157         case SND_SOC_DAIFMT_LEFT_J:
3158                 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
3159                 case SND_SOC_DAIFMT_NB_NF:
3160                         break;
3161                 case SND_SOC_DAIFMT_IB_IF:
3162                         aif1 |= WM8994_AIF1_BCLK_INV | WM8994_AIF1_LRCLK_INV;
3163                         break;
3164                 case SND_SOC_DAIFMT_IB_NF:
3165                         aif1 |= WM8994_AIF1_BCLK_INV;
3166                         break;
3167                 case SND_SOC_DAIFMT_NB_IF:
3168                         aif1 |= WM8994_AIF1_LRCLK_INV;
3169                         break;
3170                 default:
3171                         return -EINVAL;
3172                 }
3173                 break;
3174         default:
3175                 return -EINVAL;
3176         }
3177
3178         snd_soc_update_bits(codec, aif1_reg,
3179                             WM8994_AIF1_BCLK_INV | WM8994_AIF1_LRCLK_INV |
3180                             WM8994_AIF1_FMT_MASK,
3181                             aif1);
3182         snd_soc_update_bits(codec, ms_reg, WM8994_AIF1_MSTR,
3183                             ms);
3184
3185         return 0;
3186 }
3187
3188 static struct {
3189         int val, rate;
3190 } srs[] = {
3191         { 0,   8000 },
3192         { 1,  11025 },
3193         { 2,  12000 },
3194         { 3,  16000 },
3195         { 4,  22050 },
3196         { 5,  24000 },
3197         { 6,  32000 },
3198         { 7,  44100 },
3199         { 8,  48000 },
3200         { 9,  88200 },
3201         { 10, 96000 },
3202 };
3203
3204 static int fs_ratios[] = {
3205         64, 128, 192, 256, 348, 512, 768, 1024, 1408, 1536
3206 };
3207
3208 static int bclk_divs[] = {
3209         10, 15, 20, 30, 40, 50, 60, 80, 110, 120, 160, 220, 240, 320, 440, 480,
3210         640, 880, 960, 1280, 1760, 1920
3211 };
3212
3213 static int wm8994_hw_params(struct snd_pcm_substream *substream,
3214                             struct snd_pcm_hw_params *params,
3215                             struct snd_soc_dai *dai)
3216 {
3217         struct snd_soc_codec *codec = dai->codec;
3218         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
3219         int aif1_reg;
3220         int bclk_reg;
3221         int lrclk_reg;
3222         int rate_reg;
3223         int aif1 = 0;
3224         int bclk = 0;
3225         int lrclk = 0;
3226         int rate_val = 0;
3227         int id = dai->id - 1;
3228
3229         int i, cur_val, best_val, bclk_rate, best;
3230
3231         switch (dai->id) {
3232         case 1:
3233                 aif1_reg = WM8994_AIF1_CONTROL_1;
3234                 bclk_reg = WM8994_AIF1_BCLK;
3235                 rate_reg = WM8994_AIF1_RATE;
3236                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK ||
3237                     wm8994->lrclk_shared[0])
3238                         lrclk_reg = WM8994_AIF1DAC_LRCLK;
3239                 else
3240                         lrclk_reg = WM8994_AIF1ADC_LRCLK;
3241                 break;
3242         case 2:
3243                 aif1_reg = WM8994_AIF2_CONTROL_1;
3244                 bclk_reg = WM8994_AIF2_BCLK;
3245                 rate_reg = WM8994_AIF2_RATE;
3246                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK ||
3247                     wm8994->lrclk_shared[1])
3248                         lrclk_reg = WM8994_AIF2DAC_LRCLK;
3249                 else
3250                         lrclk_reg = WM8994_AIF2ADC_LRCLK;
3251                 break;
3252         default:
3253                 return -EINVAL;
3254         }
3255
3256         bclk_rate = params_rate(params) * 2;
3257         switch (params_format(params)) {
3258         case SNDRV_PCM_FORMAT_S16_LE:
3259                 bclk_rate *= 16;
3260                 break;
3261         case SNDRV_PCM_FORMAT_S20_3LE:
3262                 bclk_rate *= 20;
3263                 aif1 |= 0x20;
3264                 break;
3265         case SNDRV_PCM_FORMAT_S24_LE:
3266                 bclk_rate *= 24;
3267                 aif1 |= 0x40;
3268                 break;
3269         case SNDRV_PCM_FORMAT_S32_LE:
3270                 bclk_rate *= 32;
3271                 aif1 |= 0x60;
3272                 break;
3273         default:
3274                 return -EINVAL;
3275         }
3276
3277         /* Try to find an appropriate sample rate; look for an exact match. */
3278         for (i = 0; i < ARRAY_SIZE(srs); i++)
3279                 if (srs[i].rate == params_rate(params))
3280                         break;
3281         if (i == ARRAY_SIZE(srs))
3282                 return -EINVAL;
3283         rate_val |= srs[i].val << WM8994_AIF1_SR_SHIFT;
3284
3285         dev_dbg(dai->dev, "Sample rate is %dHz\n", srs[i].rate);
3286         dev_dbg(dai->dev, "AIF%dCLK is %dHz, target BCLK %dHz\n",
3287                 dai->id, wm8994->aifclk[id], bclk_rate);
3288
3289         if (wm8994->aifclk[id] == 0) {
3290                 dev_err(dai->dev, "AIF%dCLK not configured\n", dai->id);
3291                 return -EINVAL;
3292         }
3293
3294         /* AIFCLK/fs ratio; look for a close match in either direction */
3295         best = 0;
3296         best_val = abs((fs_ratios[0] * params_rate(params))
3297                        - wm8994->aifclk[id]);
3298         for (i = 1; i < ARRAY_SIZE(fs_ratios); i++) {
3299                 cur_val = abs((fs_ratios[i] * params_rate(params))
3300                               - wm8994->aifclk[id]);
3301                 if (cur_val >= best_val)
3302                         continue;
3303                 best = i;
3304                 best_val = cur_val;
3305         }
3306         dev_dbg(dai->dev, "Selected AIF%dCLK/fs = %d\n",
3307                 dai->id, fs_ratios[best]);
3308         rate_val |= best;
3309
3310         /* We may not get quite the right frequency if using
3311          * approximate clocks so look for the closest match that is
3312          * higher than the target (we need to ensure that there enough
3313          * BCLKs to clock out the samples).
3314          */
3315         best = 0;
3316         for (i = 0; i < ARRAY_SIZE(bclk_divs); i++) {
3317                 cur_val = (wm8994->aifclk[id] * 10 / bclk_divs[i]) - bclk_rate;
3318                 if (cur_val < 0) /* BCLK table is sorted */
3319                         break;
3320                 best = i;
3321         }
3322         bclk_rate = wm8994->aifclk[id] * 10 / bclk_divs[best];
3323         dev_dbg(dai->dev, "Using BCLK_DIV %d for actual BCLK %dHz\n",
3324                 bclk_divs[best], bclk_rate);
3325         bclk |= best << WM8994_AIF1_BCLK_DIV_SHIFT;
3326
3327         lrclk = bclk_rate / params_rate(params);
3328         dev_dbg(dai->dev, "Using LRCLK rate %d for actual LRCLK %dHz\n",
3329                 lrclk, bclk_rate / lrclk);
3330
3331         snd_soc_update_bits(codec, aif1_reg, WM8994_AIF1_WL_MASK, aif1);
3332         snd_soc_update_bits(codec, bclk_reg, WM8994_AIF1_BCLK_DIV_MASK, bclk);
3333         snd_soc_update_bits(codec, lrclk_reg, WM8994_AIF1DAC_RATE_MASK,
3334                             lrclk);
3335         snd_soc_update_bits(codec, rate_reg, WM8994_AIF1_SR_MASK |
3336                             WM8994_AIF1CLK_RATE_MASK, rate_val);
3337
3338         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3339                 switch (dai->id) {
3340                 case 1:
3341                         wm8994->dac_rates[0] = params_rate(params);
3342                         wm8994_set_retune_mobile(codec, 0);
3343                         wm8994_set_retune_mobile(codec, 1);
3344                         break;
3345                 case 2:
3346                         wm8994->dac_rates[1] = params_rate(params);
3347                         wm8994_set_retune_mobile(codec, 2);
3348                         break;
3349                 }
3350         }
3351
3352         return 0;
3353 }
3354
3355 static int wm8994_aif_mute(struct snd_soc_dai *codec_dai, int mute)
3356 {
3357         struct snd_soc_codec *codec = codec_dai->codec;
3358         int mute_reg;
3359         int reg;
3360
3361         switch (codec_dai->id) {
3362         case 1:
3363                 mute_reg = WM8994_AIF1_DAC1_FILTERS_1;
3364                 break;
3365         case 2:
3366                 mute_reg = WM8994_AIF2_DAC_FILTERS_1;
3367                 break;
3368         default:
3369                 return -EINVAL;
3370         }
3371
3372         if (mute)
3373                 reg = WM8994_AIF1DAC1_MUTE;
3374         else
3375                 reg = 0;
3376
3377         snd_soc_update_bits(codec, mute_reg, WM8994_AIF1DAC1_MUTE, reg);
3378
3379         return 0;
3380 }
3381
3382 static int wm8994_set_tristate(struct snd_soc_dai *codec_dai, int tristate)
3383 {
3384         struct snd_soc_codec *codec = codec_dai->codec;
3385         int reg, val, mask;
3386
3387         switch (codec_dai->id) {
3388         case 1:
3389                 reg = WM8994_AIF1_MASTER_SLAVE;
3390                 mask = WM8994_AIF1_TRI;
3391                 break;
3392         case 2:
3393                 reg = WM8994_AIF2_MASTER_SLAVE;
3394                 mask = WM8994_AIF2_TRI;
3395                 break;
3396         case 3:
3397                 reg = WM8994_POWER_MANAGEMENT_6;
3398                 mask = WM8994_AIF3_TRI;
3399                 break;
3400         default:
3401                 return -EINVAL;
3402         }
3403
3404         if (tristate)
3405                 val = mask;
3406         else
3407                 val = 0;
3408
3409         return snd_soc_update_bits(codec, reg, mask, reg);
3410 }
3411
3412 #define WM8994_RATES SNDRV_PCM_RATE_8000_96000
3413
3414 #define WM8994_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
3415                         SNDRV_PCM_FMTBIT_S24_LE)
3416
3417 static struct snd_soc_dai_ops wm8994_aif1_dai_ops = {
3418         .set_sysclk     = wm8994_set_dai_sysclk,
3419         .set_fmt        = wm8994_set_dai_fmt,
3420         .hw_params      = wm8994_hw_params,
3421         .digital_mute   = wm8994_aif_mute,
3422         .set_pll        = wm8994_set_fll,
3423         .set_tristate   = wm8994_set_tristate,
3424 };
3425
3426 static struct snd_soc_dai_ops wm8994_aif2_dai_ops = {
3427         .set_sysclk     = wm8994_set_dai_sysclk,
3428         .set_fmt        = wm8994_set_dai_fmt,
3429         .hw_params      = wm8994_hw_params,
3430         .digital_mute   = wm8994_aif_mute,
3431         .set_pll        = wm8994_set_fll,
3432         .set_tristate   = wm8994_set_tristate,
3433 };
3434
3435 static struct snd_soc_dai_ops wm8994_aif3_dai_ops = {
3436         .set_tristate   = wm8994_set_tristate,
3437 };
3438
3439 struct snd_soc_dai wm8994_dai[] = {
3440         {
3441                 .name = "WM8994 AIF1",
3442                 .id = 1,
3443                 .playback = {
3444                         .stream_name = "AIF1 Playback",
3445                         .channels_min = 2,
3446                         .channels_max = 2,
3447                         .rates = WM8994_RATES,
3448                         .formats = WM8994_FORMATS,
3449                 },
3450                 .capture = {
3451                         .stream_name = "AIF1 Capture",
3452                         .channels_min = 2,
3453                         .channels_max = 2,
3454                         .rates = WM8994_RATES,
3455                         .formats = WM8994_FORMATS,
3456                  },
3457                 .ops = &wm8994_aif1_dai_ops,
3458         },
3459         {
3460                 .name = "WM8994 AIF2",
3461                 .id = 2,
3462                 .playback = {
3463                         .stream_name = "AIF2 Playback",
3464                         .channels_min = 2,
3465                         .channels_max = 2,
3466                         .rates = WM8994_RATES,
3467                         .formats = WM8994_FORMATS,
3468                 },
3469                 .capture = {
3470                         .stream_name = "AIF2 Capture",
3471                         .channels_min = 2,
3472                         .channels_max = 2,
3473                         .rates = WM8994_RATES,
3474                         .formats = WM8994_FORMATS,
3475                 },
3476                 .ops = &wm8994_aif2_dai_ops,
3477         },
3478         {
3479                 .name = "WM8994 AIF3",
3480                 .id = 3,
3481                 .playback = {
3482                         .stream_name = "AIF3 Playback",
3483                         .channels_min = 2,
3484                         .channels_max = 2,
3485                         .rates = WM8994_RATES,
3486                         .formats = WM8994_FORMATS,
3487                 },
3488                 .capture = {
3489                         .stream_name = "AIF3 Capture",
3490                         .channels_min = 2,
3491                         .channels_max = 2,
3492                         .rates = WM8994_RATES,
3493                         .formats = WM8994_FORMATS,
3494                 },
3495                 .ops = &wm8994_aif3_dai_ops,
3496         }
3497 };
3498 EXPORT_SYMBOL_GPL(wm8994_dai);
3499
3500 #ifdef CONFIG_PM
3501 static int wm8994_suspend(struct platform_device *pdev, pm_message_t state)
3502 {
3503         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
3504         struct snd_soc_codec *codec = socdev->card->codec;
3505         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
3506         int i, ret;
3507
3508         for (i = 0; i < ARRAY_SIZE(wm8994->fll); i++) {
3509                 memcpy(&wm8994->fll_suspend[i], &wm8994->fll[i],
3510                        sizeof(struct fll_config));
3511                 ret = wm8994_set_fll(&codec->dai[0], i + 1, 0, 0, 0);
3512                 if (ret < 0)
3513                         dev_warn(codec->dev, "Failed to stop FLL%d: %d\n",
3514                                  i + 1, ret);
3515         }
3516
3517         wm8994_set_bias_level(codec, SND_SOC_BIAS_OFF);
3518
3519         return 0;
3520 }
3521
3522 static int wm8994_resume(struct platform_device *pdev)
3523 {
3524         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
3525         struct snd_soc_codec *codec = socdev->card->codec;
3526         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
3527         u16 *reg_cache = codec->reg_cache;
3528         int i, ret;
3529
3530         /* Restore the registers */
3531         for (i = 1; i < ARRAY_SIZE(wm8994->reg_cache); i++) {
3532                 switch (i) {
3533                 case WM8994_LDO_1:
3534                 case WM8994_LDO_2:
3535                 case WM8994_SOFTWARE_RESET:
3536                         /* Handled by other MFD drivers */
3537                         continue;
3538                 default:
3539                         break;
3540                 }
3541
3542                 if (!access_masks[i].writable)
3543                         continue;
3544
3545                 wm8994_reg_write(codec->control_data, i, reg_cache[i]);
3546         }
3547
3548         wm8994_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
3549
3550         for (i = 0; i < ARRAY_SIZE(wm8994->fll); i++) {
3551                 ret = wm8994_set_fll(&codec->dai[0], i + 1,
3552                                      wm8994->fll_suspend[i].src,
3553                                      wm8994->fll_suspend[i].in,
3554                                      wm8994->fll_suspend[i].out);
3555                 if (ret < 0)
3556                         dev_warn(codec->dev, "Failed to restore FLL%d: %d\n",
3557                                  i + 1, ret);
3558         }
3559
3560         return 0;
3561 }
3562 #else
3563 #define wm8994_suspend NULL
3564 #define wm8994_resume NULL
3565 #endif
3566
3567 static void wm8994_handle_retune_mobile_pdata(struct wm8994_priv *wm8994)
3568 {
3569         struct snd_soc_codec *codec = &wm8994->codec;
3570         struct wm8994_pdata *pdata = wm8994->pdata;
3571         struct snd_kcontrol_new controls[] = {
3572                 SOC_ENUM_EXT("AIF1.1 EQ Mode",
3573                              wm8994->retune_mobile_enum,
3574                              wm8994_get_retune_mobile_enum,
3575                              wm8994_put_retune_mobile_enum),
3576                 SOC_ENUM_EXT("AIF1.2 EQ Mode",
3577                              wm8994->retune_mobile_enum,
3578                              wm8994_get_retune_mobile_enum,
3579                              wm8994_put_retune_mobile_enum),
3580                 SOC_ENUM_EXT("AIF2 EQ Mode",
3581                              wm8994->retune_mobile_enum,
3582                              wm8994_get_retune_mobile_enum,
3583                              wm8994_put_retune_mobile_enum),
3584         };
3585         int ret, i, j;
3586         const char **t;
3587
3588         /* We need an array of texts for the enum API but the number
3589          * of texts is likely to be less than the number of
3590          * configurations due to the sample rate dependency of the
3591          * configurations. */
3592         wm8994->num_retune_mobile_texts = 0;
3593         wm8994->retune_mobile_texts = NULL;
3594         for (i = 0; i < pdata->num_retune_mobile_cfgs; i++) {
3595                 for (j = 0; j < wm8994->num_retune_mobile_texts; j++) {
3596                         if (strcmp(pdata->retune_mobile_cfgs[i].name,
3597                                    wm8994->retune_mobile_texts[j]) == 0)
3598                                 break;
3599                 }
3600
3601                 if (j != wm8994->num_retune_mobile_texts)
3602                         continue;
3603
3604                 /* Expand the array... */
3605                 t = krealloc(wm8994->retune_mobile_texts,
3606                              sizeof(char *) * 
3607                              (wm8994->num_retune_mobile_texts + 1),
3608                              GFP_KERNEL);
3609                 if (t == NULL)
3610                         continue;
3611
3612                 /* ...store the new entry... */
3613                 t[wm8994->num_retune_mobile_texts] = 
3614                         pdata->retune_mobile_cfgs[i].name;
3615
3616                 /* ...and remember the new version. */
3617                 wm8994->num_retune_mobile_texts++;
3618                 wm8994->retune_mobile_texts = t;
3619         }
3620
3621         dev_dbg(codec->dev, "Allocated %d unique ReTune Mobile names\n",
3622                 wm8994->num_retune_mobile_texts);
3623
3624         wm8994->retune_mobile_enum.max = wm8994->num_retune_mobile_texts;
3625         wm8994->retune_mobile_enum.texts = wm8994->retune_mobile_texts;
3626
3627         ret = snd_soc_add_controls(&wm8994->codec, controls,
3628                                    ARRAY_SIZE(controls));
3629         if (ret != 0)
3630                 dev_err(wm8994->codec.dev,
3631                         "Failed to add ReTune Mobile controls: %d\n", ret);
3632 }
3633
3634 static void wm8994_handle_pdata(struct wm8994_priv *wm8994)
3635 {
3636         struct snd_soc_codec *codec = &wm8994->codec;
3637         struct wm8994_pdata *pdata = wm8994->pdata;
3638         int ret, i;
3639
3640         if (!pdata)
3641                 return;
3642
3643         wm_hubs_handle_analogue_pdata(codec, pdata->lineout1_diff,
3644                                       pdata->lineout2_diff,
3645                                       pdata->lineout1fb,
3646                                       pdata->lineout2fb,
3647                                       pdata->jd_scthr,
3648                                       pdata->jd_thr,
3649                                       pdata->micbias1_lvl,
3650                                       pdata->micbias2_lvl);
3651
3652         dev_dbg(codec->dev, "%d DRC configurations\n", pdata->num_drc_cfgs);
3653
3654         if (pdata->num_drc_cfgs) {
3655                 struct snd_kcontrol_new controls[] = {
3656                         SOC_ENUM_EXT("AIF1DRC1 Mode", wm8994->drc_enum,
3657                                      wm8994_get_drc_enum, wm8994_put_drc_enum),
3658                         SOC_ENUM_EXT("AIF1DRC2 Mode", wm8994->drc_enum,
3659                                      wm8994_get_drc_enum, wm8994_put_drc_enum),
3660                         SOC_ENUM_EXT("AIF2DRC Mode", wm8994->drc_enum,
3661                                      wm8994_get_drc_enum, wm8994_put_drc_enum),
3662                 };
3663
3664                 /* We need an array of texts for the enum API */
3665                 wm8994->drc_texts = kmalloc(sizeof(char *)
3666                                             * pdata->num_drc_cfgs, GFP_KERNEL);
3667                 if (!wm8994->drc_texts) {
3668                         dev_err(wm8994->codec.dev,
3669                                 "Failed to allocate %d DRC config texts\n",
3670                                 pdata->num_drc_cfgs);
3671                         return;
3672                 }
3673
3674                 for (i = 0; i < pdata->num_drc_cfgs; i++)
3675                         wm8994->drc_texts[i] = pdata->drc_cfgs[i].name;
3676
3677                 wm8994->drc_enum.max = pdata->num_drc_cfgs;
3678                 wm8994->drc_enum.texts = wm8994->drc_texts;
3679
3680                 ret = snd_soc_add_controls(&wm8994->codec, controls,
3681                                            ARRAY_SIZE(controls));
3682                 if (ret != 0)
3683                         dev_err(wm8994->codec.dev,
3684                                 "Failed to add DRC mode controls: %d\n", ret);
3685
3686                 for (i = 0; i < WM8994_NUM_DRC; i++)
3687                         wm8994_set_drc(codec, i);
3688         }
3689
3690         dev_dbg(codec->dev, "%d ReTune Mobile configurations\n",
3691                 pdata->num_retune_mobile_cfgs);
3692
3693         if (pdata->num_retune_mobile_cfgs)
3694                 wm8994_handle_retune_mobile_pdata(wm8994);
3695         else
3696                 snd_soc_add_controls(&wm8994->codec, wm8994_eq_controls,
3697                                      ARRAY_SIZE(wm8994_eq_controls));
3698 }
3699
3700 static int wm8994_probe(struct platform_device *pdev)
3701 {
3702         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
3703         struct snd_soc_codec *codec;
3704         int ret = 0;
3705
3706         if (wm8994_codec == NULL) {
3707                 dev_err(&pdev->dev, "Codec device not registered\n");
3708                 return -ENODEV;
3709         }
3710
3711         socdev->card->codec = wm8994_codec;
3712         codec = wm8994_codec;
3713
3714         /* register pcms */
3715         ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
3716         if (ret < 0) {
3717                 dev_err(codec->dev, "failed to create pcms: %d\n", ret);
3718                 return ret;
3719         }
3720
3721         wm8994_handle_pdata(snd_soc_codec_get_drvdata(codec));
3722
3723         wm_hubs_add_analogue_controls(codec);
3724         snd_soc_add_controls(codec, wm8994_snd_controls,
3725                              ARRAY_SIZE(wm8994_snd_controls));
3726         snd_soc_dapm_new_controls(codec, wm8994_dapm_widgets,
3727                                   ARRAY_SIZE(wm8994_dapm_widgets));
3728         wm_hubs_add_analogue_routes(codec, 0, 0);
3729         snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
3730
3731         return 0;
3732 }
3733
3734 static int wm8994_remove(struct platform_device *pdev)
3735 {
3736         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
3737
3738         snd_soc_free_pcms(socdev);
3739         snd_soc_dapm_free(socdev);
3740
3741         return 0;
3742 }
3743
3744 struct snd_soc_codec_device soc_codec_dev_wm8994 = {
3745         .probe =        wm8994_probe,
3746         .remove =       wm8994_remove,
3747         .suspend =      wm8994_suspend,
3748         .resume =       wm8994_resume,
3749 };
3750 EXPORT_SYMBOL_GPL(soc_codec_dev_wm8994);
3751
3752 /**
3753  * wm8994_mic_detect - Enable microphone detection via the WM8994 IRQ
3754  *
3755  * @codec:   WM8994 codec
3756  * @jack:    jack to report detection events on
3757  * @micbias: microphone bias to detect on
3758  * @det:     value to report for presence detection
3759  * @shrt:    value to report for short detection
3760  *
3761  * Enable microphone detection via IRQ on the WM8994.  If GPIOs are
3762  * being used to bring out signals to the processor then only platform
3763  * data configuration is needed for WM8903 and processor GPIOs should
3764  * be configured using snd_soc_jack_add_gpios() instead.
3765  *
3766  * Configuration of detection levels is available via the micbias1_lvl
3767  * and micbias2_lvl platform data members.
3768  */
3769 int wm8994_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack,
3770                       int micbias, int det, int shrt)
3771 {
3772         struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
3773         struct wm8994_micdet *micdet;
3774         int reg;
3775
3776         switch (micbias) {
3777         case 1:
3778                 micdet = &wm8994->micdet[0];
3779                 break;
3780         case 2:
3781                 micdet = &wm8994->micdet[1];
3782                 break;
3783         default:
3784                 return -EINVAL;
3785         }       
3786
3787         dev_dbg(codec->dev, "Configuring microphone detection on %d: %x %x\n",
3788                 micbias, det, shrt);
3789
3790         /* Store the configuration */
3791         micdet->jack = jack;
3792         micdet->det = det;
3793         micdet->shrt = shrt;
3794
3795         /* If either of the jacks is set up then enable detection */
3796         if (wm8994->micdet[0].jack || wm8994->micdet[1].jack)
3797                 reg = WM8994_MICD_ENA;
3798         else 
3799                 reg = 0;
3800
3801         snd_soc_update_bits(codec, WM8994_MICBIAS, WM8994_MICD_ENA, reg);
3802
3803         return 0;
3804 }
3805 EXPORT_SYMBOL_GPL(wm8994_mic_detect);
3806
3807 static irqreturn_t wm8994_mic_irq(int irq, void *data)
3808 {
3809         struct wm8994_priv *priv = data;
3810         struct snd_soc_codec *codec = &priv->codec;
3811         int reg;
3812         int report;
3813
3814         reg = snd_soc_read(codec, WM8994_INTERRUPT_RAW_STATUS_2);
3815         if (reg < 0) {
3816                 dev_err(codec->dev, "Failed to read microphone status: %d\n",
3817                         reg);
3818                 return IRQ_HANDLED;
3819         }
3820
3821         dev_dbg(codec->dev, "Microphone status: %x\n", reg);
3822
3823         report = 0;
3824         if (reg & WM8994_MIC1_DET_STS)
3825                 report |= priv->micdet[0].det;
3826         if (reg & WM8994_MIC1_SHRT_STS)
3827                 report |= priv->micdet[0].shrt;
3828         snd_soc_jack_report(priv->micdet[0].jack, report,
3829                             priv->micdet[0].det | priv->micdet[0].shrt);
3830
3831         report = 0;
3832         if (reg & WM8994_MIC2_DET_STS)
3833                 report |= priv->micdet[1].det;
3834         if (reg & WM8994_MIC2_SHRT_STS)
3835                 report |= priv->micdet[1].shrt;
3836         snd_soc_jack_report(priv->micdet[1].jack, report,
3837                             priv->micdet[1].det | priv->micdet[1].shrt);
3838
3839         return IRQ_HANDLED;
3840 }
3841
3842 static int wm8994_codec_probe(struct platform_device *pdev)
3843 {
3844         int ret;
3845         struct wm8994_priv *wm8994;
3846         struct snd_soc_codec *codec;
3847         int i;
3848         u16 rev;
3849
3850         if (wm8994_codec) {
3851                 dev_err(&pdev->dev, "Another WM8994 is registered\n");
3852                 return -EINVAL;
3853         }
3854
3855         wm8994 = kzalloc(sizeof(struct wm8994_priv), GFP_KERNEL);
3856         if (!wm8994) {
3857                 dev_err(&pdev->dev, "Failed to allocate private data\n");
3858                 return -ENOMEM;
3859         }
3860
3861         codec = &wm8994->codec;
3862
3863         mutex_init(&codec->mutex);
3864         INIT_LIST_HEAD(&codec->dapm_widgets);
3865         INIT_LIST_HEAD(&codec->dapm_paths);
3866
3867         snd_soc_codec_set_drvdata(codec, wm8994);
3868         codec->control_data = dev_get_drvdata(pdev->dev.parent);
3869         codec->name = "WM8994";
3870         codec->owner = THIS_MODULE;
3871         codec->read = wm8994_read;
3872         codec->write = wm8994_write;
3873         codec->readable_register = wm8994_readable;
3874         codec->bias_level = SND_SOC_BIAS_OFF;
3875         codec->set_bias_level = wm8994_set_bias_level;
3876         codec->dai = &wm8994_dai[0];
3877         codec->num_dai = 3;
3878         codec->reg_cache_size = WM8994_MAX_REGISTER;
3879         codec->reg_cache = &wm8994->reg_cache;
3880         codec->dev = &pdev->dev;
3881
3882         wm8994->pdata = pdev->dev.parent->platform_data;
3883
3884         /* Fill the cache with physical values we inherited; don't reset */
3885         ret = wm8994_bulk_read(codec->control_data, 0,
3886                                ARRAY_SIZE(wm8994->reg_cache) - 1,
3887                                codec->reg_cache);
3888         if (ret < 0) {
3889                 dev_err(codec->dev, "Failed to fill register cache: %d\n",
3890                         ret);
3891                 goto err;
3892         }
3893
3894         /* Clear the cached values for unreadable/volatile registers to
3895          * avoid potential confusion.
3896          */
3897         for (i = 0; i < ARRAY_SIZE(wm8994->reg_cache); i++)
3898                 if (wm8994_volatile(i) || !wm8994_readable(i))
3899                         wm8994->reg_cache[i] = 0;
3900
3901         /* Set revision-specific configuration */
3902         rev = snd_soc_read(codec, WM8994_CHIP_REVISION);
3903         switch (rev) {
3904         case 2:
3905         case 3:
3906                 wm8994->hubs.dcs_codes = -5;
3907                 wm8994->hubs.hp_startup_mode = 1;
3908                 wm8994->hubs.dcs_readback_mode = 1;
3909                 break;
3910         default:
3911                 wm8994->hubs.dcs_readback_mode = 1;
3912                 break;
3913         }
3914
3915         ret = wm8994_request_irq(codec->control_data, WM8994_IRQ_MIC1_DET,
3916                                  wm8994_mic_irq, "Mic 1 detect", wm8994);
3917         if (ret != 0)
3918                 dev_warn(&pdev->dev,
3919                          "Failed to request Mic1 detect IRQ: %d\n", ret);
3920
3921         ret = wm8994_request_irq(codec->control_data, WM8994_IRQ_MIC1_SHRT,
3922                                  wm8994_mic_irq, "Mic 1 short", wm8994);
3923         if (ret != 0)
3924                 dev_warn(&pdev->dev,
3925                          "Failed to request Mic1 short IRQ: %d\n", ret);
3926
3927         ret = wm8994_request_irq(codec->control_data, WM8994_IRQ_MIC2_DET,
3928                                  wm8994_mic_irq, "Mic 2 detect", wm8994);
3929         if (ret != 0)
3930                 dev_warn(&pdev->dev,
3931                          "Failed to request Mic2 detect IRQ: %d\n", ret);
3932
3933         ret = wm8994_request_irq(codec->control_data, WM8994_IRQ_MIC2_SHRT,
3934                                  wm8994_mic_irq, "Mic 2 short", wm8994);
3935         if (ret != 0)
3936                 dev_warn(&pdev->dev,
3937                          "Failed to request Mic2 short IRQ: %d\n", ret);
3938
3939         /* Remember if AIFnLRCLK is configured as a GPIO.  This should be
3940          * configured on init - if a system wants to do this dynamically
3941          * at runtime we can deal with that then.
3942          */
3943         ret = wm8994_reg_read(codec->control_data, WM8994_GPIO_1);
3944         if (ret < 0) {
3945                 dev_err(codec->dev, "Failed to read GPIO1 state: %d\n", ret);
3946                 goto err_irq;
3947         }
3948         if ((ret & WM8994_GPN_FN_MASK) != WM8994_GP_FN_PIN_SPECIFIC) {
3949                 wm8994->lrclk_shared[0] = 1;
3950                 wm8994_dai[0].symmetric_rates = 1;
3951         } else {
3952                 wm8994->lrclk_shared[0] = 0;
3953         }
3954
3955         ret = wm8994_reg_read(codec->control_data, WM8994_GPIO_6);
3956         if (ret < 0) {
3957                 dev_err(codec->dev, "Failed to read GPIO6 state: %d\n", ret);
3958                 goto err_irq;
3959         }
3960         if ((ret & WM8994_GPN_FN_MASK) != WM8994_GP_FN_PIN_SPECIFIC) {
3961                 wm8994->lrclk_shared[1] = 1;
3962                 wm8994_dai[1].symmetric_rates = 1;
3963         } else {
3964                 wm8994->lrclk_shared[1] = 0;
3965         }
3966
3967         for (i = 0; i < ARRAY_SIZE(wm8994_dai); i++)
3968                 wm8994_dai[i].dev = codec->dev;
3969
3970         wm8994_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
3971
3972         wm8994_codec = codec;
3973
3974         /* Latch volume updates (right only; we always do left then right). */
3975         snd_soc_update_bits(codec, WM8994_AIF1_DAC1_RIGHT_VOLUME,
3976                             WM8994_AIF1DAC1_VU, WM8994_AIF1DAC1_VU);
3977         snd_soc_update_bits(codec, WM8994_AIF1_DAC2_RIGHT_VOLUME,
3978                             WM8994_AIF1DAC2_VU, WM8994_AIF1DAC2_VU);
3979         snd_soc_update_bits(codec, WM8994_AIF2_DAC_RIGHT_VOLUME,
3980                             WM8994_AIF2DAC_VU, WM8994_AIF2DAC_VU);
3981         snd_soc_update_bits(codec, WM8994_AIF1_ADC1_RIGHT_VOLUME,
3982                             WM8994_AIF1ADC1_VU, WM8994_AIF1ADC1_VU);
3983         snd_soc_update_bits(codec, WM8994_AIF1_ADC2_RIGHT_VOLUME,
3984                             WM8994_AIF1ADC2_VU, WM8994_AIF1ADC2_VU);
3985         snd_soc_update_bits(codec, WM8994_AIF2_ADC_RIGHT_VOLUME,
3986                             WM8994_AIF2ADC_VU, WM8994_AIF1ADC2_VU);
3987         snd_soc_update_bits(codec, WM8994_DAC1_RIGHT_VOLUME,
3988                             WM8994_DAC1_VU, WM8994_DAC1_VU);
3989         snd_soc_update_bits(codec, WM8994_DAC2_RIGHT_VOLUME,
3990                             WM8994_DAC2_VU, WM8994_DAC2_VU);
3991
3992         /* Set the low bit of the 3D stereo depth so TLV matches */
3993         snd_soc_update_bits(codec, WM8994_AIF1_DAC1_FILTERS_2,
3994                             1 << WM8994_AIF1DAC1_3D_GAIN_SHIFT,
3995                             1 << WM8994_AIF1DAC1_3D_GAIN_SHIFT);
3996         snd_soc_update_bits(codec, WM8994_AIF1_DAC2_FILTERS_2,
3997                             1 << WM8994_AIF1DAC2_3D_GAIN_SHIFT,
3998                             1 << WM8994_AIF1DAC2_3D_GAIN_SHIFT);
3999         snd_soc_update_bits(codec, WM8994_AIF2_DAC_FILTERS_2,
4000                             1 << WM8994_AIF2DAC_3D_GAIN_SHIFT,
4001                             1 << WM8994_AIF2DAC_3D_GAIN_SHIFT);
4002
4003         wm8994_update_class_w(codec);
4004
4005         ret = snd_soc_register_codec(codec);
4006         if (ret != 0) {
4007                 dev_err(codec->dev, "Failed to register codec: %d\n", ret);
4008                 goto err_irq;
4009         }
4010
4011         ret = snd_soc_register_dais(wm8994_dai, ARRAY_SIZE(wm8994_dai));
4012         if (ret != 0) {
4013                 dev_err(codec->dev, "Failed to register DAIs: %d\n", ret);
4014                 goto err_codec;
4015         }
4016
4017         platform_set_drvdata(pdev, wm8994);
4018
4019         return 0;
4020
4021 err_codec:
4022         snd_soc_unregister_codec(codec);
4023 err_irq:
4024         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC2_SHRT, wm8994);
4025         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC2_DET, wm8994);
4026         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC1_SHRT, wm8994);
4027         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC1_DET, wm8994);
4028 err:
4029         kfree(wm8994);
4030         return ret;
4031 }
4032
4033 static int __devexit wm8994_codec_remove(struct platform_device *pdev)
4034 {
4035         struct wm8994_priv *wm8994 = platform_get_drvdata(pdev);
4036         struct snd_soc_codec *codec = &wm8994->codec;
4037
4038         wm8994_set_bias_level(codec, SND_SOC_BIAS_OFF);
4039         snd_soc_unregister_dais(wm8994_dai, ARRAY_SIZE(wm8994_dai));
4040         snd_soc_unregister_codec(&wm8994->codec);
4041         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC2_SHRT, wm8994);
4042         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC2_DET, wm8994);
4043         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC1_SHRT, wm8994);
4044         wm8994_free_irq(codec->control_data, WM8994_IRQ_MIC1_DET, wm8994);
4045         kfree(wm8994);
4046         wm8994_codec = NULL;
4047
4048         return 0;
4049 }
4050
4051 static struct platform_driver wm8994_codec_driver = {
4052         .driver = {
4053                    .name = "wm8994-codec",
4054                    .owner = THIS_MODULE,
4055                    },
4056         .probe = wm8994_codec_probe,
4057         .remove = __devexit_p(wm8994_codec_remove),
4058 };
4059
4060 static __init int wm8994_init(void)
4061 {
4062         return platform_driver_register(&wm8994_codec_driver);
4063 }
4064 module_init(wm8994_init);
4065
4066 static __exit void wm8994_exit(void)
4067 {
4068         platform_driver_unregister(&wm8994_codec_driver);
4069 }
4070 module_exit(wm8994_exit);
4071
4072
4073 MODULE_DESCRIPTION("ASoC WM8994 driver");
4074 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
4075 MODULE_LICENSE("GPL");
4076 MODULE_ALIAS("platform:wm8994-codec");