2 * wm8350.c -- WM8350 ALSA SoC audio driver
4 * Copyright (C) 2007-12 Wolfson Microelectronics PLC.
6 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
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/slab.h>
17 #include <linux/delay.h>
19 #include <linux/platform_device.h>
20 #include <linux/mfd/wm8350/audio.h>
21 #include <linux/mfd/wm8350/core.h>
22 #include <linux/regulator/consumer.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
26 #include <sound/soc.h>
27 #include <sound/initval.h>
28 #include <sound/tlv.h>
29 #include <trace/events/asoc.h>
33 #define WM8350_OUTn_0dB 0x39
35 #define WM8350_RAMP_NONE 0
36 #define WM8350_RAMP_UP 1
37 #define WM8350_RAMP_DOWN 2
39 /* We only include the analogue supplies here; the digital supplies
40 * need to be available well before this driver can be probed.
42 static const char *supply_names[] = {
47 struct wm8350_output {
55 struct wm8350_jack_data {
56 struct snd_soc_jack *jack;
57 struct delayed_work work;
63 struct wm8350 *wm8350;
64 struct wm8350_output out1;
65 struct wm8350_output out2;
66 struct wm8350_jack_data hpl;
67 struct wm8350_jack_data hpr;
68 struct wm8350_jack_data mic;
69 struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)];
75 * Ramp OUT1 PGA volume to minimise pops at stream startup and shutdown.
77 static inline int wm8350_out1_ramp_step(struct snd_soc_codec *codec)
79 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
80 struct wm8350_output *out1 = &wm8350_data->out1;
81 struct wm8350 *wm8350 = wm8350_data->wm8350;
82 int left_complete = 0, right_complete = 0;
86 reg = wm8350_reg_read(wm8350, WM8350_LOUT1_VOLUME);
87 val = (reg & WM8350_OUT1L_VOL_MASK) >> WM8350_OUT1L_VOL_SHIFT;
89 if (out1->ramp == WM8350_RAMP_UP) {
91 if (val < out1->left_vol) {
93 reg &= ~WM8350_OUT1L_VOL_MASK;
94 wm8350_reg_write(wm8350, WM8350_LOUT1_VOLUME,
95 reg | (val << WM8350_OUT1L_VOL_SHIFT));
98 } else if (out1->ramp == WM8350_RAMP_DOWN) {
102 reg &= ~WM8350_OUT1L_VOL_MASK;
103 wm8350_reg_write(wm8350, WM8350_LOUT1_VOLUME,
104 reg | (val << WM8350_OUT1L_VOL_SHIFT));
111 reg = wm8350_reg_read(wm8350, WM8350_ROUT1_VOLUME);
112 val = (reg & WM8350_OUT1R_VOL_MASK) >> WM8350_OUT1R_VOL_SHIFT;
113 if (out1->ramp == WM8350_RAMP_UP) {
115 if (val < out1->right_vol) {
117 reg &= ~WM8350_OUT1R_VOL_MASK;
118 wm8350_reg_write(wm8350, WM8350_ROUT1_VOLUME,
119 reg | (val << WM8350_OUT1R_VOL_SHIFT));
122 } else if (out1->ramp == WM8350_RAMP_DOWN) {
126 reg &= ~WM8350_OUT1R_VOL_MASK;
127 wm8350_reg_write(wm8350, WM8350_ROUT1_VOLUME,
128 reg | (val << WM8350_OUT1R_VOL_SHIFT));
133 /* only hit the update bit if either volume has changed this step */
134 if (!left_complete || !right_complete)
135 wm8350_set_bits(wm8350, WM8350_LOUT1_VOLUME, WM8350_OUT1_VU);
137 return left_complete & right_complete;
141 * Ramp OUT2 PGA volume to minimise pops at stream startup and shutdown.
143 static inline int wm8350_out2_ramp_step(struct snd_soc_codec *codec)
145 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
146 struct wm8350_output *out2 = &wm8350_data->out2;
147 struct wm8350 *wm8350 = wm8350_data->wm8350;
148 int left_complete = 0, right_complete = 0;
152 reg = wm8350_reg_read(wm8350, WM8350_LOUT2_VOLUME);
153 val = (reg & WM8350_OUT2L_VOL_MASK) >> WM8350_OUT1L_VOL_SHIFT;
154 if (out2->ramp == WM8350_RAMP_UP) {
156 if (val < out2->left_vol) {
158 reg &= ~WM8350_OUT2L_VOL_MASK;
159 wm8350_reg_write(wm8350, WM8350_LOUT2_VOLUME,
160 reg | (val << WM8350_OUT1L_VOL_SHIFT));
163 } else if (out2->ramp == WM8350_RAMP_DOWN) {
167 reg &= ~WM8350_OUT2L_VOL_MASK;
168 wm8350_reg_write(wm8350, WM8350_LOUT2_VOLUME,
169 reg | (val << WM8350_OUT1L_VOL_SHIFT));
176 reg = wm8350_reg_read(wm8350, WM8350_ROUT2_VOLUME);
177 val = (reg & WM8350_OUT2R_VOL_MASK) >> WM8350_OUT1R_VOL_SHIFT;
178 if (out2->ramp == WM8350_RAMP_UP) {
180 if (val < out2->right_vol) {
182 reg &= ~WM8350_OUT2R_VOL_MASK;
183 wm8350_reg_write(wm8350, WM8350_ROUT2_VOLUME,
184 reg | (val << WM8350_OUT1R_VOL_SHIFT));
187 } else if (out2->ramp == WM8350_RAMP_DOWN) {
191 reg &= ~WM8350_OUT2R_VOL_MASK;
192 wm8350_reg_write(wm8350, WM8350_ROUT2_VOLUME,
193 reg | (val << WM8350_OUT1R_VOL_SHIFT));
198 /* only hit the update bit if either volume has changed this step */
199 if (!left_complete || !right_complete)
200 wm8350_set_bits(wm8350, WM8350_LOUT2_VOLUME, WM8350_OUT2_VU);
202 return left_complete & right_complete;
206 * This work ramps both output PGAs at stream start/stop time to
207 * minimise pop associated with DAPM power switching.
208 * It's best to enable Zero Cross when ramping occurs to minimise any
211 static void wm8350_pga_work(struct work_struct *work)
213 struct snd_soc_dapm_context *dapm =
214 container_of(work, struct snd_soc_dapm_context, delayed_work.work);
215 struct snd_soc_codec *codec = dapm->codec;
216 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
217 struct wm8350_output *out1 = &wm8350_data->out1,
218 *out2 = &wm8350_data->out2;
219 int i, out1_complete, out2_complete;
221 /* do we need to ramp at all ? */
222 if (out1->ramp == WM8350_RAMP_NONE && out2->ramp == WM8350_RAMP_NONE)
225 /* PGA volumes have 6 bits of resolution to ramp */
226 for (i = 0; i <= 63; i++) {
227 out1_complete = 1, out2_complete = 1;
228 if (out1->ramp != WM8350_RAMP_NONE)
229 out1_complete = wm8350_out1_ramp_step(codec);
230 if (out2->ramp != WM8350_RAMP_NONE)
231 out2_complete = wm8350_out2_ramp_step(codec);
233 /* ramp finished ? */
234 if (out1_complete && out2_complete)
237 /* we need to delay longer on the up ramp */
238 if (out1->ramp == WM8350_RAMP_UP ||
239 out2->ramp == WM8350_RAMP_UP) {
240 /* delay is longer over 0dB as increases are larger */
241 if (i >= WM8350_OUTn_0dB)
242 schedule_timeout_interruptible(msecs_to_jiffies
245 schedule_timeout_interruptible(msecs_to_jiffies
248 udelay(50); /* doesn't matter if we delay longer */
251 out1->ramp = WM8350_RAMP_NONE;
252 out2->ramp = WM8350_RAMP_NONE;
259 static int pga_event(struct snd_soc_dapm_widget *w,
260 struct snd_kcontrol *kcontrol, int event)
262 struct snd_soc_codec *codec = w->codec;
263 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
264 struct wm8350_output *out;
269 out = &wm8350_data->out1;
273 out = &wm8350_data->out2;
277 WARN(1, "Invalid shift %d\n", w->shift);
282 case SND_SOC_DAPM_POST_PMU:
283 out->ramp = WM8350_RAMP_UP;
286 schedule_delayed_work(&codec->dapm.delayed_work,
287 msecs_to_jiffies(1));
290 case SND_SOC_DAPM_PRE_PMD:
291 out->ramp = WM8350_RAMP_DOWN;
294 schedule_delayed_work(&codec->dapm.delayed_work,
295 msecs_to_jiffies(1));
302 static int wm8350_put_volsw_2r_vu(struct snd_kcontrol *kcontrol,
303 struct snd_ctl_elem_value *ucontrol)
305 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
306 struct wm8350_data *wm8350_priv = snd_soc_codec_get_drvdata(codec);
307 struct wm8350_output *out = NULL;
308 struct soc_mixer_control *mc =
309 (struct soc_mixer_control *)kcontrol->private_value;
311 unsigned int reg = mc->reg;
314 /* For OUT1 and OUT2 we shadow the values and only actually write
315 * them out when active in order to ensure the amplifier comes on
316 * as quietly as possible. */
318 case WM8350_LOUT1_VOLUME:
319 out = &wm8350_priv->out1;
321 case WM8350_LOUT2_VOLUME:
322 out = &wm8350_priv->out2;
329 out->left_vol = ucontrol->value.integer.value[0];
330 out->right_vol = ucontrol->value.integer.value[1];
335 ret = snd_soc_put_volsw(kcontrol, ucontrol);
339 /* now hit the volume update bits (always bit 8) */
340 val = snd_soc_read(codec, reg);
341 snd_soc_write(codec, reg, val | WM8350_OUT1_VU);
345 static int wm8350_get_volsw_2r(struct snd_kcontrol *kcontrol,
346 struct snd_ctl_elem_value *ucontrol)
348 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
349 struct wm8350_data *wm8350_priv = snd_soc_codec_get_drvdata(codec);
350 struct wm8350_output *out1 = &wm8350_priv->out1;
351 struct wm8350_output *out2 = &wm8350_priv->out2;
352 struct soc_mixer_control *mc =
353 (struct soc_mixer_control *)kcontrol->private_value;
354 unsigned int reg = mc->reg;
356 /* If these are cached registers use the cache */
358 case WM8350_LOUT1_VOLUME:
359 ucontrol->value.integer.value[0] = out1->left_vol;
360 ucontrol->value.integer.value[1] = out1->right_vol;
363 case WM8350_LOUT2_VOLUME:
364 ucontrol->value.integer.value[0] = out2->left_vol;
365 ucontrol->value.integer.value[1] = out2->right_vol;
372 return snd_soc_get_volsw(kcontrol, ucontrol);
375 static const char *wm8350_deemp[] = { "None", "32kHz", "44.1kHz", "48kHz" };
376 static const char *wm8350_pol[] = { "Normal", "Inv R", "Inv L", "Inv L & R" };
377 static const char *wm8350_dacmutem[] = { "Normal", "Soft" };
378 static const char *wm8350_dacmutes[] = { "Fast", "Slow" };
379 static const char *wm8350_adcfilter[] = { "None", "High Pass" };
380 static const char *wm8350_adchp[] = { "44.1kHz", "8kHz", "16kHz", "32kHz" };
381 static const char *wm8350_lr[] = { "Left", "Right" };
383 static const struct soc_enum wm8350_enum[] = {
384 SOC_ENUM_SINGLE(WM8350_DAC_CONTROL, 4, 4, wm8350_deemp),
385 SOC_ENUM_SINGLE(WM8350_DAC_CONTROL, 0, 4, wm8350_pol),
386 SOC_ENUM_SINGLE(WM8350_DAC_MUTE_VOLUME, 14, 2, wm8350_dacmutem),
387 SOC_ENUM_SINGLE(WM8350_DAC_MUTE_VOLUME, 13, 2, wm8350_dacmutes),
388 SOC_ENUM_SINGLE(WM8350_ADC_CONTROL, 15, 2, wm8350_adcfilter),
389 SOC_ENUM_SINGLE(WM8350_ADC_CONTROL, 8, 4, wm8350_adchp),
390 SOC_ENUM_SINGLE(WM8350_ADC_CONTROL, 0, 4, wm8350_pol),
391 SOC_ENUM_SINGLE(WM8350_INPUT_MIXER_VOLUME, 15, 2, wm8350_lr),
394 static DECLARE_TLV_DB_SCALE(pre_amp_tlv, -1200, 3525, 0);
395 static DECLARE_TLV_DB_SCALE(out_pga_tlv, -5700, 600, 0);
396 static DECLARE_TLV_DB_SCALE(dac_pcm_tlv, -7163, 36, 1);
397 static DECLARE_TLV_DB_SCALE(adc_pcm_tlv, -12700, 50, 1);
398 static DECLARE_TLV_DB_SCALE(out_mix_tlv, -1500, 300, 1);
400 static const unsigned int capture_sd_tlv[] = {
401 TLV_DB_RANGE_HEAD(2),
402 0, 12, TLV_DB_SCALE_ITEM(-3600, 300, 1),
403 13, 15, TLV_DB_SCALE_ITEM(0, 0, 0),
406 static const struct snd_kcontrol_new wm8350_snd_controls[] = {
407 SOC_ENUM("Playback Deemphasis", wm8350_enum[0]),
408 SOC_ENUM("Playback DAC Inversion", wm8350_enum[1]),
409 SOC_DOUBLE_R_EXT_TLV("Playback PCM Volume",
410 WM8350_DAC_DIGITAL_VOLUME_L,
411 WM8350_DAC_DIGITAL_VOLUME_R,
412 0, 255, 0, wm8350_get_volsw_2r,
413 wm8350_put_volsw_2r_vu, dac_pcm_tlv),
414 SOC_ENUM("Playback PCM Mute Function", wm8350_enum[2]),
415 SOC_ENUM("Playback PCM Mute Speed", wm8350_enum[3]),
416 SOC_ENUM("Capture PCM Filter", wm8350_enum[4]),
417 SOC_ENUM("Capture PCM HP Filter", wm8350_enum[5]),
418 SOC_ENUM("Capture ADC Inversion", wm8350_enum[6]),
419 SOC_DOUBLE_R_EXT_TLV("Capture PCM Volume",
420 WM8350_ADC_DIGITAL_VOLUME_L,
421 WM8350_ADC_DIGITAL_VOLUME_R,
422 0, 255, 0, wm8350_get_volsw_2r,
423 wm8350_put_volsw_2r_vu, adc_pcm_tlv),
424 SOC_DOUBLE_TLV("Capture Sidetone Volume",
426 8, 4, 15, 1, capture_sd_tlv),
427 SOC_DOUBLE_R_EXT_TLV("Capture Volume",
428 WM8350_LEFT_INPUT_VOLUME,
429 WM8350_RIGHT_INPUT_VOLUME,
430 2, 63, 0, wm8350_get_volsw_2r,
431 wm8350_put_volsw_2r_vu, pre_amp_tlv),
432 SOC_DOUBLE_R("Capture ZC Switch",
433 WM8350_LEFT_INPUT_VOLUME,
434 WM8350_RIGHT_INPUT_VOLUME, 13, 1, 0),
435 SOC_SINGLE_TLV("Left Input Left Sidetone Volume",
436 WM8350_OUTPUT_LEFT_MIXER_VOLUME, 1, 7, 0, out_mix_tlv),
437 SOC_SINGLE_TLV("Left Input Right Sidetone Volume",
438 WM8350_OUTPUT_LEFT_MIXER_VOLUME,
439 5, 7, 0, out_mix_tlv),
440 SOC_SINGLE_TLV("Left Input Bypass Volume",
441 WM8350_OUTPUT_LEFT_MIXER_VOLUME,
442 9, 7, 0, out_mix_tlv),
443 SOC_SINGLE_TLV("Right Input Left Sidetone Volume",
444 WM8350_OUTPUT_RIGHT_MIXER_VOLUME,
445 1, 7, 0, out_mix_tlv),
446 SOC_SINGLE_TLV("Right Input Right Sidetone Volume",
447 WM8350_OUTPUT_RIGHT_MIXER_VOLUME,
448 5, 7, 0, out_mix_tlv),
449 SOC_SINGLE_TLV("Right Input Bypass Volume",
450 WM8350_OUTPUT_RIGHT_MIXER_VOLUME,
451 13, 7, 0, out_mix_tlv),
452 SOC_SINGLE("Left Input Mixer +20dB Switch",
453 WM8350_INPUT_MIXER_VOLUME_L, 0, 1, 0),
454 SOC_SINGLE("Right Input Mixer +20dB Switch",
455 WM8350_INPUT_MIXER_VOLUME_R, 0, 1, 0),
456 SOC_SINGLE_TLV("Out4 Capture Volume",
457 WM8350_INPUT_MIXER_VOLUME,
458 1, 7, 0, out_mix_tlv),
459 SOC_DOUBLE_R_EXT_TLV("Out1 Playback Volume",
462 2, 63, 0, wm8350_get_volsw_2r,
463 wm8350_put_volsw_2r_vu, out_pga_tlv),
464 SOC_DOUBLE_R("Out1 Playback ZC Switch",
466 WM8350_ROUT1_VOLUME, 13, 1, 0),
467 SOC_DOUBLE_R_EXT_TLV("Out2 Playback Volume",
470 2, 63, 0, wm8350_get_volsw_2r,
471 wm8350_put_volsw_2r_vu, out_pga_tlv),
472 SOC_DOUBLE_R("Out2 Playback ZC Switch", WM8350_LOUT2_VOLUME,
473 WM8350_ROUT2_VOLUME, 13, 1, 0),
474 SOC_SINGLE("Out2 Right Invert Switch", WM8350_ROUT2_VOLUME, 10, 1, 0),
475 SOC_SINGLE_TLV("Out2 Beep Volume", WM8350_BEEP_VOLUME,
476 5, 7, 0, out_mix_tlv),
478 SOC_DOUBLE_R("Out1 Playback Switch",
482 SOC_DOUBLE_R("Out2 Playback Switch",
492 /* Left Playback Mixer */
493 static const struct snd_kcontrol_new wm8350_left_play_mixer_controls[] = {
494 SOC_DAPM_SINGLE("Playback Switch",
495 WM8350_LEFT_MIXER_CONTROL, 11, 1, 0),
496 SOC_DAPM_SINGLE("Left Bypass Switch",
497 WM8350_LEFT_MIXER_CONTROL, 2, 1, 0),
498 SOC_DAPM_SINGLE("Right Playback Switch",
499 WM8350_LEFT_MIXER_CONTROL, 12, 1, 0),
500 SOC_DAPM_SINGLE("Left Sidetone Switch",
501 WM8350_LEFT_MIXER_CONTROL, 0, 1, 0),
502 SOC_DAPM_SINGLE("Right Sidetone Switch",
503 WM8350_LEFT_MIXER_CONTROL, 1, 1, 0),
506 /* Right Playback Mixer */
507 static const struct snd_kcontrol_new wm8350_right_play_mixer_controls[] = {
508 SOC_DAPM_SINGLE("Playback Switch",
509 WM8350_RIGHT_MIXER_CONTROL, 12, 1, 0),
510 SOC_DAPM_SINGLE("Right Bypass Switch",
511 WM8350_RIGHT_MIXER_CONTROL, 3, 1, 0),
512 SOC_DAPM_SINGLE("Left Playback Switch",
513 WM8350_RIGHT_MIXER_CONTROL, 11, 1, 0),
514 SOC_DAPM_SINGLE("Left Sidetone Switch",
515 WM8350_RIGHT_MIXER_CONTROL, 0, 1, 0),
516 SOC_DAPM_SINGLE("Right Sidetone Switch",
517 WM8350_RIGHT_MIXER_CONTROL, 1, 1, 0),
521 static const struct snd_kcontrol_new wm8350_out4_mixer_controls[] = {
522 SOC_DAPM_SINGLE("Right Playback Switch",
523 WM8350_OUT4_MIXER_CONTROL, 12, 1, 0),
524 SOC_DAPM_SINGLE("Left Playback Switch",
525 WM8350_OUT4_MIXER_CONTROL, 11, 1, 0),
526 SOC_DAPM_SINGLE("Right Capture Switch",
527 WM8350_OUT4_MIXER_CONTROL, 9, 1, 0),
528 SOC_DAPM_SINGLE("Out3 Playback Switch",
529 WM8350_OUT4_MIXER_CONTROL, 2, 1, 0),
530 SOC_DAPM_SINGLE("Right Mixer Switch",
531 WM8350_OUT4_MIXER_CONTROL, 1, 1, 0),
532 SOC_DAPM_SINGLE("Left Mixer Switch",
533 WM8350_OUT4_MIXER_CONTROL, 0, 1, 0),
537 static const struct snd_kcontrol_new wm8350_out3_mixer_controls[] = {
538 SOC_DAPM_SINGLE("Left Playback Switch",
539 WM8350_OUT3_MIXER_CONTROL, 11, 1, 0),
540 SOC_DAPM_SINGLE("Left Capture Switch",
541 WM8350_OUT3_MIXER_CONTROL, 8, 1, 0),
542 SOC_DAPM_SINGLE("Out4 Playback Switch",
543 WM8350_OUT3_MIXER_CONTROL, 3, 1, 0),
544 SOC_DAPM_SINGLE("Left Mixer Switch",
545 WM8350_OUT3_MIXER_CONTROL, 0, 1, 0),
548 /* Left Input Mixer */
549 static const struct snd_kcontrol_new wm8350_left_capt_mixer_controls[] = {
550 SOC_DAPM_SINGLE_TLV("L2 Capture Volume",
551 WM8350_INPUT_MIXER_VOLUME_L, 1, 7, 0, out_mix_tlv),
552 SOC_DAPM_SINGLE_TLV("L3 Capture Volume",
553 WM8350_INPUT_MIXER_VOLUME_L, 9, 7, 0, out_mix_tlv),
554 SOC_DAPM_SINGLE("PGA Capture Switch",
555 WM8350_LEFT_INPUT_VOLUME, 14, 1, 1),
558 /* Right Input Mixer */
559 static const struct snd_kcontrol_new wm8350_right_capt_mixer_controls[] = {
560 SOC_DAPM_SINGLE_TLV("L2 Capture Volume",
561 WM8350_INPUT_MIXER_VOLUME_R, 5, 7, 0, out_mix_tlv),
562 SOC_DAPM_SINGLE_TLV("L3 Capture Volume",
563 WM8350_INPUT_MIXER_VOLUME_R, 13, 7, 0, out_mix_tlv),
564 SOC_DAPM_SINGLE("PGA Capture Switch",
565 WM8350_RIGHT_INPUT_VOLUME, 14, 1, 1),
569 static const struct snd_kcontrol_new wm8350_left_mic_mixer_controls[] = {
570 SOC_DAPM_SINGLE("INN Capture Switch", WM8350_INPUT_CONTROL, 1, 1, 0),
571 SOC_DAPM_SINGLE("INP Capture Switch", WM8350_INPUT_CONTROL, 0, 1, 0),
572 SOC_DAPM_SINGLE("IN2 Capture Switch", WM8350_INPUT_CONTROL, 2, 1, 0),
575 /* Right Mic Mixer */
576 static const struct snd_kcontrol_new wm8350_right_mic_mixer_controls[] = {
577 SOC_DAPM_SINGLE("INN Capture Switch", WM8350_INPUT_CONTROL, 9, 1, 0),
578 SOC_DAPM_SINGLE("INP Capture Switch", WM8350_INPUT_CONTROL, 8, 1, 0),
579 SOC_DAPM_SINGLE("IN2 Capture Switch", WM8350_INPUT_CONTROL, 10, 1, 0),
583 static const struct snd_kcontrol_new wm8350_beep_switch_controls =
584 SOC_DAPM_SINGLE("Switch", WM8350_BEEP_VOLUME, 15, 1, 1);
586 /* Out4 Capture Mux */
587 static const struct snd_kcontrol_new wm8350_out4_capture_controls =
588 SOC_DAPM_ENUM("Route", wm8350_enum[7]);
590 static const struct snd_soc_dapm_widget wm8350_dapm_widgets[] = {
592 SND_SOC_DAPM_PGA("IN3R PGA", WM8350_POWER_MGMT_2, 11, 0, NULL, 0),
593 SND_SOC_DAPM_PGA("IN3L PGA", WM8350_POWER_MGMT_2, 10, 0, NULL, 0),
594 SND_SOC_DAPM_PGA_E("Right Out2 PGA", WM8350_POWER_MGMT_3, 3, 0, NULL,
596 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
597 SND_SOC_DAPM_PGA_E("Left Out2 PGA", WM8350_POWER_MGMT_3, 2, 0, NULL, 0,
599 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
600 SND_SOC_DAPM_PGA_E("Right Out1 PGA", WM8350_POWER_MGMT_3, 1, 0, NULL,
602 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
603 SND_SOC_DAPM_PGA_E("Left Out1 PGA", WM8350_POWER_MGMT_3, 0, 0, NULL, 0,
605 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
607 SND_SOC_DAPM_MIXER("Right Capture Mixer", WM8350_POWER_MGMT_2,
608 7, 0, &wm8350_right_capt_mixer_controls[0],
609 ARRAY_SIZE(wm8350_right_capt_mixer_controls)),
611 SND_SOC_DAPM_MIXER("Left Capture Mixer", WM8350_POWER_MGMT_2,
612 6, 0, &wm8350_left_capt_mixer_controls[0],
613 ARRAY_SIZE(wm8350_left_capt_mixer_controls)),
615 SND_SOC_DAPM_MIXER("Out4 Mixer", WM8350_POWER_MGMT_2, 5, 0,
616 &wm8350_out4_mixer_controls[0],
617 ARRAY_SIZE(wm8350_out4_mixer_controls)),
619 SND_SOC_DAPM_MIXER("Out3 Mixer", WM8350_POWER_MGMT_2, 4, 0,
620 &wm8350_out3_mixer_controls[0],
621 ARRAY_SIZE(wm8350_out3_mixer_controls)),
623 SND_SOC_DAPM_MIXER("Right Playback Mixer", WM8350_POWER_MGMT_2, 1, 0,
624 &wm8350_right_play_mixer_controls[0],
625 ARRAY_SIZE(wm8350_right_play_mixer_controls)),
627 SND_SOC_DAPM_MIXER("Left Playback Mixer", WM8350_POWER_MGMT_2, 0, 0,
628 &wm8350_left_play_mixer_controls[0],
629 ARRAY_SIZE(wm8350_left_play_mixer_controls)),
631 SND_SOC_DAPM_MIXER("Left Mic Mixer", WM8350_POWER_MGMT_2, 8, 0,
632 &wm8350_left_mic_mixer_controls[0],
633 ARRAY_SIZE(wm8350_left_mic_mixer_controls)),
635 SND_SOC_DAPM_MIXER("Right Mic Mixer", WM8350_POWER_MGMT_2, 9, 0,
636 &wm8350_right_mic_mixer_controls[0],
637 ARRAY_SIZE(wm8350_right_mic_mixer_controls)),
639 /* virtual mixer for Beep and Out2R */
640 SND_SOC_DAPM_MIXER("Out2 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
642 SND_SOC_DAPM_SWITCH("Beep", WM8350_POWER_MGMT_3, 7, 0,
643 &wm8350_beep_switch_controls),
645 SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
646 WM8350_POWER_MGMT_4, 3, 0),
647 SND_SOC_DAPM_ADC("Left ADC", "Left Capture",
648 WM8350_POWER_MGMT_4, 2, 0),
649 SND_SOC_DAPM_DAC("Right DAC", "Right Playback",
650 WM8350_POWER_MGMT_4, 5, 0),
651 SND_SOC_DAPM_DAC("Left DAC", "Left Playback",
652 WM8350_POWER_MGMT_4, 4, 0),
654 SND_SOC_DAPM_MICBIAS("Mic Bias", WM8350_POWER_MGMT_1, 4, 0),
656 SND_SOC_DAPM_MUX("Out4 Capture Channel", SND_SOC_NOPM, 0, 0,
657 &wm8350_out4_capture_controls),
659 SND_SOC_DAPM_OUTPUT("OUT1R"),
660 SND_SOC_DAPM_OUTPUT("OUT1L"),
661 SND_SOC_DAPM_OUTPUT("OUT2R"),
662 SND_SOC_DAPM_OUTPUT("OUT2L"),
663 SND_SOC_DAPM_OUTPUT("OUT3"),
664 SND_SOC_DAPM_OUTPUT("OUT4"),
666 SND_SOC_DAPM_INPUT("IN1RN"),
667 SND_SOC_DAPM_INPUT("IN1RP"),
668 SND_SOC_DAPM_INPUT("IN2R"),
669 SND_SOC_DAPM_INPUT("IN1LP"),
670 SND_SOC_DAPM_INPUT("IN1LN"),
671 SND_SOC_DAPM_INPUT("IN2L"),
672 SND_SOC_DAPM_INPUT("IN3R"),
673 SND_SOC_DAPM_INPUT("IN3L"),
676 static const struct snd_soc_dapm_route wm8350_dapm_routes[] = {
678 /* left playback mixer */
679 {"Left Playback Mixer", "Playback Switch", "Left DAC"},
680 {"Left Playback Mixer", "Left Bypass Switch", "IN3L PGA"},
681 {"Left Playback Mixer", "Right Playback Switch", "Right DAC"},
682 {"Left Playback Mixer", "Left Sidetone Switch", "Left Mic Mixer"},
683 {"Left Playback Mixer", "Right Sidetone Switch", "Right Mic Mixer"},
685 /* right playback mixer */
686 {"Right Playback Mixer", "Playback Switch", "Right DAC"},
687 {"Right Playback Mixer", "Right Bypass Switch", "IN3R PGA"},
688 {"Right Playback Mixer", "Left Playback Switch", "Left DAC"},
689 {"Right Playback Mixer", "Left Sidetone Switch", "Left Mic Mixer"},
690 {"Right Playback Mixer", "Right Sidetone Switch", "Right Mic Mixer"},
692 /* out4 playback mixer */
693 {"Out4 Mixer", "Right Playback Switch", "Right DAC"},
694 {"Out4 Mixer", "Left Playback Switch", "Left DAC"},
695 {"Out4 Mixer", "Right Capture Switch", "Right Capture Mixer"},
696 {"Out4 Mixer", "Out3 Playback Switch", "Out3 Mixer"},
697 {"Out4 Mixer", "Right Mixer Switch", "Right Playback Mixer"},
698 {"Out4 Mixer", "Left Mixer Switch", "Left Playback Mixer"},
699 {"OUT4", NULL, "Out4 Mixer"},
701 /* out3 playback mixer */
702 {"Out3 Mixer", "Left Playback Switch", "Left DAC"},
703 {"Out3 Mixer", "Left Capture Switch", "Left Capture Mixer"},
704 {"Out3 Mixer", "Left Mixer Switch", "Left Playback Mixer"},
705 {"Out3 Mixer", "Out4 Playback Switch", "Out4 Mixer"},
706 {"OUT3", NULL, "Out3 Mixer"},
709 {"Right Out2 PGA", NULL, "Right Playback Mixer"},
710 {"Left Out2 PGA", NULL, "Left Playback Mixer"},
711 {"OUT2L", NULL, "Left Out2 PGA"},
712 {"OUT2R", NULL, "Right Out2 PGA"},
715 {"Right Out1 PGA", NULL, "Right Playback Mixer"},
716 {"Left Out1 PGA", NULL, "Left Playback Mixer"},
717 {"OUT1L", NULL, "Left Out1 PGA"},
718 {"OUT1R", NULL, "Right Out1 PGA"},
721 {"Left ADC", NULL, "Left Capture Mixer"},
722 {"Right ADC", NULL, "Right Capture Mixer"},
724 /* Left capture mixer */
725 {"Left Capture Mixer", "L2 Capture Volume", "IN2L"},
726 {"Left Capture Mixer", "L3 Capture Volume", "IN3L PGA"},
727 {"Left Capture Mixer", "PGA Capture Switch", "Left Mic Mixer"},
728 {"Left Capture Mixer", NULL, "Out4 Capture Channel"},
730 /* Right capture mixer */
731 {"Right Capture Mixer", "L2 Capture Volume", "IN2R"},
732 {"Right Capture Mixer", "L3 Capture Volume", "IN3R PGA"},
733 {"Right Capture Mixer", "PGA Capture Switch", "Right Mic Mixer"},
734 {"Right Capture Mixer", NULL, "Out4 Capture Channel"},
737 {"IN3L PGA", NULL, "IN3L"},
738 {"IN3R PGA", NULL, "IN3R"},
741 {"Left Mic Mixer", "INN Capture Switch", "IN1LN"},
742 {"Left Mic Mixer", "INP Capture Switch", "IN1LP"},
743 {"Left Mic Mixer", "IN2 Capture Switch", "IN2L"},
745 /* Right Mic mixer */
746 {"Right Mic Mixer", "INN Capture Switch", "IN1RN"},
747 {"Right Mic Mixer", "INP Capture Switch", "IN1RP"},
748 {"Right Mic Mixer", "IN2 Capture Switch", "IN2R"},
751 {"Out4 Capture Channel", NULL, "Out4 Mixer"},
754 {"Beep", NULL, "IN3R PGA"},
757 static int wm8350_set_dai_sysclk(struct snd_soc_dai *codec_dai,
758 int clk_id, unsigned int freq, int dir)
760 struct snd_soc_codec *codec = codec_dai->codec;
761 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
762 struct wm8350 *wm8350 = wm8350_data->wm8350;
766 case WM8350_MCLK_SEL_MCLK:
767 wm8350_clear_bits(wm8350, WM8350_CLOCK_CONTROL_1,
770 case WM8350_MCLK_SEL_PLL_MCLK:
771 case WM8350_MCLK_SEL_PLL_DAC:
772 case WM8350_MCLK_SEL_PLL_ADC:
773 case WM8350_MCLK_SEL_PLL_32K:
774 wm8350_set_bits(wm8350, WM8350_CLOCK_CONTROL_1,
776 fll_4 = snd_soc_read(codec, WM8350_FLL_CONTROL_4) &
777 ~WM8350_FLL_CLK_SRC_MASK;
778 snd_soc_write(codec, WM8350_FLL_CONTROL_4, fll_4 | clk_id);
783 if (dir == SND_SOC_CLOCK_OUT)
784 wm8350_set_bits(wm8350, WM8350_CLOCK_CONTROL_2,
787 wm8350_clear_bits(wm8350, WM8350_CLOCK_CONTROL_2,
793 static int wm8350_set_clkdiv(struct snd_soc_dai *codec_dai, int div_id, int div)
795 struct snd_soc_codec *codec = codec_dai->codec;
799 case WM8350_ADC_CLKDIV:
800 val = snd_soc_read(codec, WM8350_ADC_DIVIDER) &
801 ~WM8350_ADC_CLKDIV_MASK;
802 snd_soc_write(codec, WM8350_ADC_DIVIDER, val | div);
804 case WM8350_DAC_CLKDIV:
805 val = snd_soc_read(codec, WM8350_DAC_CLOCK_CONTROL) &
806 ~WM8350_DAC_CLKDIV_MASK;
807 snd_soc_write(codec, WM8350_DAC_CLOCK_CONTROL, val | div);
809 case WM8350_BCLK_CLKDIV:
810 val = snd_soc_read(codec, WM8350_CLOCK_CONTROL_1) &
811 ~WM8350_BCLK_DIV_MASK;
812 snd_soc_write(codec, WM8350_CLOCK_CONTROL_1, val | div);
814 case WM8350_OPCLK_CLKDIV:
815 val = snd_soc_read(codec, WM8350_CLOCK_CONTROL_1) &
816 ~WM8350_OPCLK_DIV_MASK;
817 snd_soc_write(codec, WM8350_CLOCK_CONTROL_1, val | div);
819 case WM8350_SYS_CLKDIV:
820 val = snd_soc_read(codec, WM8350_CLOCK_CONTROL_1) &
821 ~WM8350_MCLK_DIV_MASK;
822 snd_soc_write(codec, WM8350_CLOCK_CONTROL_1, val | div);
824 case WM8350_DACLR_CLKDIV:
825 val = snd_soc_read(codec, WM8350_DAC_LR_RATE) &
826 ~WM8350_DACLRC_RATE_MASK;
827 snd_soc_write(codec, WM8350_DAC_LR_RATE, val | div);
829 case WM8350_ADCLR_CLKDIV:
830 val = snd_soc_read(codec, WM8350_ADC_LR_RATE) &
831 ~WM8350_ADCLRC_RATE_MASK;
832 snd_soc_write(codec, WM8350_ADC_LR_RATE, val | div);
841 static int wm8350_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
843 struct snd_soc_codec *codec = codec_dai->codec;
844 u16 iface = snd_soc_read(codec, WM8350_AI_FORMATING) &
845 ~(WM8350_AIF_BCLK_INV | WM8350_AIF_LRCLK_INV | WM8350_AIF_FMT_MASK);
846 u16 master = snd_soc_read(codec, WM8350_AI_DAC_CONTROL) &
848 u16 dac_lrc = snd_soc_read(codec, WM8350_DAC_LR_RATE) &
850 u16 adc_lrc = snd_soc_read(codec, WM8350_ADC_LR_RATE) &
853 /* set master/slave audio interface */
854 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
855 case SND_SOC_DAIFMT_CBM_CFM:
856 master |= WM8350_BCLK_MSTR;
857 dac_lrc |= WM8350_DACLRC_ENA;
858 adc_lrc |= WM8350_ADCLRC_ENA;
860 case SND_SOC_DAIFMT_CBS_CFS:
866 /* interface format */
867 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
868 case SND_SOC_DAIFMT_I2S:
871 case SND_SOC_DAIFMT_RIGHT_J:
873 case SND_SOC_DAIFMT_LEFT_J:
876 case SND_SOC_DAIFMT_DSP_A:
879 case SND_SOC_DAIFMT_DSP_B:
880 iface |= 0x3 << 8 | WM8350_AIF_LRCLK_INV;
886 /* clock inversion */
887 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
888 case SND_SOC_DAIFMT_NB_NF:
890 case SND_SOC_DAIFMT_IB_IF:
891 iface |= WM8350_AIF_LRCLK_INV | WM8350_AIF_BCLK_INV;
893 case SND_SOC_DAIFMT_IB_NF:
894 iface |= WM8350_AIF_BCLK_INV;
896 case SND_SOC_DAIFMT_NB_IF:
897 iface |= WM8350_AIF_LRCLK_INV;
903 snd_soc_write(codec, WM8350_AI_FORMATING, iface);
904 snd_soc_write(codec, WM8350_AI_DAC_CONTROL, master);
905 snd_soc_write(codec, WM8350_DAC_LR_RATE, dac_lrc);
906 snd_soc_write(codec, WM8350_ADC_LR_RATE, adc_lrc);
910 static int wm8350_pcm_hw_params(struct snd_pcm_substream *substream,
911 struct snd_pcm_hw_params *params,
912 struct snd_soc_dai *codec_dai)
914 struct snd_soc_codec *codec = codec_dai->codec;
915 struct wm8350_data *wm8350_data = snd_soc_codec_get_drvdata(codec);
916 struct wm8350 *wm8350 = wm8350_data->wm8350;
917 u16 iface = snd_soc_read(codec, WM8350_AI_FORMATING) &
921 switch (params_format(params)) {
922 case SNDRV_PCM_FORMAT_S16_LE:
924 case SNDRV_PCM_FORMAT_S20_3LE:
927 case SNDRV_PCM_FORMAT_S24_LE:
930 case SNDRV_PCM_FORMAT_S32_LE:
935 snd_soc_write(codec, WM8350_AI_FORMATING, iface);
937 /* The sloping stopband filter is recommended for use with
938 * lower sample rates to improve performance.
940 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
941 if (params_rate(params) < 24000)
942 wm8350_set_bits(wm8350, WM8350_DAC_MUTE_VOLUME,
945 wm8350_clear_bits(wm8350, WM8350_DAC_MUTE_VOLUME,
952 static int wm8350_mute(struct snd_soc_dai *dai, int mute)
954 struct snd_soc_codec *codec = dai->codec;
958 val = WM8350_DAC_MUTE_ENA;
962 snd_soc_update_bits(codec, WM8350_DAC_MUTE, WM8350_DAC_MUTE_ENA, val);
969 int div; /* FLL_OUTDIV */
972 int ratio; /* FLL_FRATIO */
975 /* The size in bits of the fll divide multiplied by 10
976 * to allow rounding later */
977 #define FIXED_FLL_SIZE ((1 << 16) * 10)
979 static inline int fll_factors(struct _fll_div *fll_div, unsigned int input,
983 unsigned int t1, t2, K, Nmod;
985 if (output >= 2815250 && output <= 3125000)
987 else if (output >= 5625000 && output <= 6250000)
989 else if (output >= 11250000 && output <= 12500000)
991 else if (output >= 22500000 && output <= 25000000)
994 printk(KERN_ERR "wm8350: fll freq %d out of range\n", output);
1003 t1 = output * (1 << (fll_div->div + 1));
1004 t2 = input * fll_div->ratio;
1006 fll_div->n = t1 / t2;
1010 Kpart = FIXED_FLL_SIZE * (long long)Nmod;
1012 K = Kpart & 0xFFFFFFFF;
1014 /* Check if we need to round */
1018 /* Move down to proper range now rounding is done */
1027 static int wm8350_set_fll(struct snd_soc_dai *codec_dai,
1028 int pll_id, int source, unsigned int freq_in,
1029 unsigned int freq_out)
1031 struct snd_soc_codec *codec = codec_dai->codec;
1032 struct wm8350_data *priv = snd_soc_codec_get_drvdata(codec);
1033 struct wm8350 *wm8350 = priv->wm8350;
1034 struct _fll_div fll_div;
1038 if (freq_in == priv->fll_freq_in && freq_out == priv->fll_freq_out)
1041 /* power down FLL - we need to do this for reconfiguration */
1042 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_4,
1043 WM8350_FLL_ENA | WM8350_FLL_OSC_ENA);
1045 if (freq_out == 0 || freq_in == 0)
1048 ret = fll_factors(&fll_div, freq_in, freq_out);
1051 dev_dbg(wm8350->dev,
1052 "FLL in %u FLL out %u N 0x%x K 0x%x div %d ratio %d",
1053 freq_in, freq_out, fll_div.n, fll_div.k, fll_div.div,
1056 /* set up N.K & dividers */
1057 fll_1 = snd_soc_read(codec, WM8350_FLL_CONTROL_1) &
1058 ~(WM8350_FLL_OUTDIV_MASK | WM8350_FLL_RSP_RATE_MASK | 0xc000);
1059 snd_soc_write(codec, WM8350_FLL_CONTROL_1,
1060 fll_1 | (fll_div.div << 8) | 0x50);
1061 snd_soc_write(codec, WM8350_FLL_CONTROL_2,
1062 (fll_div.ratio << 11) | (fll_div.
1063 n & WM8350_FLL_N_MASK));
1064 snd_soc_write(codec, WM8350_FLL_CONTROL_3, fll_div.k);
1065 fll_4 = snd_soc_read(codec, WM8350_FLL_CONTROL_4) &
1066 ~(WM8350_FLL_FRAC | WM8350_FLL_SLOW_LOCK_REF);
1067 snd_soc_write(codec, WM8350_FLL_CONTROL_4,
1068 fll_4 | (fll_div.k ? WM8350_FLL_FRAC : 0) |
1069 (fll_div.ratio == 8 ? WM8350_FLL_SLOW_LOCK_REF : 0));
1072 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_4, WM8350_FLL_OSC_ENA);
1073 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_4, WM8350_FLL_ENA);
1075 priv->fll_freq_out = freq_out;
1076 priv->fll_freq_in = freq_in;
1081 static int wm8350_set_bias_level(struct snd_soc_codec *codec,
1082 enum snd_soc_bias_level level)
1084 struct wm8350_data *priv = snd_soc_codec_get_drvdata(codec);
1085 struct wm8350 *wm8350 = priv->wm8350;
1086 struct wm8350_audio_platform_data *platform =
1087 wm8350->codec.platform_data;
1092 case SND_SOC_BIAS_ON:
1093 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1) &
1094 ~(WM8350_VMID_MASK | WM8350_CODEC_ISEL_MASK);
1095 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1096 pm1 | WM8350_VMID_50K |
1097 platform->codec_current_on << 14);
1100 case SND_SOC_BIAS_PREPARE:
1101 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1);
1102 pm1 &= ~WM8350_VMID_MASK;
1103 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1104 pm1 | WM8350_VMID_50K);
1107 case SND_SOC_BIAS_STANDBY:
1108 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
1109 ret = regulator_bulk_enable(ARRAY_SIZE(priv->supplies),
1114 /* Enable the system clock */
1115 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_4,
1118 /* mute DAC & outputs */
1119 wm8350_set_bits(wm8350, WM8350_DAC_MUTE,
1120 WM8350_DAC_MUTE_ENA);
1122 /* discharge cap memory */
1123 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL,
1124 platform->dis_out1 |
1125 (platform->dis_out2 << 2) |
1126 (platform->dis_out3 << 4) |
1127 (platform->dis_out4 << 6));
1129 /* wait for discharge */
1130 schedule_timeout_interruptible(msecs_to_jiffies
1132 cap_discharge_msecs));
1134 /* enable antipop */
1135 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL,
1136 (platform->vmid_s_curve << 8));
1139 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1141 codec_current_charge << 14) |
1142 WM8350_VMID_5K | WM8350_VMIDEN |
1146 schedule_timeout_interruptible(msecs_to_jiffies
1148 vmid_charge_msecs));
1150 /* turn on vmid 300k */
1151 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1) &
1152 ~(WM8350_VMID_MASK | WM8350_CODEC_ISEL_MASK);
1153 pm1 |= WM8350_VMID_300K |
1154 (platform->codec_current_standby << 14);
1155 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1159 /* enable analogue bias */
1160 pm1 |= WM8350_BIASEN;
1161 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1, pm1);
1163 /* disable antipop */
1164 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL, 0);
1167 /* turn on vmid 300k and reduce current */
1168 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1) &
1169 ~(WM8350_VMID_MASK | WM8350_CODEC_ISEL_MASK);
1170 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1171 pm1 | WM8350_VMID_300K |
1173 codec_current_standby << 14));
1178 case SND_SOC_BIAS_OFF:
1180 /* mute DAC & enable outputs */
1181 wm8350_set_bits(wm8350, WM8350_DAC_MUTE, WM8350_DAC_MUTE_ENA);
1183 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_3,
1184 WM8350_OUT1L_ENA | WM8350_OUT1R_ENA |
1185 WM8350_OUT2L_ENA | WM8350_OUT2R_ENA);
1187 /* enable anti pop S curve */
1188 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL,
1189 (platform->vmid_s_curve << 8));
1192 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1) &
1194 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1, pm1);
1197 schedule_timeout_interruptible(msecs_to_jiffies
1199 vmid_discharge_msecs));
1201 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL,
1202 (platform->vmid_s_curve << 8) |
1203 platform->dis_out1 |
1204 (platform->dis_out2 << 2) |
1205 (platform->dis_out3 << 4) |
1206 (platform->dis_out4 << 6));
1208 /* turn off VBuf and drain */
1209 pm1 = wm8350_reg_read(wm8350, WM8350_POWER_MGMT_1) &
1210 ~(WM8350_VBUFEN | WM8350_VMID_MASK);
1211 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1,
1212 pm1 | WM8350_OUTPUT_DRAIN_EN);
1215 schedule_timeout_interruptible(msecs_to_jiffies
1216 (platform->drain_msecs));
1218 pm1 &= ~WM8350_BIASEN;
1219 wm8350_reg_write(wm8350, WM8350_POWER_MGMT_1, pm1);
1221 /* disable anti-pop */
1222 wm8350_reg_write(wm8350, WM8350_ANTI_POP_CONTROL, 0);
1224 wm8350_clear_bits(wm8350, WM8350_LOUT1_VOLUME,
1226 wm8350_clear_bits(wm8350, WM8350_ROUT1_VOLUME,
1228 wm8350_clear_bits(wm8350, WM8350_LOUT2_VOLUME,
1230 wm8350_clear_bits(wm8350, WM8350_ROUT2_VOLUME,
1233 /* disable clock gen */
1234 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_4,
1237 regulator_bulk_disable(ARRAY_SIZE(priv->supplies),
1241 codec->dapm.bias_level = level;
1245 static int wm8350_suspend(struct snd_soc_codec *codec)
1247 wm8350_set_bias_level(codec, SND_SOC_BIAS_OFF);
1251 static int wm8350_resume(struct snd_soc_codec *codec)
1253 wm8350_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1258 static void wm8350_hp_work(struct wm8350_data *priv,
1259 struct wm8350_jack_data *jack,
1262 struct wm8350 *wm8350 = priv->wm8350;
1266 reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS);
1268 report = jack->report;
1272 snd_soc_jack_report(jack->jack, report, jack->report);
1276 static void wm8350_hpl_work(struct work_struct *work)
1278 struct wm8350_data *priv =
1279 container_of(work, struct wm8350_data, hpl.work.work);
1281 wm8350_hp_work(priv, &priv->hpl, WM8350_JACK_L_LVL);
1284 static void wm8350_hpr_work(struct work_struct *work)
1286 struct wm8350_data *priv =
1287 container_of(work, struct wm8350_data, hpr.work.work);
1289 wm8350_hp_work(priv, &priv->hpr, WM8350_JACK_R_LVL);
1292 static irqreturn_t wm8350_hpl_jack_handler(int irq, void *data)
1294 struct wm8350_data *priv = data;
1295 struct wm8350 *wm8350 = priv->wm8350;
1297 #ifndef CONFIG_SND_SOC_WM8350_MODULE
1298 trace_snd_soc_jack_irq("WM8350 HPL");
1301 if (device_may_wakeup(wm8350->dev))
1302 pm_wakeup_event(wm8350->dev, 250);
1304 queue_delayed_work(system_power_efficient_wq,
1305 &priv->hpl.work, msecs_to_jiffies(200));
1310 static irqreturn_t wm8350_hpr_jack_handler(int irq, void *data)
1312 struct wm8350_data *priv = data;
1313 struct wm8350 *wm8350 = priv->wm8350;
1315 #ifndef CONFIG_SND_SOC_WM8350_MODULE
1316 trace_snd_soc_jack_irq("WM8350 HPR");
1319 if (device_may_wakeup(wm8350->dev))
1320 pm_wakeup_event(wm8350->dev, 250);
1322 queue_delayed_work(system_power_efficient_wq,
1323 &priv->hpr.work, msecs_to_jiffies(200));
1329 * wm8350_hp_jack_detect - Enable headphone jack detection.
1331 * @codec: WM8350 codec
1332 * @which: left or right jack detect signal
1333 * @jack: jack to report detection events on
1334 * @report: value to report
1336 * Enables the headphone jack detection of the WM8350. If no report
1337 * is specified then detection is disabled.
1339 int wm8350_hp_jack_detect(struct snd_soc_codec *codec, enum wm8350_jack which,
1340 struct snd_soc_jack *jack, int report)
1342 struct wm8350_data *priv = snd_soc_codec_get_drvdata(codec);
1343 struct wm8350 *wm8350 = priv->wm8350;
1349 priv->hpl.jack = jack;
1350 priv->hpl.report = report;
1351 irq = WM8350_IRQ_CODEC_JCK_DET_L;
1352 ena = WM8350_JDL_ENA;
1356 priv->hpr.jack = jack;
1357 priv->hpr.report = report;
1358 irq = WM8350_IRQ_CODEC_JCK_DET_R;
1359 ena = WM8350_JDR_ENA;
1367 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_4, WM8350_TOCLK_ENA);
1368 wm8350_set_bits(wm8350, WM8350_JACK_DETECT, ena);
1370 wm8350_clear_bits(wm8350, WM8350_JACK_DETECT, ena);
1376 wm8350_hpl_jack_handler(0, priv);
1379 wm8350_hpr_jack_handler(0, priv);
1385 EXPORT_SYMBOL_GPL(wm8350_hp_jack_detect);
1387 static irqreturn_t wm8350_mic_handler(int irq, void *data)
1389 struct wm8350_data *priv = data;
1390 struct wm8350 *wm8350 = priv->wm8350;
1394 #ifndef CONFIG_SND_SOC_WM8350_MODULE
1395 trace_snd_soc_jack_irq("WM8350 mic");
1398 reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS);
1399 if (reg & WM8350_JACK_MICSCD_LVL)
1400 report |= priv->mic.short_report;
1401 if (reg & WM8350_JACK_MICSD_LVL)
1402 report |= priv->mic.report;
1404 snd_soc_jack_report(priv->mic.jack, report,
1405 priv->mic.report | priv->mic.short_report);
1411 * wm8350_mic_jack_detect - Enable microphone jack detection.
1413 * @codec: WM8350 codec
1414 * @jack: jack to report detection events on
1415 * @detect_report: value to report when presence detected
1416 * @short_report: value to report when microphone short detected
1418 * Enables the microphone jack detection of the WM8350. If both reports
1419 * are specified as zero then detection is disabled.
1421 int wm8350_mic_jack_detect(struct snd_soc_codec *codec,
1422 struct snd_soc_jack *jack,
1423 int detect_report, int short_report)
1425 struct wm8350_data *priv = snd_soc_codec_get_drvdata(codec);
1426 struct wm8350 *wm8350 = priv->wm8350;
1428 priv->mic.jack = jack;
1429 priv->mic.report = detect_report;
1430 priv->mic.short_report = short_report;
1432 if (detect_report || short_report) {
1433 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_4, WM8350_TOCLK_ENA);
1434 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_1,
1435 WM8350_MIC_DET_ENA);
1437 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_1,
1438 WM8350_MIC_DET_ENA);
1443 EXPORT_SYMBOL_GPL(wm8350_mic_jack_detect);
1445 #define WM8350_RATES (SNDRV_PCM_RATE_8000_96000)
1447 #define WM8350_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
1448 SNDRV_PCM_FMTBIT_S20_3LE |\
1449 SNDRV_PCM_FMTBIT_S24_LE)
1451 static const struct snd_soc_dai_ops wm8350_dai_ops = {
1452 .hw_params = wm8350_pcm_hw_params,
1453 .digital_mute = wm8350_mute,
1454 .set_fmt = wm8350_set_dai_fmt,
1455 .set_sysclk = wm8350_set_dai_sysclk,
1456 .set_pll = wm8350_set_fll,
1457 .set_clkdiv = wm8350_set_clkdiv,
1460 static struct snd_soc_dai_driver wm8350_dai = {
1461 .name = "wm8350-hifi",
1463 .stream_name = "Playback",
1466 .rates = WM8350_RATES,
1467 .formats = WM8350_FORMATS,
1470 .stream_name = "Capture",
1473 .rates = WM8350_RATES,
1474 .formats = WM8350_FORMATS,
1476 .ops = &wm8350_dai_ops,
1479 static int wm8350_codec_probe(struct snd_soc_codec *codec)
1481 struct wm8350 *wm8350 = dev_get_platdata(codec->dev);
1482 struct wm8350_data *priv;
1483 struct wm8350_output *out1;
1484 struct wm8350_output *out2;
1487 if (wm8350->codec.platform_data == NULL) {
1488 dev_err(codec->dev, "No audio platform data supplied\n");
1492 priv = devm_kzalloc(codec->dev, sizeof(struct wm8350_data),
1496 snd_soc_codec_set_drvdata(codec, priv);
1498 priv->wm8350 = wm8350;
1500 for (i = 0; i < ARRAY_SIZE(supply_names); i++)
1501 priv->supplies[i].supply = supply_names[i];
1503 ret = devm_regulator_bulk_get(wm8350->dev, ARRAY_SIZE(priv->supplies),
1508 codec->control_data = wm8350->regmap;
1510 snd_soc_codec_set_cache_io(codec, 8, 16, SND_SOC_REGMAP);
1512 /* Put the codec into reset if it wasn't already */
1513 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA);
1515 INIT_DELAYED_WORK(&codec->dapm.delayed_work, wm8350_pga_work);
1516 INIT_DELAYED_WORK(&priv->hpl.work, wm8350_hpl_work);
1517 INIT_DELAYED_WORK(&priv->hpr.work, wm8350_hpr_work);
1519 /* Enable the codec */
1520 wm8350_set_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA);
1522 /* Enable robust clocking mode in ADC */
1523 snd_soc_write(codec, WM8350_SECURITY, 0xa7);
1524 snd_soc_write(codec, 0xde, 0x13);
1525 snd_soc_write(codec, WM8350_SECURITY, 0);
1527 /* read OUT1 & OUT2 volumes */
1530 out1->left_vol = (wm8350_reg_read(wm8350, WM8350_LOUT1_VOLUME) &
1531 WM8350_OUT1L_VOL_MASK) >> WM8350_OUT1L_VOL_SHIFT;
1532 out1->right_vol = (wm8350_reg_read(wm8350, WM8350_ROUT1_VOLUME) &
1533 WM8350_OUT1R_VOL_MASK) >> WM8350_OUT1R_VOL_SHIFT;
1534 out2->left_vol = (wm8350_reg_read(wm8350, WM8350_LOUT2_VOLUME) &
1535 WM8350_OUT2L_VOL_MASK) >> WM8350_OUT1L_VOL_SHIFT;
1536 out2->right_vol = (wm8350_reg_read(wm8350, WM8350_ROUT2_VOLUME) &
1537 WM8350_OUT2R_VOL_MASK) >> WM8350_OUT1R_VOL_SHIFT;
1538 wm8350_reg_write(wm8350, WM8350_LOUT1_VOLUME, 0);
1539 wm8350_reg_write(wm8350, WM8350_ROUT1_VOLUME, 0);
1540 wm8350_reg_write(wm8350, WM8350_LOUT2_VOLUME, 0);
1541 wm8350_reg_write(wm8350, WM8350_ROUT2_VOLUME, 0);
1543 /* Latch VU bits & mute */
1544 wm8350_set_bits(wm8350, WM8350_LOUT1_VOLUME,
1545 WM8350_OUT1_VU | WM8350_OUT1L_MUTE);
1546 wm8350_set_bits(wm8350, WM8350_LOUT2_VOLUME,
1547 WM8350_OUT2_VU | WM8350_OUT2L_MUTE);
1548 wm8350_set_bits(wm8350, WM8350_ROUT1_VOLUME,
1549 WM8350_OUT1_VU | WM8350_OUT1R_MUTE);
1550 wm8350_set_bits(wm8350, WM8350_ROUT2_VOLUME,
1551 WM8350_OUT2_VU | WM8350_OUT2R_MUTE);
1553 /* Make sure AIF tristating is disabled by default */
1554 wm8350_clear_bits(wm8350, WM8350_AI_FORMATING, WM8350_AIF_TRI);
1556 /* Make sure we've got a sane companding setup too */
1557 wm8350_clear_bits(wm8350, WM8350_ADC_DAC_COMP,
1558 WM8350_DAC_COMP | WM8350_LOOPBACK);
1560 /* Make sure jack detect is disabled to start off with */
1561 wm8350_clear_bits(wm8350, WM8350_JACK_DETECT,
1562 WM8350_JDL_ENA | WM8350_JDR_ENA);
1564 wm8350_register_irq(wm8350, WM8350_IRQ_CODEC_JCK_DET_L,
1565 wm8350_hpl_jack_handler, 0, "Left jack detect",
1567 wm8350_register_irq(wm8350, WM8350_IRQ_CODEC_JCK_DET_R,
1568 wm8350_hpr_jack_handler, 0, "Right jack detect",
1570 wm8350_register_irq(wm8350, WM8350_IRQ_CODEC_MICSCD,
1571 wm8350_mic_handler, 0, "Microphone short", priv);
1572 wm8350_register_irq(wm8350, WM8350_IRQ_CODEC_MICD,
1573 wm8350_mic_handler, 0, "Microphone detect", priv);
1576 wm8350_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1581 static int wm8350_codec_remove(struct snd_soc_codec *codec)
1583 struct wm8350_data *priv = snd_soc_codec_get_drvdata(codec);
1584 struct wm8350 *wm8350 = dev_get_platdata(codec->dev);
1586 wm8350_clear_bits(wm8350, WM8350_JACK_DETECT,
1587 WM8350_JDL_ENA | WM8350_JDR_ENA);
1588 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_4, WM8350_TOCLK_ENA);
1590 wm8350_free_irq(wm8350, WM8350_IRQ_CODEC_MICD, priv);
1591 wm8350_free_irq(wm8350, WM8350_IRQ_CODEC_MICSCD, priv);
1592 wm8350_free_irq(wm8350, WM8350_IRQ_CODEC_JCK_DET_L, priv);
1593 wm8350_free_irq(wm8350, WM8350_IRQ_CODEC_JCK_DET_R, priv);
1595 priv->hpl.jack = NULL;
1596 priv->hpr.jack = NULL;
1597 priv->mic.jack = NULL;
1599 cancel_delayed_work_sync(&priv->hpl.work);
1600 cancel_delayed_work_sync(&priv->hpr.work);
1602 /* if there was any work waiting then we run it now and
1603 * wait for its completion */
1604 flush_delayed_work(&codec->dapm.delayed_work);
1606 wm8350_set_bias_level(codec, SND_SOC_BIAS_OFF);
1608 wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA);
1613 static struct snd_soc_codec_driver soc_codec_dev_wm8350 = {
1614 .probe = wm8350_codec_probe,
1615 .remove = wm8350_codec_remove,
1616 .suspend = wm8350_suspend,
1617 .resume = wm8350_resume,
1618 .set_bias_level = wm8350_set_bias_level,
1620 .controls = wm8350_snd_controls,
1621 .num_controls = ARRAY_SIZE(wm8350_snd_controls),
1622 .dapm_widgets = wm8350_dapm_widgets,
1623 .num_dapm_widgets = ARRAY_SIZE(wm8350_dapm_widgets),
1624 .dapm_routes = wm8350_dapm_routes,
1625 .num_dapm_routes = ARRAY_SIZE(wm8350_dapm_routes),
1628 static int wm8350_probe(struct platform_device *pdev)
1630 return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_wm8350,
1634 static int wm8350_remove(struct platform_device *pdev)
1636 snd_soc_unregister_codec(&pdev->dev);
1640 static struct platform_driver wm8350_codec_driver = {
1642 .name = "wm8350-codec",
1643 .owner = THIS_MODULE,
1645 .probe = wm8350_probe,
1646 .remove = wm8350_remove,
1649 module_platform_driver(wm8350_codec_driver);
1651 MODULE_DESCRIPTION("ASoC WM8350 driver");
1652 MODULE_AUTHOR("Liam Girdwood");
1653 MODULE_LICENSE("GPL");
1654 MODULE_ALIAS("platform:wm8350-codec");