blob: 68e6543e6cb026aa20b3a339c9f7c3f24c3820f5 [file] [log] [blame]
Liam Girdwoodafdb74f2014-07-14 10:35:40 +08001/*
2 * Intel Broadwell Wildcatpoint SST Audio
3 *
4 * Copyright (C) 2013, Intel Corporation. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/module.h>
18#include <linux/platform_device.h>
19#include <sound/core.h>
20#include <sound/pcm.h>
21#include <sound/soc.h>
Jie Yangc1e99c92014-10-30 21:16:23 +080022#include <sound/jack.h>
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080023#include <sound/pcm_params.h>
24
Jie Yange56c72d2015-04-02 15:37:02 +080025#include "../common/sst-dsp.h"
26#include "../haswell/sst-haswell-ipc.h"
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080027
Jie Yange56c72d2015-04-02 15:37:02 +080028#include "../../codecs/rt286.h"
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080029
Jie Yangc1e99c92014-10-30 21:16:23 +080030static struct snd_soc_jack broadwell_headset;
31/* Headset jack detection DAPM pins */
32static struct snd_soc_jack_pin broadwell_headset_pins[] = {
33 {
34 .pin = "Mic Jack",
35 .mask = SND_JACK_MICROPHONE,
36 },
37 {
38 .pin = "Headphone Jack",
39 .mask = SND_JACK_HEADPHONE,
40 },
41};
42
43static const struct snd_kcontrol_new broadwell_controls[] = {
44 SOC_DAPM_PIN_SWITCH("Speaker"),
45 SOC_DAPM_PIN_SWITCH("Headphone Jack"),
46};
47
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080048static const struct snd_soc_dapm_widget broadwell_widgets[] = {
Jie Yangc1e99c92014-10-30 21:16:23 +080049 SND_SOC_DAPM_HP("Headphone Jack", NULL),
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080050 SND_SOC_DAPM_SPK("Speaker", NULL),
51 SND_SOC_DAPM_MIC("Mic Jack", NULL),
52 SND_SOC_DAPM_MIC("DMIC1", NULL),
53 SND_SOC_DAPM_MIC("DMIC2", NULL),
54 SND_SOC_DAPM_LINE("Line Jack", NULL),
55};
56
57static const struct snd_soc_dapm_route broadwell_rt286_map[] = {
58
59 /* speaker */
60 {"Speaker", NULL, "SPOR"},
61 {"Speaker", NULL, "SPOL"},
62
63 /* HP jack connectors - unknown if we have jack deteck */
Jie Yangc1e99c92014-10-30 21:16:23 +080064 {"Headphone Jack", NULL, "HPO Pin"},
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080065
66 /* other jacks */
67 {"MIC1", NULL, "Mic Jack"},
68 {"LINE1", NULL, "Line Jack"},
69
70 /* digital mics */
71 {"DMIC1 Pin", NULL, "DMIC1"},
72 {"DMIC2 Pin", NULL, "DMIC2"},
73
74 /* CODEC BE connections */
75 {"SSP0 CODEC IN", NULL, "AIF1 Capture"},
76 {"AIF1 Playback", NULL, "SSP0 CODEC OUT"},
77};
78
Jie Yangc1e99c92014-10-30 21:16:23 +080079static int broadwell_rt286_codec_init(struct snd_soc_pcm_runtime *rtd)
80{
Kuninori Morimoto45101122018-01-29 04:36:54 +000081 struct snd_soc_component *component = rtd->codec_dai->component;
Jie Yangc1e99c92014-10-30 21:16:23 +080082 int ret = 0;
Lars-Peter Clausen85c85e52015-03-04 10:33:21 +010083 ret = snd_soc_card_jack_new(rtd->card, "Headset",
84 SND_JACK_HEADSET | SND_JACK_BTN_0, &broadwell_headset,
85 broadwell_headset_pins, ARRAY_SIZE(broadwell_headset_pins));
Jie Yangc1e99c92014-10-30 21:16:23 +080086 if (ret)
87 return ret;
88
Kuninori Morimoto45101122018-01-29 04:36:54 +000089 rt286_mic_detect(component, &broadwell_headset);
Jie Yangc1e99c92014-10-30 21:16:23 +080090 return 0;
91}
92
93
Liam Girdwoodafdb74f2014-07-14 10:35:40 +080094static int broadwell_ssp0_fixup(struct snd_soc_pcm_runtime *rtd,
95 struct snd_pcm_hw_params *params)
96{
97 struct snd_interval *rate = hw_param_interval(params,
98 SNDRV_PCM_HW_PARAM_RATE);
99 struct snd_interval *channels = hw_param_interval(params,
100 SNDRV_PCM_HW_PARAM_CHANNELS);
101
102 /* The ADSP will covert the FE rate to 48k, stereo */
103 rate->min = rate->max = 48000;
104 channels->min = channels->max = 2;
105
106 /* set SSP0 to 16 bit */
Fang, Yang A369a9f52015-02-09 00:18:12 -0800107 params_set_format(params, SNDRV_PCM_FORMAT_S16_LE);
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800108 return 0;
109}
110
111static int broadwell_rt286_hw_params(struct snd_pcm_substream *substream,
112 struct snd_pcm_hw_params *params)
113{
114 struct snd_soc_pcm_runtime *rtd = substream->private_data;
115 struct snd_soc_dai *codec_dai = rtd->codec_dai;
116 int ret;
117
118 ret = snd_soc_dai_set_sysclk(codec_dai, RT286_SCLK_S_PLL, 24000000,
119 SND_SOC_CLOCK_IN);
120
121 if (ret < 0) {
122 dev_err(rtd->dev, "can't set codec sysclk configuration\n");
123 return ret;
124 }
125
126 return ret;
127}
128
Julia Lawalld5bc18c2016-10-15 16:55:45 +0200129static const struct snd_soc_ops broadwell_rt286_ops = {
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800130 .hw_params = broadwell_rt286_hw_params,
131};
132
133static int broadwell_rtd_init(struct snd_soc_pcm_runtime *rtd)
134{
Kuninori Morimoto2ee178d2018-01-29 02:42:21 +0000135 struct snd_soc_component *component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
136 struct sst_pdata *pdata = dev_get_platdata(component->dev);
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800137 struct sst_hsw *broadwell = pdata->dsp;
138 int ret;
139
140 /* Set ADSP SSP port settings */
141 ret = sst_hsw_device_set_config(broadwell, SST_HSW_DEVICE_SSP_0,
142 SST_HSW_DEVICE_MCLK_FREQ_24_MHZ,
143 SST_HSW_DEVICE_CLOCK_MASTER, 9);
144 if (ret < 0) {
145 dev_err(rtd->dev, "error: failed to set device config\n");
146 return ret;
147 }
148
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800149 return 0;
150}
151
152/* broadwell digital audio interface glue - connects codec <--> CPU */
153static struct snd_soc_dai_link broadwell_rt286_dais[] = {
154 /* Front End DAI links */
155 {
156 .name = "System PCM",
Jie Yang7bb73cb2014-11-28 21:52:11 +0800157 .stream_name = "System Playback/Capture",
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800158 .cpu_dai_name = "System Pin",
159 .platform_name = "haswell-pcm-audio",
160 .dynamic = 1,
161 .codec_name = "snd-soc-dummy",
162 .codec_dai_name = "snd-soc-dummy-dai",
163 .init = broadwell_rtd_init,
164 .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
165 .dpcm_playback = 1,
Jie Yang7bb73cb2014-11-28 21:52:11 +0800166 .dpcm_capture = 1,
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800167 },
168 {
169 .name = "Offload0",
170 .stream_name = "Offload0 Playback",
171 .cpu_dai_name = "Offload0 Pin",
172 .platform_name = "haswell-pcm-audio",
173 .dynamic = 1,
174 .codec_name = "snd-soc-dummy",
175 .codec_dai_name = "snd-soc-dummy-dai",
176 .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
177 .dpcm_playback = 1,
178 },
179 {
180 .name = "Offload1",
181 .stream_name = "Offload1 Playback",
182 .cpu_dai_name = "Offload1 Pin",
183 .platform_name = "haswell-pcm-audio",
184 .dynamic = 1,
185 .codec_name = "snd-soc-dummy",
186 .codec_dai_name = "snd-soc-dummy-dai",
187 .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
188 .dpcm_playback = 1,
189 },
190 {
191 .name = "Loopback PCM",
192 .stream_name = "Loopback",
193 .cpu_dai_name = "Loopback Pin",
194 .platform_name = "haswell-pcm-audio",
195 .dynamic = 0,
196 .codec_name = "snd-soc-dummy",
197 .codec_dai_name = "snd-soc-dummy-dai",
198 .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
199 .dpcm_capture = 1,
200 },
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800201 /* Back End DAI links */
202 {
203 /* SSP0 - Codec */
204 .name = "Codec",
Mengdong Lin2f0ad492016-04-19 13:12:35 +0800205 .id = 0,
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800206 .cpu_dai_name = "snd-soc-dummy-dai",
207 .platform_name = "snd-soc-dummy",
208 .no_pcm = 1,
209 .codec_name = "i2c-INT343A:00",
210 .codec_dai_name = "rt286-aif1",
Jie Yangc1e99c92014-10-30 21:16:23 +0800211 .init = broadwell_rt286_codec_init,
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800212 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
213 SND_SOC_DAIFMT_CBS_CFS,
214 .ignore_suspend = 1,
215 .ignore_pmdown_time = 1,
216 .be_hw_params_fixup = broadwell_ssp0_fixup,
217 .ops = &broadwell_rt286_ops,
218 .dpcm_playback = 1,
219 .dpcm_capture = 1,
220 },
221};
222
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800223static int broadwell_suspend(struct snd_soc_card *card){
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000224 struct snd_soc_component *component;
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800225
Kuninori Morimotof70f18f72018-09-18 01:29:55 +0000226 for_each_card_components(card, component) {
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000227 if (!strcmp(component->name, "i2c-INT343A:00")) {
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000228
Kuninori Morimoto45101122018-01-29 04:36:54 +0000229 dev_dbg(component->dev, "disabling jack detect before going to suspend.\n");
230 rt286_mic_detect(component, NULL);
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800231 break;
232 }
233 }
234 return 0;
235}
236
237static int broadwell_resume(struct snd_soc_card *card){
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000238 struct snd_soc_component *component;
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800239
Kuninori Morimotof70f18f72018-09-18 01:29:55 +0000240 for_each_card_components(card, component) {
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000241 if (!strcmp(component->name, "i2c-INT343A:00")) {
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000242
Kuninori Morimoto45101122018-01-29 04:36:54 +0000243 dev_dbg(component->dev, "enabling jack detect for resume.\n");
244 rt286_mic_detect(component, &broadwell_headset);
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800245 break;
246 }
247 }
248 return 0;
249}
250
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800251/* broadwell audio machine driver for WPT + RT286S */
252static struct snd_soc_card broadwell_rt286 = {
253 .name = "broadwell-rt286",
254 .owner = THIS_MODULE,
255 .dai_link = broadwell_rt286_dais,
256 .num_links = ARRAY_SIZE(broadwell_rt286_dais),
Jie Yangc1e99c92014-10-30 21:16:23 +0800257 .controls = broadwell_controls,
258 .num_controls = ARRAY_SIZE(broadwell_controls),
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800259 .dapm_widgets = broadwell_widgets,
260 .num_dapm_widgets = ARRAY_SIZE(broadwell_widgets),
261 .dapm_routes = broadwell_rt286_map,
262 .num_dapm_routes = ARRAY_SIZE(broadwell_rt286_map),
263 .fully_routed = true,
Jie Yang1a5ab21c2015-02-27 12:54:29 +0800264 .suspend_pre = broadwell_suspend,
265 .resume_post = broadwell_resume,
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800266};
267
268static int broadwell_audio_probe(struct platform_device *pdev)
269{
270 broadwell_rt286.dev = &pdev->dev;
Axel Lin9ed74762015-09-02 12:01:27 +0800271 return devm_snd_soc_register_card(&pdev->dev, &broadwell_rt286);
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800272}
273
274static struct platform_driver broadwell_audio = {
275 .probe = broadwell_audio_probe,
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800276 .driver = {
277 .name = "broadwell-audio",
Liam Girdwoodafdb74f2014-07-14 10:35:40 +0800278 },
279};
280
281module_platform_driver(broadwell_audio)
282
283/* Module information */
284MODULE_AUTHOR("Liam Girdwood, Xingchao Wang");
285MODULE_DESCRIPTION("Intel SST Audio for WPT/Broadwell");
286MODULE_LICENSE("GPL v2");
287MODULE_ALIAS("platform:broadwell-audio");