2 * wm8955.c -- WM8955 ALSA SoC Audio driver
4 * Copyright 2009 Wolfson Microelectronics plc
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
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.
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
18 #include <linux/i2c.h>
19 #include <linux/regmap.h>
20 #include <linux/regulator/consumer.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/initval.h>
27 #include <sound/tlv.h>
28 #include <sound/wm8955.h>
32 #define WM8955_NUM_SUPPLIES 4
33 static const char *wm8955_supply_names
[WM8955_NUM_SUPPLIES
] = {
40 /* codec private data */
42 struct regmap
*regmap
;
44 unsigned int mclk_rate
;
49 struct regulator_bulk_data supplies
[WM8955_NUM_SUPPLIES
];
52 static const struct reg_default wm8955_reg_defaults
[] = {
53 { 2, 0x0079 }, /* R2 - LOUT1 volume */
54 { 3, 0x0079 }, /* R3 - ROUT1 volume */
55 { 5, 0x0008 }, /* R5 - DAC Control */
56 { 7, 0x000A }, /* R7 - Audio Interface */
57 { 8, 0x0000 }, /* R8 - Sample Rate */
58 { 10, 0x00FF }, /* R10 - Left DAC volume */
59 { 11, 0x00FF }, /* R11 - Right DAC volume */
60 { 12, 0x000F }, /* R12 - Bass control */
61 { 13, 0x000F }, /* R13 - Treble control */
62 { 23, 0x00C1 }, /* R23 - Additional control (1) */
63 { 24, 0x0000 }, /* R24 - Additional control (2) */
64 { 25, 0x0000 }, /* R25 - Power Management (1) */
65 { 26, 0x0000 }, /* R26 - Power Management (2) */
66 { 27, 0x0000 }, /* R27 - Additional Control (3) */
67 { 34, 0x0050 }, /* R34 - Left out Mix (1) */
68 { 35, 0x0050 }, /* R35 - Left out Mix (2) */
69 { 36, 0x0050 }, /* R36 - Right out Mix (1) */
70 { 37, 0x0050 }, /* R37 - Right Out Mix (2) */
71 { 38, 0x0050 }, /* R38 - Mono out Mix (1) */
72 { 39, 0x0050 }, /* R39 - Mono out Mix (2) */
73 { 40, 0x0079 }, /* R40 - LOUT2 volume */
74 { 41, 0x0079 }, /* R41 - ROUT2 volume */
75 { 42, 0x0079 }, /* R42 - MONOOUT volume */
76 { 43, 0x0000 }, /* R43 - Clocking / PLL */
77 { 44, 0x0103 }, /* R44 - PLL Control 1 */
78 { 45, 0x0024 }, /* R45 - PLL Control 2 */
79 { 46, 0x01BA }, /* R46 - PLL Control 3 */
80 { 59, 0x0000 }, /* R59 - PLL Control 4 */
83 static bool wm8955_writeable(struct device
*dev
, unsigned int reg
)
86 case WM8955_LOUT1_VOLUME
:
87 case WM8955_ROUT1_VOLUME
:
88 case WM8955_DAC_CONTROL
:
89 case WM8955_AUDIO_INTERFACE
:
90 case WM8955_SAMPLE_RATE
:
91 case WM8955_LEFT_DAC_VOLUME
:
92 case WM8955_RIGHT_DAC_VOLUME
:
93 case WM8955_BASS_CONTROL
:
94 case WM8955_TREBLE_CONTROL
:
96 case WM8955_ADDITIONAL_CONTROL_1
:
97 case WM8955_ADDITIONAL_CONTROL_2
:
98 case WM8955_POWER_MANAGEMENT_1
:
99 case WM8955_POWER_MANAGEMENT_2
:
100 case WM8955_ADDITIONAL_CONTROL_3
:
101 case WM8955_LEFT_OUT_MIX_1
:
102 case WM8955_LEFT_OUT_MIX_2
:
103 case WM8955_RIGHT_OUT_MIX_1
:
104 case WM8955_RIGHT_OUT_MIX_2
:
105 case WM8955_MONO_OUT_MIX_1
:
106 case WM8955_MONO_OUT_MIX_2
:
107 case WM8955_LOUT2_VOLUME
:
108 case WM8955_ROUT2_VOLUME
:
109 case WM8955_MONOOUT_VOLUME
:
110 case WM8955_CLOCKING_PLL
:
111 case WM8955_PLL_CONTROL_1
:
112 case WM8955_PLL_CONTROL_2
:
113 case WM8955_PLL_CONTROL_3
:
114 case WM8955_PLL_CONTROL_4
:
121 static bool wm8955_volatile(struct device
*dev
, unsigned int reg
)
131 static int wm8955_reset(struct snd_soc_codec
*codec
)
133 return snd_soc_write(codec
, WM8955_RESET
, 0);
142 /* The size in bits of the FLL divide multiplied by 10
143 * to allow rounding later */
144 #define FIXED_FLL_SIZE ((1 << 22) * 10)
146 static int wm8995_pll_factors(struct device
*dev
,
147 int Fref
, int Fout
, struct pll_factors
*pll
)
150 unsigned int K
, Ndiv
, Nmod
, target
;
152 dev_dbg(dev
, "Fref=%u Fout=%u\n", Fref
, Fout
);
154 /* The oscilator should run at should be 90-100MHz, and
155 * there's a divide by 4 plus an optional divide by 2 in the
156 * output path to generate the system clock. The clock table
157 * is sortd so we should always generate a suitable target. */
159 if (target
< 90000000) {
166 WARN_ON(target
< 90000000 || target
> 100000000);
168 dev_dbg(dev
, "Fvco=%dHz\n", target
);
170 /* Now, calculate N.K */
171 Ndiv
= target
/ Fref
;
174 Nmod
= target
% Fref
;
175 dev_dbg(dev
, "Nmod=%d\n", Nmod
);
177 /* Calculate fractional part - scale up so we can round. */
178 Kpart
= FIXED_FLL_SIZE
* (long long)Nmod
;
182 K
= Kpart
& 0xFFFFFFFF;
187 /* Move down to proper range now rounding is done */
190 dev_dbg(dev
, "N=%x K=%x OUTDIV=%x\n", pll
->n
, pll
->k
, pll
->outdiv
);
195 /* Lookup table specifying SRATE (table 25 in datasheet); some of the
196 * output frequencies have been rounded to the standard frequencies
197 * they are intended to match where the error is slight. */
204 { 18432000, 8000, 0, 3, },
205 { 18432000, 12000, 0, 9, },
206 { 18432000, 16000, 0, 11, },
207 { 18432000, 24000, 0, 29, },
208 { 18432000, 32000, 0, 13, },
209 { 18432000, 48000, 0, 1, },
210 { 18432000, 96000, 0, 15, },
212 { 16934400, 8018, 0, 19, },
213 { 16934400, 11025, 0, 25, },
214 { 16934400, 22050, 0, 27, },
215 { 16934400, 44100, 0, 17, },
216 { 16934400, 88200, 0, 31, },
218 { 12000000, 8000, 1, 2, },
219 { 12000000, 11025, 1, 25, },
220 { 12000000, 12000, 1, 8, },
221 { 12000000, 16000, 1, 10, },
222 { 12000000, 22050, 1, 27, },
223 { 12000000, 24000, 1, 28, },
224 { 12000000, 32000, 1, 12, },
225 { 12000000, 44100, 1, 17, },
226 { 12000000, 48000, 1, 0, },
227 { 12000000, 88200, 1, 31, },
228 { 12000000, 96000, 1, 14, },
230 { 12288000, 8000, 0, 2, },
231 { 12288000, 12000, 0, 8, },
232 { 12288000, 16000, 0, 10, },
233 { 12288000, 24000, 0, 28, },
234 { 12288000, 32000, 0, 12, },
235 { 12288000, 48000, 0, 0, },
236 { 12288000, 96000, 0, 14, },
238 { 12289600, 8018, 0, 18, },
239 { 12289600, 11025, 0, 24, },
240 { 12289600, 22050, 0, 26, },
241 { 11289600, 44100, 0, 16, },
242 { 11289600, 88200, 0, 31, },
245 static int wm8955_configure_clocking(struct snd_soc_codec
*codec
)
247 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
252 struct pll_factors pll
;
254 /* If we're not running a sample rate currently just pick one */
258 /* Can we generate an exact output? */
259 for (i
= 0; i
< ARRAY_SIZE(clock_cfgs
); i
++) {
260 if (wm8955
->fs
!= clock_cfgs
[i
].fs
)
264 if (wm8955
->mclk_rate
== clock_cfgs
[i
].mclk
)
268 /* We should never get here with an unsupported sample rate */
270 dev_err(codec
->dev
, "Sample rate %dHz unsupported\n",
276 if (i
== ARRAY_SIZE(clock_cfgs
)) {
277 /* If we can't generate the right clock from MCLK then
278 * we should configure the PLL to supply us with an
281 clocking
|= WM8955_MCLKSEL
;
283 /* Use the last divider configuration we saw for the
285 ret
= wm8995_pll_factors(codec
->dev
, wm8955
->mclk_rate
,
286 clock_cfgs
[sr
].mclk
, &pll
);
289 "Unable to generate %dHz from %dHz MCLK\n",
290 wm8955
->fs
, wm8955
->mclk_rate
);
294 snd_soc_update_bits(codec
, WM8955_PLL_CONTROL_1
,
295 WM8955_N_MASK
| WM8955_K_21_18_MASK
,
296 (pll
.n
<< WM8955_N_SHIFT
) |
298 snd_soc_update_bits(codec
, WM8955_PLL_CONTROL_2
,
300 (pll
.k
>> 9) & WM8955_K_17_9_MASK
);
301 snd_soc_update_bits(codec
, WM8955_PLL_CONTROL_2
,
303 pll
.k
& WM8955_K_8_0_MASK
);
305 snd_soc_update_bits(codec
, WM8955_PLL_CONTROL_4
,
306 WM8955_KEN
, WM8955_KEN
);
308 snd_soc_update_bits(codec
, WM8955_PLL_CONTROL_4
,
312 val
= WM8955_PLL_RB
| WM8955_PLLOUTDIV2
;
316 /* Now start the PLL running */
317 snd_soc_update_bits(codec
, WM8955_CLOCKING_PLL
,
318 WM8955_PLL_RB
| WM8955_PLLOUTDIV2
, val
);
319 snd_soc_update_bits(codec
, WM8955_CLOCKING_PLL
,
320 WM8955_PLLEN
, WM8955_PLLEN
);
323 srate
= clock_cfgs
[sr
].usb
| (clock_cfgs
[sr
].sr
<< WM8955_SR_SHIFT
);
325 snd_soc_update_bits(codec
, WM8955_SAMPLE_RATE
,
326 WM8955_USB
| WM8955_SR_MASK
, srate
);
327 snd_soc_update_bits(codec
, WM8955_CLOCKING_PLL
,
328 WM8955_MCLKSEL
, clocking
);
333 static int wm8955_sysclk(struct snd_soc_dapm_widget
*w
,
334 struct snd_kcontrol
*kcontrol
, int event
)
336 struct snd_soc_codec
*codec
= w
->codec
;
339 /* Always disable the clocks - if we're doing reconfiguration this
340 * avoids misclocking.
342 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
344 snd_soc_update_bits(codec
, WM8955_CLOCKING_PLL
,
345 WM8955_PLL_RB
| WM8955_PLLEN
, 0);
348 case SND_SOC_DAPM_POST_PMD
:
350 case SND_SOC_DAPM_PRE_PMU
:
351 ret
= wm8955_configure_clocking(codec
);
361 static int deemph_settings
[] = { 0, 32000, 44100, 48000 };
363 static int wm8955_set_deemph(struct snd_soc_codec
*codec
)
365 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
368 /* If we're using deemphasis select the nearest available sample
371 if (wm8955
->deemph
) {
373 for (i
= 2; i
< ARRAY_SIZE(deemph_settings
); i
++) {
374 if (abs(deemph_settings
[i
] - wm8955
->fs
) <
375 abs(deemph_settings
[best
] - wm8955
->fs
))
379 val
= best
<< WM8955_DEEMPH_SHIFT
;
384 dev_dbg(codec
->dev
, "Set deemphasis %d\n", val
);
386 return snd_soc_update_bits(codec
, WM8955_DAC_CONTROL
,
387 WM8955_DEEMPH_MASK
, val
);
390 static int wm8955_get_deemph(struct snd_kcontrol
*kcontrol
,
391 struct snd_ctl_elem_value
*ucontrol
)
393 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
394 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
396 ucontrol
->value
.enumerated
.item
[0] = wm8955
->deemph
;
400 static int wm8955_put_deemph(struct snd_kcontrol
*kcontrol
,
401 struct snd_ctl_elem_value
*ucontrol
)
403 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
404 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
405 int deemph
= ucontrol
->value
.enumerated
.item
[0];
410 wm8955
->deemph
= deemph
;
412 return wm8955_set_deemph(codec
);
415 static const char *bass_mode_text
[] = {
416 "Linear", "Adaptive",
419 static const struct soc_enum bass_mode
=
420 SOC_ENUM_SINGLE(WM8955_BASS_CONTROL
, 7, 2, bass_mode_text
);
422 static const char *bass_cutoff_text
[] = {
426 static const struct soc_enum bass_cutoff
=
427 SOC_ENUM_SINGLE(WM8955_BASS_CONTROL
, 6, 2, bass_cutoff_text
);
429 static const char *treble_cutoff_text
[] = {
433 static const struct soc_enum treble_cutoff
=
434 SOC_ENUM_SINGLE(WM8955_TREBLE_CONTROL
, 6, 2, treble_cutoff_text
);
436 static const DECLARE_TLV_DB_SCALE(digital_tlv
, -12750, 50, 1);
437 static const DECLARE_TLV_DB_SCALE(atten_tlv
, -600, 600, 0);
438 static const DECLARE_TLV_DB_SCALE(bypass_tlv
, -1500, 300, 0);
439 static const DECLARE_TLV_DB_SCALE(mono_tlv
, -2100, 300, 0);
440 static const DECLARE_TLV_DB_SCALE(out_tlv
, -12100, 100, 1);
441 static const DECLARE_TLV_DB_SCALE(treble_tlv
, -1200, 150, 1);
443 static const struct snd_kcontrol_new wm8955_snd_controls
[] = {
444 SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8955_LEFT_DAC_VOLUME
,
445 WM8955_RIGHT_DAC_VOLUME
, 0, 255, 0, digital_tlv
),
446 SOC_SINGLE_TLV("Playback Attenuation Volume", WM8955_DAC_CONTROL
, 7, 1, 1,
448 SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0,
449 wm8955_get_deemph
, wm8955_put_deemph
),
451 SOC_ENUM("Bass Mode", bass_mode
),
452 SOC_ENUM("Bass Cutoff", bass_cutoff
),
453 SOC_SINGLE("Bass Volume", WM8955_BASS_CONTROL
, 0, 15, 1),
455 SOC_ENUM("Treble Cutoff", treble_cutoff
),
456 SOC_SINGLE_TLV("Treble Volume", WM8955_TREBLE_CONTROL
, 0, 14, 1, treble_tlv
),
458 SOC_SINGLE_TLV("Left Bypass Volume", WM8955_LEFT_OUT_MIX_1
, 4, 7, 1,
460 SOC_SINGLE_TLV("Left Mono Volume", WM8955_LEFT_OUT_MIX_2
, 4, 7, 1,
463 SOC_SINGLE_TLV("Right Mono Volume", WM8955_RIGHT_OUT_MIX_1
, 4, 7, 1,
465 SOC_SINGLE_TLV("Right Bypass Volume", WM8955_RIGHT_OUT_MIX_2
, 4, 7, 1,
468 /* Not a stereo pair so they line up with the DAPM switches */
469 SOC_SINGLE_TLV("Mono Left Bypass Volume", WM8955_MONO_OUT_MIX_1
, 4, 7, 1,
471 SOC_SINGLE_TLV("Mono Right Bypass Volume", WM8955_MONO_OUT_MIX_2
, 4, 7, 1,
474 SOC_DOUBLE_R_TLV("Headphone Volume", WM8955_LOUT1_VOLUME
,
475 WM8955_ROUT1_VOLUME
, 0, 127, 0, out_tlv
),
476 SOC_DOUBLE_R("Headphone ZC Switch", WM8955_LOUT1_VOLUME
,
477 WM8955_ROUT1_VOLUME
, 7, 1, 0),
479 SOC_DOUBLE_R_TLV("Speaker Volume", WM8955_LOUT2_VOLUME
,
480 WM8955_ROUT2_VOLUME
, 0, 127, 0, out_tlv
),
481 SOC_DOUBLE_R("Speaker ZC Switch", WM8955_LOUT2_VOLUME
,
482 WM8955_ROUT2_VOLUME
, 7, 1, 0),
484 SOC_SINGLE_TLV("Mono Volume", WM8955_MONOOUT_VOLUME
, 0, 127, 0, out_tlv
),
485 SOC_SINGLE("Mono ZC Switch", WM8955_MONOOUT_VOLUME
, 7, 1, 0),
488 static const struct snd_kcontrol_new lmixer
[] = {
489 SOC_DAPM_SINGLE("Playback Switch", WM8955_LEFT_OUT_MIX_1
, 8, 1, 0),
490 SOC_DAPM_SINGLE("Bypass Switch", WM8955_LEFT_OUT_MIX_1
, 7, 1, 0),
491 SOC_DAPM_SINGLE("Right Playback Switch", WM8955_LEFT_OUT_MIX_2
, 8, 1, 0),
492 SOC_DAPM_SINGLE("Mono Switch", WM8955_LEFT_OUT_MIX_2
, 7, 1, 0),
495 static const struct snd_kcontrol_new rmixer
[] = {
496 SOC_DAPM_SINGLE("Left Playback Switch", WM8955_RIGHT_OUT_MIX_1
, 8, 1, 0),
497 SOC_DAPM_SINGLE("Mono Switch", WM8955_RIGHT_OUT_MIX_1
, 7, 1, 0),
498 SOC_DAPM_SINGLE("Playback Switch", WM8955_RIGHT_OUT_MIX_2
, 8, 1, 0),
499 SOC_DAPM_SINGLE("Bypass Switch", WM8955_RIGHT_OUT_MIX_2
, 7, 1, 0),
502 static const struct snd_kcontrol_new mmixer
[] = {
503 SOC_DAPM_SINGLE("Left Playback Switch", WM8955_MONO_OUT_MIX_1
, 8, 1, 0),
504 SOC_DAPM_SINGLE("Left Bypass Switch", WM8955_MONO_OUT_MIX_1
, 7, 1, 0),
505 SOC_DAPM_SINGLE("Right Playback Switch", WM8955_MONO_OUT_MIX_2
, 8, 1, 0),
506 SOC_DAPM_SINGLE("Right Bypass Switch", WM8955_MONO_OUT_MIX_2
, 7, 1, 0),
509 static const struct snd_soc_dapm_widget wm8955_dapm_widgets
[] = {
510 SND_SOC_DAPM_INPUT("MONOIN-"),
511 SND_SOC_DAPM_INPUT("MONOIN+"),
512 SND_SOC_DAPM_INPUT("LINEINR"),
513 SND_SOC_DAPM_INPUT("LINEINL"),
515 SND_SOC_DAPM_PGA("Mono Input", SND_SOC_NOPM
, 0, 0, NULL
, 0),
517 SND_SOC_DAPM_SUPPLY("SYSCLK", WM8955_POWER_MANAGEMENT_1
, 0, 1, wm8955_sysclk
,
518 SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMD
),
519 SND_SOC_DAPM_SUPPLY("TSDEN", WM8955_ADDITIONAL_CONTROL_1
, 8, 0, NULL
, 0),
521 SND_SOC_DAPM_DAC("DACL", "Playback", WM8955_POWER_MANAGEMENT_2
, 8, 0),
522 SND_SOC_DAPM_DAC("DACR", "Playback", WM8955_POWER_MANAGEMENT_2
, 7, 0),
524 SND_SOC_DAPM_PGA("LOUT1 PGA", WM8955_POWER_MANAGEMENT_2
, 6, 0, NULL
, 0),
525 SND_SOC_DAPM_PGA("ROUT1 PGA", WM8955_POWER_MANAGEMENT_2
, 5, 0, NULL
, 0),
526 SND_SOC_DAPM_PGA("LOUT2 PGA", WM8955_POWER_MANAGEMENT_2
, 4, 0, NULL
, 0),
527 SND_SOC_DAPM_PGA("ROUT2 PGA", WM8955_POWER_MANAGEMENT_2
, 3, 0, NULL
, 0),
528 SND_SOC_DAPM_PGA("MOUT PGA", WM8955_POWER_MANAGEMENT_2
, 2, 0, NULL
, 0),
529 SND_SOC_DAPM_PGA("OUT3 PGA", WM8955_POWER_MANAGEMENT_2
, 1, 0, NULL
, 0),
531 /* The names are chosen to make the control names nice */
532 SND_SOC_DAPM_MIXER("Left", SND_SOC_NOPM
, 0, 0,
533 lmixer
, ARRAY_SIZE(lmixer
)),
534 SND_SOC_DAPM_MIXER("Right", SND_SOC_NOPM
, 0, 0,
535 rmixer
, ARRAY_SIZE(rmixer
)),
536 SND_SOC_DAPM_MIXER("Mono", SND_SOC_NOPM
, 0, 0,
537 mmixer
, ARRAY_SIZE(mmixer
)),
539 SND_SOC_DAPM_OUTPUT("LOUT1"),
540 SND_SOC_DAPM_OUTPUT("ROUT1"),
541 SND_SOC_DAPM_OUTPUT("LOUT2"),
542 SND_SOC_DAPM_OUTPUT("ROUT2"),
543 SND_SOC_DAPM_OUTPUT("MONOOUT"),
544 SND_SOC_DAPM_OUTPUT("OUT3"),
547 static const struct snd_soc_dapm_route wm8955_dapm_routes
[] = {
548 { "DACL", NULL
, "SYSCLK" },
549 { "DACR", NULL
, "SYSCLK" },
551 { "Mono Input", NULL
, "MONOIN-" },
552 { "Mono Input", NULL
, "MONOIN+" },
554 { "Left", "Playback Switch", "DACL" },
555 { "Left", "Right Playback Switch", "DACR" },
556 { "Left", "Bypass Switch", "LINEINL" },
557 { "Left", "Mono Switch", "Mono Input" },
559 { "Right", "Playback Switch", "DACR" },
560 { "Right", "Left Playback Switch", "DACL" },
561 { "Right", "Bypass Switch", "LINEINR" },
562 { "Right", "Mono Switch", "Mono Input" },
564 { "Mono", "Left Playback Switch", "DACL" },
565 { "Mono", "Right Playback Switch", "DACR" },
566 { "Mono", "Left Bypass Switch", "LINEINL" },
567 { "Mono", "Right Bypass Switch", "LINEINR" },
569 { "LOUT1 PGA", NULL
, "Left" },
570 { "LOUT1", NULL
, "TSDEN" },
571 { "LOUT1", NULL
, "LOUT1 PGA" },
573 { "ROUT1 PGA", NULL
, "Right" },
574 { "ROUT1", NULL
, "TSDEN" },
575 { "ROUT1", NULL
, "ROUT1 PGA" },
577 { "LOUT2 PGA", NULL
, "Left" },
578 { "LOUT2", NULL
, "TSDEN" },
579 { "LOUT2", NULL
, "LOUT2 PGA" },
581 { "ROUT2 PGA", NULL
, "Right" },
582 { "ROUT2", NULL
, "TSDEN" },
583 { "ROUT2", NULL
, "ROUT2 PGA" },
585 { "MOUT PGA", NULL
, "Mono" },
586 { "MONOOUT", NULL
, "MOUT PGA" },
588 /* OUT3 not currently implemented */
589 { "OUT3", NULL
, "OUT3 PGA" },
592 static int wm8955_hw_params(struct snd_pcm_substream
*substream
,
593 struct snd_pcm_hw_params
*params
,
594 struct snd_soc_dai
*dai
)
596 struct snd_soc_codec
*codec
= dai
->codec
;
597 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
601 switch (params_format(params
)) {
602 case SNDRV_PCM_FORMAT_S16_LE
:
605 case SNDRV_PCM_FORMAT_S20_3LE
:
608 case SNDRV_PCM_FORMAT_S24_LE
:
611 case SNDRV_PCM_FORMAT_S32_LE
:
617 snd_soc_update_bits(codec
, WM8955_AUDIO_INTERFACE
,
620 wm8955
->fs
= params_rate(params
);
621 wm8955_set_deemph(codec
);
623 /* If the chip is clocked then disable the clocks and force a
624 * reconfiguration, otherwise DAPM will power up the
625 * clocks for us later. */
626 ret
= snd_soc_read(codec
, WM8955_POWER_MANAGEMENT_1
);
629 if (ret
& WM8955_DIGENB
) {
630 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
632 snd_soc_update_bits(codec
, WM8955_CLOCKING_PLL
,
633 WM8955_PLL_RB
| WM8955_PLLEN
, 0);
635 wm8955_configure_clocking(codec
);
642 static int wm8955_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
643 unsigned int freq
, int dir
)
645 struct snd_soc_codec
*codec
= dai
->codec
;
646 struct wm8955_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
650 case WM8955_CLK_MCLK
:
651 if (freq
> 15000000) {
652 priv
->mclk_rate
= freq
/= 2;
653 div
= WM8955_MCLKDIV2
;
655 priv
->mclk_rate
= freq
;
659 snd_soc_update_bits(codec
, WM8955_SAMPLE_RATE
,
660 WM8955_MCLKDIV2
, div
);
667 dev_dbg(dai
->dev
, "Clock source is %d at %uHz\n", clk_id
, freq
);
672 static int wm8955_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
674 struct snd_soc_codec
*codec
= dai
->codec
;
677 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
678 case SND_SOC_DAIFMT_CBS_CFS
:
680 case SND_SOC_DAIFMT_CBM_CFM
:
687 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
688 case SND_SOC_DAIFMT_DSP_B
:
690 case SND_SOC_DAIFMT_DSP_A
:
693 case SND_SOC_DAIFMT_I2S
:
696 case SND_SOC_DAIFMT_RIGHT_J
:
698 case SND_SOC_DAIFMT_LEFT_J
:
705 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
706 case SND_SOC_DAIFMT_DSP_A
:
707 case SND_SOC_DAIFMT_DSP_B
:
708 /* frame inversion not valid for DSP modes */
709 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
710 case SND_SOC_DAIFMT_NB_NF
:
712 case SND_SOC_DAIFMT_IB_NF
:
713 aif
|= WM8955_BCLKINV
;
720 case SND_SOC_DAIFMT_I2S
:
721 case SND_SOC_DAIFMT_RIGHT_J
:
722 case SND_SOC_DAIFMT_LEFT_J
:
723 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
724 case SND_SOC_DAIFMT_NB_NF
:
726 case SND_SOC_DAIFMT_IB_IF
:
727 aif
|= WM8955_BCLKINV
| WM8955_LRP
;
729 case SND_SOC_DAIFMT_IB_NF
:
730 aif
|= WM8955_BCLKINV
;
732 case SND_SOC_DAIFMT_NB_IF
:
743 snd_soc_update_bits(codec
, WM8955_AUDIO_INTERFACE
,
744 WM8955_MS
| WM8955_FORMAT_MASK
| WM8955_BCLKINV
|
751 static int wm8955_digital_mute(struct snd_soc_dai
*codec_dai
, int mute
)
753 struct snd_soc_codec
*codec
= codec_dai
->codec
;
761 snd_soc_update_bits(codec
, WM8955_DAC_CONTROL
, WM8955_DACMU
, val
);
766 static int wm8955_set_bias_level(struct snd_soc_codec
*codec
,
767 enum snd_soc_bias_level level
)
769 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
773 case SND_SOC_BIAS_ON
:
776 case SND_SOC_BIAS_PREPARE
:
777 /* VMID resistance 2*50k */
778 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
780 0x1 << WM8955_VMIDSEL_SHIFT
);
782 /* Default bias current */
783 snd_soc_update_bits(codec
, WM8955_ADDITIONAL_CONTROL_1
,
785 0x2 << WM8955_VSEL_SHIFT
);
788 case SND_SOC_BIAS_STANDBY
:
789 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_OFF
) {
790 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8955
->supplies
),
794 "Failed to enable supplies: %d\n",
799 regcache_sync(wm8955
->regmap
);
801 /* Enable VREF and VMID */
802 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
806 0x3 << WM8955_VREF_SHIFT
);
811 /* High resistance VROI to maintain outputs */
812 snd_soc_update_bits(codec
,
813 WM8955_ADDITIONAL_CONTROL_3
,
814 WM8955_VROI
, WM8955_VROI
);
817 /* Maintain VMID with 2*250k */
818 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
820 0x2 << WM8955_VMIDSEL_SHIFT
);
822 /* Minimum bias current */
823 snd_soc_update_bits(codec
, WM8955_ADDITIONAL_CONTROL_1
,
824 WM8955_VSEL_MASK
, 0);
827 case SND_SOC_BIAS_OFF
:
828 /* Low resistance VROI to help discharge */
829 snd_soc_update_bits(codec
,
830 WM8955_ADDITIONAL_CONTROL_3
,
833 /* Turn off VMID and VREF */
834 snd_soc_update_bits(codec
, WM8955_POWER_MANAGEMENT_1
,
836 WM8955_VMIDSEL_MASK
, 0);
838 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
),
842 codec
->dapm
.bias_level
= level
;
846 #define WM8955_RATES SNDRV_PCM_RATE_8000_96000
848 #define WM8955_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
849 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
851 static const struct snd_soc_dai_ops wm8955_dai_ops
= {
852 .set_sysclk
= wm8955_set_sysclk
,
853 .set_fmt
= wm8955_set_fmt
,
854 .hw_params
= wm8955_hw_params
,
855 .digital_mute
= wm8955_digital_mute
,
858 static struct snd_soc_dai_driver wm8955_dai
= {
859 .name
= "wm8955-hifi",
861 .stream_name
= "Playback",
864 .rates
= WM8955_RATES
,
865 .formats
= WM8955_FORMATS
,
867 .ops
= &wm8955_dai_ops
,
871 static int wm8955_suspend(struct snd_soc_codec
*codec
)
873 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
875 wm8955_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
877 regcache_mark_dirty(wm8955
->regmap
);
882 static int wm8955_resume(struct snd_soc_codec
*codec
)
884 wm8955_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
889 #define wm8955_suspend NULL
890 #define wm8955_resume NULL
893 static int wm8955_probe(struct snd_soc_codec
*codec
)
895 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
896 struct wm8955_pdata
*pdata
= dev_get_platdata(codec
->dev
);
899 codec
->control_data
= wm8955
->regmap
;
901 ret
= snd_soc_codec_set_cache_io(codec
, 7, 9, SND_SOC_REGMAP
);
903 dev_err(codec
->dev
, "Failed to set cache I/O: %d\n", ret
);
907 for (i
= 0; i
< ARRAY_SIZE(wm8955
->supplies
); i
++)
908 wm8955
->supplies
[i
].supply
= wm8955_supply_names
[i
];
910 ret
= regulator_bulk_get(codec
->dev
, ARRAY_SIZE(wm8955
->supplies
),
913 dev_err(codec
->dev
, "Failed to request supplies: %d\n", ret
);
917 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8955
->supplies
),
920 dev_err(codec
->dev
, "Failed to enable supplies: %d\n", ret
);
924 ret
= wm8955_reset(codec
);
926 dev_err(codec
->dev
, "Failed to issue reset: %d\n", ret
);
930 /* Change some default settings - latch VU and enable ZC */
931 snd_soc_update_bits(codec
, WM8955_LEFT_DAC_VOLUME
,
932 WM8955_LDVU
, WM8955_LDVU
);
933 snd_soc_update_bits(codec
, WM8955_RIGHT_DAC_VOLUME
,
934 WM8955_RDVU
, WM8955_RDVU
);
935 snd_soc_update_bits(codec
, WM8955_LOUT1_VOLUME
,
936 WM8955_LO1VU
| WM8955_LO1ZC
,
937 WM8955_LO1VU
| WM8955_LO1ZC
);
938 snd_soc_update_bits(codec
, WM8955_ROUT1_VOLUME
,
939 WM8955_RO1VU
| WM8955_RO1ZC
,
940 WM8955_RO1VU
| WM8955_RO1ZC
);
941 snd_soc_update_bits(codec
, WM8955_LOUT2_VOLUME
,
942 WM8955_LO2VU
| WM8955_LO2ZC
,
943 WM8955_LO2VU
| WM8955_LO2ZC
);
944 snd_soc_update_bits(codec
, WM8955_ROUT2_VOLUME
,
945 WM8955_RO2VU
| WM8955_RO2ZC
,
946 WM8955_RO2VU
| WM8955_RO2ZC
);
947 snd_soc_update_bits(codec
, WM8955_MONOOUT_VOLUME
,
948 WM8955_MOZC
, WM8955_MOZC
);
950 /* Also enable adaptive bass boost by default */
951 snd_soc_update_bits(codec
, WM8955_BASS_CONTROL
, WM8955_BB
, WM8955_BB
);
953 /* Set platform data values */
955 if (pdata
->out2_speaker
)
956 snd_soc_update_bits(codec
, WM8955_ADDITIONAL_CONTROL_2
,
957 WM8955_ROUT2INV
, WM8955_ROUT2INV
);
959 if (pdata
->monoin_diff
)
960 snd_soc_update_bits(codec
, WM8955_MONO_OUT_MIX_1
,
961 WM8955_DMEN
, WM8955_DMEN
);
964 wm8955_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
966 /* Bias level configuration will have done an extra enable */
967 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
972 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
974 regulator_bulk_free(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
978 static int wm8955_remove(struct snd_soc_codec
*codec
)
980 struct wm8955_priv
*wm8955
= snd_soc_codec_get_drvdata(codec
);
982 wm8955_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
983 regulator_bulk_free(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
987 static struct snd_soc_codec_driver soc_codec_dev_wm8955
= {
988 .probe
= wm8955_probe
,
989 .remove
= wm8955_remove
,
990 .suspend
= wm8955_suspend
,
991 .resume
= wm8955_resume
,
992 .set_bias_level
= wm8955_set_bias_level
,
994 .controls
= wm8955_snd_controls
,
995 .num_controls
= ARRAY_SIZE(wm8955_snd_controls
),
996 .dapm_widgets
= wm8955_dapm_widgets
,
997 .num_dapm_widgets
= ARRAY_SIZE(wm8955_dapm_widgets
),
998 .dapm_routes
= wm8955_dapm_routes
,
999 .num_dapm_routes
= ARRAY_SIZE(wm8955_dapm_routes
),
1002 static const struct regmap_config wm8955_regmap
= {
1006 .max_register
= WM8955_MAX_REGISTER
,
1007 .volatile_reg
= wm8955_volatile
,
1008 .writeable_reg
= wm8955_writeable
,
1010 .cache_type
= REGCACHE_RBTREE
,
1011 .reg_defaults
= wm8955_reg_defaults
,
1012 .num_reg_defaults
= ARRAY_SIZE(wm8955_reg_defaults
),
1015 static int wm8955_i2c_probe(struct i2c_client
*i2c
,
1016 const struct i2c_device_id
*id
)
1018 struct wm8955_priv
*wm8955
;
1021 wm8955
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8955_priv
),
1026 wm8955
->regmap
= devm_regmap_init_i2c(i2c
, &wm8955_regmap
);
1027 if (IS_ERR(wm8955
->regmap
)) {
1028 ret
= PTR_ERR(wm8955
->regmap
);
1029 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
1034 i2c_set_clientdata(i2c
, wm8955
);
1036 ret
= snd_soc_register_codec(&i2c
->dev
,
1037 &soc_codec_dev_wm8955
, &wm8955_dai
, 1);
1042 static int wm8955_i2c_remove(struct i2c_client
*client
)
1044 snd_soc_unregister_codec(&client
->dev
);
1049 static const struct i2c_device_id wm8955_i2c_id
[] = {
1053 MODULE_DEVICE_TABLE(i2c
, wm8955_i2c_id
);
1055 static struct i2c_driver wm8955_i2c_driver
= {
1058 .owner
= THIS_MODULE
,
1060 .probe
= wm8955_i2c_probe
,
1061 .remove
= wm8955_i2c_remove
,
1062 .id_table
= wm8955_i2c_id
,
1065 module_i2c_driver(wm8955_i2c_driver
);
1067 MODULE_DESCRIPTION("ASoC WM8955 driver");
1068 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
1069 MODULE_LICENSE("GPL");