1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm8955.c -- WM8955 ALSA SoC Audio driver
5 * Copyright 2009 Wolfson Microelectronics plc
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
15 #include <linux/i2c.h>
16 #include <linux/regmap.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/slab.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/pcm_params.h>
22 #include <sound/soc.h>
23 #include <sound/initval.h>
24 #include <sound/tlv.h>
25 #include <sound/wm8955.h>
29 #define WM8955_NUM_SUPPLIES 4
30 static const char *wm8955_supply_names
[WM8955_NUM_SUPPLIES
] = {
37 /* codec private data */
39 struct regmap
*regmap
;
41 unsigned int mclk_rate
;
46 struct regulator_bulk_data supplies
[WM8955_NUM_SUPPLIES
];
49 static const struct reg_default wm8955_reg_defaults
[] = {
50 { 2, 0x0079 }, /* R2 - LOUT1 volume */
51 { 3, 0x0079 }, /* R3 - ROUT1 volume */
52 { 5, 0x0008 }, /* R5 - DAC Control */
53 { 7, 0x000A }, /* R7 - Audio Interface */
54 { 8, 0x0000 }, /* R8 - Sample Rate */
55 { 10, 0x00FF }, /* R10 - Left DAC volume */
56 { 11, 0x00FF }, /* R11 - Right DAC volume */
57 { 12, 0x000F }, /* R12 - Bass control */
58 { 13, 0x000F }, /* R13 - Treble control */
59 { 23, 0x00C1 }, /* R23 - Additional control (1) */
60 { 24, 0x0000 }, /* R24 - Additional control (2) */
61 { 25, 0x0000 }, /* R25 - Power Management (1) */
62 { 26, 0x0000 }, /* R26 - Power Management (2) */
63 { 27, 0x0000 }, /* R27 - Additional Control (3) */
64 { 34, 0x0050 }, /* R34 - Left out Mix (1) */
65 { 35, 0x0050 }, /* R35 - Left out Mix (2) */
66 { 36, 0x0050 }, /* R36 - Right out Mix (1) */
67 { 37, 0x0050 }, /* R37 - Right Out Mix (2) */
68 { 38, 0x0050 }, /* R38 - Mono out Mix (1) */
69 { 39, 0x0050 }, /* R39 - Mono out Mix (2) */
70 { 40, 0x0079 }, /* R40 - LOUT2 volume */
71 { 41, 0x0079 }, /* R41 - ROUT2 volume */
72 { 42, 0x0079 }, /* R42 - MONOOUT volume */
73 { 43, 0x0000 }, /* R43 - Clocking / PLL */
74 { 44, 0x0103 }, /* R44 - PLL Control 1 */
75 { 45, 0x0024 }, /* R45 - PLL Control 2 */
76 { 46, 0x01BA }, /* R46 - PLL Control 3 */
77 { 59, 0x0000 }, /* R59 - PLL Control 4 */
80 static bool wm8955_writeable(struct device
*dev
, unsigned int reg
)
83 case WM8955_LOUT1_VOLUME
:
84 case WM8955_ROUT1_VOLUME
:
85 case WM8955_DAC_CONTROL
:
86 case WM8955_AUDIO_INTERFACE
:
87 case WM8955_SAMPLE_RATE
:
88 case WM8955_LEFT_DAC_VOLUME
:
89 case WM8955_RIGHT_DAC_VOLUME
:
90 case WM8955_BASS_CONTROL
:
91 case WM8955_TREBLE_CONTROL
:
93 case WM8955_ADDITIONAL_CONTROL_1
:
94 case WM8955_ADDITIONAL_CONTROL_2
:
95 case WM8955_POWER_MANAGEMENT_1
:
96 case WM8955_POWER_MANAGEMENT_2
:
97 case WM8955_ADDITIONAL_CONTROL_3
:
98 case WM8955_LEFT_OUT_MIX_1
:
99 case WM8955_LEFT_OUT_MIX_2
:
100 case WM8955_RIGHT_OUT_MIX_1
:
101 case WM8955_RIGHT_OUT_MIX_2
:
102 case WM8955_MONO_OUT_MIX_1
:
103 case WM8955_MONO_OUT_MIX_2
:
104 case WM8955_LOUT2_VOLUME
:
105 case WM8955_ROUT2_VOLUME
:
106 case WM8955_MONOOUT_VOLUME
:
107 case WM8955_CLOCKING_PLL
:
108 case WM8955_PLL_CONTROL_1
:
109 case WM8955_PLL_CONTROL_2
:
110 case WM8955_PLL_CONTROL_3
:
111 case WM8955_PLL_CONTROL_4
:
118 static bool wm8955_volatile(struct device
*dev
, unsigned int reg
)
128 static int wm8955_reset(struct snd_soc_component
*component
)
130 return snd_soc_component_write(component
, WM8955_RESET
, 0);
139 /* The size in bits of the FLL divide multiplied by 10
140 * to allow rounding later */
141 #define FIXED_FLL_SIZE ((1 << 22) * 10)
143 static int wm8955_pll_factors(struct device
*dev
,
144 int Fref
, int Fout
, struct pll_factors
*pll
)
147 unsigned int K
, Ndiv
, Nmod
, target
;
149 dev_dbg(dev
, "Fref=%u Fout=%u\n", Fref
, Fout
);
151 /* The oscilator should run at should be 90-100MHz, and
152 * there's a divide by 4 plus an optional divide by 2 in the
153 * output path to generate the system clock. The clock table
154 * is sortd so we should always generate a suitable target. */
156 if (target
< 90000000) {
163 WARN_ON(target
< 90000000 || target
> 100000000);
165 dev_dbg(dev
, "Fvco=%dHz\n", target
);
167 /* Now, calculate N.K */
168 Ndiv
= target
/ Fref
;
171 Nmod
= target
% Fref
;
172 dev_dbg(dev
, "Nmod=%d\n", Nmod
);
174 /* Calculate fractional part - scale up so we can round. */
175 Kpart
= FIXED_FLL_SIZE
* (long long)Nmod
;
179 K
= Kpart
& 0xFFFFFFFF;
184 /* Move down to proper range now rounding is done */
187 dev_dbg(dev
, "N=%x K=%x OUTDIV=%x\n", pll
->n
, pll
->k
, pll
->outdiv
);
192 /* Lookup table specifying SRATE (table 25 in datasheet); some of the
193 * output frequencies have been rounded to the standard frequencies
194 * they are intended to match where the error is slight. */
201 { 18432000, 8000, 0, 3, },
202 { 18432000, 12000, 0, 9, },
203 { 18432000, 16000, 0, 11, },
204 { 18432000, 24000, 0, 29, },
205 { 18432000, 32000, 0, 13, },
206 { 18432000, 48000, 0, 1, },
207 { 18432000, 96000, 0, 15, },
209 { 16934400, 8018, 0, 19, },
210 { 16934400, 11025, 0, 25, },
211 { 16934400, 22050, 0, 27, },
212 { 16934400, 44100, 0, 17, },
213 { 16934400, 88200, 0, 31, },
215 { 12000000, 8000, 1, 2, },
216 { 12000000, 11025, 1, 25, },
217 { 12000000, 12000, 1, 8, },
218 { 12000000, 16000, 1, 10, },
219 { 12000000, 22050, 1, 27, },
220 { 12000000, 24000, 1, 28, },
221 { 12000000, 32000, 1, 12, },
222 { 12000000, 44100, 1, 17, },
223 { 12000000, 48000, 1, 0, },
224 { 12000000, 88200, 1, 31, },
225 { 12000000, 96000, 1, 14, },
227 { 12288000, 8000, 0, 2, },
228 { 12288000, 12000, 0, 8, },
229 { 12288000, 16000, 0, 10, },
230 { 12288000, 24000, 0, 28, },
231 { 12288000, 32000, 0, 12, },
232 { 12288000, 48000, 0, 0, },
233 { 12288000, 96000, 0, 14, },
235 { 12289600, 8018, 0, 18, },
236 { 12289600, 11025, 0, 24, },
237 { 12289600, 22050, 0, 26, },
238 { 11289600, 44100, 0, 16, },
239 { 11289600, 88200, 0, 31, },
242 static int wm8955_configure_clocking(struct snd_soc_component
*component
)
244 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
249 struct pll_factors pll
;
251 /* If we're not running a sample rate currently just pick one */
255 /* Can we generate an exact output? */
256 for (i
= 0; i
< ARRAY_SIZE(clock_cfgs
); i
++) {
257 if (wm8955
->fs
!= clock_cfgs
[i
].fs
)
261 if (wm8955
->mclk_rate
== clock_cfgs
[i
].mclk
)
265 /* We should never get here with an unsupported sample rate */
267 dev_err(component
->dev
, "Sample rate %dHz unsupported\n",
273 if (i
== ARRAY_SIZE(clock_cfgs
)) {
274 /* If we can't generate the right clock from MCLK then
275 * we should configure the PLL to supply us with an
278 clocking
|= WM8955_MCLKSEL
;
280 /* Use the last divider configuration we saw for the
282 ret
= wm8955_pll_factors(component
->dev
, wm8955
->mclk_rate
,
283 clock_cfgs
[sr
].mclk
, &pll
);
285 dev_err(component
->dev
,
286 "Unable to generate %dHz from %dHz MCLK\n",
287 wm8955
->fs
, wm8955
->mclk_rate
);
291 snd_soc_component_update_bits(component
, WM8955_PLL_CONTROL_1
,
292 WM8955_N_MASK
| WM8955_K_21_18_MASK
,
293 (pll
.n
<< WM8955_N_SHIFT
) |
295 snd_soc_component_update_bits(component
, WM8955_PLL_CONTROL_2
,
297 (pll
.k
>> 9) & WM8955_K_17_9_MASK
);
298 snd_soc_component_update_bits(component
, WM8955_PLL_CONTROL_3
,
300 pll
.k
& WM8955_K_8_0_MASK
);
302 snd_soc_component_update_bits(component
, WM8955_PLL_CONTROL_4
,
303 WM8955_KEN
, WM8955_KEN
);
305 snd_soc_component_update_bits(component
, WM8955_PLL_CONTROL_4
,
309 val
= WM8955_PLL_RB
| WM8955_PLLOUTDIV2
;
313 /* Now start the PLL running */
314 snd_soc_component_update_bits(component
, WM8955_CLOCKING_PLL
,
315 WM8955_PLL_RB
| WM8955_PLLOUTDIV2
, val
);
316 snd_soc_component_update_bits(component
, WM8955_CLOCKING_PLL
,
317 WM8955_PLLEN
, WM8955_PLLEN
);
320 srate
= clock_cfgs
[sr
].usb
| (clock_cfgs
[sr
].sr
<< WM8955_SR_SHIFT
);
322 snd_soc_component_update_bits(component
, WM8955_SAMPLE_RATE
,
323 WM8955_USB
| WM8955_SR_MASK
, srate
);
324 snd_soc_component_update_bits(component
, WM8955_CLOCKING_PLL
,
325 WM8955_MCLKSEL
, clocking
);
330 static int wm8955_sysclk(struct snd_soc_dapm_widget
*w
,
331 struct snd_kcontrol
*kcontrol
, int event
)
333 struct snd_soc_component
*component
= snd_soc_dapm_to_component(w
->dapm
);
336 /* Always disable the clocks - if we're doing reconfiguration this
337 * avoids misclocking.
339 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
341 snd_soc_component_update_bits(component
, WM8955_CLOCKING_PLL
,
342 WM8955_PLL_RB
| WM8955_PLLEN
, 0);
345 case SND_SOC_DAPM_POST_PMD
:
347 case SND_SOC_DAPM_PRE_PMU
:
348 ret
= wm8955_configure_clocking(component
);
358 static int deemph_settings
[] = { 0, 32000, 44100, 48000 };
360 static int wm8955_set_deemph(struct snd_soc_component
*component
)
362 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
365 /* If we're using deemphasis select the nearest available sample
368 if (wm8955
->deemph
) {
370 for (i
= 2; i
< ARRAY_SIZE(deemph_settings
); i
++) {
371 if (abs(deemph_settings
[i
] - wm8955
->fs
) <
372 abs(deemph_settings
[best
] - wm8955
->fs
))
376 val
= best
<< WM8955_DEEMPH_SHIFT
;
381 dev_dbg(component
->dev
, "Set deemphasis %d\n", val
);
383 return snd_soc_component_update_bits(component
, WM8955_DAC_CONTROL
,
384 WM8955_DEEMPH_MASK
, val
);
387 static int wm8955_get_deemph(struct snd_kcontrol
*kcontrol
,
388 struct snd_ctl_elem_value
*ucontrol
)
390 struct snd_soc_component
*component
= snd_soc_kcontrol_component(kcontrol
);
391 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
393 ucontrol
->value
.integer
.value
[0] = wm8955
->deemph
;
397 static int wm8955_put_deemph(struct snd_kcontrol
*kcontrol
,
398 struct snd_ctl_elem_value
*ucontrol
)
400 struct snd_soc_component
*component
= snd_soc_kcontrol_component(kcontrol
);
401 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
402 unsigned int deemph
= ucontrol
->value
.integer
.value
[0];
407 wm8955
->deemph
= deemph
;
409 return wm8955_set_deemph(component
);
412 static const char *bass_mode_text
[] = {
413 "Linear", "Adaptive",
416 static SOC_ENUM_SINGLE_DECL(bass_mode
, WM8955_BASS_CONTROL
, 7, bass_mode_text
);
418 static const char *bass_cutoff_text
[] = {
422 static SOC_ENUM_SINGLE_DECL(bass_cutoff
, WM8955_BASS_CONTROL
, 6,
425 static const char *treble_cutoff_text
[] = {
429 static SOC_ENUM_SINGLE_DECL(treble_cutoff
, WM8955_TREBLE_CONTROL
, 2,
432 static const DECLARE_TLV_DB_SCALE(digital_tlv
, -12750, 50, 1);
433 static const DECLARE_TLV_DB_SCALE(atten_tlv
, -600, 600, 0);
434 static const DECLARE_TLV_DB_SCALE(bypass_tlv
, -1500, 300, 0);
435 static const DECLARE_TLV_DB_SCALE(mono_tlv
, -2100, 300, 0);
436 static const DECLARE_TLV_DB_SCALE(out_tlv
, -12100, 100, 1);
437 static const DECLARE_TLV_DB_SCALE(treble_tlv
, -1200, 150, 1);
439 static const struct snd_kcontrol_new wm8955_snd_controls
[] = {
440 SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8955_LEFT_DAC_VOLUME
,
441 WM8955_RIGHT_DAC_VOLUME
, 0, 255, 0, digital_tlv
),
442 SOC_SINGLE_TLV("Playback Attenuation Volume", WM8955_DAC_CONTROL
, 7, 1, 1,
444 SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0,
445 wm8955_get_deemph
, wm8955_put_deemph
),
447 SOC_ENUM("Bass Mode", bass_mode
),
448 SOC_ENUM("Bass Cutoff", bass_cutoff
),
449 SOC_SINGLE("Bass Volume", WM8955_BASS_CONTROL
, 0, 15, 1),
451 SOC_ENUM("Treble Cutoff", treble_cutoff
),
452 SOC_SINGLE_TLV("Treble Volume", WM8955_TREBLE_CONTROL
, 0, 14, 1, treble_tlv
),
454 SOC_SINGLE_TLV("Left Bypass Volume", WM8955_LEFT_OUT_MIX_1
, 4, 7, 1,
456 SOC_SINGLE_TLV("Left Mono Volume", WM8955_LEFT_OUT_MIX_2
, 4, 7, 1,
459 SOC_SINGLE_TLV("Right Mono Volume", WM8955_RIGHT_OUT_MIX_1
, 4, 7, 1,
461 SOC_SINGLE_TLV("Right Bypass Volume", WM8955_RIGHT_OUT_MIX_2
, 4, 7, 1,
464 /* Not a stereo pair so they line up with the DAPM switches */
465 SOC_SINGLE_TLV("Mono Left Bypass Volume", WM8955_MONO_OUT_MIX_1
, 4, 7, 1,
467 SOC_SINGLE_TLV("Mono Right Bypass Volume", WM8955_MONO_OUT_MIX_2
, 4, 7, 1,
470 SOC_DOUBLE_R_TLV("Headphone Volume", WM8955_LOUT1_VOLUME
,
471 WM8955_ROUT1_VOLUME
, 0, 127, 0, out_tlv
),
472 SOC_DOUBLE_R("Headphone ZC Switch", WM8955_LOUT1_VOLUME
,
473 WM8955_ROUT1_VOLUME
, 7, 1, 0),
475 SOC_DOUBLE_R_TLV("Speaker Volume", WM8955_LOUT2_VOLUME
,
476 WM8955_ROUT2_VOLUME
, 0, 127, 0, out_tlv
),
477 SOC_DOUBLE_R("Speaker ZC Switch", WM8955_LOUT2_VOLUME
,
478 WM8955_ROUT2_VOLUME
, 7, 1, 0),
480 SOC_SINGLE_TLV("Mono Volume", WM8955_MONOOUT_VOLUME
, 0, 127, 0, out_tlv
),
481 SOC_SINGLE("Mono ZC Switch", WM8955_MONOOUT_VOLUME
, 7, 1, 0),
484 static const struct snd_kcontrol_new lmixer
[] = {
485 SOC_DAPM_SINGLE("Playback Switch", WM8955_LEFT_OUT_MIX_1
, 8, 1, 0),
486 SOC_DAPM_SINGLE("Bypass Switch", WM8955_LEFT_OUT_MIX_1
, 7, 1, 0),
487 SOC_DAPM_SINGLE("Right Playback Switch", WM8955_LEFT_OUT_MIX_2
, 8, 1, 0),
488 SOC_DAPM_SINGLE("Mono Switch", WM8955_LEFT_OUT_MIX_2
, 7, 1, 0),
491 static const struct snd_kcontrol_new rmixer
[] = {
492 SOC_DAPM_SINGLE("Left Playback Switch", WM8955_RIGHT_OUT_MIX_1
, 8, 1, 0),
493 SOC_DAPM_SINGLE("Mono Switch", WM8955_RIGHT_OUT_MIX_1
, 7, 1, 0),
494 SOC_DAPM_SINGLE("Playback Switch", WM8955_RIGHT_OUT_MIX_2
, 8, 1, 0),
495 SOC_DAPM_SINGLE("Bypass Switch", WM8955_RIGHT_OUT_MIX_2
, 7, 1, 0),
498 static const struct snd_kcontrol_new mmixer
[] = {
499 SOC_DAPM_SINGLE("Left Playback Switch", WM8955_MONO_OUT_MIX_1
, 8, 1, 0),
500 SOC_DAPM_SINGLE("Left Bypass Switch", WM8955_MONO_OUT_MIX_1
, 7, 1, 0),
501 SOC_DAPM_SINGLE("Right Playback Switch", WM8955_MONO_OUT_MIX_2
, 8, 1, 0),
502 SOC_DAPM_SINGLE("Right Bypass Switch", WM8955_MONO_OUT_MIX_2
, 7, 1, 0),
505 static const struct snd_soc_dapm_widget wm8955_dapm_widgets
[] = {
506 SND_SOC_DAPM_INPUT("MONOIN-"),
507 SND_SOC_DAPM_INPUT("MONOIN+"),
508 SND_SOC_DAPM_INPUT("LINEINR"),
509 SND_SOC_DAPM_INPUT("LINEINL"),
511 SND_SOC_DAPM_PGA("Mono Input", SND_SOC_NOPM
, 0, 0, NULL
, 0),
513 SND_SOC_DAPM_SUPPLY("SYSCLK", WM8955_POWER_MANAGEMENT_1
, 0, 1, wm8955_sysclk
,
514 SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMD
),
515 SND_SOC_DAPM_SUPPLY("TSDEN", WM8955_ADDITIONAL_CONTROL_1
, 8, 0, NULL
, 0),
517 SND_SOC_DAPM_DAC("DACL", "Playback", WM8955_POWER_MANAGEMENT_2
, 8, 0),
518 SND_SOC_DAPM_DAC("DACR", "Playback", WM8955_POWER_MANAGEMENT_2
, 7, 0),
520 SND_SOC_DAPM_PGA("LOUT1 PGA", WM8955_POWER_MANAGEMENT_2
, 6, 0, NULL
, 0),
521 SND_SOC_DAPM_PGA("ROUT1 PGA", WM8955_POWER_MANAGEMENT_2
, 5, 0, NULL
, 0),
522 SND_SOC_DAPM_PGA("LOUT2 PGA", WM8955_POWER_MANAGEMENT_2
, 4, 0, NULL
, 0),
523 SND_SOC_DAPM_PGA("ROUT2 PGA", WM8955_POWER_MANAGEMENT_2
, 3, 0, NULL
, 0),
524 SND_SOC_DAPM_PGA("MOUT PGA", WM8955_POWER_MANAGEMENT_2
, 2, 0, NULL
, 0),
525 SND_SOC_DAPM_PGA("OUT3 PGA", WM8955_POWER_MANAGEMENT_2
, 1, 0, NULL
, 0),
527 /* The names are chosen to make the control names nice */
528 SND_SOC_DAPM_MIXER("Left", SND_SOC_NOPM
, 0, 0,
529 lmixer
, ARRAY_SIZE(lmixer
)),
530 SND_SOC_DAPM_MIXER("Right", SND_SOC_NOPM
, 0, 0,
531 rmixer
, ARRAY_SIZE(rmixer
)),
532 SND_SOC_DAPM_MIXER("Mono", SND_SOC_NOPM
, 0, 0,
533 mmixer
, ARRAY_SIZE(mmixer
)),
535 SND_SOC_DAPM_OUTPUT("LOUT1"),
536 SND_SOC_DAPM_OUTPUT("ROUT1"),
537 SND_SOC_DAPM_OUTPUT("LOUT2"),
538 SND_SOC_DAPM_OUTPUT("ROUT2"),
539 SND_SOC_DAPM_OUTPUT("MONOOUT"),
540 SND_SOC_DAPM_OUTPUT("OUT3"),
543 static const struct snd_soc_dapm_route wm8955_dapm_routes
[] = {
544 { "DACL", NULL
, "SYSCLK" },
545 { "DACR", NULL
, "SYSCLK" },
547 { "Mono Input", NULL
, "MONOIN-" },
548 { "Mono Input", NULL
, "MONOIN+" },
550 { "Left", "Playback Switch", "DACL" },
551 { "Left", "Right Playback Switch", "DACR" },
552 { "Left", "Bypass Switch", "LINEINL" },
553 { "Left", "Mono Switch", "Mono Input" },
555 { "Right", "Playback Switch", "DACR" },
556 { "Right", "Left Playback Switch", "DACL" },
557 { "Right", "Bypass Switch", "LINEINR" },
558 { "Right", "Mono Switch", "Mono Input" },
560 { "Mono", "Left Playback Switch", "DACL" },
561 { "Mono", "Right Playback Switch", "DACR" },
562 { "Mono", "Left Bypass Switch", "LINEINL" },
563 { "Mono", "Right Bypass Switch", "LINEINR" },
565 { "LOUT1 PGA", NULL
, "Left" },
566 { "LOUT1", NULL
, "TSDEN" },
567 { "LOUT1", NULL
, "LOUT1 PGA" },
569 { "ROUT1 PGA", NULL
, "Right" },
570 { "ROUT1", NULL
, "TSDEN" },
571 { "ROUT1", NULL
, "ROUT1 PGA" },
573 { "LOUT2 PGA", NULL
, "Left" },
574 { "LOUT2", NULL
, "TSDEN" },
575 { "LOUT2", NULL
, "LOUT2 PGA" },
577 { "ROUT2 PGA", NULL
, "Right" },
578 { "ROUT2", NULL
, "TSDEN" },
579 { "ROUT2", NULL
, "ROUT2 PGA" },
581 { "MOUT PGA", NULL
, "Mono" },
582 { "MONOOUT", NULL
, "MOUT PGA" },
584 /* OUT3 not currently implemented */
585 { "OUT3", NULL
, "OUT3 PGA" },
588 static int wm8955_hw_params(struct snd_pcm_substream
*substream
,
589 struct snd_pcm_hw_params
*params
,
590 struct snd_soc_dai
*dai
)
592 struct snd_soc_component
*component
= dai
->component
;
593 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
597 switch (params_width(params
)) {
613 snd_soc_component_update_bits(component
, WM8955_AUDIO_INTERFACE
,
616 wm8955
->fs
= params_rate(params
);
617 wm8955_set_deemph(component
);
619 /* If the chip is clocked then disable the clocks and force a
620 * reconfiguration, otherwise DAPM will power up the
621 * clocks for us later. */
622 ret
= snd_soc_component_read(component
, WM8955_POWER_MANAGEMENT_1
);
625 if (ret
& WM8955_DIGENB
) {
626 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
628 snd_soc_component_update_bits(component
, WM8955_CLOCKING_PLL
,
629 WM8955_PLL_RB
| WM8955_PLLEN
, 0);
631 wm8955_configure_clocking(component
);
638 static int wm8955_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
639 unsigned int freq
, int dir
)
641 struct snd_soc_component
*component
= dai
->component
;
642 struct wm8955_priv
*priv
= snd_soc_component_get_drvdata(component
);
646 case WM8955_CLK_MCLK
:
647 if (freq
> 15000000) {
648 priv
->mclk_rate
= freq
/= 2;
649 div
= WM8955_MCLKDIV2
;
651 priv
->mclk_rate
= freq
;
655 snd_soc_component_update_bits(component
, WM8955_SAMPLE_RATE
,
656 WM8955_MCLKDIV2
, div
);
663 dev_dbg(dai
->dev
, "Clock source is %d at %uHz\n", clk_id
, freq
);
668 static int wm8955_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
670 struct snd_soc_component
*component
= dai
->component
;
673 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
674 case SND_SOC_DAIFMT_CBS_CFS
:
676 case SND_SOC_DAIFMT_CBM_CFM
:
683 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
684 case SND_SOC_DAIFMT_DSP_B
:
687 case SND_SOC_DAIFMT_DSP_A
:
690 case SND_SOC_DAIFMT_I2S
:
693 case SND_SOC_DAIFMT_RIGHT_J
:
695 case SND_SOC_DAIFMT_LEFT_J
:
702 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
703 case SND_SOC_DAIFMT_DSP_A
:
704 case SND_SOC_DAIFMT_DSP_B
:
705 /* frame inversion not valid for DSP modes */
706 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
707 case SND_SOC_DAIFMT_NB_NF
:
709 case SND_SOC_DAIFMT_IB_NF
:
710 aif
|= WM8955_BCLKINV
;
717 case SND_SOC_DAIFMT_I2S
:
718 case SND_SOC_DAIFMT_RIGHT_J
:
719 case SND_SOC_DAIFMT_LEFT_J
:
720 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
721 case SND_SOC_DAIFMT_NB_NF
:
723 case SND_SOC_DAIFMT_IB_IF
:
724 aif
|= WM8955_BCLKINV
| WM8955_LRP
;
726 case SND_SOC_DAIFMT_IB_NF
:
727 aif
|= WM8955_BCLKINV
;
729 case SND_SOC_DAIFMT_NB_IF
:
740 snd_soc_component_update_bits(component
, WM8955_AUDIO_INTERFACE
,
741 WM8955_MS
| WM8955_FORMAT_MASK
| WM8955_BCLKINV
|
748 static int wm8955_mute(struct snd_soc_dai
*codec_dai
, int mute
, int direction
)
750 struct snd_soc_component
*component
= codec_dai
->component
;
758 snd_soc_component_update_bits(component
, WM8955_DAC_CONTROL
, WM8955_DACMU
, val
);
763 static int wm8955_set_bias_level(struct snd_soc_component
*component
,
764 enum snd_soc_bias_level level
)
766 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
770 case SND_SOC_BIAS_ON
:
773 case SND_SOC_BIAS_PREPARE
:
774 /* VMID resistance 2*50k */
775 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
777 0x1 << WM8955_VMIDSEL_SHIFT
);
779 /* Default bias current */
780 snd_soc_component_update_bits(component
, WM8955_ADDITIONAL_CONTROL_1
,
782 0x2 << WM8955_VSEL_SHIFT
);
785 case SND_SOC_BIAS_STANDBY
:
786 if (snd_soc_component_get_bias_level(component
) == SND_SOC_BIAS_OFF
) {
787 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8955
->supplies
),
790 dev_err(component
->dev
,
791 "Failed to enable supplies: %d\n",
796 regcache_sync(wm8955
->regmap
);
798 /* Enable VREF and VMID */
799 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
803 0x3 << WM8955_VREF_SHIFT
);
808 /* High resistance VROI to maintain outputs */
809 snd_soc_component_update_bits(component
,
810 WM8955_ADDITIONAL_CONTROL_3
,
811 WM8955_VROI
, WM8955_VROI
);
814 /* Maintain VMID with 2*250k */
815 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
817 0x2 << WM8955_VMIDSEL_SHIFT
);
819 /* Minimum bias current */
820 snd_soc_component_update_bits(component
, WM8955_ADDITIONAL_CONTROL_1
,
821 WM8955_VSEL_MASK
, 0);
824 case SND_SOC_BIAS_OFF
:
825 /* Low resistance VROI to help discharge */
826 snd_soc_component_update_bits(component
,
827 WM8955_ADDITIONAL_CONTROL_3
,
830 /* Turn off VMID and VREF */
831 snd_soc_component_update_bits(component
, WM8955_POWER_MANAGEMENT_1
,
833 WM8955_VMIDSEL_MASK
, 0);
835 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
),
842 #define WM8955_RATES SNDRV_PCM_RATE_8000_96000
844 #define WM8955_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
845 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
847 static const struct snd_soc_dai_ops wm8955_dai_ops
= {
848 .set_sysclk
= wm8955_set_sysclk
,
849 .set_fmt
= wm8955_set_fmt
,
850 .hw_params
= wm8955_hw_params
,
851 .mute_stream
= wm8955_mute
,
852 .no_capture_mute
= 1,
855 static struct snd_soc_dai_driver wm8955_dai
= {
856 .name
= "wm8955-hifi",
858 .stream_name
= "Playback",
861 .rates
= WM8955_RATES
,
862 .formats
= WM8955_FORMATS
,
864 .ops
= &wm8955_dai_ops
,
867 static int wm8955_probe(struct snd_soc_component
*component
)
869 struct wm8955_priv
*wm8955
= snd_soc_component_get_drvdata(component
);
870 struct wm8955_pdata
*pdata
= dev_get_platdata(component
->dev
);
873 for (i
= 0; i
< ARRAY_SIZE(wm8955
->supplies
); i
++)
874 wm8955
->supplies
[i
].supply
= wm8955_supply_names
[i
];
876 ret
= devm_regulator_bulk_get(component
->dev
, ARRAY_SIZE(wm8955
->supplies
),
879 dev_err(component
->dev
, "Failed to request supplies: %d\n", ret
);
883 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8955
->supplies
),
886 dev_err(component
->dev
, "Failed to enable supplies: %d\n", ret
);
890 ret
= wm8955_reset(component
);
892 dev_err(component
->dev
, "Failed to issue reset: %d\n", ret
);
896 /* Change some default settings - latch VU and enable ZC */
897 snd_soc_component_update_bits(component
, WM8955_LEFT_DAC_VOLUME
,
898 WM8955_LDVU
, WM8955_LDVU
);
899 snd_soc_component_update_bits(component
, WM8955_RIGHT_DAC_VOLUME
,
900 WM8955_RDVU
, WM8955_RDVU
);
901 snd_soc_component_update_bits(component
, WM8955_LOUT1_VOLUME
,
902 WM8955_LO1VU
| WM8955_LO1ZC
,
903 WM8955_LO1VU
| WM8955_LO1ZC
);
904 snd_soc_component_update_bits(component
, WM8955_ROUT1_VOLUME
,
905 WM8955_RO1VU
| WM8955_RO1ZC
,
906 WM8955_RO1VU
| WM8955_RO1ZC
);
907 snd_soc_component_update_bits(component
, WM8955_LOUT2_VOLUME
,
908 WM8955_LO2VU
| WM8955_LO2ZC
,
909 WM8955_LO2VU
| WM8955_LO2ZC
);
910 snd_soc_component_update_bits(component
, WM8955_ROUT2_VOLUME
,
911 WM8955_RO2VU
| WM8955_RO2ZC
,
912 WM8955_RO2VU
| WM8955_RO2ZC
);
913 snd_soc_component_update_bits(component
, WM8955_MONOOUT_VOLUME
,
914 WM8955_MOZC
, WM8955_MOZC
);
916 /* Also enable adaptive bass boost by default */
917 snd_soc_component_update_bits(component
, WM8955_BASS_CONTROL
, WM8955_BB
, WM8955_BB
);
919 /* Set platform data values */
921 if (pdata
->out2_speaker
)
922 snd_soc_component_update_bits(component
, WM8955_ADDITIONAL_CONTROL_2
,
923 WM8955_ROUT2INV
, WM8955_ROUT2INV
);
925 if (pdata
->monoin_diff
)
926 snd_soc_component_update_bits(component
, WM8955_MONO_OUT_MIX_1
,
927 WM8955_DMEN
, WM8955_DMEN
);
930 snd_soc_component_force_bias_level(component
, SND_SOC_BIAS_STANDBY
);
932 /* Bias level configuration will have done an extra enable */
933 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
938 regulator_bulk_disable(ARRAY_SIZE(wm8955
->supplies
), wm8955
->supplies
);
942 static const struct snd_soc_component_driver soc_component_dev_wm8955
= {
943 .probe
= wm8955_probe
,
944 .set_bias_level
= wm8955_set_bias_level
,
945 .controls
= wm8955_snd_controls
,
946 .num_controls
= ARRAY_SIZE(wm8955_snd_controls
),
947 .dapm_widgets
= wm8955_dapm_widgets
,
948 .num_dapm_widgets
= ARRAY_SIZE(wm8955_dapm_widgets
),
949 .dapm_routes
= wm8955_dapm_routes
,
950 .num_dapm_routes
= ARRAY_SIZE(wm8955_dapm_routes
),
951 .suspend_bias_off
= 1,
953 .use_pmdown_time
= 1,
955 .non_legacy_dai_naming
= 1,
958 static const struct regmap_config wm8955_regmap
= {
962 .max_register
= WM8955_MAX_REGISTER
,
963 .volatile_reg
= wm8955_volatile
,
964 .writeable_reg
= wm8955_writeable
,
966 .cache_type
= REGCACHE_RBTREE
,
967 .reg_defaults
= wm8955_reg_defaults
,
968 .num_reg_defaults
= ARRAY_SIZE(wm8955_reg_defaults
),
971 static int wm8955_i2c_probe(struct i2c_client
*i2c
,
972 const struct i2c_device_id
*id
)
974 struct wm8955_priv
*wm8955
;
977 wm8955
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8955_priv
),
982 wm8955
->regmap
= devm_regmap_init_i2c(i2c
, &wm8955_regmap
);
983 if (IS_ERR(wm8955
->regmap
)) {
984 ret
= PTR_ERR(wm8955
->regmap
);
985 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
990 i2c_set_clientdata(i2c
, wm8955
);
992 ret
= devm_snd_soc_register_component(&i2c
->dev
,
993 &soc_component_dev_wm8955
, &wm8955_dai
, 1);
998 static const struct i2c_device_id wm8955_i2c_id
[] = {
1002 MODULE_DEVICE_TABLE(i2c
, wm8955_i2c_id
);
1004 static struct i2c_driver wm8955_i2c_driver
= {
1008 .probe
= wm8955_i2c_probe
,
1009 .id_table
= wm8955_i2c_id
,
1012 module_i2c_driver(wm8955_i2c_driver
);
1014 MODULE_DESCRIPTION("ASoC WM8955 driver");
1015 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
1016 MODULE_LICENSE("GPL");