xref: /linux/sound/soc/intel/boards/bdw-rt5677.c (revision 9a6b55ac)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * ASoC machine driver for Intel Broadwell platforms with RT5677 codec
4  *
5  * Copyright (c) 2014, The Chromium OS Authors.  All rights reserved.
6  */
7 
8 #include <linux/acpi.h>
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/delay.h>
13 #include <sound/core.h>
14 #include <sound/pcm.h>
15 #include <sound/soc.h>
16 #include <sound/pcm_params.h>
17 #include <sound/jack.h>
18 #include <sound/soc-acpi.h>
19 
20 #include "../common/sst-dsp.h"
21 #include "../haswell/sst-haswell-ipc.h"
22 
23 #include "../../codecs/rt5677.h"
24 
25 struct bdw_rt5677_priv {
26 	struct gpio_desc *gpio_hp_en;
27 	struct snd_soc_component *component;
28 };
29 
30 static int bdw_rt5677_event_hp(struct snd_soc_dapm_widget *w,
31 			struct snd_kcontrol *k, int event)
32 {
33 	struct snd_soc_dapm_context *dapm = w->dapm;
34 	struct snd_soc_card *card = dapm->card;
35 	struct bdw_rt5677_priv *bdw_rt5677 = snd_soc_card_get_drvdata(card);
36 
37 	if (SND_SOC_DAPM_EVENT_ON(event))
38 		msleep(70);
39 
40 	gpiod_set_value_cansleep(bdw_rt5677->gpio_hp_en,
41 		SND_SOC_DAPM_EVENT_ON(event));
42 
43 	return 0;
44 }
45 
46 static const struct snd_soc_dapm_widget bdw_rt5677_widgets[] = {
47 	SND_SOC_DAPM_HP("Headphone", bdw_rt5677_event_hp),
48 	SND_SOC_DAPM_SPK("Speaker", NULL),
49 	SND_SOC_DAPM_MIC("Headset Mic", NULL),
50 	SND_SOC_DAPM_MIC("Local DMICs", NULL),
51 	SND_SOC_DAPM_MIC("Remote DMICs", NULL),
52 };
53 
54 static const struct snd_soc_dapm_route bdw_rt5677_map[] = {
55 	/* Speakers */
56 	{"Speaker", NULL, "PDM1L"},
57 	{"Speaker", NULL, "PDM1R"},
58 
59 	/* Headset jack connectors */
60 	{"Headphone", NULL, "LOUT1"},
61 	{"Headphone", NULL, "LOUT2"},
62 	{"IN1P", NULL, "Headset Mic"},
63 	{"IN1N", NULL, "Headset Mic"},
64 
65 	/* Digital MICs
66 	 * Local DMICs: the two DMICs on the mainboard
67 	 * Remote DMICs: the two DMICs on the camera module
68 	 */
69 	{"DMIC L1", NULL, "Remote DMICs"},
70 	{"DMIC R1", NULL, "Remote DMICs"},
71 	{"DMIC L2", NULL, "Local DMICs"},
72 	{"DMIC R2", NULL, "Local DMICs"},
73 
74 	/* CODEC BE connections */
75 	{"SSP0 CODEC IN", NULL, "AIF1 Capture"},
76 	{"AIF1 Playback", NULL, "SSP0 CODEC OUT"},
77 	{"DSP Capture", NULL, "DSP Buffer"},
78 
79 	/* DSP Clock Connections */
80 	{ "DSP Buffer", NULL, "SSP0 CODEC IN" },
81 	{ "SSP0 CODEC IN", NULL, "DSPTX" },
82 };
83 
84 static const struct snd_kcontrol_new bdw_rt5677_controls[] = {
85 	SOC_DAPM_PIN_SWITCH("Speaker"),
86 	SOC_DAPM_PIN_SWITCH("Headphone"),
87 	SOC_DAPM_PIN_SWITCH("Headset Mic"),
88 	SOC_DAPM_PIN_SWITCH("Local DMICs"),
89 	SOC_DAPM_PIN_SWITCH("Remote DMICs"),
90 };
91 
92 
93 static struct snd_soc_jack headphone_jack;
94 static struct snd_soc_jack mic_jack;
95 
96 static struct snd_soc_jack_pin headphone_jack_pin = {
97 	.pin	= "Headphone",
98 	.mask	= SND_JACK_HEADPHONE,
99 };
100 
101 static struct snd_soc_jack_pin mic_jack_pin = {
102 	.pin	= "Headset Mic",
103 	.mask	= SND_JACK_MICROPHONE,
104 };
105 
106 static struct snd_soc_jack_gpio headphone_jack_gpio = {
107 	.name			= "plug-det",
108 	.report			= SND_JACK_HEADPHONE,
109 	.debounce_time		= 200,
110 };
111 
112 static struct snd_soc_jack_gpio mic_jack_gpio = {
113 	.name			= "mic-present",
114 	.report			= SND_JACK_MICROPHONE,
115 	.debounce_time		= 200,
116 	.invert			= 1,
117 };
118 
119 /* GPIO indexes defined by ACPI */
120 enum {
121 	RT5677_GPIO_PLUG_DET		= 0,
122 	RT5677_GPIO_MIC_PRESENT_L	= 1,
123 	RT5677_GPIO_HOTWORD_DET_L	= 2,
124 	RT5677_GPIO_DSP_INT		= 3,
125 	RT5677_GPIO_HP_AMP_SHDN_L	= 4,
126 };
127 
128 static const struct acpi_gpio_params plug_det_gpio = { RT5677_GPIO_PLUG_DET, 0, false };
129 static const struct acpi_gpio_params mic_present_gpio = { RT5677_GPIO_MIC_PRESENT_L, 0, false };
130 static const struct acpi_gpio_params headphone_enable_gpio = { RT5677_GPIO_HP_AMP_SHDN_L, 0, false };
131 
132 static const struct acpi_gpio_mapping bdw_rt5677_gpios[] = {
133 	{ "plug-det-gpios", &plug_det_gpio, 1 },
134 	{ "mic-present-gpios", &mic_present_gpio, 1 },
135 	{ "headphone-enable-gpios", &headphone_enable_gpio, 1 },
136 	{ NULL },
137 };
138 
139 static int broadwell_ssp0_fixup(struct snd_soc_pcm_runtime *rtd,
140 			struct snd_pcm_hw_params *params)
141 {
142 	struct snd_interval *rate = hw_param_interval(params,
143 			SNDRV_PCM_HW_PARAM_RATE);
144 	struct snd_interval *channels = hw_param_interval(params,
145 						SNDRV_PCM_HW_PARAM_CHANNELS);
146 
147 	/* The ADSP will covert the FE rate to 48k, stereo */
148 	rate->min = rate->max = 48000;
149 	channels->min = channels->max = 2;
150 
151 	/* set SSP0 to 16 bit */
152 	params_set_format(params, SNDRV_PCM_FORMAT_S16_LE);
153 	return 0;
154 }
155 
156 static int bdw_rt5677_hw_params(struct snd_pcm_substream *substream,
157 	struct snd_pcm_hw_params *params)
158 {
159 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
160 	struct snd_soc_dai *codec_dai = rtd->codec_dai;
161 	int ret;
162 
163 	ret = snd_soc_dai_set_sysclk(codec_dai, RT5677_SCLK_S_MCLK, 24576000,
164 		SND_SOC_CLOCK_IN);
165 	if (ret < 0) {
166 		dev_err(rtd->dev, "can't set codec sysclk configuration\n");
167 		return ret;
168 	}
169 
170 	return ret;
171 }
172 
173 static int bdw_rt5677_dsp_hw_params(struct snd_pcm_substream *substream,
174 	struct snd_pcm_hw_params *params)
175 {
176 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
177 	struct snd_soc_dai *codec_dai = rtd->codec_dai;
178 	int ret;
179 
180 	ret = snd_soc_dai_set_sysclk(codec_dai, RT5677_SCLK_S_PLL1, 24576000,
181 		SND_SOC_CLOCK_IN);
182 	if (ret < 0) {
183 		dev_err(rtd->dev, "can't set codec sysclk configuration\n");
184 		return ret;
185 	}
186 	ret = snd_soc_dai_set_pll(codec_dai, 0, RT5677_PLL1_S_MCLK,
187 		24000000, 24576000);
188 	if (ret < 0) {
189 		dev_err(rtd->dev, "can't set codec pll configuration\n");
190 		return ret;
191 	}
192 
193 	return 0;
194 }
195 
196 static const struct snd_soc_ops bdw_rt5677_ops = {
197 	.hw_params = bdw_rt5677_hw_params,
198 };
199 
200 static const struct snd_soc_ops bdw_rt5677_dsp_ops = {
201 	.hw_params = bdw_rt5677_dsp_hw_params,
202 };
203 
204 #if !IS_ENABLED(CONFIG_SND_SOC_SOF_BROADWELL)
205 static int bdw_rt5677_rtd_init(struct snd_soc_pcm_runtime *rtd)
206 {
207 	struct snd_soc_component *component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
208 	struct sst_pdata *pdata = dev_get_platdata(component->dev);
209 	struct sst_hsw *broadwell = pdata->dsp;
210 	int ret;
211 
212 	/* Set ADSP SSP port settings */
213 	ret = sst_hsw_device_set_config(broadwell, SST_HSW_DEVICE_SSP_0,
214 		SST_HSW_DEVICE_MCLK_FREQ_24_MHZ,
215 		SST_HSW_DEVICE_CLOCK_MASTER, 9);
216 	if (ret < 0) {
217 		dev_err(rtd->dev, "error: failed to set device config\n");
218 		return ret;
219 	}
220 
221 	return 0;
222 }
223 #endif
224 
225 static int bdw_rt5677_init(struct snd_soc_pcm_runtime *rtd)
226 {
227 	struct bdw_rt5677_priv *bdw_rt5677 =
228 			snd_soc_card_get_drvdata(rtd->card);
229 	struct snd_soc_component *component = rtd->codec_dai->component;
230 	struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
231 	int ret;
232 
233 	ret = devm_acpi_dev_add_driver_gpios(component->dev, bdw_rt5677_gpios);
234 	if (ret)
235 		dev_warn(component->dev, "Failed to add driver gpios\n");
236 
237 	/* Enable codec ASRC function for Stereo DAC/Stereo1 ADC/DMIC/I2S1.
238 	 * The ASRC clock source is clk_i2s1_asrc.
239 	 */
240 	rt5677_sel_asrc_clk_src(component, RT5677_DA_STEREO_FILTER |
241 			RT5677_AD_STEREO1_FILTER | RT5677_I2S1_SOURCE,
242 			RT5677_CLK_SEL_I2S1_ASRC);
243 	/* Enable codec ASRC function for Mono ADC L.
244 	 * The ASRC clock source is clk_sys2_asrc.
245 	 */
246 	rt5677_sel_asrc_clk_src(component, RT5677_AD_MONO_L_FILTER,
247 			RT5677_CLK_SEL_SYS2);
248 
249 	/* Request rt5677 GPIO for headphone amp control */
250 	bdw_rt5677->gpio_hp_en = devm_gpiod_get(component->dev, "headphone-enable",
251 						GPIOD_OUT_LOW);
252 	if (IS_ERR(bdw_rt5677->gpio_hp_en)) {
253 		dev_err(component->dev, "Can't find HP_AMP_SHDN_L gpio\n");
254 		return PTR_ERR(bdw_rt5677->gpio_hp_en);
255 	}
256 
257 	/* Create and initialize headphone jack */
258 	if (!snd_soc_card_jack_new(rtd->card, "Headphone Jack",
259 			SND_JACK_HEADPHONE, &headphone_jack,
260 			&headphone_jack_pin, 1)) {
261 		headphone_jack_gpio.gpiod_dev = component->dev;
262 		if (snd_soc_jack_add_gpios(&headphone_jack, 1,
263 				&headphone_jack_gpio))
264 			dev_err(component->dev, "Can't add headphone jack gpio\n");
265 	} else {
266 		dev_err(component->dev, "Can't create headphone jack\n");
267 	}
268 
269 	/* Create and initialize mic jack */
270 	if (!snd_soc_card_jack_new(rtd->card, "Mic Jack",
271 			SND_JACK_MICROPHONE, &mic_jack,
272 			&mic_jack_pin, 1)) {
273 		mic_jack_gpio.gpiod_dev = component->dev;
274 		if (snd_soc_jack_add_gpios(&mic_jack, 1, &mic_jack_gpio))
275 			dev_err(component->dev, "Can't add mic jack gpio\n");
276 	} else {
277 		dev_err(component->dev, "Can't create mic jack\n");
278 	}
279 	bdw_rt5677->component = component;
280 
281 	snd_soc_dapm_force_enable_pin(dapm, "MICBIAS1");
282 	return 0;
283 }
284 
285 /* broadwell digital audio interface glue - connects codec <--> CPU */
286 SND_SOC_DAILINK_DEF(dummy,
287 	DAILINK_COMP_ARRAY(COMP_DUMMY()));
288 
289 SND_SOC_DAILINK_DEF(fe,
290 	DAILINK_COMP_ARRAY(COMP_CPU("System Pin")));
291 
292 SND_SOC_DAILINK_DEF(platform,
293 	DAILINK_COMP_ARRAY(COMP_PLATFORM("haswell-pcm-audio")));
294 
295 SND_SOC_DAILINK_DEF(be,
296 	DAILINK_COMP_ARRAY(COMP_CODEC("i2c-RT5677CE:00", "rt5677-aif1")));
297 
298 /* Wake on voice interface */
299 SND_SOC_DAILINK_DEFS(dsp,
300 	DAILINK_COMP_ARRAY(COMP_CPU("spi-RT5677AA:00")),
301 	DAILINK_COMP_ARRAY(COMP_CODEC("i2c-RT5677CE:00", "rt5677-dspbuffer")),
302 	DAILINK_COMP_ARRAY(COMP_PLATFORM("spi-RT5677AA:00")));
303 
304 static struct snd_soc_dai_link bdw_rt5677_dais[] = {
305 	/* Front End DAI links */
306 	{
307 		.name = "System PCM",
308 		.stream_name = "System Playback/Capture",
309 		.dynamic = 1,
310 #if !IS_ENABLED(CONFIG_SND_SOC_SOF_BROADWELL)
311 		.init = bdw_rt5677_rtd_init,
312 #endif
313 		.trigger = {
314 			SND_SOC_DPCM_TRIGGER_POST,
315 			SND_SOC_DPCM_TRIGGER_POST
316 		},
317 		.dpcm_capture = 1,
318 		.dpcm_playback = 1,
319 		SND_SOC_DAILINK_REG(fe, dummy, platform),
320 	},
321 
322 	/* Non-DPCM links */
323 	{
324 		.name = "Codec DSP",
325 		.stream_name = "Wake on Voice",
326 		.ops = &bdw_rt5677_dsp_ops,
327 		SND_SOC_DAILINK_REG(dsp),
328 	},
329 
330 	/* Back End DAI links */
331 	{
332 		/* SSP0 - Codec */
333 		.name = "Codec",
334 		.id = 0,
335 		.no_pcm = 1,
336 		.dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
337 			SND_SOC_DAIFMT_CBS_CFS,
338 		.ignore_suspend = 1,
339 		.ignore_pmdown_time = 1,
340 		.be_hw_params_fixup = broadwell_ssp0_fixup,
341 		.ops = &bdw_rt5677_ops,
342 		.dpcm_playback = 1,
343 		.dpcm_capture = 1,
344 		.init = bdw_rt5677_init,
345 		SND_SOC_DAILINK_REG(dummy, be, dummy),
346 	},
347 };
348 
349 static int bdw_rt5677_suspend_pre(struct snd_soc_card *card)
350 {
351 	struct bdw_rt5677_priv *bdw_rt5677 = snd_soc_card_get_drvdata(card);
352 	struct snd_soc_dapm_context *dapm;
353 
354 	if (bdw_rt5677->component) {
355 		dapm = snd_soc_component_get_dapm(bdw_rt5677->component);
356 		snd_soc_dapm_disable_pin(dapm, "MICBIAS1");
357 	}
358 	return 0;
359 }
360 
361 static int bdw_rt5677_resume_post(struct snd_soc_card *card)
362 {
363 	struct bdw_rt5677_priv *bdw_rt5677 = snd_soc_card_get_drvdata(card);
364 	struct snd_soc_dapm_context *dapm;
365 
366 	if (bdw_rt5677->component) {
367 		dapm = snd_soc_component_get_dapm(bdw_rt5677->component);
368 		snd_soc_dapm_force_enable_pin(dapm, "MICBIAS1");
369 	}
370 	return 0;
371 }
372 
373 /* ASoC machine driver for Broadwell DSP + RT5677 */
374 static struct snd_soc_card bdw_rt5677_card = {
375 	.name = "bdw-rt5677",
376 	.owner = THIS_MODULE,
377 	.dai_link = bdw_rt5677_dais,
378 	.num_links = ARRAY_SIZE(bdw_rt5677_dais),
379 	.dapm_widgets = bdw_rt5677_widgets,
380 	.num_dapm_widgets = ARRAY_SIZE(bdw_rt5677_widgets),
381 	.dapm_routes = bdw_rt5677_map,
382 	.num_dapm_routes = ARRAY_SIZE(bdw_rt5677_map),
383 	.controls = bdw_rt5677_controls,
384 	.num_controls = ARRAY_SIZE(bdw_rt5677_controls),
385 	.fully_routed = true,
386 	.suspend_pre = bdw_rt5677_suspend_pre,
387 	.resume_post = bdw_rt5677_resume_post,
388 };
389 
390 static int bdw_rt5677_probe(struct platform_device *pdev)
391 {
392 	struct bdw_rt5677_priv *bdw_rt5677;
393 	struct snd_soc_acpi_mach *mach;
394 	int ret;
395 
396 	bdw_rt5677_card.dev = &pdev->dev;
397 
398 	/* Allocate driver private struct */
399 	bdw_rt5677 = devm_kzalloc(&pdev->dev, sizeof(struct bdw_rt5677_priv),
400 		GFP_KERNEL);
401 	if (!bdw_rt5677) {
402 		dev_err(&pdev->dev, "Can't allocate bdw_rt5677\n");
403 		return -ENOMEM;
404 	}
405 
406 	/* override plaform name, if required */
407 	mach = (&pdev->dev)->platform_data;
408 	ret = snd_soc_fixup_dai_links_platform_name(&bdw_rt5677_card,
409 						    mach->mach_params.platform);
410 	if (ret)
411 		return ret;
412 
413 	snd_soc_card_set_drvdata(&bdw_rt5677_card, bdw_rt5677);
414 
415 	return devm_snd_soc_register_card(&pdev->dev, &bdw_rt5677_card);
416 }
417 
418 static struct platform_driver bdw_rt5677_audio = {
419 	.probe = bdw_rt5677_probe,
420 	.driver = {
421 		.name = "bdw-rt5677",
422 	},
423 };
424 
425 module_platform_driver(bdw_rt5677_audio)
426 
427 /* Module information */
428 MODULE_AUTHOR("Ben Zhang");
429 MODULE_DESCRIPTION("Intel Broadwell RT5677 machine driver");
430 MODULE_LICENSE("GPL v2");
431 MODULE_ALIAS("platform:bdw-rt5677");
432