1 // SPDX-License-Identifier: GPL-2.0+
3 // Tobermory audio support
5 // Copyright 2011 Wolfson Microelectronics
8 #include <sound/soc-dapm.h>
9 #include <sound/jack.h>
10 #include <linux/gpio.h>
11 #include <linux/module.h>
13 #include "../codecs/wm8962.h"
15 static int sample_rate
= 44100;
17 static int tobermory_set_bias_level(struct snd_soc_card
*card
,
18 struct snd_soc_dapm_context
*dapm
,
19 enum snd_soc_bias_level level
)
21 struct snd_soc_pcm_runtime
*rtd
;
22 struct snd_soc_dai
*codec_dai
;
25 rtd
= snd_soc_get_pcm_runtime(card
, &card
->dai_link
[0]);
26 codec_dai
= asoc_rtd_to_codec(rtd
, 0);
28 if (dapm
->dev
!= codec_dai
->dev
)
32 case SND_SOC_BIAS_PREPARE
:
33 if (dapm
->bias_level
== SND_SOC_BIAS_STANDBY
) {
34 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
35 WM8962_FLL_MCLK
, 32768,
38 pr_err("Failed to start FLL: %d\n", ret
);
40 ret
= snd_soc_dai_set_sysclk(codec_dai
,
45 pr_err("Failed to set SYSCLK: %d\n", ret
);
46 snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
60 static int tobermory_set_bias_level_post(struct snd_soc_card
*card
,
61 struct snd_soc_dapm_context
*dapm
,
62 enum snd_soc_bias_level level
)
64 struct snd_soc_pcm_runtime
*rtd
;
65 struct snd_soc_dai
*codec_dai
;
68 rtd
= snd_soc_get_pcm_runtime(card
, &card
->dai_link
[0]);
69 codec_dai
= asoc_rtd_to_codec(rtd
, 0);
71 if (dapm
->dev
!= codec_dai
->dev
)
75 case SND_SOC_BIAS_STANDBY
:
76 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
77 32768, SND_SOC_CLOCK_IN
);
79 pr_err("Failed to switch away from FLL: %d\n", ret
);
83 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
86 pr_err("Failed to stop FLL: %d\n", ret
);
95 dapm
->bias_level
= level
;
100 static int tobermory_hw_params(struct snd_pcm_substream
*substream
,
101 struct snd_pcm_hw_params
*params
)
103 sample_rate
= params_rate(params
);
108 static struct snd_soc_ops tobermory_ops
= {
109 .hw_params
= tobermory_hw_params
,
112 SND_SOC_DAILINK_DEFS(cpu
,
113 DAILINK_COMP_ARRAY(COMP_CPU("samsung-i2s.0")),
114 DAILINK_COMP_ARRAY(COMP_CODEC("wm8962.1-001a", "wm8962")),
115 DAILINK_COMP_ARRAY(COMP_PLATFORM("samsung-i2s.0")));
117 static struct snd_soc_dai_link tobermory_dai
[] = {
120 .stream_name
= "CPU",
121 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
122 | SND_SOC_DAIFMT_CBM_CFM
,
123 .ops
= &tobermory_ops
,
124 SND_SOC_DAILINK_REG(cpu
),
128 static const struct snd_kcontrol_new controls
[] = {
129 SOC_DAPM_PIN_SWITCH("Main Speaker"),
130 SOC_DAPM_PIN_SWITCH("DMIC"),
133 static struct snd_soc_dapm_widget widgets
[] = {
134 SND_SOC_DAPM_HP("Headphone", NULL
),
135 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
137 SND_SOC_DAPM_MIC("DMIC", NULL
),
138 SND_SOC_DAPM_MIC("AMIC", NULL
),
140 SND_SOC_DAPM_SPK("Main Speaker", NULL
),
143 static struct snd_soc_dapm_route audio_paths
[] = {
144 { "Headphone", NULL
, "HPOUTL" },
145 { "Headphone", NULL
, "HPOUTR" },
147 { "Main Speaker", NULL
, "SPKOUTL" },
148 { "Main Speaker", NULL
, "SPKOUTR" },
150 { "Headset Mic", NULL
, "MICBIAS" },
151 { "IN4L", NULL
, "Headset Mic" },
152 { "IN4R", NULL
, "Headset Mic" },
154 { "AMIC", NULL
, "MICBIAS" },
155 { "IN1L", NULL
, "AMIC" },
156 { "IN1R", NULL
, "AMIC" },
158 { "DMIC", NULL
, "MICBIAS" },
159 { "DMICDAT", NULL
, "DMIC" },
162 static struct snd_soc_jack tobermory_headset
;
164 /* Headset jack detection DAPM pins */
165 static struct snd_soc_jack_pin tobermory_headset_pins
[] = {
167 .pin
= "Headset Mic",
168 .mask
= SND_JACK_MICROPHONE
,
172 .mask
= SND_JACK_MICROPHONE
,
176 static int tobermory_late_probe(struct snd_soc_card
*card
)
178 struct snd_soc_pcm_runtime
*rtd
;
179 struct snd_soc_component
*component
;
180 struct snd_soc_dai
*codec_dai
;
183 rtd
= snd_soc_get_pcm_runtime(card
, &card
->dai_link
[0]);
184 component
= asoc_rtd_to_codec(rtd
, 0)->component
;
185 codec_dai
= asoc_rtd_to_codec(rtd
, 0);
187 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
188 32768, SND_SOC_CLOCK_IN
);
192 ret
= snd_soc_card_jack_new(card
, "Headset", SND_JACK_HEADSET
|
193 SND_JACK_BTN_0
, &tobermory_headset
,
194 tobermory_headset_pins
,
195 ARRAY_SIZE(tobermory_headset_pins
));
199 wm8962_mic_detect(component
, &tobermory_headset
);
204 static struct snd_soc_card tobermory
= {
206 .owner
= THIS_MODULE
,
207 .dai_link
= tobermory_dai
,
208 .num_links
= ARRAY_SIZE(tobermory_dai
),
210 .set_bias_level
= tobermory_set_bias_level
,
211 .set_bias_level_post
= tobermory_set_bias_level_post
,
213 .controls
= controls
,
214 .num_controls
= ARRAY_SIZE(controls
),
215 .dapm_widgets
= widgets
,
216 .num_dapm_widgets
= ARRAY_SIZE(widgets
),
217 .dapm_routes
= audio_paths
,
218 .num_dapm_routes
= ARRAY_SIZE(audio_paths
),
219 .fully_routed
= true,
221 .late_probe
= tobermory_late_probe
,
224 static int tobermory_probe(struct platform_device
*pdev
)
226 struct snd_soc_card
*card
= &tobermory
;
229 card
->dev
= &pdev
->dev
;
231 ret
= devm_snd_soc_register_card(&pdev
->dev
, card
);
232 if (ret
&& ret
!= -EPROBE_DEFER
)
233 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
239 static struct platform_driver tobermory_driver
= {
242 .pm
= &snd_soc_pm_ops
,
244 .probe
= tobermory_probe
,
247 module_platform_driver(tobermory_driver
);
249 MODULE_DESCRIPTION("Tobermory audio support");
250 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
251 MODULE_LICENSE("GPL");
252 MODULE_ALIAS("platform:tobermory");