ASoC: wm8962: Replace direct snd_soc_codec dapm field access
[deliverable/linux.git] / sound / soc / codecs / wm8962.c
CommitLineData
9a76f1ff
MB
1/*
2 * wm8962.c -- WM8962 ALSA SoC Audio driver
3 *
656baaeb 4 * Copyright 2010-2 Wolfson Microelectronics plc
9a76f1ff
MB
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>
d7821953 17#include <linux/clk.h>
9a76f1ff
MB
18#include <linux/delay.h>
19#include <linux/pm.h>
20#include <linux/gcd.h>
3367b8d4 21#include <linux/gpio.h>
9a76f1ff
MB
22#include <linux/i2c.h>
23#include <linux/input.h>
d23031a4 24#include <linux/pm_runtime.h>
7b16f560 25#include <linux/regmap.h>
9a76f1ff
MB
26#include <linux/regulator/consumer.h>
27#include <linux/slab.h>
28#include <linux/workqueue.h>
3e4199ef 29#include <linux/mutex.h>
9a76f1ff 30#include <sound/core.h>
7711308a 31#include <sound/jack.h>
9a76f1ff
MB
32#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/soc.h>
9a76f1ff
MB
35#include <sound/initval.h>
36#include <sound/tlv.h>
37#include <sound/wm8962.h>
2bbb5d66 38#include <trace/events/asoc.h>
9a76f1ff
MB
39
40#include "wm8962.h"
41
9a76f1ff
MB
42#define WM8962_NUM_SUPPLIES 8
43static const char *wm8962_supply_names[WM8962_NUM_SUPPLIES] = {
44 "DCVDD",
45 "DBVDD",
46 "AVDD",
47 "CPVDD",
48 "MICVDD",
49 "PLLVDD",
50 "SPKVDD1",
51 "SPKVDD2",
52};
53
54/* codec private data */
55struct wm8962_priv {
e75a52c6 56 struct wm8962_pdata pdata;
7b16f560 57 struct regmap *regmap;
54d8d0ae
MB
58 struct snd_soc_codec *codec;
59
9a76f1ff
MB
60 int sysclk;
61 int sysclk_rate;
62
63 int bclk; /* Desired BCLK */
64 int lrclk;
65
3b8a6d80 66 struct completion fll_lock;
9a76f1ff
MB
67 int fll_src;
68 int fll_fref;
69 int fll_fout;
70
3e4199ef 71 struct mutex dsp2_ena_lock;
6f88a4e5
MB
72 u16 dsp2_ena;
73
7711308a
MB
74 struct delayed_work mic_work;
75 struct snd_soc_jack *jack;
76
9a76f1ff
MB
77 struct regulator_bulk_data supplies[WM8962_NUM_SUPPLIES];
78 struct notifier_block disable_nb[WM8962_NUM_SUPPLIES];
79
9a76f1ff
MB
80 struct input_dev *beep;
81 struct work_struct beep_work;
82 int beep_rate;
3367b8d4
MB
83
84#ifdef CONFIG_GPIOLIB
85 struct gpio_chip gpio_chip;
86#endif
c7356da9
MB
87
88 int irq;
9a76f1ff
MB
89};
90
91/* We can't use the same notifier block for more than one supply and
92 * there's no way I can see to get from a callback to the caller
93 * except container_of().
94 */
95#define WM8962_REGULATOR_EVENT(n) \
96static int wm8962_regulator_event_##n(struct notifier_block *nb, \
97 unsigned long event, void *data) \
98{ \
99 struct wm8962_priv *wm8962 = container_of(nb, struct wm8962_priv, \
100 disable_nb[n]); \
101 if (event & REGULATOR_EVENT_DISABLE) { \
5539a102 102 regcache_mark_dirty(wm8962->regmap); \
9a76f1ff
MB
103 } \
104 return 0; \
105}
106
107WM8962_REGULATOR_EVENT(0)
108WM8962_REGULATOR_EVENT(1)
109WM8962_REGULATOR_EVENT(2)
110WM8962_REGULATOR_EVENT(3)
111WM8962_REGULATOR_EVENT(4)
112WM8962_REGULATOR_EVENT(5)
113WM8962_REGULATOR_EVENT(6)
114WM8962_REGULATOR_EVENT(7)
115
7b16f560
MB
116static struct reg_default wm8962_reg[] = {
117 { 0, 0x009F }, /* R0 - Left Input volume */
118 { 1, 0x049F }, /* R1 - Right Input volume */
119 { 2, 0x0000 }, /* R2 - HPOUTL volume */
120 { 3, 0x0000 }, /* R3 - HPOUTR volume */
ba106ce3 121
7b16f560
MB
122 { 5, 0x0018 }, /* R5 - ADC & DAC Control 1 */
123 { 6, 0x2008 }, /* R6 - ADC & DAC Control 2 */
124 { 7, 0x000A }, /* R7 - Audio Interface 0 */
ba106ce3 125
7b16f560
MB
126 { 9, 0x0300 }, /* R9 - Audio Interface 1 */
127 { 10, 0x00C0 }, /* R10 - Left DAC volume */
128 { 11, 0x00C0 }, /* R11 - Right DAC volume */
129
130 { 14, 0x0040 }, /* R14 - Audio Interface 2 */
131 { 15, 0x6243 }, /* R15 - Software Reset */
132
133 { 17, 0x007B }, /* R17 - ALC1 */
ba106ce3 134
7b16f560
MB
135 { 19, 0x1C32 }, /* R19 - ALC3 */
136 { 20, 0x3200 }, /* R20 - Noise Gate */
137 { 21, 0x00C0 }, /* R21 - Left ADC volume */
138 { 22, 0x00C0 }, /* R22 - Right ADC volume */
139 { 23, 0x0160 }, /* R23 - Additional control(1) */
140 { 24, 0x0000 }, /* R24 - Additional control(2) */
141 { 25, 0x0000 }, /* R25 - Pwr Mgmt (1) */
142 { 26, 0x0000 }, /* R26 - Pwr Mgmt (2) */
143 { 27, 0x0010 }, /* R27 - Additional Control (3) */
144 { 28, 0x0000 }, /* R28 - Anti-pop */
145
146 { 30, 0x005E }, /* R30 - Clocking 3 */
147 { 31, 0x0000 }, /* R31 - Input mixer control (1) */
148 { 32, 0x0145 }, /* R32 - Left input mixer volume */
149 { 33, 0x0145 }, /* R33 - Right input mixer volume */
150 { 34, 0x0009 }, /* R34 - Input mixer control (2) */
151 { 35, 0x0003 }, /* R35 - Input bias control */
152 { 37, 0x0008 }, /* R37 - Left input PGA control */
153 { 38, 0x0008 }, /* R38 - Right input PGA control */
154
155 { 40, 0x0000 }, /* R40 - SPKOUTL volume */
156 { 41, 0x0000 }, /* R41 - SPKOUTR volume */
157
44330ab5 158 { 49, 0x0010 }, /* R49 - Class D Control 1 */
7b16f560
MB
159 { 51, 0x0003 }, /* R51 - Class D Control 2 */
160
161 { 56, 0x0506 }, /* R56 - Clocking 4 */
162 { 57, 0x0000 }, /* R57 - DAC DSP Mixing (1) */
163 { 58, 0x0000 }, /* R58 - DAC DSP Mixing (2) */
164
165 { 60, 0x0300 }, /* R60 - DC Servo 0 */
166 { 61, 0x0300 }, /* R61 - DC Servo 1 */
167
168 { 64, 0x0810 }, /* R64 - DC Servo 4 */
169
7b16f560
MB
170 { 68, 0x001B }, /* R68 - Analogue PGA Bias */
171 { 69, 0x0000 }, /* R69 - Analogue HP 0 */
172
173 { 71, 0x01FB }, /* R71 - Analogue HP 2 */
174 { 72, 0x0000 }, /* R72 - Charge Pump 1 */
175
176 { 82, 0x0004 }, /* R82 - Charge Pump B */
177
178 { 87, 0x0000 }, /* R87 - Write Sequencer Control 1 */
179
180 { 90, 0x0000 }, /* R90 - Write Sequencer Control 2 */
181
182 { 93, 0x0000 }, /* R93 - Write Sequencer Control 3 */
183 { 94, 0x0000 }, /* R94 - Control Interface */
184
185 { 99, 0x0000 }, /* R99 - Mixer Enables */
186 { 100, 0x0000 }, /* R100 - Headphone Mixer (1) */
187 { 101, 0x0000 }, /* R101 - Headphone Mixer (2) */
188 { 102, 0x013F }, /* R102 - Headphone Mixer (3) */
189 { 103, 0x013F }, /* R103 - Headphone Mixer (4) */
190
191 { 105, 0x0000 }, /* R105 - Speaker Mixer (1) */
192 { 106, 0x0000 }, /* R106 - Speaker Mixer (2) */
193 { 107, 0x013F }, /* R107 - Speaker Mixer (3) */
194 { 108, 0x013F }, /* R108 - Speaker Mixer (4) */
195 { 109, 0x0003 }, /* R109 - Speaker Mixer (5) */
196 { 110, 0x0002 }, /* R110 - Beep Generator (1) */
197
198 { 115, 0x0006 }, /* R115 - Oscillator Trim (3) */
199 { 116, 0x0026 }, /* R116 - Oscillator Trim (4) */
200
201 { 119, 0x0000 }, /* R119 - Oscillator Trim (7) */
202
203 { 124, 0x0011 }, /* R124 - Analogue Clocking1 */
204 { 125, 0x004B }, /* R125 - Analogue Clocking2 */
205 { 126, 0x000D }, /* R126 - Analogue Clocking3 */
206 { 127, 0x0000 }, /* R127 - PLL Software Reset */
207
7b16f560
MB
208 { 131, 0x0000 }, /* R131 - PLL 4 */
209
210 { 136, 0x0067 }, /* R136 - PLL 9 */
211 { 137, 0x001C }, /* R137 - PLL 10 */
212 { 138, 0x0071 }, /* R138 - PLL 11 */
213 { 139, 0x00C7 }, /* R139 - PLL 12 */
214 { 140, 0x0067 }, /* R140 - PLL 13 */
215 { 141, 0x0048 }, /* R141 - PLL 14 */
216 { 142, 0x0022 }, /* R142 - PLL 15 */
217 { 143, 0x0097 }, /* R143 - PLL 16 */
218
219 { 155, 0x000C }, /* R155 - FLL Control (1) */
220 { 156, 0x0039 }, /* R156 - FLL Control (2) */
221 { 157, 0x0180 }, /* R157 - FLL Control (3) */
222
223 { 159, 0x0032 }, /* R159 - FLL Control (5) */
224 { 160, 0x0018 }, /* R160 - FLL Control (6) */
225 { 161, 0x007D }, /* R161 - FLL Control (7) */
226 { 162, 0x0008 }, /* R162 - FLL Control (8) */
227
228 { 252, 0x0005 }, /* R252 - General test 1 */
229
230 { 256, 0x0000 }, /* R256 - DF1 */
231 { 257, 0x0000 }, /* R257 - DF2 */
232 { 258, 0x0000 }, /* R258 - DF3 */
233 { 259, 0x0000 }, /* R259 - DF4 */
234 { 260, 0x0000 }, /* R260 - DF5 */
235 { 261, 0x0000 }, /* R261 - DF6 */
236 { 262, 0x0000 }, /* R262 - DF7 */
237
238 { 264, 0x0000 }, /* R264 - LHPF1 */
239 { 265, 0x0000 }, /* R265 - LHPF2 */
240
241 { 268, 0x0000 }, /* R268 - THREED1 */
242 { 269, 0x0000 }, /* R269 - THREED2 */
243 { 270, 0x0000 }, /* R270 - THREED3 */
244 { 271, 0x0000 }, /* R271 - THREED4 */
245
246 { 276, 0x000C }, /* R276 - DRC 1 */
247 { 277, 0x0925 }, /* R277 - DRC 2 */
248 { 278, 0x0000 }, /* R278 - DRC 3 */
249 { 279, 0x0000 }, /* R279 - DRC 4 */
250 { 280, 0x0000 }, /* R280 - DRC 5 */
251
252 { 285, 0x0000 }, /* R285 - Tloopback */
253
254 { 335, 0x0004 }, /* R335 - EQ1 */
255 { 336, 0x6318 }, /* R336 - EQ2 */
256 { 337, 0x6300 }, /* R337 - EQ3 */
257 { 338, 0x0FCA }, /* R338 - EQ4 */
258 { 339, 0x0400 }, /* R339 - EQ5 */
259 { 340, 0x00D8 }, /* R340 - EQ6 */
260 { 341, 0x1EB5 }, /* R341 - EQ7 */
261 { 342, 0xF145 }, /* R342 - EQ8 */
262 { 343, 0x0B75 }, /* R343 - EQ9 */
263 { 344, 0x01C5 }, /* R344 - EQ10 */
264 { 345, 0x1C58 }, /* R345 - EQ11 */
265 { 346, 0xF373 }, /* R346 - EQ12 */
266 { 347, 0x0A54 }, /* R347 - EQ13 */
267 { 348, 0x0558 }, /* R348 - EQ14 */
268 { 349, 0x168E }, /* R349 - EQ15 */
269 { 350, 0xF829 }, /* R350 - EQ16 */
270 { 351, 0x07AD }, /* R351 - EQ17 */
271 { 352, 0x1103 }, /* R352 - EQ18 */
272 { 353, 0x0564 }, /* R353 - EQ19 */
273 { 354, 0x0559 }, /* R354 - EQ20 */
274 { 355, 0x4000 }, /* R355 - EQ21 */
275 { 356, 0x6318 }, /* R356 - EQ22 */
276 { 357, 0x6300 }, /* R357 - EQ23 */
277 { 358, 0x0FCA }, /* R358 - EQ24 */
278 { 359, 0x0400 }, /* R359 - EQ25 */
279 { 360, 0x00D8 }, /* R360 - EQ26 */
280 { 361, 0x1EB5 }, /* R361 - EQ27 */
281 { 362, 0xF145 }, /* R362 - EQ28 */
282 { 363, 0x0B75 }, /* R363 - EQ29 */
283 { 364, 0x01C5 }, /* R364 - EQ30 */
284 { 365, 0x1C58 }, /* R365 - EQ31 */
285 { 366, 0xF373 }, /* R366 - EQ32 */
286 { 367, 0x0A54 }, /* R367 - EQ33 */
287 { 368, 0x0558 }, /* R368 - EQ34 */
288 { 369, 0x168E }, /* R369 - EQ35 */
289 { 370, 0xF829 }, /* R370 - EQ36 */
290 { 371, 0x07AD }, /* R371 - EQ37 */
291 { 372, 0x1103 }, /* R372 - EQ38 */
292 { 373, 0x0564 }, /* R373 - EQ39 */
293 { 374, 0x0559 }, /* R374 - EQ40 */
294 { 375, 0x4000 }, /* R375 - EQ41 */
295
296 { 513, 0x0000 }, /* R513 - GPIO 2 */
297 { 514, 0x0000 }, /* R514 - GPIO 3 */
298
299 { 516, 0x8100 }, /* R516 - GPIO 5 */
300 { 517, 0x8100 }, /* R517 - GPIO 6 */
301
7b16f560
MB
302 { 568, 0x0030 }, /* R568 - Interrupt Status 1 Mask */
303 { 569, 0xFFED }, /* R569 - Interrupt Status 2 Mask */
304
305 { 576, 0x0000 }, /* R576 - Interrupt Control */
306
307 { 584, 0x002D }, /* R584 - IRQ Debounce */
308
309 { 586, 0x0000 }, /* R586 - MICINT Source Pol */
310
311 { 768, 0x1C00 }, /* R768 - DSP2 Power Management */
312
7b16f560
MB
313 { 8192, 0x0000 }, /* R8192 - DSP2 Instruction RAM 0 */
314
315 { 9216, 0x0030 }, /* R9216 - DSP2 Address RAM 2 */
316 { 9217, 0x0000 }, /* R9217 - DSP2 Address RAM 1 */
317 { 9218, 0x0000 }, /* R9218 - DSP2 Address RAM 0 */
318
319 { 12288, 0x0000 }, /* R12288 - DSP2 Data1 RAM 1 */
320 { 12289, 0x0000 }, /* R12289 - DSP2 Data1 RAM 0 */
321
322 { 13312, 0x0000 }, /* R13312 - DSP2 Data2 RAM 1 */
323 { 13313, 0x0000 }, /* R13313 - DSP2 Data2 RAM 0 */
324
325 { 14336, 0x0000 }, /* R14336 - DSP2 Data3 RAM 1 */
326 { 14337, 0x0000 }, /* R14337 - DSP2 Data3 RAM 0 */
327
328 { 15360, 0x000A }, /* R15360 - DSP2 Coeff RAM 0 */
329
330 { 16384, 0x0000 }, /* R16384 - RETUNEADC_SHARED_COEFF_1 */
331 { 16385, 0x0000 }, /* R16385 - RETUNEADC_SHARED_COEFF_0 */
332 { 16386, 0x0000 }, /* R16386 - RETUNEDAC_SHARED_COEFF_1 */
333 { 16387, 0x0000 }, /* R16387 - RETUNEDAC_SHARED_COEFF_0 */
334 { 16388, 0x0000 }, /* R16388 - SOUNDSTAGE_ENABLES_1 */
335 { 16389, 0x0000 }, /* R16389 - SOUNDSTAGE_ENABLES_0 */
336
337 { 16896, 0x0002 }, /* R16896 - HDBASS_AI_1 */
338 { 16897, 0xBD12 }, /* R16897 - HDBASS_AI_0 */
339 { 16898, 0x007C }, /* R16898 - HDBASS_AR_1 */
340 { 16899, 0x586C }, /* R16899 - HDBASS_AR_0 */
341 { 16900, 0x0053 }, /* R16900 - HDBASS_B_1 */
342 { 16901, 0x8121 }, /* R16901 - HDBASS_B_0 */
343 { 16902, 0x003F }, /* R16902 - HDBASS_K_1 */
344 { 16903, 0x8BD8 }, /* R16903 - HDBASS_K_0 */
345 { 16904, 0x0032 }, /* R16904 - HDBASS_N1_1 */
346 { 16905, 0xF52D }, /* R16905 - HDBASS_N1_0 */
347 { 16906, 0x0065 }, /* R16906 - HDBASS_N2_1 */
348 { 16907, 0xAC8C }, /* R16907 - HDBASS_N2_0 */
349 { 16908, 0x006B }, /* R16908 - HDBASS_N3_1 */
350 { 16909, 0xE087 }, /* R16909 - HDBASS_N3_0 */
351 { 16910, 0x0072 }, /* R16910 - HDBASS_N4_1 */
352 { 16911, 0x1483 }, /* R16911 - HDBASS_N4_0 */
353 { 16912, 0x0072 }, /* R16912 - HDBASS_N5_1 */
354 { 16913, 0x1483 }, /* R16913 - HDBASS_N5_0 */
355 { 16914, 0x0043 }, /* R16914 - HDBASS_X1_1 */
356 { 16915, 0x3525 }, /* R16915 - HDBASS_X1_0 */
357 { 16916, 0x0006 }, /* R16916 - HDBASS_X2_1 */
358 { 16917, 0x6A4A }, /* R16917 - HDBASS_X2_0 */
359 { 16918, 0x0043 }, /* R16918 - HDBASS_X3_1 */
360 { 16919, 0x6079 }, /* R16919 - HDBASS_X3_0 */
361 { 16920, 0x0008 }, /* R16920 - HDBASS_ATK_1 */
362 { 16921, 0x0000 }, /* R16921 - HDBASS_ATK_0 */
363 { 16922, 0x0001 }, /* R16922 - HDBASS_DCY_1 */
364 { 16923, 0x0000 }, /* R16923 - HDBASS_DCY_0 */
365 { 16924, 0x0059 }, /* R16924 - HDBASS_PG_1 */
366 { 16925, 0x999A }, /* R16925 - HDBASS_PG_0 */
367
368 { 17048, 0x0083 }, /* R17408 - HPF_C_1 */
369 { 17049, 0x98AD }, /* R17409 - HPF_C_0 */
370
371 { 17920, 0x007F }, /* R17920 - ADCL_RETUNE_C1_1 */
372 { 17921, 0xFFFF }, /* R17921 - ADCL_RETUNE_C1_0 */
373 { 17922, 0x0000 }, /* R17922 - ADCL_RETUNE_C2_1 */
374 { 17923, 0x0000 }, /* R17923 - ADCL_RETUNE_C2_0 */
375 { 17924, 0x0000 }, /* R17924 - ADCL_RETUNE_C3_1 */
376 { 17925, 0x0000 }, /* R17925 - ADCL_RETUNE_C3_0 */
377 { 17926, 0x0000 }, /* R17926 - ADCL_RETUNE_C4_1 */
378 { 17927, 0x0000 }, /* R17927 - ADCL_RETUNE_C4_0 */
379 { 17928, 0x0000 }, /* R17928 - ADCL_RETUNE_C5_1 */
380 { 17929, 0x0000 }, /* R17929 - ADCL_RETUNE_C5_0 */
381 { 17930, 0x0000 }, /* R17930 - ADCL_RETUNE_C6_1 */
382 { 17931, 0x0000 }, /* R17931 - ADCL_RETUNE_C6_0 */
383 { 17932, 0x0000 }, /* R17932 - ADCL_RETUNE_C7_1 */
384 { 17933, 0x0000 }, /* R17933 - ADCL_RETUNE_C7_0 */
385 { 17934, 0x0000 }, /* R17934 - ADCL_RETUNE_C8_1 */
386 { 17935, 0x0000 }, /* R17935 - ADCL_RETUNE_C8_0 */
387 { 17936, 0x0000 }, /* R17936 - ADCL_RETUNE_C9_1 */
388 { 17937, 0x0000 }, /* R17937 - ADCL_RETUNE_C9_0 */
389 { 17938, 0x0000 }, /* R17938 - ADCL_RETUNE_C10_1 */
390 { 17939, 0x0000 }, /* R17939 - ADCL_RETUNE_C10_0 */
391 { 17940, 0x0000 }, /* R17940 - ADCL_RETUNE_C11_1 */
392 { 17941, 0x0000 }, /* R17941 - ADCL_RETUNE_C11_0 */
393 { 17942, 0x0000 }, /* R17942 - ADCL_RETUNE_C12_1 */
394 { 17943, 0x0000 }, /* R17943 - ADCL_RETUNE_C12_0 */
395 { 17944, 0x0000 }, /* R17944 - ADCL_RETUNE_C13_1 */
396 { 17945, 0x0000 }, /* R17945 - ADCL_RETUNE_C13_0 */
397 { 17946, 0x0000 }, /* R17946 - ADCL_RETUNE_C14_1 */
398 { 17947, 0x0000 }, /* R17947 - ADCL_RETUNE_C14_0 */
399 { 17948, 0x0000 }, /* R17948 - ADCL_RETUNE_C15_1 */
400 { 17949, 0x0000 }, /* R17949 - ADCL_RETUNE_C15_0 */
401 { 17950, 0x0000 }, /* R17950 - ADCL_RETUNE_C16_1 */
402 { 17951, 0x0000 }, /* R17951 - ADCL_RETUNE_C16_0 */
403 { 17952, 0x0000 }, /* R17952 - ADCL_RETUNE_C17_1 */
404 { 17953, 0x0000 }, /* R17953 - ADCL_RETUNE_C17_0 */
405 { 17954, 0x0000 }, /* R17954 - ADCL_RETUNE_C18_1 */
406 { 17955, 0x0000 }, /* R17955 - ADCL_RETUNE_C18_0 */
407 { 17956, 0x0000 }, /* R17956 - ADCL_RETUNE_C19_1 */
408 { 17957, 0x0000 }, /* R17957 - ADCL_RETUNE_C19_0 */
409 { 17958, 0x0000 }, /* R17958 - ADCL_RETUNE_C20_1 */
410 { 17959, 0x0000 }, /* R17959 - ADCL_RETUNE_C20_0 */
411 { 17960, 0x0000 }, /* R17960 - ADCL_RETUNE_C21_1 */
412 { 17961, 0x0000 }, /* R17961 - ADCL_RETUNE_C21_0 */
413 { 17962, 0x0000 }, /* R17962 - ADCL_RETUNE_C22_1 */
414 { 17963, 0x0000 }, /* R17963 - ADCL_RETUNE_C22_0 */
415 { 17964, 0x0000 }, /* R17964 - ADCL_RETUNE_C23_1 */
416 { 17965, 0x0000 }, /* R17965 - ADCL_RETUNE_C23_0 */
417 { 17966, 0x0000 }, /* R17966 - ADCL_RETUNE_C24_1 */
418 { 17967, 0x0000 }, /* R17967 - ADCL_RETUNE_C24_0 */
419 { 17968, 0x0000 }, /* R17968 - ADCL_RETUNE_C25_1 */
420 { 17969, 0x0000 }, /* R17969 - ADCL_RETUNE_C25_0 */
421 { 17970, 0x0000 }, /* R17970 - ADCL_RETUNE_C26_1 */
422 { 17971, 0x0000 }, /* R17971 - ADCL_RETUNE_C26_0 */
423 { 17972, 0x0000 }, /* R17972 - ADCL_RETUNE_C27_1 */
424 { 17973, 0x0000 }, /* R17973 - ADCL_RETUNE_C27_0 */
425 { 17974, 0x0000 }, /* R17974 - ADCL_RETUNE_C28_1 */
426 { 17975, 0x0000 }, /* R17975 - ADCL_RETUNE_C28_0 */
427 { 17976, 0x0000 }, /* R17976 - ADCL_RETUNE_C29_1 */
428 { 17977, 0x0000 }, /* R17977 - ADCL_RETUNE_C29_0 */
429 { 17978, 0x0000 }, /* R17978 - ADCL_RETUNE_C30_1 */
430 { 17979, 0x0000 }, /* R17979 - ADCL_RETUNE_C30_0 */
431 { 17980, 0x0000 }, /* R17980 - ADCL_RETUNE_C31_1 */
432 { 17981, 0x0000 }, /* R17981 - ADCL_RETUNE_C31_0 */
433 { 17982, 0x0000 }, /* R17982 - ADCL_RETUNE_C32_1 */
434 { 17983, 0x0000 }, /* R17983 - ADCL_RETUNE_C32_0 */
435
436 { 18432, 0x0020 }, /* R18432 - RETUNEADC_PG2_1 */
437 { 18433, 0x0000 }, /* R18433 - RETUNEADC_PG2_0 */
438 { 18434, 0x0040 }, /* R18434 - RETUNEADC_PG_1 */
439 { 18435, 0x0000 }, /* R18435 - RETUNEADC_PG_0 */
440
441 { 18944, 0x007F }, /* R18944 - ADCR_RETUNE_C1_1 */
442 { 18945, 0xFFFF }, /* R18945 - ADCR_RETUNE_C1_0 */
443 { 18946, 0x0000 }, /* R18946 - ADCR_RETUNE_C2_1 */
444 { 18947, 0x0000 }, /* R18947 - ADCR_RETUNE_C2_0 */
445 { 18948, 0x0000 }, /* R18948 - ADCR_RETUNE_C3_1 */
446 { 18949, 0x0000 }, /* R18949 - ADCR_RETUNE_C3_0 */
447 { 18950, 0x0000 }, /* R18950 - ADCR_RETUNE_C4_1 */
448 { 18951, 0x0000 }, /* R18951 - ADCR_RETUNE_C4_0 */
449 { 18952, 0x0000 }, /* R18952 - ADCR_RETUNE_C5_1 */
450 { 18953, 0x0000 }, /* R18953 - ADCR_RETUNE_C5_0 */
451 { 18954, 0x0000 }, /* R18954 - ADCR_RETUNE_C6_1 */
452 { 18955, 0x0000 }, /* R18955 - ADCR_RETUNE_C6_0 */
453 { 18956, 0x0000 }, /* R18956 - ADCR_RETUNE_C7_1 */
454 { 18957, 0x0000 }, /* R18957 - ADCR_RETUNE_C7_0 */
455 { 18958, 0x0000 }, /* R18958 - ADCR_RETUNE_C8_1 */
456 { 18959, 0x0000 }, /* R18959 - ADCR_RETUNE_C8_0 */
457 { 18960, 0x0000 }, /* R18960 - ADCR_RETUNE_C9_1 */
458 { 18961, 0x0000 }, /* R18961 - ADCR_RETUNE_C9_0 */
459 { 18962, 0x0000 }, /* R18962 - ADCR_RETUNE_C10_1 */
460 { 18963, 0x0000 }, /* R18963 - ADCR_RETUNE_C10_0 */
461 { 18964, 0x0000 }, /* R18964 - ADCR_RETUNE_C11_1 */
462 { 18965, 0x0000 }, /* R18965 - ADCR_RETUNE_C11_0 */
463 { 18966, 0x0000 }, /* R18966 - ADCR_RETUNE_C12_1 */
464 { 18967, 0x0000 }, /* R18967 - ADCR_RETUNE_C12_0 */
465 { 18968, 0x0000 }, /* R18968 - ADCR_RETUNE_C13_1 */
466 { 18969, 0x0000 }, /* R18969 - ADCR_RETUNE_C13_0 */
467 { 18970, 0x0000 }, /* R18970 - ADCR_RETUNE_C14_1 */
468 { 18971, 0x0000 }, /* R18971 - ADCR_RETUNE_C14_0 */
469 { 18972, 0x0000 }, /* R18972 - ADCR_RETUNE_C15_1 */
470 { 18973, 0x0000 }, /* R18973 - ADCR_RETUNE_C15_0 */
471 { 18974, 0x0000 }, /* R18974 - ADCR_RETUNE_C16_1 */
472 { 18975, 0x0000 }, /* R18975 - ADCR_RETUNE_C16_0 */
473 { 18976, 0x0000 }, /* R18976 - ADCR_RETUNE_C17_1 */
474 { 18977, 0x0000 }, /* R18977 - ADCR_RETUNE_C17_0 */
475 { 18978, 0x0000 }, /* R18978 - ADCR_RETUNE_C18_1 */
476 { 18979, 0x0000 }, /* R18979 - ADCR_RETUNE_C18_0 */
477 { 18980, 0x0000 }, /* R18980 - ADCR_RETUNE_C19_1 */
478 { 18981, 0x0000 }, /* R18981 - ADCR_RETUNE_C19_0 */
479 { 18982, 0x0000 }, /* R18982 - ADCR_RETUNE_C20_1 */
480 { 18983, 0x0000 }, /* R18983 - ADCR_RETUNE_C20_0 */
481 { 18984, 0x0000 }, /* R18984 - ADCR_RETUNE_C21_1 */
482 { 18985, 0x0000 }, /* R18985 - ADCR_RETUNE_C21_0 */
483 { 18986, 0x0000 }, /* R18986 - ADCR_RETUNE_C22_1 */
484 { 18987, 0x0000 }, /* R18987 - ADCR_RETUNE_C22_0 */
485 { 18988, 0x0000 }, /* R18988 - ADCR_RETUNE_C23_1 */
486 { 18989, 0x0000 }, /* R18989 - ADCR_RETUNE_C23_0 */
487 { 18990, 0x0000 }, /* R18990 - ADCR_RETUNE_C24_1 */
488 { 18991, 0x0000 }, /* R18991 - ADCR_RETUNE_C24_0 */
489 { 18992, 0x0000 }, /* R18992 - ADCR_RETUNE_C25_1 */
490 { 18993, 0x0000 }, /* R18993 - ADCR_RETUNE_C25_0 */
491 { 18994, 0x0000 }, /* R18994 - ADCR_RETUNE_C26_1 */
492 { 18995, 0x0000 }, /* R18995 - ADCR_RETUNE_C26_0 */
493 { 18996, 0x0000 }, /* R18996 - ADCR_RETUNE_C27_1 */
494 { 18997, 0x0000 }, /* R18997 - ADCR_RETUNE_C27_0 */
495 { 18998, 0x0000 }, /* R18998 - ADCR_RETUNE_C28_1 */
496 { 18999, 0x0000 }, /* R18999 - ADCR_RETUNE_C28_0 */
497 { 19000, 0x0000 }, /* R19000 - ADCR_RETUNE_C29_1 */
498 { 19001, 0x0000 }, /* R19001 - ADCR_RETUNE_C29_0 */
499 { 19002, 0x0000 }, /* R19002 - ADCR_RETUNE_C30_1 */
500 { 19003, 0x0000 }, /* R19003 - ADCR_RETUNE_C30_0 */
501 { 19004, 0x0000 }, /* R19004 - ADCR_RETUNE_C31_1 */
502 { 19005, 0x0000 }, /* R19005 - ADCR_RETUNE_C31_0 */
503 { 19006, 0x0000 }, /* R19006 - ADCR_RETUNE_C32_1 */
504 { 19007, 0x0000 }, /* R19007 - ADCR_RETUNE_C32_0 */
505
506 { 19456, 0x007F }, /* R19456 - DACL_RETUNE_C1_1 */
507 { 19457, 0xFFFF }, /* R19457 - DACL_RETUNE_C1_0 */
508 { 19458, 0x0000 }, /* R19458 - DACL_RETUNE_C2_1 */
509 { 19459, 0x0000 }, /* R19459 - DACL_RETUNE_C2_0 */
510 { 19460, 0x0000 }, /* R19460 - DACL_RETUNE_C3_1 */
511 { 19461, 0x0000 }, /* R19461 - DACL_RETUNE_C3_0 */
512 { 19462, 0x0000 }, /* R19462 - DACL_RETUNE_C4_1 */
513 { 19463, 0x0000 }, /* R19463 - DACL_RETUNE_C4_0 */
514 { 19464, 0x0000 }, /* R19464 - DACL_RETUNE_C5_1 */
515 { 19465, 0x0000 }, /* R19465 - DACL_RETUNE_C5_0 */
516 { 19466, 0x0000 }, /* R19466 - DACL_RETUNE_C6_1 */
517 { 19467, 0x0000 }, /* R19467 - DACL_RETUNE_C6_0 */
518 { 19468, 0x0000 }, /* R19468 - DACL_RETUNE_C7_1 */
519 { 19469, 0x0000 }, /* R19469 - DACL_RETUNE_C7_0 */
520 { 19470, 0x0000 }, /* R19470 - DACL_RETUNE_C8_1 */
521 { 19471, 0x0000 }, /* R19471 - DACL_RETUNE_C8_0 */
522 { 19472, 0x0000 }, /* R19472 - DACL_RETUNE_C9_1 */
523 { 19473, 0x0000 }, /* R19473 - DACL_RETUNE_C9_0 */
524 { 19474, 0x0000 }, /* R19474 - DACL_RETUNE_C10_1 */
525 { 19475, 0x0000 }, /* R19475 - DACL_RETUNE_C10_0 */
526 { 19476, 0x0000 }, /* R19476 - DACL_RETUNE_C11_1 */
527 { 19477, 0x0000 }, /* R19477 - DACL_RETUNE_C11_0 */
528 { 19478, 0x0000 }, /* R19478 - DACL_RETUNE_C12_1 */
529 { 19479, 0x0000 }, /* R19479 - DACL_RETUNE_C12_0 */
530 { 19480, 0x0000 }, /* R19480 - DACL_RETUNE_C13_1 */
531 { 19481, 0x0000 }, /* R19481 - DACL_RETUNE_C13_0 */
532 { 19482, 0x0000 }, /* R19482 - DACL_RETUNE_C14_1 */
533 { 19483, 0x0000 }, /* R19483 - DACL_RETUNE_C14_0 */
534 { 19484, 0x0000 }, /* R19484 - DACL_RETUNE_C15_1 */
535 { 19485, 0x0000 }, /* R19485 - DACL_RETUNE_C15_0 */
536 { 19486, 0x0000 }, /* R19486 - DACL_RETUNE_C16_1 */
537 { 19487, 0x0000 }, /* R19487 - DACL_RETUNE_C16_0 */
538 { 19488, 0x0000 }, /* R19488 - DACL_RETUNE_C17_1 */
539 { 19489, 0x0000 }, /* R19489 - DACL_RETUNE_C17_0 */
540 { 19490, 0x0000 }, /* R19490 - DACL_RETUNE_C18_1 */
541 { 19491, 0x0000 }, /* R19491 - DACL_RETUNE_C18_0 */
542 { 19492, 0x0000 }, /* R19492 - DACL_RETUNE_C19_1 */
543 { 19493, 0x0000 }, /* R19493 - DACL_RETUNE_C19_0 */
544 { 19494, 0x0000 }, /* R19494 - DACL_RETUNE_C20_1 */
545 { 19495, 0x0000 }, /* R19495 - DACL_RETUNE_C20_0 */
546 { 19496, 0x0000 }, /* R19496 - DACL_RETUNE_C21_1 */
547 { 19497, 0x0000 }, /* R19497 - DACL_RETUNE_C21_0 */
548 { 19498, 0x0000 }, /* R19498 - DACL_RETUNE_C22_1 */
549 { 19499, 0x0000 }, /* R19499 - DACL_RETUNE_C22_0 */
550 { 19500, 0x0000 }, /* R19500 - DACL_RETUNE_C23_1 */
551 { 19501, 0x0000 }, /* R19501 - DACL_RETUNE_C23_0 */
552 { 19502, 0x0000 }, /* R19502 - DACL_RETUNE_C24_1 */
553 { 19503, 0x0000 }, /* R19503 - DACL_RETUNE_C24_0 */
554 { 19504, 0x0000 }, /* R19504 - DACL_RETUNE_C25_1 */
555 { 19505, 0x0000 }, /* R19505 - DACL_RETUNE_C25_0 */
556 { 19506, 0x0000 }, /* R19506 - DACL_RETUNE_C26_1 */
557 { 19507, 0x0000 }, /* R19507 - DACL_RETUNE_C26_0 */
558 { 19508, 0x0000 }, /* R19508 - DACL_RETUNE_C27_1 */
559 { 19509, 0x0000 }, /* R19509 - DACL_RETUNE_C27_0 */
560 { 19510, 0x0000 }, /* R19510 - DACL_RETUNE_C28_1 */
561 { 19511, 0x0000 }, /* R19511 - DACL_RETUNE_C28_0 */
562 { 19512, 0x0000 }, /* R19512 - DACL_RETUNE_C29_1 */
563 { 19513, 0x0000 }, /* R19513 - DACL_RETUNE_C29_0 */
564 { 19514, 0x0000 }, /* R19514 - DACL_RETUNE_C30_1 */
565 { 19515, 0x0000 }, /* R19515 - DACL_RETUNE_C30_0 */
566 { 19516, 0x0000 }, /* R19516 - DACL_RETUNE_C31_1 */
567 { 19517, 0x0000 }, /* R19517 - DACL_RETUNE_C31_0 */
568 { 19518, 0x0000 }, /* R19518 - DACL_RETUNE_C32_1 */
569 { 19519, 0x0000 }, /* R19519 - DACL_RETUNE_C32_0 */
570
571 { 19968, 0x0020 }, /* R19968 - RETUNEDAC_PG2_1 */
572 { 19969, 0x0000 }, /* R19969 - RETUNEDAC_PG2_0 */
573 { 19970, 0x0040 }, /* R19970 - RETUNEDAC_PG_1 */
574 { 19971, 0x0000 }, /* R19971 - RETUNEDAC_PG_0 */
575
576 { 20480, 0x007F }, /* R20480 - DACR_RETUNE_C1_1 */
577 { 20481, 0xFFFF }, /* R20481 - DACR_RETUNE_C1_0 */
578 { 20482, 0x0000 }, /* R20482 - DACR_RETUNE_C2_1 */
579 { 20483, 0x0000 }, /* R20483 - DACR_RETUNE_C2_0 */
580 { 20484, 0x0000 }, /* R20484 - DACR_RETUNE_C3_1 */
581 { 20485, 0x0000 }, /* R20485 - DACR_RETUNE_C3_0 */
582 { 20486, 0x0000 }, /* R20486 - DACR_RETUNE_C4_1 */
583 { 20487, 0x0000 }, /* R20487 - DACR_RETUNE_C4_0 */
584 { 20488, 0x0000 }, /* R20488 - DACR_RETUNE_C5_1 */
585 { 20489, 0x0000 }, /* R20489 - DACR_RETUNE_C5_0 */
586 { 20490, 0x0000 }, /* R20490 - DACR_RETUNE_C6_1 */
587 { 20491, 0x0000 }, /* R20491 - DACR_RETUNE_C6_0 */
588 { 20492, 0x0000 }, /* R20492 - DACR_RETUNE_C7_1 */
589 { 20493, 0x0000 }, /* R20493 - DACR_RETUNE_C7_0 */
590 { 20494, 0x0000 }, /* R20494 - DACR_RETUNE_C8_1 */
591 { 20495, 0x0000 }, /* R20495 - DACR_RETUNE_C8_0 */
592 { 20496, 0x0000 }, /* R20496 - DACR_RETUNE_C9_1 */
593 { 20497, 0x0000 }, /* R20497 - DACR_RETUNE_C9_0 */
594 { 20498, 0x0000 }, /* R20498 - DACR_RETUNE_C10_1 */
595 { 20499, 0x0000 }, /* R20499 - DACR_RETUNE_C10_0 */
596 { 20500, 0x0000 }, /* R20500 - DACR_RETUNE_C11_1 */
597 { 20501, 0x0000 }, /* R20501 - DACR_RETUNE_C11_0 */
598 { 20502, 0x0000 }, /* R20502 - DACR_RETUNE_C12_1 */
599 { 20503, 0x0000 }, /* R20503 - DACR_RETUNE_C12_0 */
600 { 20504, 0x0000 }, /* R20504 - DACR_RETUNE_C13_1 */
601 { 20505, 0x0000 }, /* R20505 - DACR_RETUNE_C13_0 */
602 { 20506, 0x0000 }, /* R20506 - DACR_RETUNE_C14_1 */
603 { 20507, 0x0000 }, /* R20507 - DACR_RETUNE_C14_0 */
604 { 20508, 0x0000 }, /* R20508 - DACR_RETUNE_C15_1 */
605 { 20509, 0x0000 }, /* R20509 - DACR_RETUNE_C15_0 */
606 { 20510, 0x0000 }, /* R20510 - DACR_RETUNE_C16_1 */
607 { 20511, 0x0000 }, /* R20511 - DACR_RETUNE_C16_0 */
608 { 20512, 0x0000 }, /* R20512 - DACR_RETUNE_C17_1 */
609 { 20513, 0x0000 }, /* R20513 - DACR_RETUNE_C17_0 */
610 { 20514, 0x0000 }, /* R20514 - DACR_RETUNE_C18_1 */
611 { 20515, 0x0000 }, /* R20515 - DACR_RETUNE_C18_0 */
612 { 20516, 0x0000 }, /* R20516 - DACR_RETUNE_C19_1 */
613 { 20517, 0x0000 }, /* R20517 - DACR_RETUNE_C19_0 */
614 { 20518, 0x0000 }, /* R20518 - DACR_RETUNE_C20_1 */
615 { 20519, 0x0000 }, /* R20519 - DACR_RETUNE_C20_0 */
616 { 20520, 0x0000 }, /* R20520 - DACR_RETUNE_C21_1 */
617 { 20521, 0x0000 }, /* R20521 - DACR_RETUNE_C21_0 */
618 { 20522, 0x0000 }, /* R20522 - DACR_RETUNE_C22_1 */
619 { 20523, 0x0000 }, /* R20523 - DACR_RETUNE_C22_0 */
620 { 20524, 0x0000 }, /* R20524 - DACR_RETUNE_C23_1 */
621 { 20525, 0x0000 }, /* R20525 - DACR_RETUNE_C23_0 */
622 { 20526, 0x0000 }, /* R20526 - DACR_RETUNE_C24_1 */
623 { 20527, 0x0000 }, /* R20527 - DACR_RETUNE_C24_0 */
624 { 20528, 0x0000 }, /* R20528 - DACR_RETUNE_C25_1 */
625 { 20529, 0x0000 }, /* R20529 - DACR_RETUNE_C25_0 */
626 { 20530, 0x0000 }, /* R20530 - DACR_RETUNE_C26_1 */
627 { 20531, 0x0000 }, /* R20531 - DACR_RETUNE_C26_0 */
628 { 20532, 0x0000 }, /* R20532 - DACR_RETUNE_C27_1 */
629 { 20533, 0x0000 }, /* R20533 - DACR_RETUNE_C27_0 */
630 { 20534, 0x0000 }, /* R20534 - DACR_RETUNE_C28_1 */
631 { 20535, 0x0000 }, /* R20535 - DACR_RETUNE_C28_0 */
632 { 20536, 0x0000 }, /* R20536 - DACR_RETUNE_C29_1 */
633 { 20537, 0x0000 }, /* R20537 - DACR_RETUNE_C29_0 */
634 { 20538, 0x0000 }, /* R20538 - DACR_RETUNE_C30_1 */
635 { 20539, 0x0000 }, /* R20539 - DACR_RETUNE_C30_0 */
636 { 20540, 0x0000 }, /* R20540 - DACR_RETUNE_C31_1 */
637 { 20541, 0x0000 }, /* R20541 - DACR_RETUNE_C31_0 */
638 { 20542, 0x0000 }, /* R20542 - DACR_RETUNE_C32_1 */
639 { 20543, 0x0000 }, /* R20543 - DACR_RETUNE_C32_0 */
640
641 { 20992, 0x008C }, /* R20992 - VSS_XHD2_1 */
642 { 20993, 0x0200 }, /* R20993 - VSS_XHD2_0 */
643 { 20994, 0x0035 }, /* R20994 - VSS_XHD3_1 */
644 { 20995, 0x0700 }, /* R20995 - VSS_XHD3_0 */
645 { 20996, 0x003A }, /* R20996 - VSS_XHN1_1 */
646 { 20997, 0x4100 }, /* R20997 - VSS_XHN1_0 */
647 { 20998, 0x008B }, /* R20998 - VSS_XHN2_1 */
648 { 20999, 0x7D00 }, /* R20999 - VSS_XHN2_0 */
649 { 21000, 0x003A }, /* R21000 - VSS_XHN3_1 */
650 { 21001, 0x4100 }, /* R21001 - VSS_XHN3_0 */
651 { 21002, 0x008C }, /* R21002 - VSS_XLA_1 */
652 { 21003, 0xFEE8 }, /* R21003 - VSS_XLA_0 */
653 { 21004, 0x0078 }, /* R21004 - VSS_XLB_1 */
654 { 21005, 0x0000 }, /* R21005 - VSS_XLB_0 */
655 { 21006, 0x003F }, /* R21006 - VSS_XLG_1 */
656 { 21007, 0xB260 }, /* R21007 - VSS_XLG_0 */
657 { 21008, 0x002D }, /* R21008 - VSS_PG2_1 */
658 { 21009, 0x1818 }, /* R21009 - VSS_PG2_0 */
659 { 21010, 0x0020 }, /* R21010 - VSS_PG_1 */
660 { 21011, 0x0000 }, /* R21011 - VSS_PG_0 */
661 { 21012, 0x00F1 }, /* R21012 - VSS_XTD1_1 */
662 { 21013, 0x8340 }, /* R21013 - VSS_XTD1_0 */
663 { 21014, 0x00FB }, /* R21014 - VSS_XTD2_1 */
664 { 21015, 0x8300 }, /* R21015 - VSS_XTD2_0 */
665 { 21016, 0x00EE }, /* R21016 - VSS_XTD3_1 */
666 { 21017, 0xAEC0 }, /* R21017 - VSS_XTD3_0 */
667 { 21018, 0x00FB }, /* R21018 - VSS_XTD4_1 */
668 { 21019, 0xAC40 }, /* R21019 - VSS_XTD4_0 */
669 { 21020, 0x00F1 }, /* R21020 - VSS_XTD5_1 */
670 { 21021, 0x7F80 }, /* R21021 - VSS_XTD5_0 */
671 { 21022, 0x00F4 }, /* R21022 - VSS_XTD6_1 */
672 { 21023, 0x3B40 }, /* R21023 - VSS_XTD6_0 */
673 { 21024, 0x00F5 }, /* R21024 - VSS_XTD7_1 */
674 { 21025, 0xFB00 }, /* R21025 - VSS_XTD7_0 */
675 { 21026, 0x00EA }, /* R21026 - VSS_XTD8_1 */
676 { 21027, 0x10C0 }, /* R21027 - VSS_XTD8_0 */
677 { 21028, 0x00FC }, /* R21028 - VSS_XTD9_1 */
678 { 21029, 0xC580 }, /* R21029 - VSS_XTD9_0 */
679 { 21030, 0x00E2 }, /* R21030 - VSS_XTD10_1 */
680 { 21031, 0x75C0 }, /* R21031 - VSS_XTD10_0 */
681 { 21032, 0x0004 }, /* R21032 - VSS_XTD11_1 */
682 { 21033, 0xB480 }, /* R21033 - VSS_XTD11_0 */
683 { 21034, 0x00D4 }, /* R21034 - VSS_XTD12_1 */
684 { 21035, 0xF980 }, /* R21035 - VSS_XTD12_0 */
685 { 21036, 0x0004 }, /* R21036 - VSS_XTD13_1 */
686 { 21037, 0x9140 }, /* R21037 - VSS_XTD13_0 */
687 { 21038, 0x00D8 }, /* R21038 - VSS_XTD14_1 */
688 { 21039, 0xA480 }, /* R21039 - VSS_XTD14_0 */
689 { 21040, 0x0002 }, /* R21040 - VSS_XTD15_1 */
690 { 21041, 0x3DC0 }, /* R21041 - VSS_XTD15_0 */
691 { 21042, 0x00CF }, /* R21042 - VSS_XTD16_1 */
692 { 21043, 0x7A80 }, /* R21043 - VSS_XTD16_0 */
693 { 21044, 0x00DC }, /* R21044 - VSS_XTD17_1 */
694 { 21045, 0x0600 }, /* R21045 - VSS_XTD17_0 */
695 { 21046, 0x00F2 }, /* R21046 - VSS_XTD18_1 */
696 { 21047, 0xDAC0 }, /* R21047 - VSS_XTD18_0 */
697 { 21048, 0x00BA }, /* R21048 - VSS_XTD19_1 */
698 { 21049, 0xF340 }, /* R21049 - VSS_XTD19_0 */
699 { 21050, 0x000A }, /* R21050 - VSS_XTD20_1 */
700 { 21051, 0x7940 }, /* R21051 - VSS_XTD20_0 */
701 { 21052, 0x001C }, /* R21052 - VSS_XTD21_1 */
702 { 21053, 0x0680 }, /* R21053 - VSS_XTD21_0 */
703 { 21054, 0x00FD }, /* R21054 - VSS_XTD22_1 */
704 { 21055, 0x2D00 }, /* R21055 - VSS_XTD22_0 */
705 { 21056, 0x001C }, /* R21056 - VSS_XTD23_1 */
706 { 21057, 0xE840 }, /* R21057 - VSS_XTD23_0 */
707 { 21058, 0x000D }, /* R21058 - VSS_XTD24_1 */
708 { 21059, 0xDC40 }, /* R21059 - VSS_XTD24_0 */
709 { 21060, 0x00FC }, /* R21060 - VSS_XTD25_1 */
710 { 21061, 0x9D00 }, /* R21061 - VSS_XTD25_0 */
711 { 21062, 0x0009 }, /* R21062 - VSS_XTD26_1 */
712 { 21063, 0x5580 }, /* R21063 - VSS_XTD26_0 */
713 { 21064, 0x00FE }, /* R21064 - VSS_XTD27_1 */
714 { 21065, 0x7E80 }, /* R21065 - VSS_XTD27_0 */
715 { 21066, 0x000E }, /* R21066 - VSS_XTD28_1 */
716 { 21067, 0xAB40 }, /* R21067 - VSS_XTD28_0 */
717 { 21068, 0x00F9 }, /* R21068 - VSS_XTD29_1 */
718 { 21069, 0x9880 }, /* R21069 - VSS_XTD29_0 */
719 { 21070, 0x0009 }, /* R21070 - VSS_XTD30_1 */
720 { 21071, 0x87C0 }, /* R21071 - VSS_XTD30_0 */
721 { 21072, 0x00FD }, /* R21072 - VSS_XTD31_1 */
722 { 21073, 0x2C40 }, /* R21073 - VSS_XTD31_0 */
723 { 21074, 0x0009 }, /* R21074 - VSS_XTD32_1 */
724 { 21075, 0x4800 }, /* R21075 - VSS_XTD32_0 */
725 { 21076, 0x0003 }, /* R21076 - VSS_XTS1_1 */
726 { 21077, 0x5F40 }, /* R21077 - VSS_XTS1_0 */
727 { 21078, 0x0000 }, /* R21078 - VSS_XTS2_1 */
728 { 21079, 0x8700 }, /* R21079 - VSS_XTS2_0 */
729 { 21080, 0x00FA }, /* R21080 - VSS_XTS3_1 */
730 { 21081, 0xE4C0 }, /* R21081 - VSS_XTS3_0 */
731 { 21082, 0x0000 }, /* R21082 - VSS_XTS4_1 */
732 { 21083, 0x0B40 }, /* R21083 - VSS_XTS4_0 */
733 { 21084, 0x0004 }, /* R21084 - VSS_XTS5_1 */
734 { 21085, 0xE180 }, /* R21085 - VSS_XTS5_0 */
735 { 21086, 0x0001 }, /* R21086 - VSS_XTS6_1 */
736 { 21087, 0x1F40 }, /* R21087 - VSS_XTS6_0 */
737 { 21088, 0x00F8 }, /* R21088 - VSS_XTS7_1 */
738 { 21089, 0xB000 }, /* R21089 - VSS_XTS7_0 */
739 { 21090, 0x00FB }, /* R21090 - VSS_XTS8_1 */
740 { 21091, 0xCBC0 }, /* R21091 - VSS_XTS8_0 */
741 { 21092, 0x0004 }, /* R21092 - VSS_XTS9_1 */
742 { 21093, 0xF380 }, /* R21093 - VSS_XTS9_0 */
743 { 21094, 0x0007 }, /* R21094 - VSS_XTS10_1 */
744 { 21095, 0xDF40 }, /* R21095 - VSS_XTS10_0 */
745 { 21096, 0x00FF }, /* R21096 - VSS_XTS11_1 */
746 { 21097, 0x0700 }, /* R21097 - VSS_XTS11_0 */
747 { 21098, 0x00EF }, /* R21098 - VSS_XTS12_1 */
748 { 21099, 0xD700 }, /* R21099 - VSS_XTS12_0 */
749 { 21100, 0x00FB }, /* R21100 - VSS_XTS13_1 */
750 { 21101, 0xAF40 }, /* R21101 - VSS_XTS13_0 */
751 { 21102, 0x0010 }, /* R21102 - VSS_XTS14_1 */
752 { 21103, 0x8A80 }, /* R21103 - VSS_XTS14_0 */
753 { 21104, 0x0011 }, /* R21104 - VSS_XTS15_1 */
754 { 21105, 0x07C0 }, /* R21105 - VSS_XTS15_0 */
755 { 21106, 0x00E0 }, /* R21106 - VSS_XTS16_1 */
756 { 21107, 0x0800 }, /* R21107 - VSS_XTS16_0 */
757 { 21108, 0x00D2 }, /* R21108 - VSS_XTS17_1 */
758 { 21109, 0x7600 }, /* R21109 - VSS_XTS17_0 */
759 { 21110, 0x0020 }, /* R21110 - VSS_XTS18_1 */
760 { 21111, 0xCF40 }, /* R21111 - VSS_XTS18_0 */
761 { 21112, 0x0030 }, /* R21112 - VSS_XTS19_1 */
762 { 21113, 0x2340 }, /* R21113 - VSS_XTS19_0 */
763 { 21114, 0x00FD }, /* R21114 - VSS_XTS20_1 */
764 { 21115, 0x69C0 }, /* R21115 - VSS_XTS20_0 */
765 { 21116, 0x0028 }, /* R21116 - VSS_XTS21_1 */
766 { 21117, 0x3500 }, /* R21117 - VSS_XTS21_0 */
767 { 21118, 0x0006 }, /* R21118 - VSS_XTS22_1 */
768 { 21119, 0x3300 }, /* R21119 - VSS_XTS22_0 */
769 { 21120, 0x00D9 }, /* R21120 - VSS_XTS23_1 */
770 { 21121, 0xF6C0 }, /* R21121 - VSS_XTS23_0 */
771 { 21122, 0x00F3 }, /* R21122 - VSS_XTS24_1 */
772 { 21123, 0x3340 }, /* R21123 - VSS_XTS24_0 */
773 { 21124, 0x000F }, /* R21124 - VSS_XTS25_1 */
774 { 21125, 0x4200 }, /* R21125 - VSS_XTS25_0 */
775 { 21126, 0x0004 }, /* R21126 - VSS_XTS26_1 */
776 { 21127, 0x0C80 }, /* R21127 - VSS_XTS26_0 */
777 { 21128, 0x00FB }, /* R21128 - VSS_XTS27_1 */
778 { 21129, 0x3F80 }, /* R21129 - VSS_XTS27_0 */
779 { 21130, 0x00F7 }, /* R21130 - VSS_XTS28_1 */
780 { 21131, 0x57C0 }, /* R21131 - VSS_XTS28_0 */
781 { 21132, 0x0003 }, /* R21132 - VSS_XTS29_1 */
782 { 21133, 0x5400 }, /* R21133 - VSS_XTS29_0 */
783 { 21134, 0x0000 }, /* R21134 - VSS_XTS30_1 */
784 { 21135, 0xC6C0 }, /* R21135 - VSS_XTS30_0 */
785 { 21136, 0x0003 }, /* R21136 - VSS_XTS31_1 */
786 { 21137, 0x12C0 }, /* R21137 - VSS_XTS31_0 */
787 { 21138, 0x00FD }, /* R21138 - VSS_XTS32_1 */
788 { 21139, 0x8580 }, /* R21139 - VSS_XTS32_0 */
f57f6c04
MB
789};
790
7b16f560 791static bool wm8962_volatile_register(struct device *dev, unsigned int reg)
9a76f1ff 792{
cef6d1d4
MB
793 switch (reg) {
794 case WM8962_CLOCKING1:
795 case WM8962_CLOCKING2:
796 case WM8962_SOFTWARE_RESET:
797 case WM8962_ALC2:
798 case WM8962_THERMAL_SHUTDOWN_STATUS:
799 case WM8962_ADDITIONAL_CONTROL_4:
cef6d1d4
MB
800 case WM8962_DC_SERVO_6:
801 case WM8962_INTERRUPT_STATUS_1:
802 case WM8962_INTERRUPT_STATUS_2:
803 case WM8962_DSP2_EXECCONTROL:
804 return true;
805 default:
806 return false;
807 }
9a76f1ff
MB
808}
809
7b16f560 810static bool wm8962_readable_register(struct device *dev, unsigned int reg)
9a76f1ff 811{
cef6d1d4
MB
812 switch (reg) {
813 case WM8962_LEFT_INPUT_VOLUME:
814 case WM8962_RIGHT_INPUT_VOLUME:
815 case WM8962_HPOUTL_VOLUME:
816 case WM8962_HPOUTR_VOLUME:
817 case WM8962_CLOCKING1:
818 case WM8962_ADC_DAC_CONTROL_1:
819 case WM8962_ADC_DAC_CONTROL_2:
820 case WM8962_AUDIO_INTERFACE_0:
821 case WM8962_CLOCKING2:
822 case WM8962_AUDIO_INTERFACE_1:
823 case WM8962_LEFT_DAC_VOLUME:
824 case WM8962_RIGHT_DAC_VOLUME:
825 case WM8962_AUDIO_INTERFACE_2:
826 case WM8962_SOFTWARE_RESET:
827 case WM8962_ALC1:
828 case WM8962_ALC2:
829 case WM8962_ALC3:
830 case WM8962_NOISE_GATE:
831 case WM8962_LEFT_ADC_VOLUME:
832 case WM8962_RIGHT_ADC_VOLUME:
833 case WM8962_ADDITIONAL_CONTROL_1:
834 case WM8962_ADDITIONAL_CONTROL_2:
835 case WM8962_PWR_MGMT_1:
836 case WM8962_PWR_MGMT_2:
837 case WM8962_ADDITIONAL_CONTROL_3:
838 case WM8962_ANTI_POP:
839 case WM8962_CLOCKING_3:
840 case WM8962_INPUT_MIXER_CONTROL_1:
841 case WM8962_LEFT_INPUT_MIXER_VOLUME:
842 case WM8962_RIGHT_INPUT_MIXER_VOLUME:
843 case WM8962_INPUT_MIXER_CONTROL_2:
844 case WM8962_INPUT_BIAS_CONTROL:
845 case WM8962_LEFT_INPUT_PGA_CONTROL:
846 case WM8962_RIGHT_INPUT_PGA_CONTROL:
847 case WM8962_SPKOUTL_VOLUME:
848 case WM8962_SPKOUTR_VOLUME:
849 case WM8962_THERMAL_SHUTDOWN_STATUS:
850 case WM8962_ADDITIONAL_CONTROL_4:
851 case WM8962_CLASS_D_CONTROL_1:
852 case WM8962_CLASS_D_CONTROL_2:
853 case WM8962_CLOCKING_4:
854 case WM8962_DAC_DSP_MIXING_1:
855 case WM8962_DAC_DSP_MIXING_2:
856 case WM8962_DC_SERVO_0:
857 case WM8962_DC_SERVO_1:
858 case WM8962_DC_SERVO_4:
859 case WM8962_DC_SERVO_6:
860 case WM8962_ANALOGUE_PGA_BIAS:
861 case WM8962_ANALOGUE_HP_0:
862 case WM8962_ANALOGUE_HP_2:
863 case WM8962_CHARGE_PUMP_1:
864 case WM8962_CHARGE_PUMP_B:
865 case WM8962_WRITE_SEQUENCER_CONTROL_1:
866 case WM8962_WRITE_SEQUENCER_CONTROL_2:
867 case WM8962_WRITE_SEQUENCER_CONTROL_3:
868 case WM8962_CONTROL_INTERFACE:
869 case WM8962_MIXER_ENABLES:
870 case WM8962_HEADPHONE_MIXER_1:
871 case WM8962_HEADPHONE_MIXER_2:
872 case WM8962_HEADPHONE_MIXER_3:
873 case WM8962_HEADPHONE_MIXER_4:
874 case WM8962_SPEAKER_MIXER_1:
875 case WM8962_SPEAKER_MIXER_2:
876 case WM8962_SPEAKER_MIXER_3:
877 case WM8962_SPEAKER_MIXER_4:
878 case WM8962_SPEAKER_MIXER_5:
879 case WM8962_BEEP_GENERATOR_1:
880 case WM8962_OSCILLATOR_TRIM_3:
881 case WM8962_OSCILLATOR_TRIM_4:
882 case WM8962_OSCILLATOR_TRIM_7:
883 case WM8962_ANALOGUE_CLOCKING1:
884 case WM8962_ANALOGUE_CLOCKING2:
885 case WM8962_ANALOGUE_CLOCKING3:
886 case WM8962_PLL_SOFTWARE_RESET:
887 case WM8962_PLL2:
888 case WM8962_PLL_4:
889 case WM8962_PLL_9:
890 case WM8962_PLL_10:
891 case WM8962_PLL_11:
892 case WM8962_PLL_12:
893 case WM8962_PLL_13:
894 case WM8962_PLL_14:
895 case WM8962_PLL_15:
896 case WM8962_PLL_16:
897 case WM8962_FLL_CONTROL_1:
898 case WM8962_FLL_CONTROL_2:
899 case WM8962_FLL_CONTROL_3:
900 case WM8962_FLL_CONTROL_5:
901 case WM8962_FLL_CONTROL_6:
902 case WM8962_FLL_CONTROL_7:
903 case WM8962_FLL_CONTROL_8:
904 case WM8962_GENERAL_TEST_1:
905 case WM8962_DF1:
906 case WM8962_DF2:
907 case WM8962_DF3:
908 case WM8962_DF4:
909 case WM8962_DF5:
910 case WM8962_DF6:
911 case WM8962_DF7:
912 case WM8962_LHPF1:
913 case WM8962_LHPF2:
914 case WM8962_THREED1:
915 case WM8962_THREED2:
916 case WM8962_THREED3:
917 case WM8962_THREED4:
918 case WM8962_DRC_1:
919 case WM8962_DRC_2:
920 case WM8962_DRC_3:
921 case WM8962_DRC_4:
922 case WM8962_DRC_5:
923 case WM8962_TLOOPBACK:
924 case WM8962_EQ1:
925 case WM8962_EQ2:
926 case WM8962_EQ3:
927 case WM8962_EQ4:
928 case WM8962_EQ5:
929 case WM8962_EQ6:
930 case WM8962_EQ7:
931 case WM8962_EQ8:
932 case WM8962_EQ9:
933 case WM8962_EQ10:
934 case WM8962_EQ11:
935 case WM8962_EQ12:
936 case WM8962_EQ13:
937 case WM8962_EQ14:
938 case WM8962_EQ15:
939 case WM8962_EQ16:
940 case WM8962_EQ17:
941 case WM8962_EQ18:
942 case WM8962_EQ19:
943 case WM8962_EQ20:
944 case WM8962_EQ21:
945 case WM8962_EQ22:
946 case WM8962_EQ23:
947 case WM8962_EQ24:
948 case WM8962_EQ25:
949 case WM8962_EQ26:
950 case WM8962_EQ27:
951 case WM8962_EQ28:
952 case WM8962_EQ29:
953 case WM8962_EQ30:
954 case WM8962_EQ31:
955 case WM8962_EQ32:
956 case WM8962_EQ33:
957 case WM8962_EQ34:
958 case WM8962_EQ35:
959 case WM8962_EQ36:
960 case WM8962_EQ37:
961 case WM8962_EQ38:
962 case WM8962_EQ39:
963 case WM8962_EQ40:
964 case WM8962_EQ41:
965 case WM8962_GPIO_BASE:
966 case WM8962_GPIO_2:
967 case WM8962_GPIO_3:
968 case WM8962_GPIO_5:
969 case WM8962_GPIO_6:
970 case WM8962_INTERRUPT_STATUS_1:
971 case WM8962_INTERRUPT_STATUS_2:
972 case WM8962_INTERRUPT_STATUS_1_MASK:
973 case WM8962_INTERRUPT_STATUS_2_MASK:
974 case WM8962_INTERRUPT_CONTROL:
975 case WM8962_IRQ_DEBOUNCE:
976 case WM8962_MICINT_SOURCE_POL:
977 case WM8962_DSP2_POWER_MANAGEMENT:
978 case WM8962_DSP2_EXECCONTROL:
979 case WM8962_DSP2_INSTRUCTION_RAM_0:
980 case WM8962_DSP2_ADDRESS_RAM_2:
981 case WM8962_DSP2_ADDRESS_RAM_1:
982 case WM8962_DSP2_ADDRESS_RAM_0:
983 case WM8962_DSP2_DATA1_RAM_1:
984 case WM8962_DSP2_DATA1_RAM_0:
985 case WM8962_DSP2_DATA2_RAM_1:
986 case WM8962_DSP2_DATA2_RAM_0:
987 case WM8962_DSP2_DATA3_RAM_1:
988 case WM8962_DSP2_DATA3_RAM_0:
989 case WM8962_DSP2_COEFF_RAM_0:
990 case WM8962_RETUNEADC_SHARED_COEFF_1:
991 case WM8962_RETUNEADC_SHARED_COEFF_0:
992 case WM8962_RETUNEDAC_SHARED_COEFF_1:
993 case WM8962_RETUNEDAC_SHARED_COEFF_0:
994 case WM8962_SOUNDSTAGE_ENABLES_1:
995 case WM8962_SOUNDSTAGE_ENABLES_0:
996 case WM8962_HDBASS_AI_1:
997 case WM8962_HDBASS_AI_0:
998 case WM8962_HDBASS_AR_1:
999 case WM8962_HDBASS_AR_0:
1000 case WM8962_HDBASS_B_1:
1001 case WM8962_HDBASS_B_0:
1002 case WM8962_HDBASS_K_1:
1003 case WM8962_HDBASS_K_0:
1004 case WM8962_HDBASS_N1_1:
1005 case WM8962_HDBASS_N1_0:
1006 case WM8962_HDBASS_N2_1:
1007 case WM8962_HDBASS_N2_0:
1008 case WM8962_HDBASS_N3_1:
1009 case WM8962_HDBASS_N3_0:
1010 case WM8962_HDBASS_N4_1:
1011 case WM8962_HDBASS_N4_0:
1012 case WM8962_HDBASS_N5_1:
1013 case WM8962_HDBASS_N5_0:
1014 case WM8962_HDBASS_X1_1:
1015 case WM8962_HDBASS_X1_0:
1016 case WM8962_HDBASS_X2_1:
1017 case WM8962_HDBASS_X2_0:
1018 case WM8962_HDBASS_X3_1:
1019 case WM8962_HDBASS_X3_0:
1020 case WM8962_HDBASS_ATK_1:
1021 case WM8962_HDBASS_ATK_0:
1022 case WM8962_HDBASS_DCY_1:
1023 case WM8962_HDBASS_DCY_0:
1024 case WM8962_HDBASS_PG_1:
1025 case WM8962_HDBASS_PG_0:
1026 case WM8962_HPF_C_1:
1027 case WM8962_HPF_C_0:
1028 case WM8962_ADCL_RETUNE_C1_1:
1029 case WM8962_ADCL_RETUNE_C1_0:
1030 case WM8962_ADCL_RETUNE_C2_1:
1031 case WM8962_ADCL_RETUNE_C2_0:
1032 case WM8962_ADCL_RETUNE_C3_1:
1033 case WM8962_ADCL_RETUNE_C3_0:
1034 case WM8962_ADCL_RETUNE_C4_1:
1035 case WM8962_ADCL_RETUNE_C4_0:
1036 case WM8962_ADCL_RETUNE_C5_1:
1037 case WM8962_ADCL_RETUNE_C5_0:
1038 case WM8962_ADCL_RETUNE_C6_1:
1039 case WM8962_ADCL_RETUNE_C6_0:
1040 case WM8962_ADCL_RETUNE_C7_1:
1041 case WM8962_ADCL_RETUNE_C7_0:
1042 case WM8962_ADCL_RETUNE_C8_1:
1043 case WM8962_ADCL_RETUNE_C8_0:
1044 case WM8962_ADCL_RETUNE_C9_1:
1045 case WM8962_ADCL_RETUNE_C9_0:
1046 case WM8962_ADCL_RETUNE_C10_1:
1047 case WM8962_ADCL_RETUNE_C10_0:
1048 case WM8962_ADCL_RETUNE_C11_1:
1049 case WM8962_ADCL_RETUNE_C11_0:
1050 case WM8962_ADCL_RETUNE_C12_1:
1051 case WM8962_ADCL_RETUNE_C12_0:
1052 case WM8962_ADCL_RETUNE_C13_1:
1053 case WM8962_ADCL_RETUNE_C13_0:
1054 case WM8962_ADCL_RETUNE_C14_1:
1055 case WM8962_ADCL_RETUNE_C14_0:
1056 case WM8962_ADCL_RETUNE_C15_1:
1057 case WM8962_ADCL_RETUNE_C15_0:
1058 case WM8962_ADCL_RETUNE_C16_1:
1059 case WM8962_ADCL_RETUNE_C16_0:
1060 case WM8962_ADCL_RETUNE_C17_1:
1061 case WM8962_ADCL_RETUNE_C17_0:
1062 case WM8962_ADCL_RETUNE_C18_1:
1063 case WM8962_ADCL_RETUNE_C18_0:
1064 case WM8962_ADCL_RETUNE_C19_1:
1065 case WM8962_ADCL_RETUNE_C19_0:
1066 case WM8962_ADCL_RETUNE_C20_1:
1067 case WM8962_ADCL_RETUNE_C20_0:
1068 case WM8962_ADCL_RETUNE_C21_1:
1069 case WM8962_ADCL_RETUNE_C21_0:
1070 case WM8962_ADCL_RETUNE_C22_1:
1071 case WM8962_ADCL_RETUNE_C22_0:
1072 case WM8962_ADCL_RETUNE_C23_1:
1073 case WM8962_ADCL_RETUNE_C23_0:
1074 case WM8962_ADCL_RETUNE_C24_1:
1075 case WM8962_ADCL_RETUNE_C24_0:
1076 case WM8962_ADCL_RETUNE_C25_1:
1077 case WM8962_ADCL_RETUNE_C25_0:
1078 case WM8962_ADCL_RETUNE_C26_1:
1079 case WM8962_ADCL_RETUNE_C26_0:
1080 case WM8962_ADCL_RETUNE_C27_1:
1081 case WM8962_ADCL_RETUNE_C27_0:
1082 case WM8962_ADCL_RETUNE_C28_1:
1083 case WM8962_ADCL_RETUNE_C28_0:
1084 case WM8962_ADCL_RETUNE_C29_1:
1085 case WM8962_ADCL_RETUNE_C29_0:
1086 case WM8962_ADCL_RETUNE_C30_1:
1087 case WM8962_ADCL_RETUNE_C30_0:
1088 case WM8962_ADCL_RETUNE_C31_1:
1089 case WM8962_ADCL_RETUNE_C31_0:
1090 case WM8962_ADCL_RETUNE_C32_1:
1091 case WM8962_ADCL_RETUNE_C32_0:
1092 case WM8962_RETUNEADC_PG2_1:
1093 case WM8962_RETUNEADC_PG2_0:
1094 case WM8962_RETUNEADC_PG_1:
1095 case WM8962_RETUNEADC_PG_0:
1096 case WM8962_ADCR_RETUNE_C1_1:
1097 case WM8962_ADCR_RETUNE_C1_0:
1098 case WM8962_ADCR_RETUNE_C2_1:
1099 case WM8962_ADCR_RETUNE_C2_0:
1100 case WM8962_ADCR_RETUNE_C3_1:
1101 case WM8962_ADCR_RETUNE_C3_0:
1102 case WM8962_ADCR_RETUNE_C4_1:
1103 case WM8962_ADCR_RETUNE_C4_0:
1104 case WM8962_ADCR_RETUNE_C5_1:
1105 case WM8962_ADCR_RETUNE_C5_0:
1106 case WM8962_ADCR_RETUNE_C6_1:
1107 case WM8962_ADCR_RETUNE_C6_0:
1108 case WM8962_ADCR_RETUNE_C7_1:
1109 case WM8962_ADCR_RETUNE_C7_0:
1110 case WM8962_ADCR_RETUNE_C8_1:
1111 case WM8962_ADCR_RETUNE_C8_0:
1112 case WM8962_ADCR_RETUNE_C9_1:
1113 case WM8962_ADCR_RETUNE_C9_0:
1114 case WM8962_ADCR_RETUNE_C10_1:
1115 case WM8962_ADCR_RETUNE_C10_0:
1116 case WM8962_ADCR_RETUNE_C11_1:
1117 case WM8962_ADCR_RETUNE_C11_0:
1118 case WM8962_ADCR_RETUNE_C12_1:
1119 case WM8962_ADCR_RETUNE_C12_0:
1120 case WM8962_ADCR_RETUNE_C13_1:
1121 case WM8962_ADCR_RETUNE_C13_0:
1122 case WM8962_ADCR_RETUNE_C14_1:
1123 case WM8962_ADCR_RETUNE_C14_0:
1124 case WM8962_ADCR_RETUNE_C15_1:
1125 case WM8962_ADCR_RETUNE_C15_0:
1126 case WM8962_ADCR_RETUNE_C16_1:
1127 case WM8962_ADCR_RETUNE_C16_0:
1128 case WM8962_ADCR_RETUNE_C17_1:
1129 case WM8962_ADCR_RETUNE_C17_0:
1130 case WM8962_ADCR_RETUNE_C18_1:
1131 case WM8962_ADCR_RETUNE_C18_0:
1132 case WM8962_ADCR_RETUNE_C19_1:
1133 case WM8962_ADCR_RETUNE_C19_0:
1134 case WM8962_ADCR_RETUNE_C20_1:
1135 case WM8962_ADCR_RETUNE_C20_0:
1136 case WM8962_ADCR_RETUNE_C21_1:
1137 case WM8962_ADCR_RETUNE_C21_0:
1138 case WM8962_ADCR_RETUNE_C22_1:
1139 case WM8962_ADCR_RETUNE_C22_0:
1140 case WM8962_ADCR_RETUNE_C23_1:
1141 case WM8962_ADCR_RETUNE_C23_0:
1142 case WM8962_ADCR_RETUNE_C24_1:
1143 case WM8962_ADCR_RETUNE_C24_0:
1144 case WM8962_ADCR_RETUNE_C25_1:
1145 case WM8962_ADCR_RETUNE_C25_0:
1146 case WM8962_ADCR_RETUNE_C26_1:
1147 case WM8962_ADCR_RETUNE_C26_0:
1148 case WM8962_ADCR_RETUNE_C27_1:
1149 case WM8962_ADCR_RETUNE_C27_0:
1150 case WM8962_ADCR_RETUNE_C28_1:
1151 case WM8962_ADCR_RETUNE_C28_0:
1152 case WM8962_ADCR_RETUNE_C29_1:
1153 case WM8962_ADCR_RETUNE_C29_0:
1154 case WM8962_ADCR_RETUNE_C30_1:
1155 case WM8962_ADCR_RETUNE_C30_0:
1156 case WM8962_ADCR_RETUNE_C31_1:
1157 case WM8962_ADCR_RETUNE_C31_0:
1158 case WM8962_ADCR_RETUNE_C32_1:
1159 case WM8962_ADCR_RETUNE_C32_0:
1160 case WM8962_DACL_RETUNE_C1_1:
1161 case WM8962_DACL_RETUNE_C1_0:
1162 case WM8962_DACL_RETUNE_C2_1:
1163 case WM8962_DACL_RETUNE_C2_0:
1164 case WM8962_DACL_RETUNE_C3_1:
1165 case WM8962_DACL_RETUNE_C3_0:
1166 case WM8962_DACL_RETUNE_C4_1:
1167 case WM8962_DACL_RETUNE_C4_0:
1168 case WM8962_DACL_RETUNE_C5_1:
1169 case WM8962_DACL_RETUNE_C5_0:
1170 case WM8962_DACL_RETUNE_C6_1:
1171 case WM8962_DACL_RETUNE_C6_0:
1172 case WM8962_DACL_RETUNE_C7_1:
1173 case WM8962_DACL_RETUNE_C7_0:
1174 case WM8962_DACL_RETUNE_C8_1:
1175 case WM8962_DACL_RETUNE_C8_0:
1176 case WM8962_DACL_RETUNE_C9_1:
1177 case WM8962_DACL_RETUNE_C9_0:
1178 case WM8962_DACL_RETUNE_C10_1:
1179 case WM8962_DACL_RETUNE_C10_0:
1180 case WM8962_DACL_RETUNE_C11_1:
1181 case WM8962_DACL_RETUNE_C11_0:
1182 case WM8962_DACL_RETUNE_C12_1:
1183 case WM8962_DACL_RETUNE_C12_0:
1184 case WM8962_DACL_RETUNE_C13_1:
1185 case WM8962_DACL_RETUNE_C13_0:
1186 case WM8962_DACL_RETUNE_C14_1:
1187 case WM8962_DACL_RETUNE_C14_0:
1188 case WM8962_DACL_RETUNE_C15_1:
1189 case WM8962_DACL_RETUNE_C15_0:
1190 case WM8962_DACL_RETUNE_C16_1:
1191 case WM8962_DACL_RETUNE_C16_0:
1192 case WM8962_DACL_RETUNE_C17_1:
1193 case WM8962_DACL_RETUNE_C17_0:
1194 case WM8962_DACL_RETUNE_C18_1:
1195 case WM8962_DACL_RETUNE_C18_0:
1196 case WM8962_DACL_RETUNE_C19_1:
1197 case WM8962_DACL_RETUNE_C19_0:
1198 case WM8962_DACL_RETUNE_C20_1:
1199 case WM8962_DACL_RETUNE_C20_0:
1200 case WM8962_DACL_RETUNE_C21_1:
1201 case WM8962_DACL_RETUNE_C21_0:
1202 case WM8962_DACL_RETUNE_C22_1:
1203 case WM8962_DACL_RETUNE_C22_0:
1204 case WM8962_DACL_RETUNE_C23_1:
1205 case WM8962_DACL_RETUNE_C23_0:
1206 case WM8962_DACL_RETUNE_C24_1:
1207 case WM8962_DACL_RETUNE_C24_0:
1208 case WM8962_DACL_RETUNE_C25_1:
1209 case WM8962_DACL_RETUNE_C25_0:
1210 case WM8962_DACL_RETUNE_C26_1:
1211 case WM8962_DACL_RETUNE_C26_0:
1212 case WM8962_DACL_RETUNE_C27_1:
1213 case WM8962_DACL_RETUNE_C27_0:
1214 case WM8962_DACL_RETUNE_C28_1:
1215 case WM8962_DACL_RETUNE_C28_0:
1216 case WM8962_DACL_RETUNE_C29_1:
1217 case WM8962_DACL_RETUNE_C29_0:
1218 case WM8962_DACL_RETUNE_C30_1:
1219 case WM8962_DACL_RETUNE_C30_0:
1220 case WM8962_DACL_RETUNE_C31_1:
1221 case WM8962_DACL_RETUNE_C31_0:
1222 case WM8962_DACL_RETUNE_C32_1:
1223 case WM8962_DACL_RETUNE_C32_0:
1224 case WM8962_RETUNEDAC_PG2_1:
1225 case WM8962_RETUNEDAC_PG2_0:
1226 case WM8962_RETUNEDAC_PG_1:
1227 case WM8962_RETUNEDAC_PG_0:
1228 case WM8962_DACR_RETUNE_C1_1:
1229 case WM8962_DACR_RETUNE_C1_0:
1230 case WM8962_DACR_RETUNE_C2_1:
1231 case WM8962_DACR_RETUNE_C2_0:
1232 case WM8962_DACR_RETUNE_C3_1:
1233 case WM8962_DACR_RETUNE_C3_0:
1234 case WM8962_DACR_RETUNE_C4_1:
1235 case WM8962_DACR_RETUNE_C4_0:
1236 case WM8962_DACR_RETUNE_C5_1:
1237 case WM8962_DACR_RETUNE_C5_0:
1238 case WM8962_DACR_RETUNE_C6_1:
1239 case WM8962_DACR_RETUNE_C6_0:
1240 case WM8962_DACR_RETUNE_C7_1:
1241 case WM8962_DACR_RETUNE_C7_0:
1242 case WM8962_DACR_RETUNE_C8_1:
1243 case WM8962_DACR_RETUNE_C8_0:
1244 case WM8962_DACR_RETUNE_C9_1:
1245 case WM8962_DACR_RETUNE_C9_0:
1246 case WM8962_DACR_RETUNE_C10_1:
1247 case WM8962_DACR_RETUNE_C10_0:
1248 case WM8962_DACR_RETUNE_C11_1:
1249 case WM8962_DACR_RETUNE_C11_0:
1250 case WM8962_DACR_RETUNE_C12_1:
1251 case WM8962_DACR_RETUNE_C12_0:
1252 case WM8962_DACR_RETUNE_C13_1:
1253 case WM8962_DACR_RETUNE_C13_0:
1254 case WM8962_DACR_RETUNE_C14_1:
1255 case WM8962_DACR_RETUNE_C14_0:
1256 case WM8962_DACR_RETUNE_C15_1:
1257 case WM8962_DACR_RETUNE_C15_0:
1258 case WM8962_DACR_RETUNE_C16_1:
1259 case WM8962_DACR_RETUNE_C16_0:
1260 case WM8962_DACR_RETUNE_C17_1:
1261 case WM8962_DACR_RETUNE_C17_0:
1262 case WM8962_DACR_RETUNE_C18_1:
1263 case WM8962_DACR_RETUNE_C18_0:
1264 case WM8962_DACR_RETUNE_C19_1:
1265 case WM8962_DACR_RETUNE_C19_0:
1266 case WM8962_DACR_RETUNE_C20_1:
1267 case WM8962_DACR_RETUNE_C20_0:
1268 case WM8962_DACR_RETUNE_C21_1:
1269 case WM8962_DACR_RETUNE_C21_0:
1270 case WM8962_DACR_RETUNE_C22_1:
1271 case WM8962_DACR_RETUNE_C22_0:
1272 case WM8962_DACR_RETUNE_C23_1:
1273 case WM8962_DACR_RETUNE_C23_0:
1274 case WM8962_DACR_RETUNE_C24_1:
1275 case WM8962_DACR_RETUNE_C24_0:
1276 case WM8962_DACR_RETUNE_C25_1:
1277 case WM8962_DACR_RETUNE_C25_0:
1278 case WM8962_DACR_RETUNE_C26_1:
1279 case WM8962_DACR_RETUNE_C26_0:
1280 case WM8962_DACR_RETUNE_C27_1:
1281 case WM8962_DACR_RETUNE_C27_0:
1282 case WM8962_DACR_RETUNE_C28_1:
1283 case WM8962_DACR_RETUNE_C28_0:
1284 case WM8962_DACR_RETUNE_C29_1:
1285 case WM8962_DACR_RETUNE_C29_0:
1286 case WM8962_DACR_RETUNE_C30_1:
1287 case WM8962_DACR_RETUNE_C30_0:
1288 case WM8962_DACR_RETUNE_C31_1:
1289 case WM8962_DACR_RETUNE_C31_0:
1290 case WM8962_DACR_RETUNE_C32_1:
1291 case WM8962_DACR_RETUNE_C32_0:
1292 case WM8962_VSS_XHD2_1:
1293 case WM8962_VSS_XHD2_0:
1294 case WM8962_VSS_XHD3_1:
1295 case WM8962_VSS_XHD3_0:
1296 case WM8962_VSS_XHN1_1:
1297 case WM8962_VSS_XHN1_0:
1298 case WM8962_VSS_XHN2_1:
1299 case WM8962_VSS_XHN2_0:
1300 case WM8962_VSS_XHN3_1:
1301 case WM8962_VSS_XHN3_0:
1302 case WM8962_VSS_XLA_1:
1303 case WM8962_VSS_XLA_0:
1304 case WM8962_VSS_XLB_1:
1305 case WM8962_VSS_XLB_0:
1306 case WM8962_VSS_XLG_1:
1307 case WM8962_VSS_XLG_0:
1308 case WM8962_VSS_PG2_1:
1309 case WM8962_VSS_PG2_0:
1310 case WM8962_VSS_PG_1:
1311 case WM8962_VSS_PG_0:
1312 case WM8962_VSS_XTD1_1:
1313 case WM8962_VSS_XTD1_0:
1314 case WM8962_VSS_XTD2_1:
1315 case WM8962_VSS_XTD2_0:
1316 case WM8962_VSS_XTD3_1:
1317 case WM8962_VSS_XTD3_0:
1318 case WM8962_VSS_XTD4_1:
1319 case WM8962_VSS_XTD4_0:
1320 case WM8962_VSS_XTD5_1:
1321 case WM8962_VSS_XTD5_0:
1322 case WM8962_VSS_XTD6_1:
1323 case WM8962_VSS_XTD6_0:
1324 case WM8962_VSS_XTD7_1:
1325 case WM8962_VSS_XTD7_0:
1326 case WM8962_VSS_XTD8_1:
1327 case WM8962_VSS_XTD8_0:
1328 case WM8962_VSS_XTD9_1:
1329 case WM8962_VSS_XTD9_0:
1330 case WM8962_VSS_XTD10_1:
1331 case WM8962_VSS_XTD10_0:
1332 case WM8962_VSS_XTD11_1:
1333 case WM8962_VSS_XTD11_0:
1334 case WM8962_VSS_XTD12_1:
1335 case WM8962_VSS_XTD12_0:
1336 case WM8962_VSS_XTD13_1:
1337 case WM8962_VSS_XTD13_0:
1338 case WM8962_VSS_XTD14_1:
1339 case WM8962_VSS_XTD14_0:
1340 case WM8962_VSS_XTD15_1:
1341 case WM8962_VSS_XTD15_0:
1342 case WM8962_VSS_XTD16_1:
1343 case WM8962_VSS_XTD16_0:
1344 case WM8962_VSS_XTD17_1:
1345 case WM8962_VSS_XTD17_0:
1346 case WM8962_VSS_XTD18_1:
1347 case WM8962_VSS_XTD18_0:
1348 case WM8962_VSS_XTD19_1:
1349 case WM8962_VSS_XTD19_0:
1350 case WM8962_VSS_XTD20_1:
1351 case WM8962_VSS_XTD20_0:
1352 case WM8962_VSS_XTD21_1:
1353 case WM8962_VSS_XTD21_0:
1354 case WM8962_VSS_XTD22_1:
1355 case WM8962_VSS_XTD22_0:
1356 case WM8962_VSS_XTD23_1:
1357 case WM8962_VSS_XTD23_0:
1358 case WM8962_VSS_XTD24_1:
1359 case WM8962_VSS_XTD24_0:
1360 case WM8962_VSS_XTD25_1:
1361 case WM8962_VSS_XTD25_0:
1362 case WM8962_VSS_XTD26_1:
1363 case WM8962_VSS_XTD26_0:
1364 case WM8962_VSS_XTD27_1:
1365 case WM8962_VSS_XTD27_0:
1366 case WM8962_VSS_XTD28_1:
1367 case WM8962_VSS_XTD28_0:
1368 case WM8962_VSS_XTD29_1:
1369 case WM8962_VSS_XTD29_0:
1370 case WM8962_VSS_XTD30_1:
1371 case WM8962_VSS_XTD30_0:
1372 case WM8962_VSS_XTD31_1:
1373 case WM8962_VSS_XTD31_0:
1374 case WM8962_VSS_XTD32_1:
1375 case WM8962_VSS_XTD32_0:
1376 case WM8962_VSS_XTS1_1:
1377 case WM8962_VSS_XTS1_0:
1378 case WM8962_VSS_XTS2_1:
1379 case WM8962_VSS_XTS2_0:
1380 case WM8962_VSS_XTS3_1:
1381 case WM8962_VSS_XTS3_0:
1382 case WM8962_VSS_XTS4_1:
1383 case WM8962_VSS_XTS4_0:
1384 case WM8962_VSS_XTS5_1:
1385 case WM8962_VSS_XTS5_0:
1386 case WM8962_VSS_XTS6_1:
1387 case WM8962_VSS_XTS6_0:
1388 case WM8962_VSS_XTS7_1:
1389 case WM8962_VSS_XTS7_0:
1390 case WM8962_VSS_XTS8_1:
1391 case WM8962_VSS_XTS8_0:
1392 case WM8962_VSS_XTS9_1:
1393 case WM8962_VSS_XTS9_0:
1394 case WM8962_VSS_XTS10_1:
1395 case WM8962_VSS_XTS10_0:
1396 case WM8962_VSS_XTS11_1:
1397 case WM8962_VSS_XTS11_0:
1398 case WM8962_VSS_XTS12_1:
1399 case WM8962_VSS_XTS12_0:
1400 case WM8962_VSS_XTS13_1:
1401 case WM8962_VSS_XTS13_0:
1402 case WM8962_VSS_XTS14_1:
1403 case WM8962_VSS_XTS14_0:
1404 case WM8962_VSS_XTS15_1:
1405 case WM8962_VSS_XTS15_0:
1406 case WM8962_VSS_XTS16_1:
1407 case WM8962_VSS_XTS16_0:
1408 case WM8962_VSS_XTS17_1:
1409 case WM8962_VSS_XTS17_0:
1410 case WM8962_VSS_XTS18_1:
1411 case WM8962_VSS_XTS18_0:
1412 case WM8962_VSS_XTS19_1:
1413 case WM8962_VSS_XTS19_0:
1414 case WM8962_VSS_XTS20_1:
1415 case WM8962_VSS_XTS20_0:
1416 case WM8962_VSS_XTS21_1:
1417 case WM8962_VSS_XTS21_0:
1418 case WM8962_VSS_XTS22_1:
1419 case WM8962_VSS_XTS22_0:
1420 case WM8962_VSS_XTS23_1:
1421 case WM8962_VSS_XTS23_0:
1422 case WM8962_VSS_XTS24_1:
1423 case WM8962_VSS_XTS24_0:
1424 case WM8962_VSS_XTS25_1:
1425 case WM8962_VSS_XTS25_0:
1426 case WM8962_VSS_XTS26_1:
1427 case WM8962_VSS_XTS26_0:
1428 case WM8962_VSS_XTS27_1:
1429 case WM8962_VSS_XTS27_0:
1430 case WM8962_VSS_XTS28_1:
1431 case WM8962_VSS_XTS28_0:
1432 case WM8962_VSS_XTS29_1:
1433 case WM8962_VSS_XTS29_0:
1434 case WM8962_VSS_XTS30_1:
1435 case WM8962_VSS_XTS30_0:
1436 case WM8962_VSS_XTS31_1:
1437 case WM8962_VSS_XTS31_0:
1438 case WM8962_VSS_XTS32_1:
1439 case WM8962_VSS_XTS32_0:
1440 return true;
1441 default:
1442 return false;
1443 }
9a76f1ff
MB
1444}
1445
7b16f560 1446static int wm8962_reset(struct wm8962_priv *wm8962)
9a76f1ff 1447{
4f4488ab
MB
1448 int ret;
1449
7b16f560 1450 ret = regmap_write(wm8962->regmap, WM8962_SOFTWARE_RESET, 0x6243);
4f4488ab
MB
1451 if (ret != 0)
1452 return ret;
1453
7b16f560 1454 return regmap_write(wm8962->regmap, WM8962_PLL_SOFTWARE_RESET, 0);
9a76f1ff
MB
1455}
1456
1457static const DECLARE_TLV_DB_SCALE(inpga_tlv, -2325, 75, 0);
1458static const DECLARE_TLV_DB_SCALE(mixin_tlv, -1500, 300, 0);
1459static const unsigned int mixinpga_tlv[] = {
43e9dc7b 1460 TLV_DB_RANGE_HEAD(5),
9a76f1ff
MB
1461 0, 1, TLV_DB_SCALE_ITEM(0, 600, 0),
1462 2, 2, TLV_DB_SCALE_ITEM(1300, 1300, 0),
1463 3, 4, TLV_DB_SCALE_ITEM(1800, 200, 0),
1464 5, 5, TLV_DB_SCALE_ITEM(2400, 0, 0),
1465 6, 7, TLV_DB_SCALE_ITEM(2700, 300, 0),
1466};
1467static const DECLARE_TLV_DB_SCALE(beep_tlv, -9600, 600, 1);
1468static const DECLARE_TLV_DB_SCALE(digital_tlv, -7200, 75, 1);
1469static const DECLARE_TLV_DB_SCALE(st_tlv, -3600, 300, 0);
1470static const DECLARE_TLV_DB_SCALE(inmix_tlv, -600, 600, 0);
1471static const DECLARE_TLV_DB_SCALE(bypass_tlv, -1500, 300, 0);
1472static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
1473static const DECLARE_TLV_DB_SCALE(hp_tlv, -700, 100, 0);
1474static const unsigned int classd_tlv[] = {
43e9dc7b 1475 TLV_DB_RANGE_HEAD(2),
9a76f1ff
MB
1476 0, 6, TLV_DB_SCALE_ITEM(0, 150, 0),
1477 7, 7, TLV_DB_SCALE_ITEM(1200, 0, 0),
1478};
8f63aaa8 1479static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
9a76f1ff 1480
6f88a4e5
MB
1481static int wm8962_dsp2_write_config(struct snd_soc_codec *codec)
1482{
d7f31d3c
LPC
1483 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
1484
1485 return regcache_sync_region(wm8962->regmap,
26b427a7 1486 WM8962_HDBASS_AI_1, WM8962_MAX_REGISTER);
6f88a4e5
MB
1487}
1488
1489static int wm8962_dsp2_set_enable(struct snd_soc_codec *codec, u16 val)
1490{
1491 u16 adcl = snd_soc_read(codec, WM8962_LEFT_ADC_VOLUME);
1492 u16 adcr = snd_soc_read(codec, WM8962_RIGHT_ADC_VOLUME);
1493 u16 dac = snd_soc_read(codec, WM8962_ADC_DAC_CONTROL_1);
1494
1495 /* Mute the ADCs and DACs */
1496 snd_soc_write(codec, WM8962_LEFT_ADC_VOLUME, 0);
1497 snd_soc_write(codec, WM8962_RIGHT_ADC_VOLUME, WM8962_ADC_VU);
1498 snd_soc_update_bits(codec, WM8962_ADC_DAC_CONTROL_1,
1499 WM8962_DAC_MUTE, WM8962_DAC_MUTE);
1500
1501 snd_soc_write(codec, WM8962_SOUNDSTAGE_ENABLES_0, val);
1502
1503 /* Restore the ADCs and DACs */
1504 snd_soc_write(codec, WM8962_LEFT_ADC_VOLUME, adcl);
1505 snd_soc_write(codec, WM8962_RIGHT_ADC_VOLUME, adcr);
1506 snd_soc_update_bits(codec, WM8962_ADC_DAC_CONTROL_1,
1507 WM8962_DAC_MUTE, dac);
1508
1509 return 0;
1510}
1511
1512static int wm8962_dsp2_start(struct snd_soc_codec *codec)
1513{
1514 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
1515
1516 wm8962_dsp2_write_config(codec);
1517
1518 snd_soc_write(codec, WM8962_DSP2_EXECCONTROL, WM8962_DSP2_RUNR);
1519
1520 wm8962_dsp2_set_enable(codec, wm8962->dsp2_ena);
1521
1522 return 0;
1523}
1524
1525static int wm8962_dsp2_stop(struct snd_soc_codec *codec)
1526{
1527 wm8962_dsp2_set_enable(codec, 0);
1528
1529 snd_soc_write(codec, WM8962_DSP2_EXECCONTROL, WM8962_DSP2_STOP);
1530
1531 return 0;
1532}
1533
1534#define WM8962_DSP2_ENABLE(xname, xshift) \
1535{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1536 .info = wm8962_dsp2_ena_info, \
1537 .get = wm8962_dsp2_ena_get, .put = wm8962_dsp2_ena_put, \
1538 .private_value = xshift }
1539
1540static int wm8962_dsp2_ena_info(struct snd_kcontrol *kcontrol,
1541 struct snd_ctl_elem_info *uinfo)
1542{
1543 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1544
1545 uinfo->count = 1;
1546 uinfo->value.integer.min = 0;
1547 uinfo->value.integer.max = 1;
1548
1549 return 0;
1550}
1551
1552static int wm8962_dsp2_ena_get(struct snd_kcontrol *kcontrol,
1553 struct snd_ctl_elem_value *ucontrol)
1554{
1555 int shift = kcontrol->private_value;
ea53bf77 1556 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
6f88a4e5
MB
1557 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
1558
1559 ucontrol->value.integer.value[0] = !!(wm8962->dsp2_ena & 1 << shift);
1560
1561 return 0;
1562}
1563
1564static int wm8962_dsp2_ena_put(struct snd_kcontrol *kcontrol,
1565 struct snd_ctl_elem_value *ucontrol)
1566{
1567 int shift = kcontrol->private_value;
ea53bf77 1568 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
6f88a4e5
MB
1569 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
1570 int old = wm8962->dsp2_ena;
1571 int ret = 0;
1572 int dsp2_running = snd_soc_read(codec, WM8962_DSP2_POWER_MANAGEMENT) &
1573 WM8962_DSP2_ENA;
1574
3e4199ef 1575 mutex_lock(&wm8962->dsp2_ena_lock);
6f88a4e5
MB
1576
1577 if (ucontrol->value.integer.value[0])
1578 wm8962->dsp2_ena |= 1 << shift;
1579 else
1580 wm8962->dsp2_ena &= ~(1 << shift);
1581
1582 if (wm8962->dsp2_ena == old)
1583 goto out;
1584
1585 ret = 1;
1586
1587 if (dsp2_running) {
1588 if (wm8962->dsp2_ena)
1589 wm8962_dsp2_set_enable(codec, wm8962->dsp2_ena);
1590 else
1591 wm8962_dsp2_stop(codec);
1592 }
1593
1594out:
3e4199ef 1595 mutex_unlock(&wm8962->dsp2_ena_lock);
6f88a4e5
MB
1596
1597 return ret;
1598}
1599
9a76f1ff
MB
1600/* The VU bits for the headphones are in a different register to the mute
1601 * bits and only take effect on the PGA if it is actually powered.
1602 */
1603static int wm8962_put_hp_sw(struct snd_kcontrol *kcontrol,
1604 struct snd_ctl_elem_value *ucontrol)
1605{
ea53bf77 1606 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
9a76f1ff
MB
1607 int ret;
1608
1609 /* Apply the update (if any) */
1610 ret = snd_soc_put_volsw(kcontrol, ucontrol);
1611 if (ret == 0)
1612 return 0;
1613
1614 /* If the left PGA is enabled hit that VU bit... */
2e7ee15c
NC
1615 ret = snd_soc_read(codec, WM8962_PWR_MGMT_2);
1616 if (ret & WM8962_HPOUTL_PGA_ENA) {
1617 snd_soc_write(codec, WM8962_HPOUTL_VOLUME,
1618 snd_soc_read(codec, WM8962_HPOUTL_VOLUME));
1619 return 1;
1620 }
9a76f1ff
MB
1621
1622 /* ...otherwise the right. The VU is stereo. */
2e7ee15c
NC
1623 if (ret & WM8962_HPOUTR_PGA_ENA)
1624 snd_soc_write(codec, WM8962_HPOUTR_VOLUME,
1625 snd_soc_read(codec, WM8962_HPOUTR_VOLUME));
9a76f1ff 1626
2e7ee15c 1627 return 1;
9a76f1ff
MB
1628}
1629
1630/* The VU bits for the speakers are in a different register to the mute
1631 * bits and only take effect on the PGA if it is actually powered.
1632 */
1633static int wm8962_put_spk_sw(struct snd_kcontrol *kcontrol,
1634 struct snd_ctl_elem_value *ucontrol)
1635{
ea53bf77 1636 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
9a76f1ff
MB
1637 int ret;
1638
1639 /* Apply the update (if any) */
1640 ret = snd_soc_put_volsw(kcontrol, ucontrol);
1641 if (ret == 0)
1642 return 0;
1643
1644 /* If the left PGA is enabled hit that VU bit... */
38f3f31a
MB
1645 ret = snd_soc_read(codec, WM8962_PWR_MGMT_2);
1646 if (ret & WM8962_SPKOUTL_PGA_ENA) {
1647 snd_soc_write(codec, WM8962_SPKOUTL_VOLUME,
1648 snd_soc_read(codec, WM8962_SPKOUTL_VOLUME));
1649 return 1;
1650 }
9a76f1ff
MB
1651
1652 /* ...otherwise the right. The VU is stereo. */
38f3f31a
MB
1653 if (ret & WM8962_SPKOUTR_PGA_ENA)
1654 snd_soc_write(codec, WM8962_SPKOUTR_VOLUME,
1655 snd_soc_read(codec, WM8962_SPKOUTR_VOLUME));
9a76f1ff 1656
38f3f31a 1657 return 1;
9a76f1ff
MB
1658}
1659
6be449e5
MB
1660static const char *cap_hpf_mode_text[] = {
1661 "Hi-fi", "Application"
1662};
1663
da6ebf83
TI
1664static SOC_ENUM_SINGLE_DECL(cap_hpf_mode,
1665 WM8962_ADC_DAC_CONTROL_2, 10, cap_hpf_mode_text);
6be449e5 1666
1ab63da7
MB
1667
1668static const char *cap_lhpf_mode_text[] = {
1669 "LPF", "HPF"
1670};
1671
da6ebf83
TI
1672static SOC_ENUM_SINGLE_DECL(cap_lhpf_mode,
1673 WM8962_LHPF1, 1, cap_lhpf_mode_text);
1ab63da7 1674
9a76f1ff
MB
1675static const struct snd_kcontrol_new wm8962_snd_controls[] = {
1676SOC_DOUBLE("Input Mixer Switch", WM8962_INPUT_MIXER_CONTROL_1, 3, 2, 1, 1),
1677
1678SOC_SINGLE_TLV("MIXINL IN2L Volume", WM8962_LEFT_INPUT_MIXER_VOLUME, 6, 7, 0,
1679 mixin_tlv),
1680SOC_SINGLE_TLV("MIXINL PGA Volume", WM8962_LEFT_INPUT_MIXER_VOLUME, 3, 7, 0,
1681 mixinpga_tlv),
1682SOC_SINGLE_TLV("MIXINL IN3L Volume", WM8962_LEFT_INPUT_MIXER_VOLUME, 0, 7, 0,
1683 mixin_tlv),
1684
1685SOC_SINGLE_TLV("MIXINR IN2R Volume", WM8962_RIGHT_INPUT_MIXER_VOLUME, 6, 7, 0,
1686 mixin_tlv),
1687SOC_SINGLE_TLV("MIXINR PGA Volume", WM8962_RIGHT_INPUT_MIXER_VOLUME, 3, 7, 0,
1688 mixinpga_tlv),
1689SOC_SINGLE_TLV("MIXINR IN3R Volume", WM8962_RIGHT_INPUT_MIXER_VOLUME, 0, 7, 0,
1690 mixin_tlv),
1691
1692SOC_DOUBLE_R_TLV("Digital Capture Volume", WM8962_LEFT_ADC_VOLUME,
1693 WM8962_RIGHT_ADC_VOLUME, 1, 127, 0, digital_tlv),
1694SOC_DOUBLE_R_TLV("Capture Volume", WM8962_LEFT_INPUT_VOLUME,
1695 WM8962_RIGHT_INPUT_VOLUME, 0, 63, 0, inpga_tlv),
1696SOC_DOUBLE_R("Capture Switch", WM8962_LEFT_INPUT_VOLUME,
1697 WM8962_RIGHT_INPUT_VOLUME, 7, 1, 1),
1698SOC_DOUBLE_R("Capture ZC Switch", WM8962_LEFT_INPUT_VOLUME,
1699 WM8962_RIGHT_INPUT_VOLUME, 6, 1, 1),
6be449e5
MB
1700SOC_SINGLE("Capture HPF Switch", WM8962_ADC_DAC_CONTROL_1, 0, 1, 1),
1701SOC_ENUM("Capture HPF Mode", cap_hpf_mode),
1702SOC_SINGLE("Capture HPF Cutoff", WM8962_ADC_DAC_CONTROL_2, 7, 7, 0),
1ab63da7
MB
1703SOC_SINGLE("Capture LHPF Switch", WM8962_LHPF1, 0, 1, 0),
1704SOC_ENUM("Capture LHPF Mode", cap_lhpf_mode),
9a76f1ff
MB
1705
1706SOC_DOUBLE_R_TLV("Sidetone Volume", WM8962_DAC_DSP_MIXING_1,
1707 WM8962_DAC_DSP_MIXING_2, 4, 12, 0, st_tlv),
1708
1709SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8962_LEFT_DAC_VOLUME,
1710 WM8962_RIGHT_DAC_VOLUME, 1, 127, 0, digital_tlv),
1711SOC_SINGLE("DAC High Performance Switch", WM8962_ADC_DAC_CONTROL_2, 0, 1, 0),
5f52ee48
MB
1712SOC_SINGLE("DAC L/R Swap Switch", WM8962_AUDIO_INTERFACE_0, 5, 1, 0),
1713SOC_SINGLE("ADC L/R Swap Switch", WM8962_AUDIO_INTERFACE_0, 8, 1, 0),
9a76f1ff
MB
1714
1715SOC_SINGLE("ADC High Performance Switch", WM8962_ADDITIONAL_CONTROL_1,
1716 5, 1, 0),
1717
1718SOC_SINGLE_TLV("Beep Volume", WM8962_BEEP_GENERATOR_1, 4, 15, 0, beep_tlv),
1719
1720SOC_DOUBLE_R_TLV("Headphone Volume", WM8962_HPOUTL_VOLUME,
1721 WM8962_HPOUTR_VOLUME, 0, 127, 0, out_tlv),
1722SOC_DOUBLE_EXT("Headphone Switch", WM8962_PWR_MGMT_2, 1, 0, 1, 1,
1723 snd_soc_get_volsw, wm8962_put_hp_sw),
1724SOC_DOUBLE_R("Headphone ZC Switch", WM8962_HPOUTL_VOLUME, WM8962_HPOUTR_VOLUME,
1725 7, 1, 0),
1726SOC_DOUBLE_TLV("Headphone Aux Volume", WM8962_ANALOGUE_HP_2, 3, 6, 7, 0,
1727 hp_tlv),
1728
1729SOC_DOUBLE_R("Headphone Mixer Switch", WM8962_HEADPHONE_MIXER_3,
1730 WM8962_HEADPHONE_MIXER_4, 8, 1, 1),
1731
1732SOC_SINGLE_TLV("HPMIXL IN4L Volume", WM8962_HEADPHONE_MIXER_3,
1733 3, 7, 0, bypass_tlv),
1734SOC_SINGLE_TLV("HPMIXL IN4R Volume", WM8962_HEADPHONE_MIXER_3,
1735 0, 7, 0, bypass_tlv),
1736SOC_SINGLE_TLV("HPMIXL MIXINL Volume", WM8962_HEADPHONE_MIXER_3,
1737 7, 1, 1, inmix_tlv),
1738SOC_SINGLE_TLV("HPMIXL MIXINR Volume", WM8962_HEADPHONE_MIXER_3,
1739 6, 1, 1, inmix_tlv),
1740
1741SOC_SINGLE_TLV("HPMIXR IN4L Volume", WM8962_HEADPHONE_MIXER_4,
1742 3, 7, 0, bypass_tlv),
1743SOC_SINGLE_TLV("HPMIXR IN4R Volume", WM8962_HEADPHONE_MIXER_4,
1744 0, 7, 0, bypass_tlv),
1745SOC_SINGLE_TLV("HPMIXR MIXINL Volume", WM8962_HEADPHONE_MIXER_4,
1746 7, 1, 1, inmix_tlv),
1747SOC_SINGLE_TLV("HPMIXR MIXINR Volume", WM8962_HEADPHONE_MIXER_4,
1748 6, 1, 1, inmix_tlv),
1749
1750SOC_SINGLE_TLV("Speaker Boost Volume", WM8962_CLASS_D_CONTROL_2, 0, 7, 0,
1751 classd_tlv),
8f63aaa8
MB
1752
1753SOC_SINGLE("EQ Switch", WM8962_EQ1, WM8962_EQ_ENA_SHIFT, 1, 0),
1754SOC_DOUBLE_R_TLV("EQ1 Volume", WM8962_EQ2, WM8962_EQ22,
1755 WM8962_EQL_B1_GAIN_SHIFT, 31, 0, eq_tlv),
1756SOC_DOUBLE_R_TLV("EQ2 Volume", WM8962_EQ2, WM8962_EQ22,
1757 WM8962_EQL_B2_GAIN_SHIFT, 31, 0, eq_tlv),
1758SOC_DOUBLE_R_TLV("EQ3 Volume", WM8962_EQ2, WM8962_EQ22,
1759 WM8962_EQL_B3_GAIN_SHIFT, 31, 0, eq_tlv),
1760SOC_DOUBLE_R_TLV("EQ4 Volume", WM8962_EQ3, WM8962_EQ23,
1761 WM8962_EQL_B4_GAIN_SHIFT, 31, 0, eq_tlv),
1762SOC_DOUBLE_R_TLV("EQ5 Volume", WM8962_EQ3, WM8962_EQ23,
1763 WM8962_EQL_B5_GAIN_SHIFT, 31, 0, eq_tlv),
ae2ff9f6
RF
1764SND_SOC_BYTES("EQL Coefficients", WM8962_EQ4, 18),
1765SND_SOC_BYTES("EQR Coefficients", WM8962_EQ24, 18),
1766
6f88a4e5 1767
69e5a39f
MB
1768SOC_SINGLE("3D Switch", WM8962_THREED1, 0, 1, 0),
1769SND_SOC_BYTES_MASK("3D Coefficients", WM8962_THREED1, 4, WM8962_THREED_ENA),
1770
acf31d43
MB
1771SOC_SINGLE("DF1 Switch", WM8962_DF1, 0, 1, 0),
1772SND_SOC_BYTES_MASK("DF1 Coefficients", WM8962_DF1, 7, WM8962_DF1_ENA),
1773
fd0ca45b
MB
1774SOC_SINGLE("DRC Switch", WM8962_DRC_1, 0, 1, 0),
1775SND_SOC_BYTES_MASK("DRC Coefficients", WM8962_DRC_1, 5, WM8962_DRC_ENA),
1776
6f88a4e5 1777WM8962_DSP2_ENABLE("VSS Switch", WM8962_VSS_ENA_SHIFT),
5462fccd 1778SND_SOC_BYTES("VSS Coefficients", WM8962_VSS_XHD2_1, 148),
6f88a4e5
MB
1779WM8962_DSP2_ENABLE("HPF1 Switch", WM8962_HPF1_ENA_SHIFT),
1780WM8962_DSP2_ENABLE("HPF2 Switch", WM8962_HPF2_ENA_SHIFT),
93a86bea 1781SND_SOC_BYTES("HPF Coefficients", WM8962_LHPF2, 1),
6f88a4e5 1782WM8962_DSP2_ENABLE("HD Bass Switch", WM8962_HDBASS_ENA_SHIFT),
5462fccd 1783SND_SOC_BYTES("HD Bass Coefficients", WM8962_HDBASS_AI_1, 30),
dea0c74f
RF
1784
1785SOC_DOUBLE("ALC Switch", WM8962_ALC1, WM8962_ALCL_ENA_SHIFT,
1786 WM8962_ALCR_ENA_SHIFT, 1, 0),
1787SND_SOC_BYTES_MASK("ALC Coefficients", WM8962_ALC1, 4,
1788 WM8962_ALCL_ENA_MASK | WM8962_ALCR_ENA_MASK),
9a76f1ff
MB
1789};
1790
1791static const struct snd_kcontrol_new wm8962_spk_mono_controls[] = {
1792SOC_SINGLE_TLV("Speaker Volume", WM8962_SPKOUTL_VOLUME, 0, 127, 0, out_tlv),
1793SOC_SINGLE_EXT("Speaker Switch", WM8962_CLASS_D_CONTROL_1, 1, 1, 1,
1794 snd_soc_get_volsw, wm8962_put_spk_sw),
1795SOC_SINGLE("Speaker ZC Switch", WM8962_SPKOUTL_VOLUME, 7, 1, 0),
1796
1797SOC_SINGLE("Speaker Mixer Switch", WM8962_SPEAKER_MIXER_3, 8, 1, 1),
1798SOC_SINGLE_TLV("Speaker Mixer IN4L Volume", WM8962_SPEAKER_MIXER_3,
1799 3, 7, 0, bypass_tlv),
1800SOC_SINGLE_TLV("Speaker Mixer IN4R Volume", WM8962_SPEAKER_MIXER_3,
1801 0, 7, 0, bypass_tlv),
1802SOC_SINGLE_TLV("Speaker Mixer MIXINL Volume", WM8962_SPEAKER_MIXER_3,
1803 7, 1, 1, inmix_tlv),
1804SOC_SINGLE_TLV("Speaker Mixer MIXINR Volume", WM8962_SPEAKER_MIXER_3,
1805 6, 1, 1, inmix_tlv),
1806SOC_SINGLE_TLV("Speaker Mixer DACL Volume", WM8962_SPEAKER_MIXER_5,
1807 7, 1, 0, inmix_tlv),
1808SOC_SINGLE_TLV("Speaker Mixer DACR Volume", WM8962_SPEAKER_MIXER_5,
1809 6, 1, 0, inmix_tlv),
1810};
1811
1812static const struct snd_kcontrol_new wm8962_spk_stereo_controls[] = {
1813SOC_DOUBLE_R_TLV("Speaker Volume", WM8962_SPKOUTL_VOLUME,
1814 WM8962_SPKOUTR_VOLUME, 0, 127, 0, out_tlv),
1815SOC_DOUBLE_EXT("Speaker Switch", WM8962_CLASS_D_CONTROL_1, 1, 0, 1, 1,
1816 snd_soc_get_volsw, wm8962_put_spk_sw),
1817SOC_DOUBLE_R("Speaker ZC Switch", WM8962_SPKOUTL_VOLUME, WM8962_SPKOUTR_VOLUME,
1818 7, 1, 0),
1819
1820SOC_DOUBLE_R("Speaker Mixer Switch", WM8962_SPEAKER_MIXER_3,
1821 WM8962_SPEAKER_MIXER_4, 8, 1, 1),
1822
1823SOC_SINGLE_TLV("SPKOUTL Mixer IN4L Volume", WM8962_SPEAKER_MIXER_3,
1824 3, 7, 0, bypass_tlv),
1825SOC_SINGLE_TLV("SPKOUTL Mixer IN4R Volume", WM8962_SPEAKER_MIXER_3,
1826 0, 7, 0, bypass_tlv),
1827SOC_SINGLE_TLV("SPKOUTL Mixer MIXINL Volume", WM8962_SPEAKER_MIXER_3,
1828 7, 1, 1, inmix_tlv),
1829SOC_SINGLE_TLV("SPKOUTL Mixer MIXINR Volume", WM8962_SPEAKER_MIXER_3,
1830 6, 1, 1, inmix_tlv),
1831SOC_SINGLE_TLV("SPKOUTL Mixer DACL Volume", WM8962_SPEAKER_MIXER_5,
1832 7, 1, 0, inmix_tlv),
1833SOC_SINGLE_TLV("SPKOUTL Mixer DACR Volume", WM8962_SPEAKER_MIXER_5,
1834 6, 1, 0, inmix_tlv),
1835
1836SOC_SINGLE_TLV("SPKOUTR Mixer IN4L Volume", WM8962_SPEAKER_MIXER_4,
1837 3, 7, 0, bypass_tlv),
1838SOC_SINGLE_TLV("SPKOUTR Mixer IN4R Volume", WM8962_SPEAKER_MIXER_4,
1839 0, 7, 0, bypass_tlv),
1840SOC_SINGLE_TLV("SPKOUTR Mixer MIXINL Volume", WM8962_SPEAKER_MIXER_4,
1841 7, 1, 1, inmix_tlv),
1842SOC_SINGLE_TLV("SPKOUTR Mixer MIXINR Volume", WM8962_SPEAKER_MIXER_4,
1843 6, 1, 1, inmix_tlv),
1844SOC_SINGLE_TLV("SPKOUTR Mixer DACL Volume", WM8962_SPEAKER_MIXER_5,
1845 5, 1, 0, inmix_tlv),
1846SOC_SINGLE_TLV("SPKOUTR Mixer DACR Volume", WM8962_SPEAKER_MIXER_5,
1847 4, 1, 0, inmix_tlv),
1848};
1849
9a76f1ff
MB
1850static int cp_event(struct snd_soc_dapm_widget *w,
1851 struct snd_kcontrol *kcontrol, int event)
1852{
1853 switch (event) {
1854 case SND_SOC_DAPM_POST_PMU:
1855 msleep(5);
1856 break;
1857
1858 default:
69134367 1859 WARN(1, "Invalid event %d\n", event);
9a76f1ff
MB
1860 return -EINVAL;
1861 }
1862
1863 return 0;
1864}
1865
1866static int hp_event(struct snd_soc_dapm_widget *w,
1867 struct snd_kcontrol *kcontrol, int event)
1868{
6374b19d 1869 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
9a76f1ff
MB
1870 int timeout;
1871 int reg;
1872 int expected = (WM8962_DCS_STARTUP_DONE_HP1L |
1873 WM8962_DCS_STARTUP_DONE_HP1R);
1874
1875 switch (event) {
1876 case SND_SOC_DAPM_POST_PMU:
1877 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1878 WM8962_HP1L_ENA | WM8962_HP1R_ENA,
1879 WM8962_HP1L_ENA | WM8962_HP1R_ENA);
1880 udelay(20);
1881
1882 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1883 WM8962_HP1L_ENA_DLY | WM8962_HP1R_ENA_DLY,
1884 WM8962_HP1L_ENA_DLY | WM8962_HP1R_ENA_DLY);
1885
1886 /* Start the DC servo */
1887 snd_soc_update_bits(codec, WM8962_DC_SERVO_1,
1888 WM8962_HP1L_DCS_ENA | WM8962_HP1R_DCS_ENA |
1889 WM8962_HP1L_DCS_STARTUP |
1890 WM8962_HP1R_DCS_STARTUP,
1891 WM8962_HP1L_DCS_ENA | WM8962_HP1R_DCS_ENA |
1892 WM8962_HP1L_DCS_STARTUP |
1893 WM8962_HP1R_DCS_STARTUP);
1894
1895 /* Wait for it to complete, should be well under 100ms */
1896 timeout = 0;
1897 do {
1898 msleep(1);
1899 reg = snd_soc_read(codec, WM8962_DC_SERVO_6);
1900 if (reg < 0) {
1901 dev_err(codec->dev,
1902 "Failed to read DCS status: %d\n",
1903 reg);
1904 continue;
1905 }
1906 dev_dbg(codec->dev, "DCS status: %x\n", reg);
1907 } while (++timeout < 200 && (reg & expected) != expected);
1908
1909 if ((reg & expected) != expected)
1910 dev_err(codec->dev, "DC servo timed out\n");
1911 else
1912 dev_dbg(codec->dev, "DC servo complete after %dms\n",
1913 timeout);
1914
1915 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1916 WM8962_HP1L_ENA_OUTP |
1917 WM8962_HP1R_ENA_OUTP,
1918 WM8962_HP1L_ENA_OUTP |
1919 WM8962_HP1R_ENA_OUTP);
1920 udelay(20);
1921
1922 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1923 WM8962_HP1L_RMV_SHORT |
1924 WM8962_HP1R_RMV_SHORT,
1925 WM8962_HP1L_RMV_SHORT |
1926 WM8962_HP1R_RMV_SHORT);
1927 break;
1928
1929 case SND_SOC_DAPM_PRE_PMD:
1930 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1931 WM8962_HP1L_RMV_SHORT |
1932 WM8962_HP1R_RMV_SHORT, 0);
1933
1934 udelay(20);
1935
1936 snd_soc_update_bits(codec, WM8962_DC_SERVO_1,
1937 WM8962_HP1L_DCS_ENA | WM8962_HP1R_DCS_ENA |
1938 WM8962_HP1L_DCS_STARTUP |
1939 WM8962_HP1R_DCS_STARTUP,
1940 0);
1941
1942 snd_soc_update_bits(codec, WM8962_ANALOGUE_HP_0,
1943 WM8962_HP1L_ENA | WM8962_HP1R_ENA |
1944 WM8962_HP1L_ENA_DLY | WM8962_HP1R_ENA_DLY |
1945 WM8962_HP1L_ENA_OUTP |
1946 WM8962_HP1R_ENA_OUTP, 0);
1947
1948 break;
1949
1950 default:
69134367 1951 WARN(1, "Invalid event %d\n", event);
9a76f1ff
MB
1952 return -EINVAL;
1953
1954 }
1955
1956 return 0;
1957}
1958
1959/* VU bits for the output PGAs only take effect while the PGA is powered */
1960static int out_pga_event(struct snd_soc_dapm_widget *w,
1961 struct snd_kcontrol *kcontrol, int event)
1962{
6374b19d 1963 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
9a76f1ff
MB
1964 int reg;
1965
1966 switch (w->shift) {
1967 case WM8962_HPOUTR_PGA_ENA_SHIFT:
1968 reg = WM8962_HPOUTR_VOLUME;
1969 break;
1970 case WM8962_HPOUTL_PGA_ENA_SHIFT:
1971 reg = WM8962_HPOUTL_VOLUME;
1972 break;
1973 case WM8962_SPKOUTR_PGA_ENA_SHIFT:
1974 reg = WM8962_SPKOUTR_VOLUME;
1975 break;
1976 case WM8962_SPKOUTL_PGA_ENA_SHIFT:
1977 reg = WM8962_SPKOUTL_VOLUME;
1978 break;
1979 default:
69134367 1980 WARN(1, "Invalid shift %d\n", w->shift);
9a76f1ff
MB
1981 return -EINVAL;
1982 }
1983
1984 switch (event) {
1985 case SND_SOC_DAPM_POST_PMU:
38f3f31a 1986 return snd_soc_write(codec, reg, snd_soc_read(codec, reg));
9a76f1ff 1987 default:
69134367 1988 WARN(1, "Invalid event %d\n", event);
9a76f1ff
MB
1989 return -EINVAL;
1990 }
1991}
1992
6f88a4e5
MB
1993static int dsp2_event(struct snd_soc_dapm_widget *w,
1994 struct snd_kcontrol *kcontrol, int event)
1995{
6374b19d 1996 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
6f88a4e5
MB
1997 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
1998
1999 switch (event) {
2000 case SND_SOC_DAPM_POST_PMU:
2001 if (wm8962->dsp2_ena)
2002 wm8962_dsp2_start(codec);
2003 break;
2004
2005 case SND_SOC_DAPM_PRE_PMD:
2006 if (wm8962->dsp2_ena)
2007 wm8962_dsp2_stop(codec);
2008 break;
2009
2010 default:
69134367 2011 WARN(1, "Invalid event %d\n", event);
6f88a4e5
MB
2012 return -EINVAL;
2013 }
2014
2015 return 0;
2016}
2017
31794bc3 2018static const char *st_text[] = { "None", "Left", "Right" };
9a76f1ff 2019
da6ebf83
TI
2020static SOC_ENUM_SINGLE_DECL(str_enum,
2021 WM8962_DAC_DSP_MIXING_1, 2, st_text);
9a76f1ff
MB
2022
2023static const struct snd_kcontrol_new str_mux =
2024 SOC_DAPM_ENUM("Right Sidetone", str_enum);
2025
da6ebf83
TI
2026static SOC_ENUM_SINGLE_DECL(stl_enum,
2027 WM8962_DAC_DSP_MIXING_2, 2, st_text);
9a76f1ff
MB
2028
2029static const struct snd_kcontrol_new stl_mux =
2030 SOC_DAPM_ENUM("Left Sidetone", stl_enum);
2031
2032static const char *outmux_text[] = { "DAC", "Mixer" };
2033
da6ebf83
TI
2034static SOC_ENUM_SINGLE_DECL(spkoutr_enum,
2035 WM8962_SPEAKER_MIXER_2, 7, outmux_text);
9a76f1ff
MB
2036
2037static const struct snd_kcontrol_new spkoutr_mux =
2038 SOC_DAPM_ENUM("SPKOUTR Mux", spkoutr_enum);
2039
da6ebf83
TI
2040static SOC_ENUM_SINGLE_DECL(spkoutl_enum,
2041 WM8962_SPEAKER_MIXER_1, 7, outmux_text);
9a76f1ff
MB
2042
2043static const struct snd_kcontrol_new spkoutl_mux =
2044 SOC_DAPM_ENUM("SPKOUTL Mux", spkoutl_enum);
2045
da6ebf83
TI
2046static SOC_ENUM_SINGLE_DECL(hpoutr_enum,
2047 WM8962_HEADPHONE_MIXER_2, 7, outmux_text);
9a76f1ff
MB
2048
2049static const struct snd_kcontrol_new hpoutr_mux =
2050 SOC_DAPM_ENUM("HPOUTR Mux", hpoutr_enum);
2051
da6ebf83
TI
2052static SOC_ENUM_SINGLE_DECL(hpoutl_enum,
2053 WM8962_HEADPHONE_MIXER_1, 7, outmux_text);
9a76f1ff
MB
2054
2055static const struct snd_kcontrol_new hpoutl_mux =
2056 SOC_DAPM_ENUM("HPOUTL Mux", hpoutl_enum);
2057
2058static const struct snd_kcontrol_new inpgal[] = {
2059SOC_DAPM_SINGLE("IN1L Switch", WM8962_LEFT_INPUT_PGA_CONTROL, 3, 1, 0),
2060SOC_DAPM_SINGLE("IN2L Switch", WM8962_LEFT_INPUT_PGA_CONTROL, 2, 1, 0),
2061SOC_DAPM_SINGLE("IN3L Switch", WM8962_LEFT_INPUT_PGA_CONTROL, 1, 1, 0),
2062SOC_DAPM_SINGLE("IN4L Switch", WM8962_LEFT_INPUT_PGA_CONTROL, 0, 1, 0),
2063};
2064
2065static const struct snd_kcontrol_new inpgar[] = {
2066SOC_DAPM_SINGLE("IN1R Switch", WM8962_RIGHT_INPUT_PGA_CONTROL, 3, 1, 0),
2067SOC_DAPM_SINGLE("IN2R Switch", WM8962_RIGHT_INPUT_PGA_CONTROL, 2, 1, 0),
2068SOC_DAPM_SINGLE("IN3R Switch", WM8962_RIGHT_INPUT_PGA_CONTROL, 1, 1, 0),
2069SOC_DAPM_SINGLE("IN4R Switch", WM8962_RIGHT_INPUT_PGA_CONTROL, 0, 1, 0),
2070};
2071
2072static const struct snd_kcontrol_new mixinl[] = {
2073SOC_DAPM_SINGLE("IN2L Switch", WM8962_INPUT_MIXER_CONTROL_2, 5, 1, 0),
2074SOC_DAPM_SINGLE("IN3L Switch", WM8962_INPUT_MIXER_CONTROL_2, 4, 1, 0),
2075SOC_DAPM_SINGLE("PGA Switch", WM8962_INPUT_MIXER_CONTROL_2, 3, 1, 0),
2076};
2077
2078static const struct snd_kcontrol_new mixinr[] = {
2079SOC_DAPM_SINGLE("IN2R Switch", WM8962_INPUT_MIXER_CONTROL_2, 2, 1, 0),
2080SOC_DAPM_SINGLE("IN3R Switch", WM8962_INPUT_MIXER_CONTROL_2, 1, 1, 0),
2081SOC_DAPM_SINGLE("PGA Switch", WM8962_INPUT_MIXER_CONTROL_2, 0, 1, 0),
2082};
2083
2084static const struct snd_kcontrol_new hpmixl[] = {
2085SOC_DAPM_SINGLE("DACL Switch", WM8962_HEADPHONE_MIXER_1, 5, 1, 0),
2086SOC_DAPM_SINGLE("DACR Switch", WM8962_HEADPHONE_MIXER_1, 4, 1, 0),
2087SOC_DAPM_SINGLE("MIXINL Switch", WM8962_HEADPHONE_MIXER_1, 3, 1, 0),
2088SOC_DAPM_SINGLE("MIXINR Switch", WM8962_HEADPHONE_MIXER_1, 2, 1, 0),
2089SOC_DAPM_SINGLE("IN4L Switch", WM8962_HEADPHONE_MIXER_1, 1, 1, 0),
2090SOC_DAPM_SINGLE("IN4R Switch", WM8962_HEADPHONE_MIXER_1, 0, 1, 0),
2091};
2092
2093static const struct snd_kcontrol_new hpmixr[] = {
2094SOC_DAPM_SINGLE("DACL Switch", WM8962_HEADPHONE_MIXER_2, 5, 1, 0),
2095SOC_DAPM_SINGLE("DACR Switch", WM8962_HEADPHONE_MIXER_2, 4, 1, 0),
2096SOC_DAPM_SINGLE("MIXINL Switch", WM8962_HEADPHONE_MIXER_2, 3, 1, 0),
2097SOC_DAPM_SINGLE("MIXINR Switch", WM8962_HEADPHONE_MIXER_2, 2, 1, 0),
2098SOC_DAPM_SINGLE("IN4L Switch", WM8962_HEADPHONE_MIXER_2, 1, 1, 0),
2099SOC_DAPM_SINGLE("IN4R Switch", WM8962_HEADPHONE_MIXER_2, 0, 1, 0),
2100};
2101
2102static const struct snd_kcontrol_new spkmixl[] = {
2103SOC_DAPM_SINGLE("DACL Switch", WM8962_SPEAKER_MIXER_1, 5, 1, 0),
2104SOC_DAPM_SINGLE("DACR Switch", WM8962_SPEAKER_MIXER_1, 4, 1, 0),
2105SOC_DAPM_SINGLE("MIXINL Switch", WM8962_SPEAKER_MIXER_1, 3, 1, 0),
2106SOC_DAPM_SINGLE("MIXINR Switch", WM8962_SPEAKER_MIXER_1, 2, 1, 0),
2107SOC_DAPM_SINGLE("IN4L Switch", WM8962_SPEAKER_MIXER_1, 1, 1, 0),
2108SOC_DAPM_SINGLE("IN4R Switch", WM8962_SPEAKER_MIXER_1, 0, 1, 0),
2109};
2110
2111static const struct snd_kcontrol_new spkmixr[] = {
2112SOC_DAPM_SINGLE("DACL Switch", WM8962_SPEAKER_MIXER_2, 5, 1, 0),
2113SOC_DAPM_SINGLE("DACR Switch", WM8962_SPEAKER_MIXER_2, 4, 1, 0),
2114SOC_DAPM_SINGLE("MIXINL Switch", WM8962_SPEAKER_MIXER_2, 3, 1, 0),
2115SOC_DAPM_SINGLE("MIXINR Switch", WM8962_SPEAKER_MIXER_2, 2, 1, 0),
2116SOC_DAPM_SINGLE("IN4L Switch", WM8962_SPEAKER_MIXER_2, 1, 1, 0),
2117SOC_DAPM_SINGLE("IN4R Switch", WM8962_SPEAKER_MIXER_2, 0, 1, 0),
2118};
2119
2120static const struct snd_soc_dapm_widget wm8962_dapm_widgets[] = {
2121SND_SOC_DAPM_INPUT("IN1L"),
2122SND_SOC_DAPM_INPUT("IN1R"),
2123SND_SOC_DAPM_INPUT("IN2L"),
2124SND_SOC_DAPM_INPUT("IN2R"),
2125SND_SOC_DAPM_INPUT("IN3L"),
2126SND_SOC_DAPM_INPUT("IN3R"),
2127SND_SOC_DAPM_INPUT("IN4L"),
2128SND_SOC_DAPM_INPUT("IN4R"),
36c6b54c 2129SND_SOC_DAPM_SIGGEN("Beep"),
e47ac37c 2130SND_SOC_DAPM_INPUT("DMICDAT"),
9a76f1ff 2131
086d7f80 2132SND_SOC_DAPM_SUPPLY("MICBIAS", WM8962_PWR_MGMT_1, 1, 0, NULL, 0),
a4f28c00 2133
9a76f1ff 2134SND_SOC_DAPM_SUPPLY("Class G", WM8962_CHARGE_PUMP_B, 0, 1, NULL, 0),
a968d9db 2135SND_SOC_DAPM_SUPPLY("SYSCLK", WM8962_CLOCKING2, 5, 0, NULL, 0),
9a76f1ff
MB
2136SND_SOC_DAPM_SUPPLY("Charge Pump", WM8962_CHARGE_PUMP_1, 0, 0, cp_event,
2137 SND_SOC_DAPM_POST_PMU),
2138SND_SOC_DAPM_SUPPLY("TOCLK", WM8962_ADDITIONAL_CONTROL_1, 0, 0, NULL, 0),
6f88a4e5
MB
2139SND_SOC_DAPM_SUPPLY_S("DSP2", 1, WM8962_DSP2_POWER_MANAGEMENT,
2140 WM8962_DSP2_ENA_SHIFT, 0, dsp2_event,
2141 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
94b88e64
MB
2142SND_SOC_DAPM_SUPPLY("TEMP_HP", WM8962_ADDITIONAL_CONTROL_4, 2, 0, NULL, 0),
2143SND_SOC_DAPM_SUPPLY("TEMP_SPK", WM8962_ADDITIONAL_CONTROL_4, 1, 0, NULL, 0),
9a76f1ff
MB
2144
2145SND_SOC_DAPM_MIXER("INPGAL", WM8962_LEFT_INPUT_PGA_CONTROL, 4, 0,
2146 inpgal, ARRAY_SIZE(inpgal)),
2147SND_SOC_DAPM_MIXER("INPGAR", WM8962_RIGHT_INPUT_PGA_CONTROL, 4, 0,
2148 inpgar, ARRAY_SIZE(inpgar)),
2149SND_SOC_DAPM_MIXER("MIXINL", WM8962_PWR_MGMT_1, 5, 0,
2150 mixinl, ARRAY_SIZE(mixinl)),
2151SND_SOC_DAPM_MIXER("MIXINR", WM8962_PWR_MGMT_1, 4, 0,
2152 mixinr, ARRAY_SIZE(mixinr)),
2153
3f7d55a1 2154SND_SOC_DAPM_AIF_IN("DMIC_ENA", NULL, 0, WM8962_PWR_MGMT_1, 10, 0),
e47ac37c 2155
9a76f1ff
MB
2156SND_SOC_DAPM_ADC("ADCL", "Capture", WM8962_PWR_MGMT_1, 3, 0),
2157SND_SOC_DAPM_ADC("ADCR", "Capture", WM8962_PWR_MGMT_1, 2, 0),
2158
2159SND_SOC_DAPM_MUX("STL", SND_SOC_NOPM, 0, 0, &stl_mux),
2160SND_SOC_DAPM_MUX("STR", SND_SOC_NOPM, 0, 0, &str_mux),
2161
2162SND_SOC_DAPM_DAC("DACL", "Playback", WM8962_PWR_MGMT_2, 8, 0),
2163SND_SOC_DAPM_DAC("DACR", "Playback", WM8962_PWR_MGMT_2, 7, 0),
2164
2165SND_SOC_DAPM_PGA("Left Bypass", SND_SOC_NOPM, 0, 0, NULL, 0),
2166SND_SOC_DAPM_PGA("Right Bypass", SND_SOC_NOPM, 0, 0, NULL, 0),
2167
2168SND_SOC_DAPM_MIXER("HPMIXL", WM8962_MIXER_ENABLES, 3, 0,
2169 hpmixl, ARRAY_SIZE(hpmixl)),
2170SND_SOC_DAPM_MIXER("HPMIXR", WM8962_MIXER_ENABLES, 2, 0,
2171 hpmixr, ARRAY_SIZE(hpmixr)),
2172
2173SND_SOC_DAPM_MUX_E("HPOUTL PGA", WM8962_PWR_MGMT_2, 6, 0, &hpoutl_mux,
2174 out_pga_event, SND_SOC_DAPM_POST_PMU),
2175SND_SOC_DAPM_MUX_E("HPOUTR PGA", WM8962_PWR_MGMT_2, 5, 0, &hpoutr_mux,
2176 out_pga_event, SND_SOC_DAPM_POST_PMU),
2177
2178SND_SOC_DAPM_PGA_E("HPOUT", SND_SOC_NOPM, 0, 0, NULL, 0, hp_event,
2179 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
2180
2181SND_SOC_DAPM_OUTPUT("HPOUTL"),
2182SND_SOC_DAPM_OUTPUT("HPOUTR"),
2183};
2184
2185static const struct snd_soc_dapm_widget wm8962_dapm_spk_mono_widgets[] = {
2186SND_SOC_DAPM_MIXER("Speaker Mixer", WM8962_MIXER_ENABLES, 1, 0,
2187 spkmixl, ARRAY_SIZE(spkmixl)),
2188SND_SOC_DAPM_MUX_E("Speaker PGA", WM8962_PWR_MGMT_2, 4, 0, &spkoutl_mux,
2189 out_pga_event, SND_SOC_DAPM_POST_PMU),
2190SND_SOC_DAPM_PGA("Speaker Output", WM8962_CLASS_D_CONTROL_1, 7, 0, NULL, 0),
2191SND_SOC_DAPM_OUTPUT("SPKOUT"),
2192};
2193
2194static const struct snd_soc_dapm_widget wm8962_dapm_spk_stereo_widgets[] = {
2195SND_SOC_DAPM_MIXER("SPKOUTL Mixer", WM8962_MIXER_ENABLES, 1, 0,
2196 spkmixl, ARRAY_SIZE(spkmixl)),
2197SND_SOC_DAPM_MIXER("SPKOUTR Mixer", WM8962_MIXER_ENABLES, 0, 0,
2198 spkmixr, ARRAY_SIZE(spkmixr)),
2199
2200SND_SOC_DAPM_MUX_E("SPKOUTL PGA", WM8962_PWR_MGMT_2, 4, 0, &spkoutl_mux,
2201 out_pga_event, SND_SOC_DAPM_POST_PMU),
2202SND_SOC_DAPM_MUX_E("SPKOUTR PGA", WM8962_PWR_MGMT_2, 3, 0, &spkoutr_mux,
2203 out_pga_event, SND_SOC_DAPM_POST_PMU),
2204
2205SND_SOC_DAPM_PGA("SPKOUTR Output", WM8962_CLASS_D_CONTROL_1, 7, 0, NULL, 0),
2206SND_SOC_DAPM_PGA("SPKOUTL Output", WM8962_CLASS_D_CONTROL_1, 6, 0, NULL, 0),
2207
2208SND_SOC_DAPM_OUTPUT("SPKOUTL"),
2209SND_SOC_DAPM_OUTPUT("SPKOUTR"),
2210};
2211
2212static const struct snd_soc_dapm_route wm8962_intercon[] = {
2213 { "INPGAL", "IN1L Switch", "IN1L" },
2214 { "INPGAL", "IN2L Switch", "IN2L" },
2215 { "INPGAL", "IN3L Switch", "IN3L" },
2216 { "INPGAL", "IN4L Switch", "IN4L" },
2217
2218 { "INPGAR", "IN1R Switch", "IN1R" },
2219 { "INPGAR", "IN2R Switch", "IN2R" },
2220 { "INPGAR", "IN3R Switch", "IN3R" },
2221 { "INPGAR", "IN4R Switch", "IN4R" },
2222
2223 { "MIXINL", "IN2L Switch", "IN2L" },
2224 { "MIXINL", "IN3L Switch", "IN3L" },
2225 { "MIXINL", "PGA Switch", "INPGAL" },
2226
2227 { "MIXINR", "IN2R Switch", "IN2R" },
2228 { "MIXINR", "IN3R Switch", "IN3R" },
2229 { "MIXINR", "PGA Switch", "INPGAR" },
2230
821f4206
MB
2231 { "MICBIAS", NULL, "SYSCLK" },
2232
3f7d55a1 2233 { "DMIC_ENA", NULL, "DMICDAT" },
e47ac37c 2234
9a76f1ff
MB
2235 { "ADCL", NULL, "SYSCLK" },
2236 { "ADCL", NULL, "TOCLK" },
2237 { "ADCL", NULL, "MIXINL" },
3f7d55a1 2238 { "ADCL", NULL, "DMIC_ENA" },
6f88a4e5 2239 { "ADCL", NULL, "DSP2" },
9a76f1ff
MB
2240
2241 { "ADCR", NULL, "SYSCLK" },
2242 { "ADCR", NULL, "TOCLK" },
2243 { "ADCR", NULL, "MIXINR" },
3f7d55a1 2244 { "ADCR", NULL, "DMIC_ENA" },
6f88a4e5 2245 { "ADCR", NULL, "DSP2" },
9a76f1ff
MB
2246
2247 { "STL", "Left", "ADCL" },
2248 { "STL", "Right", "ADCR" },
1355ab14 2249 { "STL", NULL, "Class G" },
9a76f1ff
MB
2250
2251 { "STR", "Left", "ADCL" },
2252 { "STR", "Right", "ADCR" },
1355ab14 2253 { "STR", NULL, "Class G" },
9a76f1ff
MB
2254
2255 { "DACL", NULL, "SYSCLK" },
2256 { "DACL", NULL, "TOCLK" },
2257 { "DACL", NULL, "Beep" },
2258 { "DACL", NULL, "STL" },
6f88a4e5 2259 { "DACL", NULL, "DSP2" },
9a76f1ff
MB
2260
2261 { "DACR", NULL, "SYSCLK" },
2262 { "DACR", NULL, "TOCLK" },
2263 { "DACR", NULL, "Beep" },
2264 { "DACR", NULL, "STR" },
6f88a4e5 2265 { "DACR", NULL, "DSP2" },
9a76f1ff
MB
2266
2267 { "HPMIXL", "IN4L Switch", "IN4L" },
2268 { "HPMIXL", "IN4R Switch", "IN4R" },
2269 { "HPMIXL", "DACL Switch", "DACL" },
2270 { "HPMIXL", "DACR Switch", "DACR" },
2271 { "HPMIXL", "MIXINL Switch", "MIXINL" },
2272 { "HPMIXL", "MIXINR Switch", "MIXINR" },
2273
2274 { "HPMIXR", "IN4L Switch", "IN4L" },
2275 { "HPMIXR", "IN4R Switch", "IN4R" },
2276 { "HPMIXR", "DACL Switch", "DACL" },
2277 { "HPMIXR", "DACR Switch", "DACR" },
2278 { "HPMIXR", "MIXINL Switch", "MIXINL" },
2279 { "HPMIXR", "MIXINR Switch", "MIXINR" },
2280
2281 { "Left Bypass", NULL, "HPMIXL" },
2282 { "Left Bypass", NULL, "Class G" },
2283
2284 { "Right Bypass", NULL, "HPMIXR" },
2285 { "Right Bypass", NULL, "Class G" },
2286
2287 { "HPOUTL PGA", "Mixer", "Left Bypass" },
2288 { "HPOUTL PGA", "DAC", "DACL" },
2289
2290 { "HPOUTR PGA", "Mixer", "Right Bypass" },
2291 { "HPOUTR PGA", "DAC", "DACR" },
2292
2293 { "HPOUT", NULL, "HPOUTL PGA" },
2294 { "HPOUT", NULL, "HPOUTR PGA" },
2295 { "HPOUT", NULL, "Charge Pump" },
2296 { "HPOUT", NULL, "SYSCLK" },
2297 { "HPOUT", NULL, "TOCLK" },
2298
2299 { "HPOUTL", NULL, "HPOUT" },
2300 { "HPOUTR", NULL, "HPOUT" },
94b88e64
MB
2301
2302 { "HPOUTL", NULL, "TEMP_HP" },
2303 { "HPOUTR", NULL, "TEMP_HP" },
9a76f1ff
MB
2304};
2305
2306static const struct snd_soc_dapm_route wm8962_spk_mono_intercon[] = {
2307 { "Speaker Mixer", "IN4L Switch", "IN4L" },
2308 { "Speaker Mixer", "IN4R Switch", "IN4R" },
2309 { "Speaker Mixer", "DACL Switch", "DACL" },
2310 { "Speaker Mixer", "DACR Switch", "DACR" },
2311 { "Speaker Mixer", "MIXINL Switch", "MIXINL" },
2312 { "Speaker Mixer", "MIXINR Switch", "MIXINR" },
2313
2314 { "Speaker PGA", "Mixer", "Speaker Mixer" },
2315 { "Speaker PGA", "DAC", "DACL" },
2316
2317 { "Speaker Output", NULL, "Speaker PGA" },
2318 { "Speaker Output", NULL, "SYSCLK" },
2319 { "Speaker Output", NULL, "TOCLK" },
94b88e64 2320 { "Speaker Output", NULL, "TEMP_SPK" },
9a76f1ff
MB
2321
2322 { "SPKOUT", NULL, "Speaker Output" },
2323};
2324
2325static const struct snd_soc_dapm_route wm8962_spk_stereo_intercon[] = {
2326 { "SPKOUTL Mixer", "IN4L Switch", "IN4L" },
2327 { "SPKOUTL Mixer", "IN4R Switch", "IN4R" },
2328 { "SPKOUTL Mixer", "DACL Switch", "DACL" },
2329 { "SPKOUTL Mixer", "DACR Switch", "DACR" },
2330 { "SPKOUTL Mixer", "MIXINL Switch", "MIXINL" },
2331 { "SPKOUTL Mixer", "MIXINR Switch", "MIXINR" },
2332
2333 { "SPKOUTR Mixer", "IN4L Switch", "IN4L" },
2334 { "SPKOUTR Mixer", "IN4R Switch", "IN4R" },
2335 { "SPKOUTR Mixer", "DACL Switch", "DACL" },
2336 { "SPKOUTR Mixer", "DACR Switch", "DACR" },
2337 { "SPKOUTR Mixer", "MIXINL Switch", "MIXINL" },
2338 { "SPKOUTR Mixer", "MIXINR Switch", "MIXINR" },
2339
2340 { "SPKOUTL PGA", "Mixer", "SPKOUTL Mixer" },
2341 { "SPKOUTL PGA", "DAC", "DACL" },
2342
2343 { "SPKOUTR PGA", "Mixer", "SPKOUTR Mixer" },
2344 { "SPKOUTR PGA", "DAC", "DACR" },
2345
2346 { "SPKOUTL Output", NULL, "SPKOUTL PGA" },
2347 { "SPKOUTL Output", NULL, "SYSCLK" },
2348 { "SPKOUTL Output", NULL, "TOCLK" },
94b88e64 2349 { "SPKOUTL Output", NULL, "TEMP_SPK" },
9a76f1ff
MB
2350
2351 { "SPKOUTR Output", NULL, "SPKOUTR PGA" },
2352 { "SPKOUTR Output", NULL, "SYSCLK" },
2353 { "SPKOUTR Output", NULL, "TOCLK" },
94b88e64 2354 { "SPKOUTR Output", NULL, "TEMP_SPK" },
9a76f1ff
MB
2355
2356 { "SPKOUTL", NULL, "SPKOUTL Output" },
2357 { "SPKOUTR", NULL, "SPKOUTR Output" },
2358};
2359
2360static int wm8962_add_widgets(struct snd_soc_codec *codec)
2361{
e75a52c6
NC
2362 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
2363 struct wm8962_pdata *pdata = &wm8962->pdata;
57ef7fa7 2364 struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
9a76f1ff 2365
022658be 2366 snd_soc_add_codec_controls(codec, wm8962_snd_controls,
9a76f1ff 2367 ARRAY_SIZE(wm8962_snd_controls));
e75a52c6 2368 if (pdata->spk_mono)
022658be 2369 snd_soc_add_codec_controls(codec, wm8962_spk_mono_controls,
9a76f1ff
MB
2370 ARRAY_SIZE(wm8962_spk_mono_controls));
2371 else
022658be 2372 snd_soc_add_codec_controls(codec, wm8962_spk_stereo_controls,
9a76f1ff
MB
2373 ARRAY_SIZE(wm8962_spk_stereo_controls));
2374
2375
ce6120cc 2376 snd_soc_dapm_new_controls(dapm, wm8962_dapm_widgets,
9a76f1ff 2377 ARRAY_SIZE(wm8962_dapm_widgets));
e75a52c6 2378 if (pdata->spk_mono)
ce6120cc 2379 snd_soc_dapm_new_controls(dapm, wm8962_dapm_spk_mono_widgets,
9a76f1ff
MB
2380 ARRAY_SIZE(wm8962_dapm_spk_mono_widgets));
2381 else
ce6120cc 2382 snd_soc_dapm_new_controls(dapm, wm8962_dapm_spk_stereo_widgets,
9a76f1ff
MB
2383 ARRAY_SIZE(wm8962_dapm_spk_stereo_widgets));
2384
ce6120cc 2385 snd_soc_dapm_add_routes(dapm, wm8962_intercon,
9a76f1ff 2386 ARRAY_SIZE(wm8962_intercon));
e75a52c6 2387 if (pdata->spk_mono)
ce6120cc 2388 snd_soc_dapm_add_routes(dapm, wm8962_spk_mono_intercon,
9a76f1ff
MB
2389 ARRAY_SIZE(wm8962_spk_mono_intercon));
2390 else
ce6120cc 2391 snd_soc_dapm_add_routes(dapm, wm8962_spk_stereo_intercon,
9a76f1ff
MB
2392 ARRAY_SIZE(wm8962_spk_stereo_intercon));
2393
2394
ce6120cc 2395 snd_soc_dapm_disable_pin(dapm, "Beep");
9a76f1ff
MB
2396
2397 return 0;
2398}
2399
9a76f1ff
MB
2400/* -1 for reserved values */
2401static const int bclk_divs[] = {
2402 1, -1, 2, 3, 4, -1, 6, 8, -1, 12, 16, 24, -1, 32, 32, 32
2403};
2404
417ceff9 2405static const int sysclk_rates[] = {
07fabd1b 2406 64, 128, 192, 256, 384, 512, 768, 1024, 1408, 1536, 3072, 6144
417ceff9
MB
2407};
2408
9a76f1ff
MB
2409static void wm8962_configure_bclk(struct snd_soc_codec *codec)
2410{
2411 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
2412 int dspclk, i;
2413 int clocking2 = 0;
417ceff9 2414 int clocking4 = 0;
9a76f1ff
MB
2415 int aif2 = 0;
2416
417ceff9
MB
2417 if (!wm8962->sysclk_rate) {
2418 dev_dbg(codec->dev, "No SYSCLK configured\n");
9a76f1ff
MB
2419 return;
2420 }
2421
417ceff9
MB
2422 if (!wm8962->bclk || !wm8962->lrclk) {
2423 dev_dbg(codec->dev, "No audio clocks configured\n");
2424 return;
2425 }
2426
2427 for (i = 0; i < ARRAY_SIZE(sysclk_rates); i++) {
2428 if (sysclk_rates[i] == wm8962->sysclk_rate / wm8962->lrclk) {
2429 clocking4 |= i << WM8962_SYSCLK_RATE_SHIFT;
2430 break;
2431 }
2432 }
2433
2434 if (i == ARRAY_SIZE(sysclk_rates)) {
2435 dev_err(codec->dev, "Unsupported sysclk ratio %d\n",
2436 wm8962->sysclk_rate / wm8962->lrclk);
2437 return;
2438 }
2439
eeba1f8b
MB
2440 dev_dbg(codec->dev, "Selected sysclk ratio %d\n", sysclk_rates[i]);
2441
417ceff9
MB
2442 snd_soc_update_bits(codec, WM8962_CLOCKING_4,
2443 WM8962_SYSCLK_RATE_MASK, clocking4);
2444
75704ecf
NC
2445 /* DSPCLK_DIV can be only generated correctly after enabling SYSCLK.
2446 * So we here provisionally enable it and then disable it afterward
2447 * if current bias_level hasn't reached SND_SOC_BIAS_ON.
2448 */
57ef7fa7 2449 if (snd_soc_codec_get_bias_level(codec) != SND_SOC_BIAS_ON)
75704ecf
NC
2450 snd_soc_update_bits(codec, WM8962_CLOCKING2,
2451 WM8962_SYSCLK_ENA_MASK, WM8962_SYSCLK_ENA);
2452
9a76f1ff 2453 dspclk = snd_soc_read(codec, WM8962_CLOCKING1);
75704ecf 2454
57ef7fa7 2455 if (snd_soc_codec_get_bias_level(codec) != SND_SOC_BIAS_ON)
75704ecf
NC
2456 snd_soc_update_bits(codec, WM8962_CLOCKING2,
2457 WM8962_SYSCLK_ENA_MASK, 0);
2458
9a76f1ff
MB
2459 if (dspclk < 0) {
2460 dev_err(codec->dev, "Failed to read DSPCLK: %d\n", dspclk);
2461 return;
2462 }
2463
2464 dspclk = (dspclk & WM8962_DSPCLK_DIV_MASK) >> WM8962_DSPCLK_DIV_SHIFT;
2465 switch (dspclk) {
2466 case 0:
2467 dspclk = wm8962->sysclk_rate;
2468 break;
2469 case 1:
2470 dspclk = wm8962->sysclk_rate / 2;
2471 break;
2472 case 2:
2473 dspclk = wm8962->sysclk_rate / 4;
2474 break;
2475 default:
2476 dev_warn(codec->dev, "Unknown DSPCLK divisor read back\n");
2477 dspclk = wm8962->sysclk;
2478 }
2479
2480 dev_dbg(codec->dev, "DSPCLK is %dHz, BCLK %d\n", dspclk, wm8962->bclk);
2481
2482 /* We're expecting an exact match */
2483 for (i = 0; i < ARRAY_SIZE(bclk_divs); i++) {
2484 if (bclk_divs[i] < 0)
2485 continue;
2486
2487 if (dspclk / bclk_divs[i] == wm8962->bclk) {
2488 dev_dbg(codec->dev, "Selected BCLK_DIV %d for %dHz\n",
2489 bclk_divs[i], wm8962->bclk);
2490 clocking2 |= i;
2491 break;
2492 }
2493 }
2494 if (i == ARRAY_SIZE(bclk_divs)) {
2495 dev_err(codec->dev, "Unsupported BCLK ratio %d\n",
2496 dspclk / wm8962->bclk);
2497 return;
2498 }
2499
2500 aif2 |= wm8962->bclk / wm8962->lrclk;
2501 dev_dbg(codec->dev, "Selected LRCLK divisor %d for %dHz\n",
2502 wm8962->bclk / wm8962->lrclk, wm8962->lrclk);
2503
2504 snd_soc_update_bits(codec, WM8962_CLOCKING2,
2505 WM8962_BCLK_DIV_MASK, clocking2);
2506 snd_soc_update_bits(codec, WM8962_AUDIO_INTERFACE_2,
2507 WM8962_AIF_RATE_MASK, aif2);
2508}
2509
2510static int wm8962_set_bias_level(struct snd_soc_codec *codec,
2511 enum snd_soc_bias_level level)
2512{
9a76f1ff
MB
2513 switch (level) {
2514 case SND_SOC_BIAS_ON:
2515 break;
2516
2517 case SND_SOC_BIAS_PREPARE:
2518 /* VMID 2*50k */
2519 snd_soc_update_bits(codec, WM8962_PWR_MGMT_1,
2520 WM8962_VMID_SEL_MASK, 0x80);
417ceff9
MB
2521
2522 wm8962_configure_bclk(codec);
9a76f1ff
MB
2523 break;
2524
2525 case SND_SOC_BIAS_STANDBY:
9a76f1ff
MB
2526 /* VMID 2*250k */
2527 snd_soc_update_bits(codec, WM8962_PWR_MGMT_1,
2528 WM8962_VMID_SEL_MASK, 0x100);
9d40e558 2529
57ef7fa7 2530 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF)
9d40e558 2531 msleep(100);
9a76f1ff
MB
2532 break;
2533
2534 case SND_SOC_BIAS_OFF:
9a76f1ff
MB
2535 break;
2536 }
d23031a4 2537
9a76f1ff
MB
2538 return 0;
2539}
2540
2541static const struct {
2542 int rate;
2543 int reg;
2544} sr_vals[] = {
2545 { 48000, 0 },
2546 { 44100, 0 },
2547 { 32000, 1 },
2548 { 22050, 2 },
2549 { 24000, 2 },
2550 { 16000, 3 },
2551 { 11025, 4 },
2552 { 12000, 4 },
2553 { 8000, 5 },
2554 { 88200, 6 },
2555 { 96000, 6 },
2556};
2557
9a76f1ff
MB
2558static int wm8962_hw_params(struct snd_pcm_substream *substream,
2559 struct snd_pcm_hw_params *params,
2560 struct snd_soc_dai *dai)
2561{
e6968a17 2562 struct snd_soc_codec *codec = dai->codec;
9a76f1ff 2563 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
9a76f1ff
MB
2564 int i;
2565 int aif0 = 0;
2566 int adctl3 = 0;
9a76f1ff
MB
2567
2568 wm8962->bclk = snd_soc_params_to_bclk(params);
4c6c0b5e
MB
2569 if (params_channels(params) == 1)
2570 wm8962->bclk *= 2;
2571
9a76f1ff
MB
2572 wm8962->lrclk = params_rate(params);
2573
2574 for (i = 0; i < ARRAY_SIZE(sr_vals); i++) {
417ceff9 2575 if (sr_vals[i].rate == wm8962->lrclk) {
9a76f1ff
MB
2576 adctl3 |= sr_vals[i].reg;
2577 break;
2578 }
2579 }
2580 if (i == ARRAY_SIZE(sr_vals)) {
417ceff9 2581 dev_err(codec->dev, "Unsupported rate %dHz\n", wm8962->lrclk);
9a76f1ff
MB
2582 return -EINVAL;
2583 }
2584
417ceff9 2585 if (wm8962->lrclk % 8000 == 0)
9a76f1ff
MB
2586 adctl3 |= WM8962_SAMPLE_RATE_INT_MODE;
2587
ec4dc01e
MB
2588 switch (params_width(params)) {
2589 case 16:
9a76f1ff 2590 break;
ec4dc01e 2591 case 20:
2b6712b1 2592 aif0 |= 0x4;
9a76f1ff 2593 break;
ec4dc01e 2594 case 24:
2b6712b1 2595 aif0 |= 0x8;
9a76f1ff 2596 break;
ec4dc01e 2597 case 32:
2b6712b1 2598 aif0 |= 0xc;
9a76f1ff
MB
2599 break;
2600 default:
2601 return -EINVAL;
2602 }
2603
2604 snd_soc_update_bits(codec, WM8962_AUDIO_INTERFACE_0,
2605 WM8962_WL_MASK, aif0);
2606 snd_soc_update_bits(codec, WM8962_ADDITIONAL_CONTROL_3,
2607 WM8962_SAMPLE_RATE_INT_MODE |
2608 WM8962_SAMPLE_RATE_MASK, adctl3);
9a76f1ff 2609
081413f2
MB
2610 dev_dbg(codec->dev, "hw_params set BCLK %dHz LRCLK %dHz\n",
2611 wm8962->bclk, wm8962->lrclk);
2612
57ef7fa7 2613 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_ON)
1993502d 2614 wm8962_configure_bclk(codec);
9a76f1ff
MB
2615
2616 return 0;
2617}
2618
2619static int wm8962_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id,
2620 unsigned int freq, int dir)
2621{
2622 struct snd_soc_codec *codec = dai->codec;
2623 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
2624 int src;
2625
2626 switch (clk_id) {
2627 case WM8962_SYSCLK_MCLK:
2628 wm8962->sysclk = WM8962_SYSCLK_MCLK;
2629 src = 0;
2630 break;
2631 case WM8962_SYSCLK_FLL:
2632 wm8962->sysclk = WM8962_SYSCLK_FLL;
2633 src = 1 << WM8962_SYSCLK_SRC_SHIFT;
9a76f1ff
MB
2634 break;
2635 default:
2636 return -EINVAL;
2637 }
2638
2639 snd_soc_update_bits(codec, WM8962_CLOCKING2, WM8962_SYSCLK_SRC_MASK,
2640 src);
2641
2642 wm8962->sysclk_rate = freq;
2643
2644 return 0;
2645}
2646
2647static int wm8962_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2648{
2649 struct snd_soc_codec *codec = dai->codec;
2650 int aif0 = 0;
2651
2652 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
9a76f1ff 2653 case SND_SOC_DAIFMT_DSP_B:
fbc7c62a
SG
2654 aif0 |= WM8962_LRCLK_INV | 3;
2655 case SND_SOC_DAIFMT_DSP_A:
9a76f1ff
MB
2656 aif0 |= 3;
2657
2658 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
2659 case SND_SOC_DAIFMT_NB_NF:
2660 case SND_SOC_DAIFMT_IB_NF:
2661 break;
2662 default:
2663 return -EINVAL;
2664 }
2665 break;
2666
2667 case SND_SOC_DAIFMT_RIGHT_J:
2668 break;
2669 case SND_SOC_DAIFMT_LEFT_J:
2670 aif0 |= 1;
2671 break;
2672 case SND_SOC_DAIFMT_I2S:
2673 aif0 |= 2;
2674 break;
2675 default:
2676 return -EINVAL;
2677 }
2678
2679 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
2680 case SND_SOC_DAIFMT_NB_NF:
2681 break;
2682 case SND_SOC_DAIFMT_IB_NF:
2683 aif0 |= WM8962_BCLK_INV;
2684 break;
2685 case SND_SOC_DAIFMT_NB_IF:
2686 aif0 |= WM8962_LRCLK_INV;
2687 break;
2688 case SND_SOC_DAIFMT_IB_IF:
2689 aif0 |= WM8962_BCLK_INV | WM8962_LRCLK_INV;
2690 break;
2691 default:
2692 return -EINVAL;
2693 }
2694
2695 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
2696 case SND_SOC_DAIFMT_CBM_CFM:
2697 aif0 |= WM8962_MSTR;
2698 break;
2699 case SND_SOC_DAIFMT_CBS_CFS:
2700 break;
2701 default:
2702 return -EINVAL;
2703 }
2704
2705 snd_soc_update_bits(codec, WM8962_AUDIO_INTERFACE_0,
2706 WM8962_FMT_MASK | WM8962_BCLK_INV | WM8962_MSTR |
2707 WM8962_LRCLK_INV, aif0);
2708
2709 return 0;
2710}
2711
2712struct _fll_div {
2713 u16 fll_fratio;
2714 u16 fll_outdiv;
2715 u16 fll_refclk_div;
2716 u16 n;
2717 u16 theta;
2718 u16 lambda;
2719};
2720
2721/* The size in bits of the FLL divide multiplied by 10
2722 * to allow rounding later */
2723#define FIXED_FLL_SIZE ((1 << 16) * 10)
2724
2725static struct {
2726 unsigned int min;
2727 unsigned int max;
2728 u16 fll_fratio;
2729 int ratio;
2730} fll_fratios[] = {
2731 { 0, 64000, 4, 16 },
2732 { 64000, 128000, 3, 8 },
2733 { 128000, 256000, 2, 4 },
2734 { 256000, 1000000, 1, 2 },
2735 { 1000000, 13500000, 0, 1 },
2736};
2737
2738static int fll_factors(struct _fll_div *fll_div, unsigned int Fref,
2739 unsigned int Fout)
2740{
2741 unsigned int target;
2742 unsigned int div;
2743 unsigned int fratio, gcd_fll;
2744 int i;
2745
2746 /* Fref must be <=13.5MHz */
2747 div = 1;
2748 fll_div->fll_refclk_div = 0;
2749 while ((Fref / div) > 13500000) {
2750 div *= 2;
2751 fll_div->fll_refclk_div++;
2752
2753 if (div > 4) {
2754 pr_err("Can't scale %dMHz input down to <=13.5MHz\n",
2755 Fref);
2756 return -EINVAL;
2757 }
2758 }
2759
2760 pr_debug("FLL Fref=%u Fout=%u\n", Fref, Fout);
2761
2762 /* Apply the division for our remaining calculations */
2763 Fref /= div;
2764
2765 /* Fvco should be 90-100MHz; don't check the upper bound */
2766 div = 2;
2767 while (Fout * div < 90000000) {
2768 div++;
2769 if (div > 64) {
2770 pr_err("Unable to find FLL_OUTDIV for Fout=%uHz\n",
2771 Fout);
2772 return -EINVAL;
2773 }
2774 }
2775 target = Fout * div;
2776 fll_div->fll_outdiv = div - 1;
2777
2778 pr_debug("FLL Fvco=%dHz\n", target);
2779
25985edc 2780 /* Find an appropriate FLL_FRATIO and factor it out of the target */
9a76f1ff
MB
2781 for (i = 0; i < ARRAY_SIZE(fll_fratios); i++) {
2782 if (fll_fratios[i].min <= Fref && Fref <= fll_fratios[i].max) {
2783 fll_div->fll_fratio = fll_fratios[i].fll_fratio;
2784 fratio = fll_fratios[i].ratio;
2785 break;
2786 }
2787 }
2788 if (i == ARRAY_SIZE(fll_fratios)) {
2789 pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref);
2790 return -EINVAL;
2791 }
2792
2793 fll_div->n = target / (fratio * Fref);
2794
2795 if (target % Fref == 0) {
2796 fll_div->theta = 0;
2797 fll_div->lambda = 0;
2798 } else {
2799 gcd_fll = gcd(target, fratio * Fref);
2800
2801 fll_div->theta = (target - (fll_div->n * fratio * Fref))
2802 / gcd_fll;
2803 fll_div->lambda = (fratio * Fref) / gcd_fll;
2804 }
2805
2806 pr_debug("FLL N=%x THETA=%x LAMBDA=%x\n",
2807 fll_div->n, fll_div->theta, fll_div->lambda);
2808 pr_debug("FLL_FRATIO=%x FLL_OUTDIV=%x FLL_REFCLK_DIV=%x\n",
2809 fll_div->fll_fratio, fll_div->fll_outdiv,
2810 fll_div->fll_refclk_div);
2811
2812 return 0;
2813}
2814
92a4352c 2815static int wm8962_set_fll(struct snd_soc_codec *codec, int fll_id, int source,
9a76f1ff
MB
2816 unsigned int Fref, unsigned int Fout)
2817{
9a76f1ff
MB
2818 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
2819 struct _fll_div fll_div;
3b8a6d80 2820 unsigned long timeout;
9a76f1ff 2821 int ret;
a968d9db 2822 int fll1 = 0;
9a76f1ff
MB
2823
2824 /* Any change? */
2825 if (source == wm8962->fll_src && Fref == wm8962->fll_fref &&
2826 Fout == wm8962->fll_fout)
2827 return 0;
2828
2829 if (Fout == 0) {
2830 dev_dbg(codec->dev, "FLL disabled\n");
2831
2832 wm8962->fll_fref = 0;
2833 wm8962->fll_fout = 0;
2834
2835 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1,
2836 WM8962_FLL_ENA, 0);
2837
d23031a4
MB
2838 pm_runtime_put(codec->dev);
2839
9a76f1ff
MB
2840 return 0;
2841 }
2842
2843 ret = fll_factors(&fll_div, Fref, Fout);
2844 if (ret != 0)
2845 return ret;
2846
a968d9db
MB
2847 /* Parameters good, disable so we can reprogram */
2848 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1, WM8962_FLL_ENA, 0);
2849
9a76f1ff
MB
2850 switch (fll_id) {
2851 case WM8962_FLL_MCLK:
2852 case WM8962_FLL_BCLK:
2853 case WM8962_FLL_OSC:
2854 fll1 |= (fll_id - 1) << WM8962_FLL_REFCLK_SRC_SHIFT;
2855 break;
2856 case WM8962_FLL_INT:
2857 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1,
2858 WM8962_FLL_OSC_ENA, WM8962_FLL_OSC_ENA);
2859 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_5,
2860 WM8962_FLL_FRC_NCO, WM8962_FLL_FRC_NCO);
2861 break;
2862 default:
2863 dev_err(codec->dev, "Unknown FLL source %d\n", ret);
2864 return -EINVAL;
2865 }
2866
2867 if (fll_div.theta || fll_div.lambda)
2868 fll1 |= WM8962_FLL_FRAC;
2869
2870 /* Stop the FLL while we reconfigure */
2871 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1, WM8962_FLL_ENA, 0);
2872
2873 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_2,
2874 WM8962_FLL_OUTDIV_MASK |
2875 WM8962_FLL_REFCLK_DIV_MASK,
2876 (fll_div.fll_outdiv << WM8962_FLL_OUTDIV_SHIFT) |
2877 (fll_div.fll_refclk_div));
2878
2879 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_3,
2880 WM8962_FLL_FRATIO_MASK, fll_div.fll_fratio);
2881
2882 snd_soc_write(codec, WM8962_FLL_CONTROL_6, fll_div.theta);
2883 snd_soc_write(codec, WM8962_FLL_CONTROL_7, fll_div.lambda);
2884 snd_soc_write(codec, WM8962_FLL_CONTROL_8, fll_div.n);
2885
9d7433b0 2886 reinit_completion(&wm8962->fll_lock);
4df0cb2f 2887
df6ab65f
MB
2888 ret = pm_runtime_get_sync(codec->dev);
2889 if (ret < 0) {
2890 dev_err(codec->dev, "Failed to resume device: %d\n", ret);
2891 return ret;
2892 }
2a761cde 2893
9a76f1ff
MB
2894 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1,
2895 WM8962_FLL_FRAC | WM8962_FLL_REFCLK_SRC_MASK |
a968d9db 2896 WM8962_FLL_ENA, fll1 | WM8962_FLL_ENA);
9a76f1ff
MB
2897
2898 dev_dbg(codec->dev, "FLL configured for %dHz->%dHz\n", Fref, Fout);
2899
346f1d40
MB
2900 /* This should be a massive overestimate but go even
2901 * higher if we'll error out
2902 */
2903 if (wm8962->irq)
2904 timeout = msecs_to_jiffies(5);
2905 else
2906 timeout = msecs_to_jiffies(1);
649a1a0e 2907
346f1d40
MB
2908 timeout = wait_for_completion_timeout(&wm8962->fll_lock,
2909 timeout);
649a1a0e 2910
346f1d40
MB
2911 if (timeout == 0 && wm8962->irq) {
2912 dev_err(codec->dev, "FLL lock timed out");
d6f95e54
MB
2913 snd_soc_update_bits(codec, WM8962_FLL_CONTROL_1,
2914 WM8962_FLL_ENA, 0);
2915 pm_runtime_put(codec->dev);
2916 return -ETIMEDOUT;
649a1a0e 2917 }
3b8a6d80 2918
9a76f1ff
MB
2919 wm8962->fll_fref = Fref;
2920 wm8962->fll_fout = Fout;
2921 wm8962->fll_src = source;
2922
d6f95e54 2923 return 0;
9a76f1ff
MB
2924}
2925
2926static int wm8962_mute(struct snd_soc_dai *dai, int mute)
2927{
2928 struct snd_soc_codec *codec = dai->codec;
44330ab5 2929 int val, ret;
9a76f1ff
MB
2930
2931 if (mute)
44330ab5 2932 val = WM8962_DAC_MUTE | WM8962_DAC_MUTE_ALT;
9a76f1ff
MB
2933 else
2934 val = 0;
2935
44330ab5
CK
2936 /**
2937 * The DAC mute bit is mirrored in two registers, update both to keep
2938 * the register cache consistent.
2939 */
2940 ret = snd_soc_update_bits(codec, WM8962_CLASS_D_CONTROL_1,
2941 WM8962_DAC_MUTE_ALT, val);
2942 if (ret < 0)
2943 return ret;
2944
9a76f1ff
MB
2945 return snd_soc_update_bits(codec, WM8962_ADC_DAC_CONTROL_1,
2946 WM8962_DAC_MUTE, val);
2947}
2948
2949#define WM8962_RATES SNDRV_PCM_RATE_8000_96000
2950
2951#define WM8962_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
2952 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
2953
85e7652d 2954static const struct snd_soc_dai_ops wm8962_dai_ops = {
9a76f1ff
MB
2955 .hw_params = wm8962_hw_params,
2956 .set_sysclk = wm8962_set_dai_sysclk,
2957 .set_fmt = wm8962_set_dai_fmt,
9a76f1ff
MB
2958 .digital_mute = wm8962_mute,
2959};
2960
54d8d0ae
MB
2961static struct snd_soc_dai_driver wm8962_dai = {
2962 .name = "wm8962",
9a76f1ff
MB
2963 .playback = {
2964 .stream_name = "Playback",
4c6c0b5e 2965 .channels_min = 1,
9a76f1ff
MB
2966 .channels_max = 2,
2967 .rates = WM8962_RATES,
2968 .formats = WM8962_FORMATS,
2969 },
2970 .capture = {
2971 .stream_name = "Capture",
4c6c0b5e 2972 .channels_min = 1,
9a76f1ff
MB
2973 .channels_max = 2,
2974 .rates = WM8962_RATES,
2975 .formats = WM8962_FORMATS,
2976 },
2977 .ops = &wm8962_dai_ops,
2978 .symmetric_rates = 1,
2979};
9a76f1ff 2980
7711308a
MB
2981static void wm8962_mic_work(struct work_struct *work)
2982{
2983 struct wm8962_priv *wm8962 = container_of(work,
2984 struct wm8962_priv,
2985 mic_work.work);
2986 struct snd_soc_codec *codec = wm8962->codec;
2987 int status = 0;
2988 int irq_pol = 0;
2989 int reg;
2990
2991 reg = snd_soc_read(codec, WM8962_ADDITIONAL_CONTROL_4);
2992
2993 if (reg & WM8962_MICDET_STS) {
2994 status |= SND_JACK_MICROPHONE;
2995 irq_pol |= WM8962_MICD_IRQ_POL;
2996 }
2997
2998 if (reg & WM8962_MICSHORT_STS) {
2999 status |= SND_JACK_BTN_0;
3000 irq_pol |= WM8962_MICSCD_IRQ_POL;
3001 }
3002
3003 snd_soc_jack_report(wm8962->jack, status,
3004 SND_JACK_MICROPHONE | SND_JACK_BTN_0);
3005
3006 snd_soc_update_bits(codec, WM8962_MICINT_SOURCE_POL,
3007 WM8962_MICSCD_IRQ_POL |
3008 WM8962_MICD_IRQ_POL, irq_pol);
3009}
3010
45e65504
MB
3011static irqreturn_t wm8962_irq(int irq, void *data)
3012{
0512615d
MB
3013 struct device *dev = data;
3014 struct wm8962_priv *wm8962 = dev_get_drvdata(dev);
3015 unsigned int mask;
3016 unsigned int active;
3017 int reg, ret;
45e65504 3018
7e9614eb
MB
3019 ret = pm_runtime_get_sync(dev);
3020 if (ret < 0) {
3021 dev_err(dev, "Failed to resume: %d\n", ret);
3022 return IRQ_NONE;
3023 }
3024
0512615d
MB
3025 ret = regmap_read(wm8962->regmap, WM8962_INTERRUPT_STATUS_2_MASK,
3026 &mask);
3027 if (ret != 0) {
7e9614eb 3028 pm_runtime_put(dev);
0512615d
MB
3029 dev_err(dev, "Failed to read interrupt mask: %d\n",
3030 ret);
3031 return IRQ_NONE;
3032 }
45e65504 3033
0512615d
MB
3034 ret = regmap_read(wm8962->regmap, WM8962_INTERRUPT_STATUS_2, &active);
3035 if (ret != 0) {
7e9614eb 3036 pm_runtime_put(dev);
0512615d
MB
3037 dev_err(dev, "Failed to read interrupt: %d\n", ret);
3038 return IRQ_NONE;
3039 }
45e65504 3040
45e65504
MB
3041 active &= ~mask;
3042
7e9614eb
MB
3043 if (!active) {
3044 pm_runtime_put(dev);
e6ef5870 3045 return IRQ_NONE;
7e9614eb 3046 }
e6ef5870 3047
3198b9eb 3048 /* Acknowledge the interrupts */
0512615d
MB
3049 ret = regmap_write(wm8962->regmap, WM8962_INTERRUPT_STATUS_2, active);
3050 if (ret != 0)
3051 dev_warn(dev, "Failed to ack interrupt: %d\n", ret);
3198b9eb 3052
3b8a6d80 3053 if (active & WM8962_FLL_LOCK_EINT) {
0512615d 3054 dev_dbg(dev, "FLL locked\n");
3b8a6d80
MB
3055 complete(&wm8962->fll_lock);
3056 }
3057
45e65504 3058 if (active & WM8962_FIFOS_ERR_EINT)
0512615d 3059 dev_err(dev, "FIFO error\n");
45e65504 3060
fbf04076 3061 if (active & WM8962_TEMP_SHUT_EINT) {
0512615d 3062 dev_crit(dev, "Thermal shutdown\n");
45e65504 3063
0512615d
MB
3064 ret = regmap_read(wm8962->regmap,
3065 WM8962_THERMAL_SHUTDOWN_STATUS, &reg);
3066 if (ret != 0) {
3067 dev_warn(dev, "Failed to read thermal status: %d\n",
3068 ret);
3069 reg = 0;
3070 }
fbf04076
MB
3071
3072 if (reg & WM8962_TEMP_ERR_HP)
0512615d 3073 dev_crit(dev, "Headphone thermal error\n");
fbf04076 3074 if (reg & WM8962_TEMP_WARN_HP)
0512615d 3075 dev_crit(dev, "Headphone thermal warning\n");
fbf04076 3076 if (reg & WM8962_TEMP_ERR_SPK)
0512615d 3077 dev_crit(dev, "Speaker thermal error\n");
fbf04076 3078 if (reg & WM8962_TEMP_WARN_SPK)
0512615d 3079 dev_crit(dev, "Speaker thermal warning\n");
fbf04076
MB
3080 }
3081
7711308a 3082 if (active & (WM8962_MICSCD_EINT | WM8962_MICD_EINT)) {
0512615d 3083 dev_dbg(dev, "Microphone event detected\n");
7711308a 3084
6dc47e97 3085#ifndef CONFIG_SND_SOC_WM8962_MODULE
0512615d 3086 trace_snd_soc_jack_irq(dev_name(dev));
1435b940 3087#endif
2bbb5d66 3088
0512615d 3089 pm_wakeup_event(dev, 300);
11e16eb3 3090
da72c961
MB
3091 queue_delayed_work(system_power_efficient_wq,
3092 &wm8962->mic_work,
3093 msecs_to_jiffies(250));
7711308a
MB
3094 }
3095
7e9614eb
MB
3096 pm_runtime_put(dev);
3097
45e65504
MB
3098 return IRQ_HANDLED;
3099}
3100
7711308a
MB
3101/**
3102 * wm8962_mic_detect - Enable microphone detection via the WM8962 IRQ
3103 *
3104 * @codec: WM8962 codec
3105 * @jack: jack to report detection events on
3106 *
3107 * Enable microphone detection via IRQ on the WM8962. If GPIOs are
3108 * being used to bring out signals to the processor then only platform
3109 * data configuration is needed for WM8962 and processor GPIOs should
3110 * be configured using snd_soc_jack_add_gpios() instead.
3111 *
3112 * If no jack is supplied detection will be disabled.
3113 */
3114int wm8962_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack)
3115{
3116 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
57ef7fa7 3117 struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
7711308a
MB
3118 int irq_mask, enable;
3119
3120 wm8962->jack = jack;
3121 if (jack) {
3122 irq_mask = 0;
3123 enable = WM8962_MICDET_ENA;
3124 } else {
3125 irq_mask = WM8962_MICD_EINT | WM8962_MICSCD_EINT;
3126 enable = 0;
3127 }
3128
3129 snd_soc_update_bits(codec, WM8962_INTERRUPT_STATUS_2_MASK,
3130 WM8962_MICD_EINT | WM8962_MICSCD_EINT, irq_mask);
3131 snd_soc_update_bits(codec, WM8962_ADDITIONAL_CONTROL_4,
3132 WM8962_MICDET_ENA, enable);
3133
3134 /* Send an initial empty report */
3135 snd_soc_jack_report(wm8962->jack, 0,
3136 SND_JACK_MICROPHONE | SND_JACK_BTN_0);
3137
f1a3b8d9
CK
3138 snd_soc_dapm_mutex_lock(dapm);
3139
a5ef9884 3140 if (jack) {
f1a3b8d9
CK
3141 snd_soc_dapm_force_enable_pin_unlocked(dapm, "SYSCLK");
3142 snd_soc_dapm_force_enable_pin_unlocked(dapm, "MICBIAS");
00ae3b86 3143 } else {
f1a3b8d9
CK
3144 snd_soc_dapm_disable_pin_unlocked(dapm, "SYSCLK");
3145 snd_soc_dapm_disable_pin_unlocked(dapm, "MICBIAS");
a5ef9884 3146 }
db0e5543 3147
f1a3b8d9
CK
3148 snd_soc_dapm_mutex_unlock(dapm);
3149
7711308a
MB
3150 return 0;
3151}
3152EXPORT_SYMBOL_GPL(wm8962_mic_detect);
3153
9a76f1ff
MB
3154static int beep_rates[] = {
3155 500, 1000, 2000, 4000,
3156};
3157
3158static void wm8962_beep_work(struct work_struct *work)
3159{
3160 struct wm8962_priv *wm8962 =
3161 container_of(work, struct wm8962_priv, beep_work);
54d8d0ae 3162 struct snd_soc_codec *codec = wm8962->codec;
57ef7fa7 3163 struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
9a76f1ff
MB
3164 int i;
3165 int reg = 0;
3166 int best = 0;
3167
3168 if (wm8962->beep_rate) {
3169 for (i = 0; i < ARRAY_SIZE(beep_rates); i++) {
3170 if (abs(wm8962->beep_rate - beep_rates[i]) <
3171 abs(wm8962->beep_rate - beep_rates[best]))
3172 best = i;
3173 }
3174
3175 dev_dbg(codec->dev, "Set beep rate %dHz for requested %dHz\n",
3176 beep_rates[best], wm8962->beep_rate);
3177
3178 reg = WM8962_BEEP_ENA | (best << WM8962_BEEP_RATE_SHIFT);
3179
ce6120cc 3180 snd_soc_dapm_enable_pin(dapm, "Beep");
9a76f1ff
MB
3181 } else {
3182 dev_dbg(codec->dev, "Disabling beep\n");
ce6120cc 3183 snd_soc_dapm_disable_pin(dapm, "Beep");
9a76f1ff
MB
3184 }
3185
3186 snd_soc_update_bits(codec, WM8962_BEEP_GENERATOR_1,
3187 WM8962_BEEP_ENA | WM8962_BEEP_RATE_MASK, reg);
3188
ce6120cc 3189 snd_soc_dapm_sync(dapm);
9a76f1ff
MB
3190}
3191
3192/* For usability define a way of injecting beep events for the device -
3193 * many systems will not have a keyboard.
3194 */
3195static int wm8962_beep_event(struct input_dev *dev, unsigned int type,
3196 unsigned int code, int hz)
3197{
3198 struct snd_soc_codec *codec = input_get_drvdata(dev);
3199 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
3200
3201 dev_dbg(codec->dev, "Beep event %x %x\n", code, hz);
3202
3203 switch (code) {
3204 case SND_BELL:
3205 if (hz)
3206 hz = 1000;
3207 case SND_TONE:
3208 break;
3209 default:
3210 return -1;
3211 }
3212
3213 /* Kick the beep from a workqueue */
3214 wm8962->beep_rate = hz;
3215 schedule_work(&wm8962->beep_work);
3216 return 0;
3217}
3218
3219static ssize_t wm8962_beep_set(struct device *dev,
3220 struct device_attribute *attr,
3221 const char *buf, size_t count)
3222{
3223 struct wm8962_priv *wm8962 = dev_get_drvdata(dev);
3224 long int time;
74a557e2 3225 int ret;
9a76f1ff 3226
b785a492 3227 ret = kstrtol(buf, 10, &time);
74a557e2
MB
3228 if (ret != 0)
3229 return ret;
9a76f1ff
MB
3230
3231 input_event(wm8962->beep, EV_SND, SND_TONE, time);
3232
3233 return count;
3234}
3235
3236static DEVICE_ATTR(beep, 0200, NULL, wm8962_beep_set);
3237
3238static void wm8962_init_beep(struct snd_soc_codec *codec)
3239{
3240 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
3241 int ret;
3242
a2ce6475 3243 wm8962->beep = devm_input_allocate_device(codec->dev);
9a76f1ff
MB
3244 if (!wm8962->beep) {
3245 dev_err(codec->dev, "Failed to allocate beep device\n");
3246 return;
3247 }
3248
3249 INIT_WORK(&wm8962->beep_work, wm8962_beep_work);
3250 wm8962->beep_rate = 0;
3251
3252 wm8962->beep->name = "WM8962 Beep Generator";
3253 wm8962->beep->phys = dev_name(codec->dev);
3254 wm8962->beep->id.bustype = BUS_I2C;
3255
3256 wm8962->beep->evbit[0] = BIT_MASK(EV_SND);
3257 wm8962->beep->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
3258 wm8962->beep->event = wm8962_beep_event;
3259 wm8962->beep->dev.parent = codec->dev;
3260 input_set_drvdata(wm8962->beep, codec);
3261
3262 ret = input_register_device(wm8962->beep);
3263 if (ret != 0) {
9a76f1ff
MB
3264 wm8962->beep = NULL;
3265 dev_err(codec->dev, "Failed to register beep device\n");
3266 }
3267
3268 ret = device_create_file(codec->dev, &dev_attr_beep);
3269 if (ret != 0) {
3270 dev_err(codec->dev, "Failed to create keyclick file: %d\n",
3271 ret);
3272 }
3273}
3274
3275static void wm8962_free_beep(struct snd_soc_codec *codec)
3276{
3277 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
3278
3279 device_remove_file(codec->dev, &dev_attr_beep);
9a76f1ff
MB
3280 cancel_work_sync(&wm8962->beep_work);
3281 wm8962->beep = NULL;
3282
3283 snd_soc_update_bits(codec, WM8962_BEEP_GENERATOR_1, WM8962_BEEP_ENA,0);
3284}
9a76f1ff 3285
78b78f5c 3286static void wm8962_set_gpio_mode(struct wm8962_priv *wm8962, int gpio)
8ca2aa9c
MB
3287{
3288 int mask = 0;
3289 int val = 0;
3290
3291 /* Some of the GPIOs are behind MFP configuration and need to
3292 * be put into GPIO mode. */
3293 switch (gpio) {
3294 case 2:
3295 mask = WM8962_CLKOUT2_SEL_MASK;
3296 val = 1 << WM8962_CLKOUT2_SEL_SHIFT;
3297 break;
3298 case 3:
3299 mask = WM8962_CLKOUT3_SEL_MASK;
3300 val = 1 << WM8962_CLKOUT3_SEL_SHIFT;
3301 break;
3302 default:
3303 break;
3304 }
3305
3306 if (mask)
78b78f5c
MB
3307 regmap_update_bits(wm8962->regmap, WM8962_ANALOGUE_CLOCKING1,
3308 mask, val);
8ca2aa9c
MB
3309}
3310
3367b8d4
MB
3311#ifdef CONFIG_GPIOLIB
3312static inline struct wm8962_priv *gpio_to_wm8962(struct gpio_chip *chip)
3313{
3314 return container_of(chip, struct wm8962_priv, gpio_chip);
3315}
3316
3317static int wm8962_gpio_request(struct gpio_chip *chip, unsigned offset)
3318{
3319 struct wm8962_priv *wm8962 = gpio_to_wm8962(chip);
3367b8d4
MB
3320
3321 /* The WM8962 GPIOs aren't linearly numbered. For simplicity
3322 * we export linear numbers and error out if the unsupported
3323 * ones are requsted.
3324 */
3325 switch (offset + 1) {
3326 case 2:
3367b8d4 3327 case 3:
3367b8d4
MB
3328 case 5:
3329 case 6:
3330 break;
3331 default:
3332 return -EINVAL;
3333 }
3334
78b78f5c 3335 wm8962_set_gpio_mode(wm8962, offset + 1);
3367b8d4
MB
3336
3337 return 0;
3338}
3339
3340static void wm8962_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
3341{
3342 struct wm8962_priv *wm8962 = gpio_to_wm8962(chip);
3343 struct snd_soc_codec *codec = wm8962->codec;
3344
3345 snd_soc_update_bits(codec, WM8962_GPIO_BASE + offset,
d71bb810 3346 WM8962_GP2_LVL, !!value << WM8962_GP2_LVL_SHIFT);
3367b8d4
MB
3347}
3348
3349static int wm8962_gpio_direction_out(struct gpio_chip *chip,
3350 unsigned offset, int value)
3351{
3352 struct wm8962_priv *wm8962 = gpio_to_wm8962(chip);
3353 struct snd_soc_codec *codec = wm8962->codec;
fe75fe0e 3354 int ret, val;
3367b8d4
MB
3355
3356 /* Force function 1 (logic output) */
3357 val = (1 << WM8962_GP2_FN_SHIFT) | (value << WM8962_GP2_LVL_SHIFT);
3358
fe75fe0e
AL
3359 ret = snd_soc_update_bits(codec, WM8962_GPIO_BASE + offset,
3360 WM8962_GP2_FN_MASK | WM8962_GP2_LVL, val);
3361 if (ret < 0)
3362 return ret;
3363
3364 return 0;
3367b8d4
MB
3365}
3366
3367static struct gpio_chip wm8962_template_chip = {
3368 .label = "wm8962",
3369 .owner = THIS_MODULE,
3370 .request = wm8962_gpio_request,
3371 .direction_output = wm8962_gpio_direction_out,
3372 .set = wm8962_gpio_set,
3373 .can_sleep = 1,
3374};
3375
3376static void wm8962_init_gpio(struct snd_soc_codec *codec)
3377{
3378 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
e75a52c6 3379 struct wm8962_pdata *pdata = &wm8962->pdata;
3367b8d4
MB
3380 int ret;
3381
3382 wm8962->gpio_chip = wm8962_template_chip;
3383 wm8962->gpio_chip.ngpio = WM8962_MAX_GPIO;
3384 wm8962->gpio_chip.dev = codec->dev;
3385
e75a52c6 3386 if (pdata->gpio_base)
3367b8d4
MB
3387 wm8962->gpio_chip.base = pdata->gpio_base;
3388 else
3389 wm8962->gpio_chip.base = -1;
3390
3391 ret = gpiochip_add(&wm8962->gpio_chip);
3392 if (ret != 0)
3393 dev_err(codec->dev, "Failed to add GPIOs: %d\n", ret);
3394}
3395
3396static void wm8962_free_gpio(struct snd_soc_codec *codec)
3397{
3398 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
3367b8d4 3399
88d5e520 3400 gpiochip_remove(&wm8962->gpio_chip);
3367b8d4
MB
3401}
3402#else
3403static void wm8962_init_gpio(struct snd_soc_codec *codec)
3404{
3405}
3406
3407static void wm8962_free_gpio(struct snd_soc_codec *codec)
3408{
3409}
3410#endif
3411
54d8d0ae 3412static int wm8962_probe(struct snd_soc_codec *codec)
9a76f1ff 3413{
57ef7fa7 3414 struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
9a76f1ff 3415 int ret;
54d8d0ae 3416 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
ca50410b 3417 int i;
e47ac37c 3418 bool dmicclk, dmicdat;
9a76f1ff 3419
54d8d0ae 3420 wm8962->codec = codec;
9a76f1ff
MB
3421
3422 wm8962->disable_nb[0].notifier_call = wm8962_regulator_event_0;
3423 wm8962->disable_nb[1].notifier_call = wm8962_regulator_event_1;
3424 wm8962->disable_nb[2].notifier_call = wm8962_regulator_event_2;
3425 wm8962->disable_nb[3].notifier_call = wm8962_regulator_event_3;
3426 wm8962->disable_nb[4].notifier_call = wm8962_regulator_event_4;
3427 wm8962->disable_nb[5].notifier_call = wm8962_regulator_event_5;
3428 wm8962->disable_nb[6].notifier_call = wm8962_regulator_event_6;
3429 wm8962->disable_nb[7].notifier_call = wm8962_regulator_event_7;
3430
3431 /* This should really be moved into the regulator core */
3432 for (i = 0; i < ARRAY_SIZE(wm8962->supplies); i++) {
3433 ret = regulator_register_notifier(wm8962->supplies[i].consumer,
3434 &wm8962->disable_nb[i]);
3435 if (ret != 0) {
3436 dev_err(codec->dev,
3437 "Failed to register regulator notifier: %d\n",
3438 ret);
3439 }
3440 }
3441
54d8d0ae 3442 wm8962_add_widgets(codec);
9a76f1ff 3443
e47ac37c
MB
3444 /* Save boards having to disable DMIC when not in use */
3445 dmicclk = false;
3446 dmicdat = false;
3447 for (i = 0; i < WM8962_MAX_GPIO; i++) {
3448 switch (snd_soc_read(codec, WM8962_GPIO_BASE + i)
3449 & WM8962_GP2_FN_MASK) {
3450 case WM8962_GPIO_FN_DMICCLK:
3451 dmicclk = true;
3452 break;
3453 case WM8962_GPIO_FN_DMICDAT:
3454 dmicdat = true;
3455 break;
3456 default:
3457 break;
3458 }
3459 }
3460 if (!dmicclk || !dmicdat) {
3461 dev_dbg(codec->dev, "DMIC not in use, disabling\n");
57ef7fa7 3462 snd_soc_dapm_nc_pin(dapm, "DMICDAT");
e47ac37c
MB
3463 }
3464 if (dmicclk != dmicdat)
3465 dev_warn(codec->dev, "DMIC GPIOs partially configured\n");
3466
9a76f1ff 3467 wm8962_init_beep(codec);
3367b8d4 3468 wm8962_init_gpio(codec);
9a76f1ff
MB
3469
3470 return 0;
9a76f1ff
MB
3471}
3472
54d8d0ae 3473static int wm8962_remove(struct snd_soc_codec *codec)
9a76f1ff 3474{
54d8d0ae 3475 struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec);
9a76f1ff
MB
3476 int i;
3477
7711308a
MB
3478 cancel_delayed_work_sync(&wm8962->mic_work);
3479
3367b8d4 3480 wm8962_free_gpio(codec);
54d8d0ae 3481 wm8962_free_beep(codec);
9a76f1ff
MB
3482 for (i = 0; i < ARRAY_SIZE(wm8962->supplies); i++)
3483 regulator_unregister_notifier(wm8962->supplies[i].consumer,
3484 &wm8962->disable_nb[i]);
54d8d0ae
MB
3485
3486 return 0;
9a76f1ff
MB
3487}
3488
54d8d0ae
MB
3489static struct snd_soc_codec_driver soc_codec_dev_wm8962 = {
3490 .probe = wm8962_probe,
3491 .remove = wm8962_remove,
54d8d0ae 3492 .set_bias_level = wm8962_set_bias_level,
92a4352c 3493 .set_pll = wm8962_set_fll,
2693efd6 3494 .idle_bias_off = true,
54d8d0ae
MB
3495};
3496
182c51ce
MB
3497/* Improve power consumption for IN4 DC measurement mode */
3498static const struct reg_default wm8962_dc_measure[] = {
3499 { 0xfd, 0x1 },
3500 { 0xcc, 0x40 },
3501 { 0xfd, 0 },
54d8d0ae
MB
3502};
3503
7b16f560
MB
3504static const struct regmap_config wm8962_regmap = {
3505 .reg_bits = 16,
3506 .val_bits = 16,
3507
3508 .max_register = WM8962_MAX_REGISTER,
3509 .reg_defaults = wm8962_reg,
3510 .num_reg_defaults = ARRAY_SIZE(wm8962_reg),
3511 .volatile_reg = wm8962_volatile_register,
3512 .readable_reg = wm8962_readable_register,
3513 .cache_type = REGCACHE_RBTREE,
3514};
3515
d74e9e70
NC
3516static int wm8962_set_pdata_from_of(struct i2c_client *i2c,
3517 struct wm8962_pdata *pdata)
3518{
3519 const struct device_node *np = i2c->dev.of_node;
3520 u32 val32;
3521 int i;
3522
3523 if (of_property_read_bool(np, "spk-mono"))
3524 pdata->spk_mono = true;
3525
3526 if (of_property_read_u32(np, "mic-cfg", &val32) >= 0)
3527 pdata->mic_cfg = val32;
3528
3529 if (of_property_read_u32_array(np, "gpio-cfg", pdata->gpio_init,
3530 ARRAY_SIZE(pdata->gpio_init)) >= 0)
3531 for (i = 0; i < ARRAY_SIZE(pdata->gpio_init); i++) {
3532 /*
3533 * The range of GPIO register value is [0x0, 0xffff]
3534 * While the default value of each register is 0x0
3535 * Any other value will be regarded as default value
3536 */
3537 if (pdata->gpio_init[i] > 0xffff)
3538 pdata->gpio_init[i] = 0x0;
3539 }
3540
d7821953
NC
3541 pdata->mclk = devm_clk_get(&i2c->dev, NULL);
3542
d74e9e70
NC
3543 return 0;
3544}
3545
7a79e94e
BP
3546static int wm8962_i2c_probe(struct i2c_client *i2c,
3547 const struct i2c_device_id *id)
9a76f1ff 3548{
182c51ce 3549 struct wm8962_pdata *pdata = dev_get_platdata(&i2c->dev);
9a76f1ff 3550 struct wm8962_priv *wm8962;
7b16f560 3551 unsigned int reg;
ca50410b 3552 int ret, i, irq_pol, trigger;
9a76f1ff 3553
54ec2d5f 3554 wm8962 = devm_kzalloc(&i2c->dev, sizeof(*wm8962), GFP_KERNEL);
9a76f1ff
MB
3555 if (wm8962 == NULL)
3556 return -ENOMEM;
3557
3e4199ef
LPC
3558 mutex_init(&wm8962->dsp2_ena_lock);
3559
9a76f1ff 3560 i2c_set_clientdata(i2c, wm8962);
9a76f1ff 3561
7b16f560
MB
3562 INIT_DELAYED_WORK(&wm8962->mic_work, wm8962_mic_work);
3563 init_completion(&wm8962->fll_lock);
c7356da9
MB
3564 wm8962->irq = i2c->irq;
3565
e75a52c6 3566 /* If platform data was supplied, update the default data in priv */
d74e9e70 3567 if (pdata) {
e75a52c6 3568 memcpy(&wm8962->pdata, pdata, sizeof(struct wm8962_pdata));
d74e9e70
NC
3569 } else if (i2c->dev.of_node) {
3570 ret = wm8962_set_pdata_from_of(i2c, &wm8962->pdata);
3571 if (ret != 0)
3572 return ret;
3573 }
e75a52c6 3574
d7821953
NC
3575 /* Mark the mclk pointer to NULL if no mclk assigned */
3576 if (IS_ERR(wm8962->pdata.mclk)) {
3577 /* But do not ignore the request for probe defer */
3578 if (PTR_ERR(wm8962->pdata.mclk) == -EPROBE_DEFER)
3579 return -EPROBE_DEFER;
3580 wm8962->pdata.mclk = NULL;
3581 }
3582
7b16f560
MB
3583 for (i = 0; i < ARRAY_SIZE(wm8962->supplies); i++)
3584 wm8962->supplies[i].supply = wm8962_supply_names[i];
3585
92437cbb 3586 ret = devm_regulator_bulk_get(&i2c->dev, ARRAY_SIZE(wm8962->supplies),
7b16f560
MB
3587 wm8962->supplies);
3588 if (ret != 0) {
3589 dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
be086aa8 3590 goto err;
7b16f560
MB
3591 }
3592
3593 ret = regulator_bulk_enable(ARRAY_SIZE(wm8962->supplies),
3594 wm8962->supplies);
3595 if (ret != 0) {
3596 dev_err(&i2c->dev, "Failed to enable supplies: %d\n", ret);
92437cbb 3597 return ret;
7b16f560
MB
3598 }
3599
b439c6d0 3600 wm8962->regmap = devm_regmap_init_i2c(i2c, &wm8962_regmap);
7b16f560
MB
3601 if (IS_ERR(wm8962->regmap)) {
3602 ret = PTR_ERR(wm8962->regmap);
3603 dev_err(&i2c->dev, "Failed to allocate regmap: %d\n", ret);
3604 goto err_enable;
3605 }
3606
3607 /*
3608 * We haven't marked the chip revision as volatile due to
3609 * sharing a register with the right input volume; explicitly
3610 * bypass the cache to read it.
3611 */
3612 regcache_cache_bypass(wm8962->regmap, true);
3613
3614 ret = regmap_read(wm8962->regmap, WM8962_SOFTWARE_RESET, &reg);
3615 if (ret < 0) {
3616 dev_err(&i2c->dev, "Failed to read ID register\n");
b439c6d0 3617 goto err_enable;
7b16f560
MB
3618 }
3619 if (reg != 0x6243) {
3620 dev_err(&i2c->dev,
905b4195 3621 "Device is not a WM8962, ID %x != 0x6243\n", reg);
7b16f560 3622 ret = -EINVAL;
b439c6d0 3623 goto err_enable;
7b16f560
MB
3624 }
3625
3626 ret = regmap_read(wm8962->regmap, WM8962_RIGHT_INPUT_VOLUME, &reg);
3627 if (ret < 0) {
3628 dev_err(&i2c->dev, "Failed to read device revision: %d\n",
3629 ret);
b439c6d0 3630 goto err_enable;
7b16f560
MB
3631 }
3632
3633 dev_info(&i2c->dev, "customer id %x revision %c\n",
3634 (reg & WM8962_CUST_ID_MASK) >> WM8962_CUST_ID_SHIFT,
3635 ((reg & WM8962_CHIP_REV_MASK) >> WM8962_CHIP_REV_SHIFT)
3636 + 'A');
3637
3638 regcache_cache_bypass(wm8962->regmap, false);
3639
3640 ret = wm8962_reset(wm8962);
3641 if (ret < 0) {
3642 dev_err(&i2c->dev, "Failed to issue reset\n");
b439c6d0 3643 goto err_enable;
7b16f560
MB
3644 }
3645
78b78f5c
MB
3646 /* SYSCLK defaults to on; make sure it is off so we can safely
3647 * write to registers if the device is declocked.
3648 */
3649 regmap_update_bits(wm8962->regmap, WM8962_CLOCKING2,
3650 WM8962_SYSCLK_ENA, 0);
3651
3652 /* Ensure we have soft control over all registers */
3653 regmap_update_bits(wm8962->regmap, WM8962_CLOCKING2,
3654 WM8962_CLKREG_OVD, WM8962_CLKREG_OVD);
3655
3656 /* Ensure that the oscillator and PLLs are disabled */
3657 regmap_update_bits(wm8962->regmap, WM8962_PLL2,
3658 WM8962_OSC_ENA | WM8962_PLL2_ENA | WM8962_PLL3_ENA,
3659 0);
3660
3661 /* Apply static configuration for GPIOs */
b5ef3f2a
NC
3662 for (i = 0; i < ARRAY_SIZE(wm8962->pdata.gpio_init); i++)
3663 if (wm8962->pdata.gpio_init[i]) {
78b78f5c
MB
3664 wm8962_set_gpio_mode(wm8962, i + 1);
3665 regmap_write(wm8962->regmap, 0x200 + i,
b5ef3f2a 3666 wm8962->pdata.gpio_init[i] & 0xffff);
78b78f5c
MB
3667 }
3668
3669
3670 /* Put the speakers into mono mode? */
b5ef3f2a 3671 if (wm8962->pdata.spk_mono)
78b78f5c
MB
3672 regmap_update_bits(wm8962->regmap, WM8962_CLASS_D_CONTROL_2,
3673 WM8962_SPK_MONO_MASK, WM8962_SPK_MONO);
3674
3675 /* Micbias setup, detection enable and detection
3676 * threasholds. */
b5ef3f2a 3677 if (wm8962->pdata.mic_cfg)
78b78f5c
MB
3678 regmap_update_bits(wm8962->regmap, WM8962_ADDITIONAL_CONTROL_4,
3679 WM8962_MICDET_ENA |
3680 WM8962_MICDET_THR_MASK |
3681 WM8962_MICSHORT_THR_MASK |
3682 WM8962_MICBIAS_LVL,
b5ef3f2a 3683 wm8962->pdata.mic_cfg);
78b78f5c
MB
3684
3685 /* Latch volume update bits */
3686 regmap_update_bits(wm8962->regmap, WM8962_LEFT_INPUT_VOLUME,
3687 WM8962_IN_VU, WM8962_IN_VU);
3688 regmap_update_bits(wm8962->regmap, WM8962_RIGHT_INPUT_VOLUME,
3689 WM8962_IN_VU, WM8962_IN_VU);
3690 regmap_update_bits(wm8962->regmap, WM8962_LEFT_ADC_VOLUME,
3691 WM8962_ADC_VU, WM8962_ADC_VU);
3692 regmap_update_bits(wm8962->regmap, WM8962_RIGHT_ADC_VOLUME,
3693 WM8962_ADC_VU, WM8962_ADC_VU);
3694 regmap_update_bits(wm8962->regmap, WM8962_LEFT_DAC_VOLUME,
3695 WM8962_DAC_VU, WM8962_DAC_VU);
3696 regmap_update_bits(wm8962->regmap, WM8962_RIGHT_DAC_VOLUME,
3697 WM8962_DAC_VU, WM8962_DAC_VU);
3698 regmap_update_bits(wm8962->regmap, WM8962_SPKOUTL_VOLUME,
3699 WM8962_SPKOUT_VU, WM8962_SPKOUT_VU);
3700 regmap_update_bits(wm8962->regmap, WM8962_SPKOUTR_VOLUME,
3701 WM8962_SPKOUT_VU, WM8962_SPKOUT_VU);
3702 regmap_update_bits(wm8962->regmap, WM8962_HPOUTL_VOLUME,
3703 WM8962_HPOUT_VU, WM8962_HPOUT_VU);
3704 regmap_update_bits(wm8962->regmap, WM8962_HPOUTR_VOLUME,
3705 WM8962_HPOUT_VU, WM8962_HPOUT_VU);
3706
3707 /* Stereo control for EQ */
3708 regmap_update_bits(wm8962->regmap, WM8962_EQ1,
3709 WM8962_EQ_SHARED_COEFF, 0);
3710
3711 /* Don't debouce interrupts so we don't need SYSCLK */
3712 regmap_update_bits(wm8962->regmap, WM8962_IRQ_DEBOUNCE,
3713 WM8962_FLL_LOCK_DB | WM8962_PLL3_LOCK_DB |
3714 WM8962_PLL2_LOCK_DB | WM8962_TEMP_SHUT_DB,
3715 0);
3716
e75a52c6 3717 if (wm8962->pdata.in4_dc_measure) {
182c51ce
MB
3718 ret = regmap_register_patch(wm8962->regmap,
3719 wm8962_dc_measure,
3720 ARRAY_SIZE(wm8962_dc_measure));
3721 if (ret != 0)
3722 dev_err(&i2c->dev,
3723 "Failed to configure for DC mesurement: %d\n",
3724 ret);
3725 }
3726
ca50410b 3727 if (wm8962->irq) {
b5ef3f2a 3728 if (wm8962->pdata.irq_active_low) {
ca50410b
MB
3729 trigger = IRQF_TRIGGER_LOW;
3730 irq_pol = WM8962_IRQ_POL;
3731 } else {
3732 trigger = IRQF_TRIGGER_HIGH;
3733 irq_pol = 0;
3734 }
3735
3736 regmap_update_bits(wm8962->regmap, WM8962_INTERRUPT_CONTROL,
3737 WM8962_IRQ_POL, irq_pol);
3738
3739 ret = devm_request_threaded_irq(&i2c->dev, wm8962->irq, NULL,
3740 wm8962_irq,
3741 trigger | IRQF_ONESHOT,
3742 "wm8962", &i2c->dev);
3743 if (ret != 0) {
3744 dev_err(&i2c->dev, "Failed to request IRQ %d: %d\n",
3745 wm8962->irq, ret);
3746 wm8962->irq = 0;
3747 /* Non-fatal */
3748 } else {
3749 /* Enable some IRQs by default */
3750 regmap_update_bits(wm8962->regmap,
3751 WM8962_INTERRUPT_STATUS_2_MASK,
3752 WM8962_FLL_LOCK_EINT |
3753 WM8962_TEMP_SHUT_EINT |
3754 WM8962_FIFOS_ERR_EINT, 0);
3755 }
3756 }
3757
d23031a4
MB
3758 pm_runtime_enable(&i2c->dev);
3759 pm_request_idle(&i2c->dev);
7b16f560 3760
54d8d0ae
MB
3761 ret = snd_soc_register_codec(&i2c->dev,
3762 &soc_codec_dev_wm8962, &wm8962_dai, 1);
3763 if (ret < 0)
b439c6d0 3764 goto err_enable;
7b16f560 3765
50bfcf2d
NC
3766 regcache_cache_only(wm8962->regmap, true);
3767
7b16f560
MB
3768 /* The drivers should power up as needed */
3769 regulator_bulk_disable(ARRAY_SIZE(wm8962->supplies), wm8962->supplies);
3770
3771 return 0;
9a76f1ff 3772
7b16f560
MB
3773err_enable:
3774 regulator_bulk_disable(ARRAY_SIZE(wm8962->supplies), wm8962->supplies);
be086aa8 3775err:
54d8d0ae 3776 return ret;
9a76f1ff
MB
3777}
3778
7a79e94e 3779static int wm8962_i2c_remove(struct i2c_client *client)
9a76f1ff 3780{
54d8d0ae 3781 snd_soc_unregister_codec(&client->dev);
9a76f1ff
MB
3782 return 0;
3783}
3784
641d334b 3785#ifdef CONFIG_PM
d23031a4
MB
3786static int wm8962_runtime_resume(struct device *dev)
3787{
3788 struct wm8962_priv *wm8962 = dev_get_drvdata(dev);
3789 int ret;
3790
d7821953
NC
3791 ret = clk_prepare_enable(wm8962->pdata.mclk);
3792 if (ret) {
3793 dev_err(dev, "Failed to enable MCLK: %d\n", ret);
3794 return ret;
3795 }
3796
d23031a4
MB
3797 ret = regulator_bulk_enable(ARRAY_SIZE(wm8962->supplies),
3798 wm8962->supplies);
3799 if (ret != 0) {
3800 dev_err(dev,
3801 "Failed to enable supplies: %d\n", ret);
3802 return ret;
3803 }
3804
3805 regcache_cache_only(wm8962->regmap, false);
e4dd7678
MB
3806
3807 wm8962_reset(wm8962);
3808
9c24b167
MB
3809 /* SYSCLK defaults to on; make sure it is off so we can safely
3810 * write to registers if the device is declocked.
3811 */
3812 regmap_update_bits(wm8962->regmap, WM8962_CLOCKING2,
3813 WM8962_SYSCLK_ENA, 0);
3814
3815 /* Ensure we have soft control over all registers */
3816 regmap_update_bits(wm8962->regmap, WM8962_CLOCKING2,
3817 WM8962_CLKREG_OVD, WM8962_CLKREG_OVD);
3818
3819 /* Ensure that the oscillator and PLLs are disabled */
3820 regmap_update_bits(wm8962->regmap, WM8962_PLL2,
3821 WM8962_OSC_ENA | WM8962_PLL2_ENA | WM8962_PLL3_ENA,
3822 0);
3823
d23031a4
MB
3824 regcache_sync(wm8962->regmap);
3825
f5055f93
NC
3826 regmap_update_bits(wm8962->regmap, WM8962_ANTI_POP,
3827 WM8962_STARTUP_BIAS_ENA | WM8962_VMID_BUF_ENA,
3828 WM8962_STARTUP_BIAS_ENA | WM8962_VMID_BUF_ENA);
3829
3830 /* Bias enable at 2*5k (fast start-up) */
3831 regmap_update_bits(wm8962->regmap, WM8962_PWR_MGMT_1,
3832 WM8962_BIAS_ENA | WM8962_VMID_SEL_MASK,
3833 WM8962_BIAS_ENA | 0x180);
3834
3835 msleep(5);
3836
d23031a4
MB
3837 return 0;
3838}
3839
3840static int wm8962_runtime_suspend(struct device *dev)
3841{
3842 struct wm8962_priv *wm8962 = dev_get_drvdata(dev);
3843
d23031a4
MB
3844 regmap_update_bits(wm8962->regmap, WM8962_PWR_MGMT_1,
3845 WM8962_VMID_SEL_MASK | WM8962_BIAS_ENA, 0);
3846
3847 regmap_update_bits(wm8962->regmap, WM8962_ANTI_POP,
3848 WM8962_STARTUP_BIAS_ENA |
3849 WM8962_VMID_BUF_ENA, 0);
3850
3851 regcache_cache_only(wm8962->regmap, true);
3852
3853 regulator_bulk_disable(ARRAY_SIZE(wm8962->supplies),
3854 wm8962->supplies);
3855
d7821953
NC
3856 clk_disable_unprepare(wm8962->pdata.mclk);
3857
d23031a4
MB
3858 return 0;
3859}
3860#endif
3861
3862static struct dev_pm_ops wm8962_pm = {
3863 SET_RUNTIME_PM_OPS(wm8962_runtime_suspend, wm8962_runtime_resume, NULL)
3864};
3865
9a76f1ff
MB
3866static const struct i2c_device_id wm8962_i2c_id[] = {
3867 { "wm8962", 0 },
3868 { }
3869};
3870MODULE_DEVICE_TABLE(i2c, wm8962_i2c_id);
3871
5ce56832
FE
3872static const struct of_device_id wm8962_of_match[] = {
3873 { .compatible = "wlf,wm8962", },
3874 { }
3875};
3876MODULE_DEVICE_TABLE(of, wm8962_of_match);
3877
9a76f1ff
MB
3878static struct i2c_driver wm8962_i2c_driver = {
3879 .driver = {
ea738bad 3880 .name = "wm8962",
9a76f1ff 3881 .owner = THIS_MODULE,
5ce56832 3882 .of_match_table = wm8962_of_match,
d23031a4 3883 .pm = &wm8962_pm,
9a76f1ff
MB
3884 },
3885 .probe = wm8962_i2c_probe,
7a79e94e 3886 .remove = wm8962_i2c_remove,
9a76f1ff
MB
3887 .id_table = wm8962_i2c_id,
3888};
9a76f1ff 3889
9d50a764 3890module_i2c_driver(wm8962_i2c_driver);
9a76f1ff
MB
3891
3892MODULE_DESCRIPTION("ASoC WM8962 driver");
3893MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
3894MODULE_LICENSE("GPL");
This page took 0.668274 seconds and 5 git commands to generate.