Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jlbec...
[deliverable/linux.git] / sound / soc / codecs / wm9081.c
1 /*
2 * wm9081.c -- WM9081 ALSA SoC Audio driver
3 *
4 * Author: Mark Brown
5 *
6 * Copyright 2009 Wolfson Microelectronics plc
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
18 #include <linux/pm.h>
19 #include <linux/i2c.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dapm.h>
27 #include <sound/initval.h>
28 #include <sound/tlv.h>
29
30 #include <sound/wm9081.h>
31 #include "wm9081.h"
32
33 static u16 wm9081_reg_defaults[] = {
34 0x0000, /* R0 - Software Reset */
35 0x0000, /* R1 */
36 0x00B9, /* R2 - Analogue Lineout */
37 0x00B9, /* R3 - Analogue Speaker PGA */
38 0x0001, /* R4 - VMID Control */
39 0x0068, /* R5 - Bias Control 1 */
40 0x0000, /* R6 */
41 0x0000, /* R7 - Analogue Mixer */
42 0x0000, /* R8 - Anti Pop Control */
43 0x01DB, /* R9 - Analogue Speaker 1 */
44 0x0018, /* R10 - Analogue Speaker 2 */
45 0x0180, /* R11 - Power Management */
46 0x0000, /* R12 - Clock Control 1 */
47 0x0038, /* R13 - Clock Control 2 */
48 0x4000, /* R14 - Clock Control 3 */
49 0x0000, /* R15 */
50 0x0000, /* R16 - FLL Control 1 */
51 0x0200, /* R17 - FLL Control 2 */
52 0x0000, /* R18 - FLL Control 3 */
53 0x0204, /* R19 - FLL Control 4 */
54 0x0000, /* R20 - FLL Control 5 */
55 0x0000, /* R21 */
56 0x0000, /* R22 - Audio Interface 1 */
57 0x0002, /* R23 - Audio Interface 2 */
58 0x0008, /* R24 - Audio Interface 3 */
59 0x0022, /* R25 - Audio Interface 4 */
60 0x0000, /* R26 - Interrupt Status */
61 0x0006, /* R27 - Interrupt Status Mask */
62 0x0000, /* R28 - Interrupt Polarity */
63 0x0000, /* R29 - Interrupt Control */
64 0x00C0, /* R30 - DAC Digital 1 */
65 0x0008, /* R31 - DAC Digital 2 */
66 0x09AF, /* R32 - DRC 1 */
67 0x4201, /* R33 - DRC 2 */
68 0x0000, /* R34 - DRC 3 */
69 0x0000, /* R35 - DRC 4 */
70 0x0000, /* R36 */
71 0x0000, /* R37 */
72 0x0000, /* R38 - Write Sequencer 1 */
73 0x0000, /* R39 - Write Sequencer 2 */
74 0x0002, /* R40 - MW Slave 1 */
75 0x0000, /* R41 */
76 0x0000, /* R42 - EQ 1 */
77 0x0000, /* R43 - EQ 2 */
78 0x0FCA, /* R44 - EQ 3 */
79 0x0400, /* R45 - EQ 4 */
80 0x00B8, /* R46 - EQ 5 */
81 0x1EB5, /* R47 - EQ 6 */
82 0xF145, /* R48 - EQ 7 */
83 0x0B75, /* R49 - EQ 8 */
84 0x01C5, /* R50 - EQ 9 */
85 0x169E, /* R51 - EQ 10 */
86 0xF829, /* R52 - EQ 11 */
87 0x07AD, /* R53 - EQ 12 */
88 0x1103, /* R54 - EQ 13 */
89 0x1C58, /* R55 - EQ 14 */
90 0xF373, /* R56 - EQ 15 */
91 0x0A54, /* R57 - EQ 16 */
92 0x0558, /* R58 - EQ 17 */
93 0x0564, /* R59 - EQ 18 */
94 0x0559, /* R60 - EQ 19 */
95 0x4000, /* R61 - EQ 20 */
96 };
97
98 static struct {
99 int ratio;
100 int clk_sys_rate;
101 } clk_sys_rates[] = {
102 { 64, 0 },
103 { 128, 1 },
104 { 192, 2 },
105 { 256, 3 },
106 { 384, 4 },
107 { 512, 5 },
108 { 768, 6 },
109 { 1024, 7 },
110 { 1408, 8 },
111 { 1536, 9 },
112 };
113
114 static struct {
115 int rate;
116 int sample_rate;
117 } sample_rates[] = {
118 { 8000, 0 },
119 { 11025, 1 },
120 { 12000, 2 },
121 { 16000, 3 },
122 { 22050, 4 },
123 { 24000, 5 },
124 { 32000, 6 },
125 { 44100, 7 },
126 { 48000, 8 },
127 { 88200, 9 },
128 { 96000, 10 },
129 };
130
131 static struct {
132 int div; /* *10 due to .5s */
133 int bclk_div;
134 } bclk_divs[] = {
135 { 10, 0 },
136 { 15, 1 },
137 { 20, 2 },
138 { 30, 3 },
139 { 40, 4 },
140 { 50, 5 },
141 { 55, 6 },
142 { 60, 7 },
143 { 80, 8 },
144 { 100, 9 },
145 { 110, 10 },
146 { 120, 11 },
147 { 160, 12 },
148 { 200, 13 },
149 { 220, 14 },
150 { 240, 15 },
151 { 250, 16 },
152 { 300, 17 },
153 { 320, 18 },
154 { 440, 19 },
155 { 480, 20 },
156 };
157
158 struct wm9081_priv {
159 enum snd_soc_control_type control_type;
160 void *control_data;
161 u16 reg_cache[WM9081_MAX_REGISTER + 1];
162 int sysclk_source;
163 int mclk_rate;
164 int sysclk_rate;
165 int fs;
166 int bclk;
167 int master;
168 int fll_fref;
169 int fll_fout;
170 int tdm_width;
171 struct wm9081_retune_mobile_config *retune;
172 };
173
174 static int wm9081_volatile_register(unsigned int reg)
175 {
176 switch (reg) {
177 case WM9081_SOFTWARE_RESET:
178 return 1;
179 default:
180 return 0;
181 }
182 }
183
184 static int wm9081_reset(struct snd_soc_codec *codec)
185 {
186 return snd_soc_write(codec, WM9081_SOFTWARE_RESET, 0);
187 }
188
189 static const DECLARE_TLV_DB_SCALE(drc_in_tlv, -4500, 75, 0);
190 static const DECLARE_TLV_DB_SCALE(drc_out_tlv, -2250, 75, 0);
191 static const DECLARE_TLV_DB_SCALE(drc_min_tlv, -1800, 600, 0);
192 static unsigned int drc_max_tlv[] = {
193 TLV_DB_RANGE_HEAD(4),
194 0, 0, TLV_DB_SCALE_ITEM(1200, 0, 0),
195 1, 1, TLV_DB_SCALE_ITEM(1800, 0, 0),
196 2, 2, TLV_DB_SCALE_ITEM(2400, 0, 0),
197 3, 3, TLV_DB_SCALE_ITEM(3600, 0, 0),
198 };
199 static const DECLARE_TLV_DB_SCALE(drc_qr_tlv, 1200, 600, 0);
200 static const DECLARE_TLV_DB_SCALE(drc_startup_tlv, -300, 50, 0);
201
202 static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
203
204 static const DECLARE_TLV_DB_SCALE(in_tlv, -600, 600, 0);
205 static const DECLARE_TLV_DB_SCALE(dac_tlv, -7200, 75, 1);
206 static const DECLARE_TLV_DB_SCALE(out_tlv, -5700, 100, 0);
207
208 static const char *drc_high_text[] = {
209 "1",
210 "1/2",
211 "1/4",
212 "1/8",
213 "1/16",
214 "0",
215 };
216
217 static const struct soc_enum drc_high =
218 SOC_ENUM_SINGLE(WM9081_DRC_3, 3, 6, drc_high_text);
219
220 static const char *drc_low_text[] = {
221 "1",
222 "1/2",
223 "1/4",
224 "1/8",
225 "0",
226 };
227
228 static const struct soc_enum drc_low =
229 SOC_ENUM_SINGLE(WM9081_DRC_3, 0, 5, drc_low_text);
230
231 static const char *drc_atk_text[] = {
232 "181us",
233 "181us",
234 "363us",
235 "726us",
236 "1.45ms",
237 "2.9ms",
238 "5.8ms",
239 "11.6ms",
240 "23.2ms",
241 "46.4ms",
242 "92.8ms",
243 "185.6ms",
244 };
245
246 static const struct soc_enum drc_atk =
247 SOC_ENUM_SINGLE(WM9081_DRC_2, 12, 12, drc_atk_text);
248
249 static const char *drc_dcy_text[] = {
250 "186ms",
251 "372ms",
252 "743ms",
253 "1.49s",
254 "2.97s",
255 "5.94s",
256 "11.89s",
257 "23.78s",
258 "47.56s",
259 };
260
261 static const struct soc_enum drc_dcy =
262 SOC_ENUM_SINGLE(WM9081_DRC_2, 8, 9, drc_dcy_text);
263
264 static const char *drc_qr_dcy_text[] = {
265 "0.725ms",
266 "1.45ms",
267 "5.8ms",
268 };
269
270 static const struct soc_enum drc_qr_dcy =
271 SOC_ENUM_SINGLE(WM9081_DRC_2, 4, 3, drc_qr_dcy_text);
272
273 static const char *dac_deemph_text[] = {
274 "None",
275 "32kHz",
276 "44.1kHz",
277 "48kHz",
278 };
279
280 static const struct soc_enum dac_deemph =
281 SOC_ENUM_SINGLE(WM9081_DAC_DIGITAL_2, 1, 4, dac_deemph_text);
282
283 static const char *speaker_mode_text[] = {
284 "Class D",
285 "Class AB",
286 };
287
288 static const struct soc_enum speaker_mode =
289 SOC_ENUM_SINGLE(WM9081_ANALOGUE_SPEAKER_2, 6, 2, speaker_mode_text);
290
291 static int speaker_mode_get(struct snd_kcontrol *kcontrol,
292 struct snd_ctl_elem_value *ucontrol)
293 {
294 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
295 unsigned int reg;
296
297 reg = snd_soc_read(codec, WM9081_ANALOGUE_SPEAKER_2);
298 if (reg & WM9081_SPK_MODE)
299 ucontrol->value.integer.value[0] = 1;
300 else
301 ucontrol->value.integer.value[0] = 0;
302
303 return 0;
304 }
305
306 /*
307 * Stop any attempts to change speaker mode while the speaker is enabled.
308 *
309 * We also have some special anti-pop controls dependant on speaker
310 * mode which must be changed along with the mode.
311 */
312 static int speaker_mode_put(struct snd_kcontrol *kcontrol,
313 struct snd_ctl_elem_value *ucontrol)
314 {
315 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
316 unsigned int reg_pwr = snd_soc_read(codec, WM9081_POWER_MANAGEMENT);
317 unsigned int reg2 = snd_soc_read(codec, WM9081_ANALOGUE_SPEAKER_2);
318
319 /* Are we changing anything? */
320 if (ucontrol->value.integer.value[0] ==
321 ((reg2 & WM9081_SPK_MODE) != 0))
322 return 0;
323
324 /* Don't try to change modes while enabled */
325 if (reg_pwr & WM9081_SPK_ENA)
326 return -EINVAL;
327
328 if (ucontrol->value.integer.value[0]) {
329 /* Class AB */
330 reg2 &= ~(WM9081_SPK_INV_MUTE | WM9081_OUT_SPK_CTRL);
331 reg2 |= WM9081_SPK_MODE;
332 } else {
333 /* Class D */
334 reg2 |= WM9081_SPK_INV_MUTE | WM9081_OUT_SPK_CTRL;
335 reg2 &= ~WM9081_SPK_MODE;
336 }
337
338 snd_soc_write(codec, WM9081_ANALOGUE_SPEAKER_2, reg2);
339
340 return 0;
341 }
342
343 static const struct snd_kcontrol_new wm9081_snd_controls[] = {
344 SOC_SINGLE_TLV("IN1 Volume", WM9081_ANALOGUE_MIXER, 1, 1, 1, in_tlv),
345 SOC_SINGLE_TLV("IN2 Volume", WM9081_ANALOGUE_MIXER, 3, 1, 1, in_tlv),
346
347 SOC_SINGLE_TLV("Playback Volume", WM9081_DAC_DIGITAL_1, 1, 96, 0, dac_tlv),
348
349 SOC_SINGLE("LINEOUT Switch", WM9081_ANALOGUE_LINEOUT, 7, 1, 1),
350 SOC_SINGLE("LINEOUT ZC Switch", WM9081_ANALOGUE_LINEOUT, 6, 1, 0),
351 SOC_SINGLE_TLV("LINEOUT Volume", WM9081_ANALOGUE_LINEOUT, 0, 63, 0, out_tlv),
352
353 SOC_SINGLE("DRC Switch", WM9081_DRC_1, 15, 1, 0),
354 SOC_ENUM("DRC High Slope", drc_high),
355 SOC_ENUM("DRC Low Slope", drc_low),
356 SOC_SINGLE_TLV("DRC Input Volume", WM9081_DRC_4, 5, 60, 1, drc_in_tlv),
357 SOC_SINGLE_TLV("DRC Output Volume", WM9081_DRC_4, 0, 30, 1, drc_out_tlv),
358 SOC_SINGLE_TLV("DRC Minimum Volume", WM9081_DRC_2, 2, 3, 1, drc_min_tlv),
359 SOC_SINGLE_TLV("DRC Maximum Volume", WM9081_DRC_2, 0, 3, 0, drc_max_tlv),
360 SOC_ENUM("DRC Attack", drc_atk),
361 SOC_ENUM("DRC Decay", drc_dcy),
362 SOC_SINGLE("DRC Quick Release Switch", WM9081_DRC_1, 2, 1, 0),
363 SOC_SINGLE_TLV("DRC Quick Release Volume", WM9081_DRC_2, 6, 3, 0, drc_qr_tlv),
364 SOC_ENUM("DRC Quick Release Decay", drc_qr_dcy),
365 SOC_SINGLE_TLV("DRC Startup Volume", WM9081_DRC_1, 6, 18, 0, drc_startup_tlv),
366
367 SOC_SINGLE("EQ Switch", WM9081_EQ_1, 0, 1, 0),
368
369 SOC_SINGLE("Speaker DC Volume", WM9081_ANALOGUE_SPEAKER_1, 3, 5, 0),
370 SOC_SINGLE("Speaker AC Volume", WM9081_ANALOGUE_SPEAKER_1, 0, 5, 0),
371 SOC_SINGLE("Speaker Switch", WM9081_ANALOGUE_SPEAKER_PGA, 7, 1, 1),
372 SOC_SINGLE("Speaker ZC Switch", WM9081_ANALOGUE_SPEAKER_PGA, 6, 1, 0),
373 SOC_SINGLE_TLV("Speaker Volume", WM9081_ANALOGUE_SPEAKER_PGA, 0, 63, 0,
374 out_tlv),
375 SOC_ENUM("DAC Deemphasis", dac_deemph),
376 SOC_ENUM_EXT("Speaker Mode", speaker_mode, speaker_mode_get, speaker_mode_put),
377 };
378
379 static const struct snd_kcontrol_new wm9081_eq_controls[] = {
380 SOC_SINGLE_TLV("EQ1 Volume", WM9081_EQ_1, 11, 24, 0, eq_tlv),
381 SOC_SINGLE_TLV("EQ2 Volume", WM9081_EQ_1, 6, 24, 0, eq_tlv),
382 SOC_SINGLE_TLV("EQ3 Volume", WM9081_EQ_1, 1, 24, 0, eq_tlv),
383 SOC_SINGLE_TLV("EQ4 Volume", WM9081_EQ_2, 11, 24, 0, eq_tlv),
384 SOC_SINGLE_TLV("EQ5 Volume", WM9081_EQ_2, 6, 24, 0, eq_tlv),
385 };
386
387 static const struct snd_kcontrol_new mixer[] = {
388 SOC_DAPM_SINGLE("IN1 Switch", WM9081_ANALOGUE_MIXER, 0, 1, 0),
389 SOC_DAPM_SINGLE("IN2 Switch", WM9081_ANALOGUE_MIXER, 2, 1, 0),
390 SOC_DAPM_SINGLE("Playback Switch", WM9081_ANALOGUE_MIXER, 4, 1, 0),
391 };
392
393 static int speaker_event(struct snd_soc_dapm_widget *w,
394 struct snd_kcontrol *kcontrol, int event)
395 {
396 struct snd_soc_codec *codec = w->codec;
397 unsigned int reg = snd_soc_read(codec, WM9081_POWER_MANAGEMENT);
398
399 switch (event) {
400 case SND_SOC_DAPM_POST_PMU:
401 reg |= WM9081_SPK_ENA;
402 break;
403
404 case SND_SOC_DAPM_PRE_PMD:
405 reg &= ~WM9081_SPK_ENA;
406 break;
407 }
408
409 snd_soc_write(codec, WM9081_POWER_MANAGEMENT, reg);
410
411 return 0;
412 }
413
414 struct _fll_div {
415 u16 fll_fratio;
416 u16 fll_outdiv;
417 u16 fll_clk_ref_div;
418 u16 n;
419 u16 k;
420 };
421
422 /* The size in bits of the FLL divide multiplied by 10
423 * to allow rounding later */
424 #define FIXED_FLL_SIZE ((1 << 16) * 10)
425
426 static struct {
427 unsigned int min;
428 unsigned int max;
429 u16 fll_fratio;
430 int ratio;
431 } fll_fratios[] = {
432 { 0, 64000, 4, 16 },
433 { 64000, 128000, 3, 8 },
434 { 128000, 256000, 2, 4 },
435 { 256000, 1000000, 1, 2 },
436 { 1000000, 13500000, 0, 1 },
437 };
438
439 static int fll_factors(struct _fll_div *fll_div, unsigned int Fref,
440 unsigned int Fout)
441 {
442 u64 Kpart;
443 unsigned int K, Ndiv, Nmod, target;
444 unsigned int div;
445 int i;
446
447 /* Fref must be <=13.5MHz */
448 div = 1;
449 while ((Fref / div) > 13500000) {
450 div *= 2;
451
452 if (div > 8) {
453 pr_err("Can't scale %dMHz input down to <=13.5MHz\n",
454 Fref);
455 return -EINVAL;
456 }
457 }
458 fll_div->fll_clk_ref_div = div / 2;
459
460 pr_debug("Fref=%u Fout=%u\n", Fref, Fout);
461
462 /* Apply the division for our remaining calculations */
463 Fref /= div;
464
465 /* Fvco should be 90-100MHz; don't check the upper bound */
466 div = 0;
467 target = Fout * 2;
468 while (target < 90000000) {
469 div++;
470 target *= 2;
471 if (div > 7) {
472 pr_err("Unable to find FLL_OUTDIV for Fout=%uHz\n",
473 Fout);
474 return -EINVAL;
475 }
476 }
477 fll_div->fll_outdiv = div;
478
479 pr_debug("Fvco=%dHz\n", target);
480
481 /* Find an appropraite FLL_FRATIO and factor it out of the target */
482 for (i = 0; i < ARRAY_SIZE(fll_fratios); i++) {
483 if (fll_fratios[i].min <= Fref && Fref <= fll_fratios[i].max) {
484 fll_div->fll_fratio = fll_fratios[i].fll_fratio;
485 target /= fll_fratios[i].ratio;
486 break;
487 }
488 }
489 if (i == ARRAY_SIZE(fll_fratios)) {
490 pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref);
491 return -EINVAL;
492 }
493
494 /* Now, calculate N.K */
495 Ndiv = target / Fref;
496
497 fll_div->n = Ndiv;
498 Nmod = target % Fref;
499 pr_debug("Nmod=%d\n", Nmod);
500
501 /* Calculate fractional part - scale up so we can round. */
502 Kpart = FIXED_FLL_SIZE * (long long)Nmod;
503
504 do_div(Kpart, Fref);
505
506 K = Kpart & 0xFFFFFFFF;
507
508 if ((K % 10) >= 5)
509 K += 5;
510
511 /* Move down to proper range now rounding is done */
512 fll_div->k = K / 10;
513
514 pr_debug("N=%x K=%x FLL_FRATIO=%x FLL_OUTDIV=%x FLL_CLK_REF_DIV=%x\n",
515 fll_div->n, fll_div->k,
516 fll_div->fll_fratio, fll_div->fll_outdiv,
517 fll_div->fll_clk_ref_div);
518
519 return 0;
520 }
521
522 static int wm9081_set_fll(struct snd_soc_codec *codec, int fll_id,
523 unsigned int Fref, unsigned int Fout)
524 {
525 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
526 u16 reg1, reg4, reg5;
527 struct _fll_div fll_div;
528 int ret;
529 int clk_sys_reg;
530
531 /* Any change? */
532 if (Fref == wm9081->fll_fref && Fout == wm9081->fll_fout)
533 return 0;
534
535 /* Disable the FLL */
536 if (Fout == 0) {
537 dev_dbg(codec->dev, "FLL disabled\n");
538 wm9081->fll_fref = 0;
539 wm9081->fll_fout = 0;
540
541 return 0;
542 }
543
544 ret = fll_factors(&fll_div, Fref, Fout);
545 if (ret != 0)
546 return ret;
547
548 reg5 = snd_soc_read(codec, WM9081_FLL_CONTROL_5);
549 reg5 &= ~WM9081_FLL_CLK_SRC_MASK;
550
551 switch (fll_id) {
552 case WM9081_SYSCLK_FLL_MCLK:
553 reg5 |= 0x1;
554 break;
555
556 default:
557 dev_err(codec->dev, "Unknown FLL ID %d\n", fll_id);
558 return -EINVAL;
559 }
560
561 /* Disable CLK_SYS while we reconfigure */
562 clk_sys_reg = snd_soc_read(codec, WM9081_CLOCK_CONTROL_3);
563 if (clk_sys_reg & WM9081_CLK_SYS_ENA)
564 snd_soc_write(codec, WM9081_CLOCK_CONTROL_3,
565 clk_sys_reg & ~WM9081_CLK_SYS_ENA);
566
567 /* Any FLL configuration change requires that the FLL be
568 * disabled first. */
569 reg1 = snd_soc_read(codec, WM9081_FLL_CONTROL_1);
570 reg1 &= ~WM9081_FLL_ENA;
571 snd_soc_write(codec, WM9081_FLL_CONTROL_1, reg1);
572
573 /* Apply the configuration */
574 if (fll_div.k)
575 reg1 |= WM9081_FLL_FRAC_MASK;
576 else
577 reg1 &= ~WM9081_FLL_FRAC_MASK;
578 snd_soc_write(codec, WM9081_FLL_CONTROL_1, reg1);
579
580 snd_soc_write(codec, WM9081_FLL_CONTROL_2,
581 (fll_div.fll_outdiv << WM9081_FLL_OUTDIV_SHIFT) |
582 (fll_div.fll_fratio << WM9081_FLL_FRATIO_SHIFT));
583 snd_soc_write(codec, WM9081_FLL_CONTROL_3, fll_div.k);
584
585 reg4 = snd_soc_read(codec, WM9081_FLL_CONTROL_4);
586 reg4 &= ~WM9081_FLL_N_MASK;
587 reg4 |= fll_div.n << WM9081_FLL_N_SHIFT;
588 snd_soc_write(codec, WM9081_FLL_CONTROL_4, reg4);
589
590 reg5 &= ~WM9081_FLL_CLK_REF_DIV_MASK;
591 reg5 |= fll_div.fll_clk_ref_div << WM9081_FLL_CLK_REF_DIV_SHIFT;
592 snd_soc_write(codec, WM9081_FLL_CONTROL_5, reg5);
593
594 /* Enable the FLL */
595 snd_soc_write(codec, WM9081_FLL_CONTROL_1, reg1 | WM9081_FLL_ENA);
596
597 /* Then bring CLK_SYS up again if it was disabled */
598 if (clk_sys_reg & WM9081_CLK_SYS_ENA)
599 snd_soc_write(codec, WM9081_CLOCK_CONTROL_3, clk_sys_reg);
600
601 dev_dbg(codec->dev, "FLL enabled at %dHz->%dHz\n", Fref, Fout);
602
603 wm9081->fll_fref = Fref;
604 wm9081->fll_fout = Fout;
605
606 return 0;
607 }
608
609 static int configure_clock(struct snd_soc_codec *codec)
610 {
611 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
612 int new_sysclk, i, target;
613 unsigned int reg;
614 int ret = 0;
615 int mclkdiv = 0;
616 int fll = 0;
617
618 switch (wm9081->sysclk_source) {
619 case WM9081_SYSCLK_MCLK:
620 if (wm9081->mclk_rate > 12225000) {
621 mclkdiv = 1;
622 wm9081->sysclk_rate = wm9081->mclk_rate / 2;
623 } else {
624 wm9081->sysclk_rate = wm9081->mclk_rate;
625 }
626 wm9081_set_fll(codec, WM9081_SYSCLK_FLL_MCLK, 0, 0);
627 break;
628
629 case WM9081_SYSCLK_FLL_MCLK:
630 /* If we have a sample rate calculate a CLK_SYS that
631 * gives us a suitable DAC configuration, plus BCLK.
632 * Ideally we would check to see if we can clock
633 * directly from MCLK and only use the FLL if this is
634 * not the case, though care must be taken with free
635 * running mode.
636 */
637 if (wm9081->master && wm9081->bclk) {
638 /* Make sure we can generate CLK_SYS and BCLK
639 * and that we've got 3MHz for optimal
640 * performance. */
641 for (i = 0; i < ARRAY_SIZE(clk_sys_rates); i++) {
642 target = wm9081->fs * clk_sys_rates[i].ratio;
643 new_sysclk = target;
644 if (target >= wm9081->bclk &&
645 target > 3000000)
646 break;
647 }
648
649 if (i == ARRAY_SIZE(clk_sys_rates))
650 return -EINVAL;
651
652 } else if (wm9081->fs) {
653 for (i = 0; i < ARRAY_SIZE(clk_sys_rates); i++) {
654 new_sysclk = clk_sys_rates[i].ratio
655 * wm9081->fs;
656 if (new_sysclk > 3000000)
657 break;
658 }
659
660 if (i == ARRAY_SIZE(clk_sys_rates))
661 return -EINVAL;
662
663 } else {
664 new_sysclk = 12288000;
665 }
666
667 ret = wm9081_set_fll(codec, WM9081_SYSCLK_FLL_MCLK,
668 wm9081->mclk_rate, new_sysclk);
669 if (ret == 0) {
670 wm9081->sysclk_rate = new_sysclk;
671
672 /* Switch SYSCLK over to FLL */
673 fll = 1;
674 } else {
675 wm9081->sysclk_rate = wm9081->mclk_rate;
676 }
677 break;
678
679 default:
680 return -EINVAL;
681 }
682
683 reg = snd_soc_read(codec, WM9081_CLOCK_CONTROL_1);
684 if (mclkdiv)
685 reg |= WM9081_MCLKDIV2;
686 else
687 reg &= ~WM9081_MCLKDIV2;
688 snd_soc_write(codec, WM9081_CLOCK_CONTROL_1, reg);
689
690 reg = snd_soc_read(codec, WM9081_CLOCK_CONTROL_3);
691 if (fll)
692 reg |= WM9081_CLK_SRC_SEL;
693 else
694 reg &= ~WM9081_CLK_SRC_SEL;
695 snd_soc_write(codec, WM9081_CLOCK_CONTROL_3, reg);
696
697 dev_dbg(codec->dev, "CLK_SYS is %dHz\n", wm9081->sysclk_rate);
698
699 return ret;
700 }
701
702 static int clk_sys_event(struct snd_soc_dapm_widget *w,
703 struct snd_kcontrol *kcontrol, int event)
704 {
705 struct snd_soc_codec *codec = w->codec;
706 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
707
708 /* This should be done on init() for bypass paths */
709 switch (wm9081->sysclk_source) {
710 case WM9081_SYSCLK_MCLK:
711 dev_dbg(codec->dev, "Using %dHz MCLK\n", wm9081->mclk_rate);
712 break;
713 case WM9081_SYSCLK_FLL_MCLK:
714 dev_dbg(codec->dev, "Using %dHz MCLK with FLL\n",
715 wm9081->mclk_rate);
716 break;
717 default:
718 dev_err(codec->dev, "System clock not configured\n");
719 return -EINVAL;
720 }
721
722 switch (event) {
723 case SND_SOC_DAPM_PRE_PMU:
724 configure_clock(codec);
725 break;
726
727 case SND_SOC_DAPM_POST_PMD:
728 /* Disable the FLL if it's running */
729 wm9081_set_fll(codec, 0, 0, 0);
730 break;
731 }
732
733 return 0;
734 }
735
736 static const struct snd_soc_dapm_widget wm9081_dapm_widgets[] = {
737 SND_SOC_DAPM_INPUT("IN1"),
738 SND_SOC_DAPM_INPUT("IN2"),
739
740 SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM9081_POWER_MANAGEMENT, 0, 0),
741
742 SND_SOC_DAPM_MIXER_NAMED_CTL("Mixer", SND_SOC_NOPM, 0, 0,
743 mixer, ARRAY_SIZE(mixer)),
744
745 SND_SOC_DAPM_PGA("LINEOUT PGA", WM9081_POWER_MANAGEMENT, 4, 0, NULL, 0),
746
747 SND_SOC_DAPM_PGA_E("Speaker PGA", WM9081_POWER_MANAGEMENT, 2, 0, NULL, 0,
748 speaker_event,
749 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
750
751 SND_SOC_DAPM_OUTPUT("LINEOUT"),
752 SND_SOC_DAPM_OUTPUT("SPKN"),
753 SND_SOC_DAPM_OUTPUT("SPKP"),
754
755 SND_SOC_DAPM_SUPPLY("CLK_SYS", WM9081_CLOCK_CONTROL_3, 0, 0, clk_sys_event,
756 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
757 SND_SOC_DAPM_SUPPLY("CLK_DSP", WM9081_CLOCK_CONTROL_3, 1, 0, NULL, 0),
758 SND_SOC_DAPM_SUPPLY("TOCLK", WM9081_CLOCK_CONTROL_3, 2, 0, NULL, 0),
759 };
760
761
762 static const struct snd_soc_dapm_route audio_paths[] = {
763 { "DAC", NULL, "CLK_SYS" },
764 { "DAC", NULL, "CLK_DSP" },
765
766 { "Mixer", "IN1 Switch", "IN1" },
767 { "Mixer", "IN2 Switch", "IN2" },
768 { "Mixer", "Playback Switch", "DAC" },
769
770 { "LINEOUT PGA", NULL, "Mixer" },
771 { "LINEOUT PGA", NULL, "TOCLK" },
772 { "LINEOUT PGA", NULL, "CLK_SYS" },
773
774 { "LINEOUT", NULL, "LINEOUT PGA" },
775
776 { "Speaker PGA", NULL, "Mixer" },
777 { "Speaker PGA", NULL, "TOCLK" },
778 { "Speaker PGA", NULL, "CLK_SYS" },
779
780 { "SPKN", NULL, "Speaker PGA" },
781 { "SPKP", NULL, "Speaker PGA" },
782 };
783
784 static int wm9081_set_bias_level(struct snd_soc_codec *codec,
785 enum snd_soc_bias_level level)
786 {
787 u16 reg;
788
789 switch (level) {
790 case SND_SOC_BIAS_ON:
791 break;
792
793 case SND_SOC_BIAS_PREPARE:
794 /* VMID=2*40k */
795 reg = snd_soc_read(codec, WM9081_VMID_CONTROL);
796 reg &= ~WM9081_VMID_SEL_MASK;
797 reg |= 0x2;
798 snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
799
800 /* Normal bias current */
801 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
802 reg &= ~WM9081_STBY_BIAS_ENA;
803 snd_soc_write(codec, WM9081_BIAS_CONTROL_1, reg);
804 break;
805
806 case SND_SOC_BIAS_STANDBY:
807 /* Initial cold start */
808 if (codec->bias_level == SND_SOC_BIAS_OFF) {
809 /* Disable LINEOUT discharge */
810 reg = snd_soc_read(codec, WM9081_ANTI_POP_CONTROL);
811 reg &= ~WM9081_LINEOUT_DISCH;
812 snd_soc_write(codec, WM9081_ANTI_POP_CONTROL, reg);
813
814 /* Select startup bias source */
815 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
816 reg |= WM9081_BIAS_SRC | WM9081_BIAS_ENA;
817 snd_soc_write(codec, WM9081_BIAS_CONTROL_1, reg);
818
819 /* VMID 2*4k; Soft VMID ramp enable */
820 reg = snd_soc_read(codec, WM9081_VMID_CONTROL);
821 reg |= WM9081_VMID_RAMP | 0x6;
822 snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
823
824 mdelay(100);
825
826 /* Normal bias enable & soft start off */
827 reg |= WM9081_BIAS_ENA;
828 reg &= ~WM9081_VMID_RAMP;
829 snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
830
831 /* Standard bias source */
832 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
833 reg &= ~WM9081_BIAS_SRC;
834 snd_soc_write(codec, WM9081_BIAS_CONTROL_1, reg);
835 }
836
837 /* VMID 2*240k */
838 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
839 reg &= ~WM9081_VMID_SEL_MASK;
840 reg |= 0x40;
841 snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
842
843 /* Standby bias current on */
844 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
845 reg |= WM9081_STBY_BIAS_ENA;
846 snd_soc_write(codec, WM9081_BIAS_CONTROL_1, reg);
847 break;
848
849 case SND_SOC_BIAS_OFF:
850 /* Startup bias source */
851 reg = snd_soc_read(codec, WM9081_BIAS_CONTROL_1);
852 reg |= WM9081_BIAS_SRC;
853 snd_soc_write(codec, WM9081_BIAS_CONTROL_1, reg);
854
855 /* Disable VMID and biases with soft ramping */
856 reg = snd_soc_read(codec, WM9081_VMID_CONTROL);
857 reg &= ~(WM9081_VMID_SEL_MASK | WM9081_BIAS_ENA);
858 reg |= WM9081_VMID_RAMP;
859 snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
860
861 /* Actively discharge LINEOUT */
862 reg = snd_soc_read(codec, WM9081_ANTI_POP_CONTROL);
863 reg |= WM9081_LINEOUT_DISCH;
864 snd_soc_write(codec, WM9081_ANTI_POP_CONTROL, reg);
865 break;
866 }
867
868 codec->bias_level = level;
869
870 return 0;
871 }
872
873 static int wm9081_set_dai_fmt(struct snd_soc_dai *dai,
874 unsigned int fmt)
875 {
876 struct snd_soc_codec *codec = dai->codec;
877 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
878 unsigned int aif2 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_2);
879
880 aif2 &= ~(WM9081_AIF_BCLK_INV | WM9081_AIF_LRCLK_INV |
881 WM9081_BCLK_DIR | WM9081_LRCLK_DIR | WM9081_AIF_FMT_MASK);
882
883 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
884 case SND_SOC_DAIFMT_CBS_CFS:
885 wm9081->master = 0;
886 break;
887 case SND_SOC_DAIFMT_CBS_CFM:
888 aif2 |= WM9081_LRCLK_DIR;
889 wm9081->master = 1;
890 break;
891 case SND_SOC_DAIFMT_CBM_CFS:
892 aif2 |= WM9081_BCLK_DIR;
893 wm9081->master = 1;
894 break;
895 case SND_SOC_DAIFMT_CBM_CFM:
896 aif2 |= WM9081_LRCLK_DIR | WM9081_BCLK_DIR;
897 wm9081->master = 1;
898 break;
899 default:
900 return -EINVAL;
901 }
902
903 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
904 case SND_SOC_DAIFMT_DSP_B:
905 aif2 |= WM9081_AIF_LRCLK_INV;
906 case SND_SOC_DAIFMT_DSP_A:
907 aif2 |= 0x3;
908 break;
909 case SND_SOC_DAIFMT_I2S:
910 aif2 |= 0x2;
911 break;
912 case SND_SOC_DAIFMT_RIGHT_J:
913 break;
914 case SND_SOC_DAIFMT_LEFT_J:
915 aif2 |= 0x1;
916 break;
917 default:
918 return -EINVAL;
919 }
920
921 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
922 case SND_SOC_DAIFMT_DSP_A:
923 case SND_SOC_DAIFMT_DSP_B:
924 /* frame inversion not valid for DSP modes */
925 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
926 case SND_SOC_DAIFMT_NB_NF:
927 break;
928 case SND_SOC_DAIFMT_IB_NF:
929 aif2 |= WM9081_AIF_BCLK_INV;
930 break;
931 default:
932 return -EINVAL;
933 }
934 break;
935
936 case SND_SOC_DAIFMT_I2S:
937 case SND_SOC_DAIFMT_RIGHT_J:
938 case SND_SOC_DAIFMT_LEFT_J:
939 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
940 case SND_SOC_DAIFMT_NB_NF:
941 break;
942 case SND_SOC_DAIFMT_IB_IF:
943 aif2 |= WM9081_AIF_BCLK_INV | WM9081_AIF_LRCLK_INV;
944 break;
945 case SND_SOC_DAIFMT_IB_NF:
946 aif2 |= WM9081_AIF_BCLK_INV;
947 break;
948 case SND_SOC_DAIFMT_NB_IF:
949 aif2 |= WM9081_AIF_LRCLK_INV;
950 break;
951 default:
952 return -EINVAL;
953 }
954 break;
955 default:
956 return -EINVAL;
957 }
958
959 snd_soc_write(codec, WM9081_AUDIO_INTERFACE_2, aif2);
960
961 return 0;
962 }
963
964 static int wm9081_hw_params(struct snd_pcm_substream *substream,
965 struct snd_pcm_hw_params *params,
966 struct snd_soc_dai *dai)
967 {
968 struct snd_soc_codec *codec = dai->codec;
969 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
970 int ret, i, best, best_val, cur_val;
971 unsigned int clk_ctrl2, aif1, aif2, aif3, aif4;
972
973 clk_ctrl2 = snd_soc_read(codec, WM9081_CLOCK_CONTROL_2);
974 clk_ctrl2 &= ~(WM9081_CLK_SYS_RATE_MASK | WM9081_SAMPLE_RATE_MASK);
975
976 aif1 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_1);
977
978 aif2 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_2);
979 aif2 &= ~WM9081_AIF_WL_MASK;
980
981 aif3 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_3);
982 aif3 &= ~WM9081_BCLK_DIV_MASK;
983
984 aif4 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_4);
985 aif4 &= ~WM9081_LRCLK_RATE_MASK;
986
987 wm9081->fs = params_rate(params);
988
989 if (wm9081->tdm_width) {
990 /* If TDM is set up then that fixes our BCLK. */
991 int slots = ((aif1 & WM9081_AIFDAC_TDM_MODE_MASK) >>
992 WM9081_AIFDAC_TDM_MODE_SHIFT) + 1;
993
994 wm9081->bclk = wm9081->fs * wm9081->tdm_width * slots;
995 } else {
996 /* Otherwise work out a BCLK from the sample size */
997 wm9081->bclk = 2 * wm9081->fs;
998
999 switch (params_format(params)) {
1000 case SNDRV_PCM_FORMAT_S16_LE:
1001 wm9081->bclk *= 16;
1002 break;
1003 case SNDRV_PCM_FORMAT_S20_3LE:
1004 wm9081->bclk *= 20;
1005 aif2 |= 0x4;
1006 break;
1007 case SNDRV_PCM_FORMAT_S24_LE:
1008 wm9081->bclk *= 24;
1009 aif2 |= 0x8;
1010 break;
1011 case SNDRV_PCM_FORMAT_S32_LE:
1012 wm9081->bclk *= 32;
1013 aif2 |= 0xc;
1014 break;
1015 default:
1016 return -EINVAL;
1017 }
1018 }
1019
1020 dev_dbg(codec->dev, "Target BCLK is %dHz\n", wm9081->bclk);
1021
1022 ret = configure_clock(codec);
1023 if (ret != 0)
1024 return ret;
1025
1026 /* Select nearest CLK_SYS_RATE */
1027 best = 0;
1028 best_val = abs((wm9081->sysclk_rate / clk_sys_rates[0].ratio)
1029 - wm9081->fs);
1030 for (i = 1; i < ARRAY_SIZE(clk_sys_rates); i++) {
1031 cur_val = abs((wm9081->sysclk_rate /
1032 clk_sys_rates[i].ratio) - wm9081->fs);
1033 if (cur_val < best_val) {
1034 best = i;
1035 best_val = cur_val;
1036 }
1037 }
1038 dev_dbg(codec->dev, "Selected CLK_SYS_RATIO of %d\n",
1039 clk_sys_rates[best].ratio);
1040 clk_ctrl2 |= (clk_sys_rates[best].clk_sys_rate
1041 << WM9081_CLK_SYS_RATE_SHIFT);
1042
1043 /* SAMPLE_RATE */
1044 best = 0;
1045 best_val = abs(wm9081->fs - sample_rates[0].rate);
1046 for (i = 1; i < ARRAY_SIZE(sample_rates); i++) {
1047 /* Closest match */
1048 cur_val = abs(wm9081->fs - sample_rates[i].rate);
1049 if (cur_val < best_val) {
1050 best = i;
1051 best_val = cur_val;
1052 }
1053 }
1054 dev_dbg(codec->dev, "Selected SAMPLE_RATE of %dHz\n",
1055 sample_rates[best].rate);
1056 clk_ctrl2 |= (sample_rates[best].sample_rate
1057 << WM9081_SAMPLE_RATE_SHIFT);
1058
1059 /* BCLK_DIV */
1060 best = 0;
1061 best_val = INT_MAX;
1062 for (i = 0; i < ARRAY_SIZE(bclk_divs); i++) {
1063 cur_val = ((wm9081->sysclk_rate * 10) / bclk_divs[i].div)
1064 - wm9081->bclk;
1065 if (cur_val < 0) /* Table is sorted */
1066 break;
1067 if (cur_val < best_val) {
1068 best = i;
1069 best_val = cur_val;
1070 }
1071 }
1072 wm9081->bclk = (wm9081->sysclk_rate * 10) / bclk_divs[best].div;
1073 dev_dbg(codec->dev, "Selected BCLK_DIV of %d for %dHz BCLK\n",
1074 bclk_divs[best].div, wm9081->bclk);
1075 aif3 |= bclk_divs[best].bclk_div;
1076
1077 /* LRCLK is a simple fraction of BCLK */
1078 dev_dbg(codec->dev, "LRCLK_RATE is %d\n", wm9081->bclk / wm9081->fs);
1079 aif4 |= wm9081->bclk / wm9081->fs;
1080
1081 /* Apply a ReTune Mobile configuration if it's in use */
1082 if (wm9081->retune) {
1083 struct wm9081_retune_mobile_config *retune = wm9081->retune;
1084 struct wm9081_retune_mobile_setting *s;
1085 int eq1;
1086
1087 best = 0;
1088 best_val = abs(retune->configs[0].rate - wm9081->fs);
1089 for (i = 0; i < retune->num_configs; i++) {
1090 cur_val = abs(retune->configs[i].rate - wm9081->fs);
1091 if (cur_val < best_val) {
1092 best_val = cur_val;
1093 best = i;
1094 }
1095 }
1096 s = &retune->configs[best];
1097
1098 dev_dbg(codec->dev, "ReTune Mobile %s tuned for %dHz\n",
1099 s->name, s->rate);
1100
1101 /* If the EQ is enabled then disable it while we write out */
1102 eq1 = snd_soc_read(codec, WM9081_EQ_1) & WM9081_EQ_ENA;
1103 if (eq1 & WM9081_EQ_ENA)
1104 snd_soc_write(codec, WM9081_EQ_1, 0);
1105
1106 /* Write out the other values */
1107 for (i = 1; i < ARRAY_SIZE(s->config); i++)
1108 snd_soc_write(codec, WM9081_EQ_1 + i, s->config[i]);
1109
1110 eq1 |= (s->config[0] & ~WM9081_EQ_ENA);
1111 snd_soc_write(codec, WM9081_EQ_1, eq1);
1112 }
1113
1114 snd_soc_write(codec, WM9081_CLOCK_CONTROL_2, clk_ctrl2);
1115 snd_soc_write(codec, WM9081_AUDIO_INTERFACE_2, aif2);
1116 snd_soc_write(codec, WM9081_AUDIO_INTERFACE_3, aif3);
1117 snd_soc_write(codec, WM9081_AUDIO_INTERFACE_4, aif4);
1118
1119 return 0;
1120 }
1121
1122 static int wm9081_digital_mute(struct snd_soc_dai *codec_dai, int mute)
1123 {
1124 struct snd_soc_codec *codec = codec_dai->codec;
1125 unsigned int reg;
1126
1127 reg = snd_soc_read(codec, WM9081_DAC_DIGITAL_2);
1128
1129 if (mute)
1130 reg |= WM9081_DAC_MUTE;
1131 else
1132 reg &= ~WM9081_DAC_MUTE;
1133
1134 snd_soc_write(codec, WM9081_DAC_DIGITAL_2, reg);
1135
1136 return 0;
1137 }
1138
1139 static int wm9081_set_sysclk(struct snd_soc_dai *codec_dai,
1140 int clk_id, unsigned int freq, int dir)
1141 {
1142 struct snd_soc_codec *codec = codec_dai->codec;
1143 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
1144
1145 switch (clk_id) {
1146 case WM9081_SYSCLK_MCLK:
1147 case WM9081_SYSCLK_FLL_MCLK:
1148 wm9081->sysclk_source = clk_id;
1149 wm9081->mclk_rate = freq;
1150 break;
1151
1152 default:
1153 return -EINVAL;
1154 }
1155
1156 return 0;
1157 }
1158
1159 static int wm9081_set_tdm_slot(struct snd_soc_dai *dai,
1160 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
1161 {
1162 struct snd_soc_codec *codec = dai->codec;
1163 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
1164 unsigned int aif1 = snd_soc_read(codec, WM9081_AUDIO_INTERFACE_1);
1165
1166 aif1 &= ~(WM9081_AIFDAC_TDM_SLOT_MASK | WM9081_AIFDAC_TDM_MODE_MASK);
1167
1168 if (slots < 0 || slots > 4)
1169 return -EINVAL;
1170
1171 wm9081->tdm_width = slot_width;
1172
1173 if (slots == 0)
1174 slots = 1;
1175
1176 aif1 |= (slots - 1) << WM9081_AIFDAC_TDM_MODE_SHIFT;
1177
1178 switch (rx_mask) {
1179 case 1:
1180 break;
1181 case 2:
1182 aif1 |= 0x10;
1183 break;
1184 case 4:
1185 aif1 |= 0x20;
1186 break;
1187 case 8:
1188 aif1 |= 0x30;
1189 break;
1190 default:
1191 return -EINVAL;
1192 }
1193
1194 snd_soc_write(codec, WM9081_AUDIO_INTERFACE_1, aif1);
1195
1196 return 0;
1197 }
1198
1199 #define WM9081_RATES SNDRV_PCM_RATE_8000_96000
1200
1201 #define WM9081_FORMATS \
1202 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1203 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
1204
1205 static struct snd_soc_dai_ops wm9081_dai_ops = {
1206 .hw_params = wm9081_hw_params,
1207 .set_sysclk = wm9081_set_sysclk,
1208 .set_fmt = wm9081_set_dai_fmt,
1209 .digital_mute = wm9081_digital_mute,
1210 .set_tdm_slot = wm9081_set_tdm_slot,
1211 };
1212
1213 /* We report two channels because the CODEC processes a stereo signal, even
1214 * though it is only capable of handling a mono output.
1215 */
1216 static struct snd_soc_dai_driver wm9081_dai = {
1217 .name = "wm9081-hifi",
1218 .playback = {
1219 .stream_name = "HiFi Playback",
1220 .channels_min = 1,
1221 .channels_max = 2,
1222 .rates = WM9081_RATES,
1223 .formats = WM9081_FORMATS,
1224 },
1225 .ops = &wm9081_dai_ops,
1226 };
1227
1228 static int wm9081_probe(struct snd_soc_codec *codec)
1229 {
1230 struct wm9081_priv *wm9081 = snd_soc_codec_get_drvdata(codec);
1231 int ret;
1232 u16 reg;
1233
1234 codec->control_data = wm9081->control_data;
1235 ret = snd_soc_codec_set_cache_io(codec, 8, 16, wm9081->control_type);
1236 if (ret != 0) {
1237 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
1238 return ret;
1239 }
1240
1241 reg = snd_soc_read(codec, WM9081_SOFTWARE_RESET);
1242 if (reg != 0x9081) {
1243 dev_err(codec->dev, "Device is not a WM9081: ID=0x%x\n", reg);
1244 ret = -EINVAL;
1245 return ret;
1246 }
1247
1248 ret = wm9081_reset(codec);
1249 if (ret < 0) {
1250 dev_err(codec->dev, "Failed to issue reset\n");
1251 return ret;
1252 }
1253
1254 wm9081_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1255
1256 /* Enable zero cross by default */
1257 reg = snd_soc_read(codec, WM9081_ANALOGUE_LINEOUT);
1258 snd_soc_write(codec, WM9081_ANALOGUE_LINEOUT, reg | WM9081_LINEOUTZC);
1259 reg = snd_soc_read(codec, WM9081_ANALOGUE_SPEAKER_PGA);
1260 snd_soc_write(codec, WM9081_ANALOGUE_SPEAKER_PGA,
1261 reg | WM9081_SPKPGAZC);
1262
1263 snd_soc_add_controls(codec, wm9081_snd_controls,
1264 ARRAY_SIZE(wm9081_snd_controls));
1265 if (!wm9081->retune) {
1266 dev_dbg(codec->dev,
1267 "No ReTune Mobile data, using normal EQ\n");
1268 snd_soc_add_controls(codec, wm9081_eq_controls,
1269 ARRAY_SIZE(wm9081_eq_controls));
1270 }
1271
1272 snd_soc_dapm_new_controls(codec, wm9081_dapm_widgets,
1273 ARRAY_SIZE(wm9081_dapm_widgets));
1274 snd_soc_dapm_add_routes(codec, audio_paths, ARRAY_SIZE(audio_paths));
1275
1276 return ret;
1277 }
1278
1279 static int wm9081_remove(struct snd_soc_codec *codec)
1280 {
1281 wm9081_set_bias_level(codec, SND_SOC_BIAS_OFF);
1282 return 0;
1283 }
1284
1285 #ifdef CONFIG_PM
1286 static int wm9081_suspend(struct snd_soc_codec *codec, pm_message_t state)
1287 {
1288 wm9081_set_bias_level(codec, SND_SOC_BIAS_OFF);
1289
1290 return 0;
1291 }
1292
1293 static int wm9081_resume(struct snd_soc_codec *codec)
1294 {
1295 u16 *reg_cache = codec->reg_cache;
1296 int i;
1297
1298 for (i = 0; i < codec->driver->reg_cache_size; i++) {
1299 if (i == WM9081_SOFTWARE_RESET)
1300 continue;
1301
1302 snd_soc_write(codec, i, reg_cache[i]);
1303 }
1304
1305 wm9081_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1306
1307 return 0;
1308 }
1309 #else
1310 #define wm9081_suspend NULL
1311 #define wm9081_resume NULL
1312 #endif
1313
1314 static struct snd_soc_codec_driver soc_codec_dev_wm9081 = {
1315 .probe = wm9081_probe,
1316 .remove = wm9081_remove,
1317 .suspend = wm9081_suspend,
1318 .resume = wm9081_resume,
1319 .set_bias_level = wm9081_set_bias_level,
1320 .reg_cache_size = ARRAY_SIZE(wm9081_reg_defaults),
1321 .reg_word_size = sizeof(u16),
1322 .reg_cache_default = wm9081_reg_defaults,
1323 .volatile_register = wm9081_volatile_register,
1324 };
1325
1326 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1327 static __devinit int wm9081_i2c_probe(struct i2c_client *i2c,
1328 const struct i2c_device_id *id)
1329 {
1330 struct wm9081_priv *wm9081;
1331 int ret;
1332
1333 wm9081 = kzalloc(sizeof(struct wm9081_priv), GFP_KERNEL);
1334 if (wm9081 == NULL)
1335 return -ENOMEM;
1336
1337 i2c_set_clientdata(i2c, wm9081);
1338 wm9081->control_type = SND_SOC_I2C;
1339 wm9081->control_data = i2c;
1340
1341 ret = snd_soc_register_codec(&i2c->dev,
1342 &soc_codec_dev_wm9081, &wm9081_dai, 1);
1343 if (ret < 0)
1344 kfree(wm9081);
1345 return ret;
1346 }
1347
1348 static __devexit int wm9081_i2c_remove(struct i2c_client *client)
1349 {
1350 snd_soc_unregister_codec(&client->dev);
1351 kfree(i2c_get_clientdata(client));
1352 return 0;
1353 }
1354
1355 static const struct i2c_device_id wm9081_i2c_id[] = {
1356 { "wm9081", 0 },
1357 { }
1358 };
1359 MODULE_DEVICE_TABLE(i2c, wm9081_i2c_id);
1360
1361 static struct i2c_driver wm9081_i2c_driver = {
1362 .driver = {
1363 .name = "wm9081-codec",
1364 .owner = THIS_MODULE,
1365 },
1366 .probe = wm9081_i2c_probe,
1367 .remove = __devexit_p(wm9081_i2c_remove),
1368 .id_table = wm9081_i2c_id,
1369 };
1370 #endif
1371
1372 static int __init wm9081_modinit(void)
1373 {
1374 int ret = 0;
1375 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1376 ret = i2c_add_driver(&wm9081_i2c_driver);
1377 if (ret != 0) {
1378 printk(KERN_ERR "Failed to register WM9081 I2C driver: %d\n",
1379 ret);
1380 }
1381 #endif
1382 return ret;
1383 }
1384 module_init(wm9081_modinit);
1385
1386 static void __exit wm9081_exit(void)
1387 {
1388 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1389 i2c_del_driver(&wm9081_i2c_driver);
1390 #endif
1391 }
1392 module_exit(wm9081_exit);
1393
1394
1395 MODULE_DESCRIPTION("ASoC WM9081 driver");
1396 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
1397 MODULE_LICENSE("GPL");
This page took 0.057159 seconds and 6 git commands to generate.