2 * Intel Skylake I2S Machine Driver
4 * Copyright (C) 2014-2015, Intel Corporation. All rights reserved.
7 * Intel Broadwell Wildcatpoint SST Audio
9 * Copyright (C) 2013, Intel Corporation. All rights reserved.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License version
13 * 2 as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/soc.h>
26 #include <sound/jack.h>
27 #include <sound/pcm_params.h>
28 #include "../../codecs/rt286.h"
29 #include "../../codecs/hdac_hdmi.h"
31 static struct snd_soc_jack skylake_headset
;
32 static struct snd_soc_jack skylake_hdmi
[3];
35 struct list_head head
;
36 struct snd_soc_dai
*codec_dai
;
40 struct skl_rt286_private
{
41 struct list_head hdmi_pcm_list
;
45 SKL_DPCM_AUDIO_PB
= 0,
48 SKL_DPCM_AUDIO_REF_CP
,
49 SKL_DPCM_AUDIO_DMIC_CP
,
50 SKL_DPCM_AUDIO_HDMI1_PB
,
51 SKL_DPCM_AUDIO_HDMI2_PB
,
52 SKL_DPCM_AUDIO_HDMI3_PB
,
55 /* Headset jack detection DAPM pins */
56 static struct snd_soc_jack_pin skylake_headset_pins
[] = {
59 .mask
= SND_JACK_MICROPHONE
,
62 .pin
= "Headphone Jack",
63 .mask
= SND_JACK_HEADPHONE
,
67 static const struct snd_kcontrol_new skylake_controls
[] = {
68 SOC_DAPM_PIN_SWITCH("Speaker"),
69 SOC_DAPM_PIN_SWITCH("Headphone Jack"),
70 SOC_DAPM_PIN_SWITCH("Mic Jack"),
73 static const struct snd_soc_dapm_widget skylake_widgets
[] = {
74 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
75 SND_SOC_DAPM_SPK("Speaker", NULL
),
76 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
77 SND_SOC_DAPM_MIC("DMIC2", NULL
),
78 SND_SOC_DAPM_MIC("SoC DMIC", NULL
),
79 SND_SOC_DAPM_SPK("HDMI1", NULL
),
80 SND_SOC_DAPM_SPK("HDMI2", NULL
),
81 SND_SOC_DAPM_SPK("HDMI3", NULL
),
84 static const struct snd_soc_dapm_route skylake_rt286_map
[] = {
86 {"Speaker", NULL
, "SPOR"},
87 {"Speaker", NULL
, "SPOL"},
89 /* HP jack connectors - unknown if we have jack deteck */
90 {"Headphone Jack", NULL
, "HPO Pin"},
93 {"MIC1", NULL
, "Mic Jack"},
96 {"DMIC1 Pin", NULL
, "DMIC2"},
97 {"DMic", NULL
, "SoC DMIC"},
99 /* CODEC BE connections */
100 { "AIF1 Playback", NULL
, "ssp0 Tx"},
101 { "ssp0 Tx", NULL
, "codec0_out"},
102 { "ssp0 Tx", NULL
, "codec1_out"},
104 { "codec0_in", NULL
, "ssp0 Rx" },
105 { "codec1_in", NULL
, "ssp0 Rx" },
106 { "ssp0 Rx", NULL
, "AIF1 Capture" },
108 { "dmic01_hifi", NULL
, "DMIC01 Rx" },
109 { "DMIC01 Rx", NULL
, "DMIC AIF" },
111 { "hifi3", NULL
, "iDisp3 Tx"},
112 { "iDisp3 Tx", NULL
, "iDisp3_out"},
113 { "hifi2", NULL
, "iDisp2 Tx"},
114 { "iDisp2 Tx", NULL
, "iDisp2_out"},
115 { "hifi1", NULL
, "iDisp1 Tx"},
116 { "iDisp1 Tx", NULL
, "iDisp1_out"},
120 static int skylake_rt286_fe_init(struct snd_soc_pcm_runtime
*rtd
)
122 struct snd_soc_dapm_context
*dapm
;
123 struct snd_soc_component
*component
= rtd
->cpu_dai
->component
;
125 dapm
= snd_soc_component_get_dapm(component
);
126 snd_soc_dapm_ignore_suspend(dapm
, "Reference Capture");
131 static int skylake_rt286_codec_init(struct snd_soc_pcm_runtime
*rtd
)
133 struct snd_soc_codec
*codec
= rtd
->codec
;
136 ret
= snd_soc_card_jack_new(rtd
->card
, "Headset",
137 SND_JACK_HEADSET
| SND_JACK_BTN_0
,
139 skylake_headset_pins
, ARRAY_SIZE(skylake_headset_pins
));
144 rt286_mic_detect(codec
, &skylake_headset
);
146 snd_soc_dapm_ignore_suspend(&rtd
->card
->dapm
, "SoC DMIC");
151 static int skylake_hdmi_init(struct snd_soc_pcm_runtime
*rtd
)
153 struct skl_rt286_private
*ctx
= snd_soc_card_get_drvdata(rtd
->card
);
154 struct snd_soc_dai
*dai
= rtd
->codec_dai
;
155 struct skl_hdmi_pcm
*pcm
;
157 pcm
= devm_kzalloc(rtd
->card
->dev
, sizeof(*pcm
), GFP_KERNEL
);
161 pcm
->device
= SKL_DPCM_AUDIO_HDMI1_PB
+ dai
->id
;
162 pcm
->codec_dai
= dai
;
164 list_add_tail(&pcm
->head
, &ctx
->hdmi_pcm_list
);
169 static const unsigned int rates
[] = {
173 static const struct snd_pcm_hw_constraint_list constraints_rates
= {
174 .count
= ARRAY_SIZE(rates
),
179 static const unsigned int channels
[] = {
183 static const struct snd_pcm_hw_constraint_list constraints_channels
= {
184 .count
= ARRAY_SIZE(channels
),
189 static int skl_fe_startup(struct snd_pcm_substream
*substream
)
191 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
194 * on this platform for PCM device we support,
200 runtime
->hw
.channels_max
= 2;
201 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
202 &constraints_channels
);
204 runtime
->hw
.formats
= SNDRV_PCM_FMTBIT_S16_LE
;
205 snd_pcm_hw_constraint_msbits(runtime
, 0, 16, 16);
207 snd_pcm_hw_constraint_list(runtime
, 0,
208 SNDRV_PCM_HW_PARAM_RATE
, &constraints_rates
);
213 static const struct snd_soc_ops skylake_rt286_fe_ops
= {
214 .startup
= skl_fe_startup
,
217 static int skylake_ssp0_fixup(struct snd_soc_pcm_runtime
*rtd
,
218 struct snd_pcm_hw_params
*params
)
220 struct snd_interval
*rate
= hw_param_interval(params
,
221 SNDRV_PCM_HW_PARAM_RATE
);
222 struct snd_interval
*channels
= hw_param_interval(params
,
223 SNDRV_PCM_HW_PARAM_CHANNELS
);
224 struct snd_mask
*fmt
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
226 /* The output is 48KHz, stereo, 16bits */
227 rate
->min
= rate
->max
= 48000;
228 channels
->min
= channels
->max
= 2;
230 /* set SSP0 to 24 bit */
232 snd_mask_set(fmt
, SNDRV_PCM_FORMAT_S24_LE
);
236 static int skylake_rt286_hw_params(struct snd_pcm_substream
*substream
,
237 struct snd_pcm_hw_params
*params
)
239 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
240 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
243 ret
= snd_soc_dai_set_sysclk(codec_dai
, RT286_SCLK_S_PLL
, 24000000,
246 dev_err(rtd
->dev
, "set codec sysclk failed: %d\n", ret
);
251 static const struct snd_soc_ops skylake_rt286_ops
= {
252 .hw_params
= skylake_rt286_hw_params
,
255 static int skylake_dmic_fixup(struct snd_soc_pcm_runtime
*rtd
,
256 struct snd_pcm_hw_params
*params
)
258 struct snd_interval
*channels
= hw_param_interval(params
,
259 SNDRV_PCM_HW_PARAM_CHANNELS
);
260 if (params_channels(params
) == 2)
261 channels
->min
= channels
->max
= 2;
263 channels
->min
= channels
->max
= 4;
268 static const unsigned int channels_dmic
[] = {
272 static const struct snd_pcm_hw_constraint_list constraints_dmic_channels
= {
273 .count
= ARRAY_SIZE(channels_dmic
),
274 .list
= channels_dmic
,
278 static int skylake_dmic_startup(struct snd_pcm_substream
*substream
)
280 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
282 runtime
->hw
.channels_max
= 4;
283 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
284 &constraints_dmic_channels
);
286 return snd_pcm_hw_constraint_list(substream
->runtime
, 0,
287 SNDRV_PCM_HW_PARAM_RATE
, &constraints_rates
);
290 static const struct snd_soc_ops skylake_dmic_ops
= {
291 .startup
= skylake_dmic_startup
,
294 /* skylake digital audio interface glue - connects codec <--> CPU */
295 static struct snd_soc_dai_link skylake_rt286_dais
[] = {
296 /* Front End DAI links */
297 [SKL_DPCM_AUDIO_PB
] = {
298 .name
= "Skl Audio Port",
299 .stream_name
= "Audio",
300 .cpu_dai_name
= "System Pin",
301 .platform_name
= "0000:00:1f.3",
304 .codec_name
= "snd-soc-dummy",
305 .codec_dai_name
= "snd-soc-dummy-dai",
306 .init
= skylake_rt286_fe_init
,
308 SND_SOC_DPCM_TRIGGER_POST
,
309 SND_SOC_DPCM_TRIGGER_POST
312 .ops
= &skylake_rt286_fe_ops
,
314 [SKL_DPCM_AUDIO_DB_PB
] = {
315 .name
= "Skl Deepbuffer Port",
316 .stream_name
= "Deep Buffer Audio",
317 .cpu_dai_name
= "Deepbuffer Pin",
318 .platform_name
= "0000:00:1f.3",
321 .codec_name
= "snd-soc-dummy",
322 .codec_dai_name
= "snd-soc-dummy-dai",
324 SND_SOC_DPCM_TRIGGER_POST
,
325 SND_SOC_DPCM_TRIGGER_POST
328 .ops
= &skylake_rt286_fe_ops
,
331 [SKL_DPCM_AUDIO_CP
] = {
332 .name
= "Skl Audio Capture Port",
333 .stream_name
= "Audio Record",
334 .cpu_dai_name
= "System Pin",
335 .platform_name
= "0000:00:1f.3",
338 .codec_name
= "snd-soc-dummy",
339 .codec_dai_name
= "snd-soc-dummy-dai",
341 SND_SOC_DPCM_TRIGGER_POST
,
342 SND_SOC_DPCM_TRIGGER_POST
345 .ops
= &skylake_rt286_fe_ops
,
347 [SKL_DPCM_AUDIO_REF_CP
] = {
348 .name
= "Skl Audio Reference cap",
349 .stream_name
= "refcap",
350 .cpu_dai_name
= "Reference Pin",
351 .codec_name
= "snd-soc-dummy",
352 .codec_dai_name
= "snd-soc-dummy-dai",
353 .platform_name
= "0000:00:1f.3",
359 [SKL_DPCM_AUDIO_DMIC_CP
] = {
360 .name
= "Skl Audio DMIC cap",
361 .stream_name
= "dmiccap",
362 .cpu_dai_name
= "DMIC Pin",
363 .codec_name
= "snd-soc-dummy",
364 .codec_dai_name
= "snd-soc-dummy-dai",
365 .platform_name
= "0000:00:1f.3",
370 .ops
= &skylake_dmic_ops
,
372 [SKL_DPCM_AUDIO_HDMI1_PB
] = {
373 .name
= "Skl HDMI Port1",
374 .stream_name
= "Hdmi1",
375 .cpu_dai_name
= "HDMI1 Pin",
376 .codec_name
= "snd-soc-dummy",
377 .codec_dai_name
= "snd-soc-dummy-dai",
378 .platform_name
= "0000:00:1f.3",
384 [SKL_DPCM_AUDIO_HDMI2_PB
] = {
385 .name
= "Skl HDMI Port2",
386 .stream_name
= "Hdmi2",
387 .cpu_dai_name
= "HDMI2 Pin",
388 .codec_name
= "snd-soc-dummy",
389 .codec_dai_name
= "snd-soc-dummy-dai",
390 .platform_name
= "0000:00:1f.3",
396 [SKL_DPCM_AUDIO_HDMI3_PB
] = {
397 .name
= "Skl HDMI Port3",
398 .stream_name
= "Hdmi3",
399 .cpu_dai_name
= "HDMI3 Pin",
400 .codec_name
= "snd-soc-dummy",
401 .codec_dai_name
= "snd-soc-dummy-dai",
402 .platform_name
= "0000:00:1f.3",
409 /* Back End DAI links */
412 .name
= "SSP0-Codec",
414 .cpu_dai_name
= "SSP0 Pin",
415 .platform_name
= "0000:00:1f.3",
417 .codec_name
= "i2c-INT343A:00",
418 .codec_dai_name
= "rt286-aif1",
419 .init
= skylake_rt286_codec_init
,
420 .dai_fmt
= SND_SOC_DAIFMT_I2S
|
421 SND_SOC_DAIFMT_NB_NF
|
422 SND_SOC_DAIFMT_CBS_CFS
,
423 .ignore_pmdown_time
= 1,
424 .be_hw_params_fixup
= skylake_ssp0_fixup
,
425 .ops
= &skylake_rt286_ops
,
432 .cpu_dai_name
= "DMIC01 Pin",
433 .codec_name
= "dmic-codec",
434 .codec_dai_name
= "dmic-hifi",
435 .platform_name
= "0000:00:1f.3",
436 .be_hw_params_fixup
= skylake_dmic_fixup
,
444 .cpu_dai_name
= "iDisp1 Pin",
445 .codec_name
= "ehdaudio0D2",
446 .codec_dai_name
= "intel-hdmi-hifi1",
447 .platform_name
= "0000:00:1f.3",
448 .init
= skylake_hdmi_init
,
455 .cpu_dai_name
= "iDisp2 Pin",
456 .codec_name
= "ehdaudio0D2",
457 .codec_dai_name
= "intel-hdmi-hifi2",
458 .platform_name
= "0000:00:1f.3",
459 .init
= skylake_hdmi_init
,
466 .cpu_dai_name
= "iDisp3 Pin",
467 .codec_name
= "ehdaudio0D2",
468 .codec_dai_name
= "intel-hdmi-hifi3",
469 .platform_name
= "0000:00:1f.3",
470 .init
= skylake_hdmi_init
,
477 static int skylake_card_late_probe(struct snd_soc_card
*card
)
479 struct skl_rt286_private
*ctx
= snd_soc_card_get_drvdata(card
);
480 struct skl_hdmi_pcm
*pcm
;
481 struct snd_soc_codec
*codec
= NULL
;
483 char jack_name
[NAME_SIZE
];
485 list_for_each_entry(pcm
, &ctx
->hdmi_pcm_list
, head
) {
486 codec
= pcm
->codec_dai
->codec
;
487 snprintf(jack_name
, sizeof(jack_name
),
488 "HDMI/DP, pcm=%d Jack", pcm
->device
);
489 err
= snd_soc_card_jack_new(card
, jack_name
,
490 SND_JACK_AVOUT
, &skylake_hdmi
[i
],
496 err
= hdac_hdmi_jack_init(pcm
->codec_dai
, pcm
->device
,
507 return hdac_hdmi_jack_port_init(codec
, &card
->dapm
);
510 /* skylake audio machine driver for SPT + RT286S */
511 static struct snd_soc_card skylake_rt286
= {
512 .name
= "skylake-rt286",
513 .owner
= THIS_MODULE
,
514 .dai_link
= skylake_rt286_dais
,
515 .num_links
= ARRAY_SIZE(skylake_rt286_dais
),
516 .controls
= skylake_controls
,
517 .num_controls
= ARRAY_SIZE(skylake_controls
),
518 .dapm_widgets
= skylake_widgets
,
519 .num_dapm_widgets
= ARRAY_SIZE(skylake_widgets
),
520 .dapm_routes
= skylake_rt286_map
,
521 .num_dapm_routes
= ARRAY_SIZE(skylake_rt286_map
),
522 .fully_routed
= true,
523 .late_probe
= skylake_card_late_probe
,
526 static int skylake_audio_probe(struct platform_device
*pdev
)
528 struct skl_rt286_private
*ctx
;
530 ctx
= devm_kzalloc(&pdev
->dev
, sizeof(*ctx
), GFP_ATOMIC
);
534 INIT_LIST_HEAD(&ctx
->hdmi_pcm_list
);
536 skylake_rt286
.dev
= &pdev
->dev
;
537 snd_soc_card_set_drvdata(&skylake_rt286
, ctx
);
539 return devm_snd_soc_register_card(&pdev
->dev
, &skylake_rt286
);
542 static const struct platform_device_id skl_board_ids
[] = {
543 { .name
= "skl_alc286s_i2s" },
544 { .name
= "kbl_alc286s_i2s" },
548 static struct platform_driver skylake_audio
= {
549 .probe
= skylake_audio_probe
,
551 .name
= "skl_alc286s_i2s",
552 .pm
= &snd_soc_pm_ops
,
554 .id_table
= skl_board_ids
,
558 module_platform_driver(skylake_audio
)
560 /* Module information */
561 MODULE_AUTHOR("Omair Mohammed Abdullah <omair.m.abdullah@intel.com>");
562 MODULE_DESCRIPTION("Intel SST Audio for Skylake");
563 MODULE_LICENSE("GPL v2");
564 MODULE_ALIAS("platform:skl_alc286s_i2s");
565 MODULE_ALIAS("platform:kbl_alc286s_i2s");