| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Intel Kabylake I2S Machine Driver with MAXIM98927 |
|---|
| 3 | 4 | * RT5514 and RT5663 Codecs |
|---|
| .. | .. |
|---|
| 7 | 8 | * Modified from: |
|---|
| 8 | 9 | * Intel Kabylake I2S Machine driver supporting MAXIM98927 and |
|---|
| 9 | 10 | * RT5663 codecs |
|---|
| 10 | | - * |
|---|
| 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. |
|---|
| 14 | | - * |
|---|
| 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. |
|---|
| 19 | 11 | */ |
|---|
| 20 | 12 | |
|---|
| 21 | 13 | #include <linux/input.h> |
|---|
| .. | .. |
|---|
| 26 | 18 | #include <sound/pcm.h> |
|---|
| 27 | 19 | #include <sound/pcm_params.h> |
|---|
| 28 | 20 | #include <sound/soc.h> |
|---|
| 21 | +#include <sound/soc-acpi.h> |
|---|
| 29 | 22 | #include "../../codecs/rt5514.h" |
|---|
| 30 | 23 | #include "../../codecs/rt5663.h" |
|---|
| 31 | 24 | #include "../../codecs/hdac_hdmi.h" |
|---|
| 32 | | -#include "../skylake/skl.h" |
|---|
| 25 | +#include <linux/clk.h> |
|---|
| 26 | +#include <linux/clk-provider.h> |
|---|
| 27 | +#include <linux/clkdev.h> |
|---|
| 33 | 28 | |
|---|
| 34 | 29 | #define KBL_REALTEK_CODEC_DAI "rt5663-aif" |
|---|
| 35 | 30 | #define KBL_REALTEK_DMIC_CODEC_DAI "rt5514-aif1" |
|---|
| .. | .. |
|---|
| 58 | 53 | struct snd_soc_jack kabylake_headset; |
|---|
| 59 | 54 | struct list_head hdmi_pcm_list; |
|---|
| 60 | 55 | struct snd_soc_jack kabylake_hdmi[2]; |
|---|
| 56 | + struct clk *mclk; |
|---|
| 57 | + struct clk *sclk; |
|---|
| 61 | 58 | }; |
|---|
| 62 | 59 | |
|---|
| 63 | 60 | enum { |
|---|
| .. | .. |
|---|
| 79 | 76 | SOC_DAPM_PIN_SWITCH("DMIC"), |
|---|
| 80 | 77 | }; |
|---|
| 81 | 78 | |
|---|
| 79 | +static int platform_clock_control(struct snd_soc_dapm_widget *w, |
|---|
| 80 | + struct snd_kcontrol *k, int event) |
|---|
| 81 | +{ |
|---|
| 82 | + struct snd_soc_dapm_context *dapm = w->dapm; |
|---|
| 83 | + struct snd_soc_card *card = dapm->card; |
|---|
| 84 | + struct kbl_codec_private *priv = snd_soc_card_get_drvdata(card); |
|---|
| 85 | + int ret = 0; |
|---|
| 86 | + |
|---|
| 87 | + /* |
|---|
| 88 | + * MCLK/SCLK need to be ON early for a successful synchronization of |
|---|
| 89 | + * codec internal clock. And the clocks are turned off during |
|---|
| 90 | + * POST_PMD after the stream is stopped. |
|---|
| 91 | + */ |
|---|
| 92 | + switch (event) { |
|---|
| 93 | + case SND_SOC_DAPM_PRE_PMU: |
|---|
| 94 | + /* Enable MCLK */ |
|---|
| 95 | + ret = clk_set_rate(priv->mclk, 24000000); |
|---|
| 96 | + if (ret < 0) { |
|---|
| 97 | + dev_err(card->dev, "Can't set rate for mclk, err: %d\n", |
|---|
| 98 | + ret); |
|---|
| 99 | + return ret; |
|---|
| 100 | + } |
|---|
| 101 | + |
|---|
| 102 | + ret = clk_prepare_enable(priv->mclk); |
|---|
| 103 | + if (ret < 0) { |
|---|
| 104 | + dev_err(card->dev, "Can't enable mclk, err: %d\n", ret); |
|---|
| 105 | + return ret; |
|---|
| 106 | + } |
|---|
| 107 | + |
|---|
| 108 | + /* Enable SCLK */ |
|---|
| 109 | + ret = clk_set_rate(priv->sclk, 3072000); |
|---|
| 110 | + if (ret < 0) { |
|---|
| 111 | + dev_err(card->dev, "Can't set rate for sclk, err: %d\n", |
|---|
| 112 | + ret); |
|---|
| 113 | + clk_disable_unprepare(priv->mclk); |
|---|
| 114 | + return ret; |
|---|
| 115 | + } |
|---|
| 116 | + |
|---|
| 117 | + ret = clk_prepare_enable(priv->sclk); |
|---|
| 118 | + if (ret < 0) { |
|---|
| 119 | + dev_err(card->dev, "Can't enable sclk, err: %d\n", ret); |
|---|
| 120 | + clk_disable_unprepare(priv->mclk); |
|---|
| 121 | + } |
|---|
| 122 | + break; |
|---|
| 123 | + case SND_SOC_DAPM_POST_PMD: |
|---|
| 124 | + clk_disable_unprepare(priv->mclk); |
|---|
| 125 | + clk_disable_unprepare(priv->sclk); |
|---|
| 126 | + break; |
|---|
| 127 | + default: |
|---|
| 128 | + return 0; |
|---|
| 129 | + } |
|---|
| 130 | + |
|---|
| 131 | + return 0; |
|---|
| 132 | +} |
|---|
| 133 | + |
|---|
| 82 | 134 | static const struct snd_soc_dapm_widget kabylake_widgets[] = { |
|---|
| 83 | 135 | SND_SOC_DAPM_HP("Headphone Jack", NULL), |
|---|
| 84 | 136 | SND_SOC_DAPM_MIC("Headset Mic", NULL), |
|---|
| .. | .. |
|---|
| 87 | 139 | SND_SOC_DAPM_MIC("DMIC", NULL), |
|---|
| 88 | 140 | SND_SOC_DAPM_SPK("HDMI1", NULL), |
|---|
| 89 | 141 | SND_SOC_DAPM_SPK("HDMI2", NULL), |
|---|
| 142 | + SND_SOC_DAPM_SUPPLY("Platform Clock", SND_SOC_NOPM, 0, 0, |
|---|
| 143 | + platform_clock_control, SND_SOC_DAPM_PRE_PMU | |
|---|
| 144 | + SND_SOC_DAPM_POST_PMD), |
|---|
| 90 | 145 | |
|---|
| 91 | 146 | }; |
|---|
| 92 | 147 | |
|---|
| 93 | 148 | static const struct snd_soc_dapm_route kabylake_map[] = { |
|---|
| 94 | 149 | /* Headphones */ |
|---|
| 150 | + { "Headphone Jack", NULL, "Platform Clock" }, |
|---|
| 95 | 151 | { "Headphone Jack", NULL, "HPOL" }, |
|---|
| 96 | 152 | { "Headphone Jack", NULL, "HPOR" }, |
|---|
| 97 | 153 | |
|---|
| .. | .. |
|---|
| 100 | 156 | { "Right Spk", NULL, "Right BE_OUT" }, |
|---|
| 101 | 157 | |
|---|
| 102 | 158 | /* other jacks */ |
|---|
| 159 | + { "Headset Mic", NULL, "Platform Clock" }, |
|---|
| 103 | 160 | { "IN1P", NULL, "Headset Mic" }, |
|---|
| 104 | 161 | { "IN1N", NULL, "Headset Mic" }, |
|---|
| 105 | 162 | |
|---|
| .. | .. |
|---|
| 136 | 193 | |
|---|
| 137 | 194 | static struct snd_soc_codec_conf max98927_codec_conf[] = { |
|---|
| 138 | 195 | { |
|---|
| 139 | | - .dev_name = MAXIM_DEV0_NAME, |
|---|
| 196 | + .dlc = COMP_CODEC_CONF(MAXIM_DEV0_NAME), |
|---|
| 140 | 197 | .name_prefix = "Right", |
|---|
| 141 | 198 | }, |
|---|
| 142 | 199 | { |
|---|
| 143 | | - .dev_name = MAXIM_DEV1_NAME, |
|---|
| 200 | + .dlc = COMP_CODEC_CONF(MAXIM_DEV1_NAME), |
|---|
| 144 | 201 | .name_prefix = "Left", |
|---|
| 145 | 202 | }, |
|---|
| 146 | 203 | }; |
|---|
| 147 | 204 | |
|---|
| 148 | | -static struct snd_soc_dai_link_component ssp0_codec_components[] = { |
|---|
| 149 | | - { /* Left */ |
|---|
| 150 | | - .name = MAXIM_DEV0_NAME, |
|---|
| 151 | | - .dai_name = KBL_MAXIM_CODEC_DAI, |
|---|
| 152 | | - }, |
|---|
| 153 | | - { /* Right */ |
|---|
| 154 | | - .name = MAXIM_DEV1_NAME, |
|---|
| 155 | | - .dai_name = KBL_MAXIM_CODEC_DAI, |
|---|
| 156 | | - }, |
|---|
| 157 | | - { /*dmic */ |
|---|
| 158 | | - .name = RT5514_DEV_NAME, |
|---|
| 159 | | - .dai_name = KBL_REALTEK_DMIC_CODEC_DAI, |
|---|
| 160 | | - }, |
|---|
| 161 | | -}; |
|---|
| 162 | 205 | |
|---|
| 163 | 206 | static int kabylake_rt5663_fe_init(struct snd_soc_pcm_runtime *rtd) |
|---|
| 164 | 207 | { |
|---|
| 165 | 208 | struct snd_soc_dapm_context *dapm; |
|---|
| 166 | | - struct snd_soc_component *component = rtd->cpu_dai->component; |
|---|
| 209 | + struct snd_soc_component *component = asoc_rtd_to_cpu(rtd, 0)->component; |
|---|
| 167 | 210 | int ret; |
|---|
| 168 | 211 | |
|---|
| 169 | 212 | dapm = snd_soc_component_get_dapm(component); |
|---|
| .. | .. |
|---|
| 178 | 221 | { |
|---|
| 179 | 222 | int ret; |
|---|
| 180 | 223 | struct kbl_codec_private *ctx = snd_soc_card_get_drvdata(rtd->card); |
|---|
| 181 | | - struct snd_soc_component *component = rtd->codec_dai->component; |
|---|
| 224 | + struct snd_soc_component *component = asoc_rtd_to_codec(rtd, 0)->component; |
|---|
| 182 | 225 | struct snd_soc_jack *jack; |
|---|
| 183 | 226 | |
|---|
| 184 | 227 | /* |
|---|
| .. | .. |
|---|
| 212 | 255 | static int kabylake_hdmi_init(struct snd_soc_pcm_runtime *rtd, int device) |
|---|
| 213 | 256 | { |
|---|
| 214 | 257 | struct kbl_codec_private *ctx = snd_soc_card_get_drvdata(rtd->card); |
|---|
| 215 | | - struct snd_soc_dai *dai = rtd->codec_dai; |
|---|
| 258 | + struct snd_soc_dai *dai = asoc_rtd_to_codec(rtd, 0); |
|---|
| 216 | 259 | struct kbl_hdmi_pcm *pcm; |
|---|
| 217 | 260 | |
|---|
| 218 | 261 | pcm = devm_kzalloc(rtd->card->dev, sizeof(*pcm), GFP_KERNEL); |
|---|
| .. | .. |
|---|
| 290 | 333 | { |
|---|
| 291 | 334 | struct snd_interval *rate = hw_param_interval(params, |
|---|
| 292 | 335 | SNDRV_PCM_HW_PARAM_RATE); |
|---|
| 293 | | - struct snd_interval *channels = hw_param_interval(params, |
|---|
| 336 | + struct snd_interval *chan = hw_param_interval(params, |
|---|
| 294 | 337 | SNDRV_PCM_HW_PARAM_CHANNELS); |
|---|
| 295 | 338 | struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT); |
|---|
| 296 | | - struct snd_soc_dpcm *dpcm = container_of( |
|---|
| 297 | | - params, struct snd_soc_dpcm, hw_params); |
|---|
| 298 | | - struct snd_soc_dai_link *fe_dai_link = dpcm->fe->dai_link; |
|---|
| 299 | | - struct snd_soc_dai_link *be_dai_link = dpcm->be->dai_link; |
|---|
| 339 | + struct snd_soc_dpcm *dpcm, *rtd_dpcm = NULL; |
|---|
| 340 | + |
|---|
| 341 | + /* |
|---|
| 342 | + * The following loop will be called only for playback stream |
|---|
| 343 | + * In this platform, there is only one playback device on every SSP |
|---|
| 344 | + */ |
|---|
| 345 | + for_each_dpcm_fe(rtd, SNDRV_PCM_STREAM_PLAYBACK, dpcm) { |
|---|
| 346 | + rtd_dpcm = dpcm; |
|---|
| 347 | + break; |
|---|
| 348 | + } |
|---|
| 349 | + |
|---|
| 350 | + /* |
|---|
| 351 | + * This following loop will be called only for capture stream |
|---|
| 352 | + * In this platform, there is only one capture device on every SSP |
|---|
| 353 | + */ |
|---|
| 354 | + for_each_dpcm_fe(rtd, SNDRV_PCM_STREAM_CAPTURE, dpcm) { |
|---|
| 355 | + rtd_dpcm = dpcm; |
|---|
| 356 | + break; |
|---|
| 357 | + } |
|---|
| 358 | + |
|---|
| 359 | + if (!rtd_dpcm) |
|---|
| 360 | + return -EINVAL; |
|---|
| 361 | + |
|---|
| 362 | + /* |
|---|
| 363 | + * The above 2 loops are mutually exclusive based on the stream direction, |
|---|
| 364 | + * thus rtd_dpcm variable will never be overwritten |
|---|
| 365 | + */ |
|---|
| 300 | 366 | |
|---|
| 301 | 367 | /* |
|---|
| 302 | 368 | * The ADSP will convert the FE rate to 48k, stereo, 24 bit |
|---|
| 303 | 369 | */ |
|---|
| 304 | | - if (!strcmp(fe_dai_link->name, "Kbl Audio Port") || |
|---|
| 305 | | - !strcmp(fe_dai_link->name, "Kbl Audio Headset Playback") || |
|---|
| 306 | | - !strcmp(fe_dai_link->name, "Kbl Audio Capture Port")) { |
|---|
| 370 | + if (!strcmp(rtd_dpcm->fe->dai_link->name, "Kbl Audio Port") || |
|---|
| 371 | + !strcmp(rtd_dpcm->fe->dai_link->name, "Kbl Audio Headset Playback") || |
|---|
| 372 | + !strcmp(rtd_dpcm->fe->dai_link->name, "Kbl Audio Capture Port")) { |
|---|
| 307 | 373 | rate->min = rate->max = 48000; |
|---|
| 308 | | - channels->min = channels->max = 2; |
|---|
| 374 | + chan->min = chan->max = 2; |
|---|
| 309 | 375 | snd_mask_none(fmt); |
|---|
| 310 | 376 | snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE); |
|---|
| 311 | | - } else if (!strcmp(fe_dai_link->name, "Kbl Audio DMIC cap")) { |
|---|
| 377 | + } else if (!strcmp(rtd_dpcm->fe->dai_link->name, "Kbl Audio DMIC cap")) { |
|---|
| 312 | 378 | if (params_channels(params) == 2 || |
|---|
| 313 | 379 | DMIC_CH(dmic_constraints) == 2) |
|---|
| 314 | | - channels->min = channels->max = 2; |
|---|
| 380 | + chan->min = chan->max = 2; |
|---|
| 315 | 381 | else |
|---|
| 316 | | - channels->min = channels->max = 4; |
|---|
| 382 | + chan->min = chan->max = 4; |
|---|
| 317 | 383 | } |
|---|
| 318 | 384 | /* |
|---|
| 319 | 385 | * The speaker on the SSP0 supports S16_LE and not S24_LE. |
|---|
| 320 | 386 | * thus changing the mask here |
|---|
| 321 | 387 | */ |
|---|
| 322 | | - if (!strcmp(be_dai_link->name, "SSP0-Codec")) |
|---|
| 388 | + if (!strcmp(rtd_dpcm->be->dai_link->name, "SSP0-Codec")) |
|---|
| 323 | 389 | snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S16_LE); |
|---|
| 324 | 390 | |
|---|
| 325 | 391 | return 0; |
|---|
| .. | .. |
|---|
| 328 | 394 | static int kabylake_rt5663_hw_params(struct snd_pcm_substream *substream, |
|---|
| 329 | 395 | struct snd_pcm_hw_params *params) |
|---|
| 330 | 396 | { |
|---|
| 331 | | - struct snd_soc_pcm_runtime *rtd = substream->private_data; |
|---|
| 332 | | - struct snd_soc_dai *codec_dai = rtd->codec_dai; |
|---|
| 397 | + struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream); |
|---|
| 398 | + struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); |
|---|
| 333 | 399 | int ret; |
|---|
| 334 | 400 | |
|---|
| 335 | 401 | /* use ASRC for internal clocks, as PLL rate isn't multiple of BCLK */ |
|---|
| .. | .. |
|---|
| 352 | 418 | static int kabylake_ssp0_hw_params(struct snd_pcm_substream *substream, |
|---|
| 353 | 419 | struct snd_pcm_hw_params *params) |
|---|
| 354 | 420 | { |
|---|
| 355 | | - struct snd_soc_pcm_runtime *rtd = substream->private_data; |
|---|
| 421 | + struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream); |
|---|
| 422 | + struct snd_soc_dai *codec_dai; |
|---|
| 356 | 423 | int ret = 0, j; |
|---|
| 357 | 424 | |
|---|
| 358 | | - for (j = 0; j < rtd->num_codecs; j++) { |
|---|
| 359 | | - struct snd_soc_dai *codec_dai = rtd->codec_dais[j]; |
|---|
| 360 | | - |
|---|
| 425 | + for_each_rtd_codec_dais(rtd, j, codec_dai) { |
|---|
| 361 | 426 | if (!strcmp(codec_dai->component->name, RT5514_DEV_NAME)) { |
|---|
| 362 | 427 | ret = snd_soc_dai_set_tdm_slot(codec_dai, 0xF, 0, 8, 16); |
|---|
| 363 | 428 | if (ret < 0) { |
|---|
| .. | .. |
|---|
| 434 | 499 | .startup = kabylake_dmic_startup, |
|---|
| 435 | 500 | }; |
|---|
| 436 | 501 | |
|---|
| 502 | +SND_SOC_DAILINK_DEF(dummy, |
|---|
| 503 | + DAILINK_COMP_ARRAY(COMP_DUMMY())); |
|---|
| 504 | + |
|---|
| 505 | +SND_SOC_DAILINK_DEF(system, |
|---|
| 506 | + DAILINK_COMP_ARRAY(COMP_CPU("System Pin"))); |
|---|
| 507 | + |
|---|
| 508 | +SND_SOC_DAILINK_DEF(system2, |
|---|
| 509 | + DAILINK_COMP_ARRAY(COMP_CPU("System Pin2"))); |
|---|
| 510 | + |
|---|
| 511 | +SND_SOC_DAILINK_DEF(echoref, |
|---|
| 512 | + DAILINK_COMP_ARRAY(COMP_CPU("Echoref Pin"))); |
|---|
| 513 | + |
|---|
| 514 | +SND_SOC_DAILINK_DEF(spi_cpu, |
|---|
| 515 | + DAILINK_COMP_ARRAY(COMP_CPU("spi-PRP0001:00"))); |
|---|
| 516 | +SND_SOC_DAILINK_DEF(spi_platform, |
|---|
| 517 | + DAILINK_COMP_ARRAY(COMP_PLATFORM("spi-PRP0001:00"))); |
|---|
| 518 | + |
|---|
| 519 | +SND_SOC_DAILINK_DEF(dmic, |
|---|
| 520 | + DAILINK_COMP_ARRAY(COMP_CPU("DMIC Pin"))); |
|---|
| 521 | + |
|---|
| 522 | +SND_SOC_DAILINK_DEF(hdmi1, |
|---|
| 523 | + DAILINK_COMP_ARRAY(COMP_CPU("HDMI1 Pin"))); |
|---|
| 524 | + |
|---|
| 525 | +SND_SOC_DAILINK_DEF(hdmi2, |
|---|
| 526 | + DAILINK_COMP_ARRAY(COMP_CPU("HDMI2 Pin"))); |
|---|
| 527 | + |
|---|
| 528 | +SND_SOC_DAILINK_DEF(ssp0_pin, |
|---|
| 529 | + DAILINK_COMP_ARRAY(COMP_CPU("SSP0 Pin"))); |
|---|
| 530 | +SND_SOC_DAILINK_DEF(ssp0_codec, |
|---|
| 531 | + DAILINK_COMP_ARRAY( |
|---|
| 532 | + /* Left */ COMP_CODEC(MAXIM_DEV0_NAME, KBL_MAXIM_CODEC_DAI), |
|---|
| 533 | + /* Right */COMP_CODEC(MAXIM_DEV1_NAME, KBL_MAXIM_CODEC_DAI), |
|---|
| 534 | + /* dmic */ COMP_CODEC(RT5514_DEV_NAME, KBL_REALTEK_DMIC_CODEC_DAI))); |
|---|
| 535 | + |
|---|
| 536 | +SND_SOC_DAILINK_DEF(ssp1_pin, |
|---|
| 537 | + DAILINK_COMP_ARRAY(COMP_CPU("SSP1 Pin"))); |
|---|
| 538 | +SND_SOC_DAILINK_DEF(ssp1_codec, |
|---|
| 539 | + DAILINK_COMP_ARRAY(COMP_CODEC(RT5663_DEV_NAME, KBL_REALTEK_CODEC_DAI))); |
|---|
| 540 | + |
|---|
| 541 | +SND_SOC_DAILINK_DEF(idisp1_pin, |
|---|
| 542 | + DAILINK_COMP_ARRAY(COMP_CPU("iDisp1 Pin"))); |
|---|
| 543 | +SND_SOC_DAILINK_DEF(idisp1_codec, |
|---|
| 544 | + DAILINK_COMP_ARRAY(COMP_CODEC("ehdaudio0D2", "intel-hdmi-hifi1"))); |
|---|
| 545 | + |
|---|
| 546 | +SND_SOC_DAILINK_DEF(idisp2_pin, |
|---|
| 547 | + DAILINK_COMP_ARRAY(COMP_CPU("iDisp2 Pin"))); |
|---|
| 548 | +SND_SOC_DAILINK_DEF(idisp2_codec, |
|---|
| 549 | + DAILINK_COMP_ARRAY(COMP_CODEC("ehdaudio0D2", "intel-hdmi-hifi2"))); |
|---|
| 550 | + |
|---|
| 551 | +SND_SOC_DAILINK_DEF(platform, |
|---|
| 552 | + DAILINK_COMP_ARRAY(COMP_PLATFORM("0000:00:1f.3"))); |
|---|
| 553 | + |
|---|
| 437 | 554 | /* kabylake digital audio interface glue - connects codec <--> CPU */ |
|---|
| 438 | 555 | static struct snd_soc_dai_link kabylake_dais[] = { |
|---|
| 439 | 556 | /* Front End DAI links */ |
|---|
| 440 | 557 | [KBL_DPCM_AUDIO_PB] = { |
|---|
| 441 | 558 | .name = "Kbl Audio Port", |
|---|
| 442 | 559 | .stream_name = "Audio", |
|---|
| 443 | | - .cpu_dai_name = "System Pin", |
|---|
| 444 | | - .platform_name = "0000:00:1f.3", |
|---|
| 445 | 560 | .dynamic = 1, |
|---|
| 446 | | - .codec_name = "snd-soc-dummy", |
|---|
| 447 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 448 | 561 | .nonatomic = 1, |
|---|
| 449 | 562 | .init = kabylake_rt5663_fe_init, |
|---|
| 450 | 563 | .trigger = { |
|---|
| 451 | 564 | SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, |
|---|
| 452 | 565 | .dpcm_playback = 1, |
|---|
| 453 | 566 | .ops = &kabylake_rt5663_fe_ops, |
|---|
| 567 | + SND_SOC_DAILINK_REG(system, dummy, platform), |
|---|
| 454 | 568 | }, |
|---|
| 455 | 569 | [KBL_DPCM_AUDIO_CP] = { |
|---|
| 456 | 570 | .name = "Kbl Audio Capture Port", |
|---|
| 457 | 571 | .stream_name = "Audio Record", |
|---|
| 458 | | - .cpu_dai_name = "System Pin", |
|---|
| 459 | | - .platform_name = "0000:00:1f.3", |
|---|
| 460 | 572 | .dynamic = 1, |
|---|
| 461 | | - .codec_name = "snd-soc-dummy", |
|---|
| 462 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 463 | 573 | .nonatomic = 1, |
|---|
| 464 | 574 | .trigger = { |
|---|
| 465 | 575 | SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, |
|---|
| 466 | 576 | .dpcm_capture = 1, |
|---|
| 467 | 577 | .ops = &kabylake_rt5663_fe_ops, |
|---|
| 578 | + SND_SOC_DAILINK_REG(system, dummy, platform), |
|---|
| 468 | 579 | }, |
|---|
| 469 | 580 | [KBL_DPCM_AUDIO_HS_PB] = { |
|---|
| 470 | 581 | .name = "Kbl Audio Headset Playback", |
|---|
| 471 | 582 | .stream_name = "Headset Audio", |
|---|
| 472 | | - .cpu_dai_name = "System Pin2", |
|---|
| 473 | | - .codec_name = "snd-soc-dummy", |
|---|
| 474 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 475 | | - .platform_name = "0000:00:1f.3", |
|---|
| 476 | 583 | .dpcm_playback = 1, |
|---|
| 477 | 584 | .nonatomic = 1, |
|---|
| 478 | 585 | .dynamic = 1, |
|---|
| 586 | + SND_SOC_DAILINK_REG(system2, dummy, platform), |
|---|
| 479 | 587 | }, |
|---|
| 480 | 588 | [KBL_DPCM_AUDIO_ECHO_REF_CP] = { |
|---|
| 481 | 589 | .name = "Kbl Audio Echo Reference cap", |
|---|
| 482 | 590 | .stream_name = "Echoreference Capture", |
|---|
| 483 | | - .cpu_dai_name = "Echoref Pin", |
|---|
| 484 | | - .codec_name = "snd-soc-dummy", |
|---|
| 485 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 486 | | - .platform_name = "0000:00:1f.3", |
|---|
| 487 | 591 | .init = NULL, |
|---|
| 488 | | - .capture_only = 1, |
|---|
| 592 | + .dpcm_capture = 1, |
|---|
| 489 | 593 | .nonatomic = 1, |
|---|
| 594 | + SND_SOC_DAILINK_REG(echoref, dummy, platform), |
|---|
| 490 | 595 | }, |
|---|
| 491 | 596 | [KBL_DPCM_AUDIO_RT5514_DSP] = { |
|---|
| 492 | 597 | .name = "rt5514 dsp", |
|---|
| 493 | 598 | .stream_name = "Wake on Voice", |
|---|
| 494 | | - .cpu_dai_name = "spi-PRP0001:00", |
|---|
| 495 | | - .platform_name = "spi-PRP0001:00", |
|---|
| 496 | | - .codec_name = "snd-soc-dummy", |
|---|
| 497 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 599 | + SND_SOC_DAILINK_REG(spi_cpu, dummy, spi_platform), |
|---|
| 498 | 600 | }, |
|---|
| 499 | 601 | [KBL_DPCM_AUDIO_DMIC_CP] = { |
|---|
| 500 | 602 | .name = "Kbl Audio DMIC cap", |
|---|
| 501 | 603 | .stream_name = "dmiccap", |
|---|
| 502 | | - .cpu_dai_name = "DMIC Pin", |
|---|
| 503 | | - .codec_name = "snd-soc-dummy", |
|---|
| 504 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 505 | | - .platform_name = "0000:00:1f.3", |
|---|
| 506 | 604 | .init = NULL, |
|---|
| 507 | 605 | .dpcm_capture = 1, |
|---|
| 508 | 606 | .nonatomic = 1, |
|---|
| 509 | 607 | .dynamic = 1, |
|---|
| 510 | 608 | .ops = &kabylake_dmic_ops, |
|---|
| 609 | + SND_SOC_DAILINK_REG(dmic, dummy, platform), |
|---|
| 511 | 610 | }, |
|---|
| 512 | 611 | [KBL_DPCM_AUDIO_HDMI1_PB] = { |
|---|
| 513 | 612 | .name = "Kbl HDMI Port1", |
|---|
| 514 | 613 | .stream_name = "Hdmi1", |
|---|
| 515 | | - .cpu_dai_name = "HDMI1 Pin", |
|---|
| 516 | | - .codec_name = "snd-soc-dummy", |
|---|
| 517 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 518 | | - .platform_name = "0000:00:1f.3", |
|---|
| 519 | 614 | .dpcm_playback = 1, |
|---|
| 520 | 615 | .init = NULL, |
|---|
| 521 | 616 | .trigger = { |
|---|
| 522 | 617 | SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, |
|---|
| 523 | 618 | .nonatomic = 1, |
|---|
| 524 | 619 | .dynamic = 1, |
|---|
| 620 | + SND_SOC_DAILINK_REG(hdmi1, dummy, platform), |
|---|
| 525 | 621 | }, |
|---|
| 526 | 622 | [KBL_DPCM_AUDIO_HDMI2_PB] = { |
|---|
| 527 | 623 | .name = "Kbl HDMI Port2", |
|---|
| 528 | 624 | .stream_name = "Hdmi2", |
|---|
| 529 | | - .cpu_dai_name = "HDMI2 Pin", |
|---|
| 530 | | - .codec_name = "snd-soc-dummy", |
|---|
| 531 | | - .codec_dai_name = "snd-soc-dummy-dai", |
|---|
| 532 | | - .platform_name = "0000:00:1f.3", |
|---|
| 533 | 625 | .dpcm_playback = 1, |
|---|
| 534 | 626 | .init = NULL, |
|---|
| 535 | 627 | .trigger = { |
|---|
| 536 | 628 | SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, |
|---|
| 537 | 629 | .nonatomic = 1, |
|---|
| 538 | 630 | .dynamic = 1, |
|---|
| 631 | + SND_SOC_DAILINK_REG(hdmi2, dummy, platform), |
|---|
| 539 | 632 | }, |
|---|
| 540 | 633 | /* Back End DAI links */ |
|---|
| 541 | 634 | /* single Back end dai for both max speakers and dmic */ |
|---|
| .. | .. |
|---|
| 543 | 636 | /* SSP0 - Codec */ |
|---|
| 544 | 637 | .name = "SSP0-Codec", |
|---|
| 545 | 638 | .id = 0, |
|---|
| 546 | | - .cpu_dai_name = "SSP0 Pin", |
|---|
| 547 | | - .platform_name = "0000:00:1f.3", |
|---|
| 548 | 639 | .no_pcm = 1, |
|---|
| 549 | | - .codecs = ssp0_codec_components, |
|---|
| 550 | | - .num_codecs = ARRAY_SIZE(ssp0_codec_components), |
|---|
| 551 | 640 | .dai_fmt = SND_SOC_DAIFMT_DSP_B | |
|---|
| 552 | 641 | SND_SOC_DAIFMT_NB_NF | |
|---|
| 553 | 642 | SND_SOC_DAIFMT_CBS_CFS, |
|---|
| .. | .. |
|---|
| 556 | 645 | .dpcm_playback = 1, |
|---|
| 557 | 646 | .dpcm_capture = 1, |
|---|
| 558 | 647 | .ops = &kabylake_ssp0_ops, |
|---|
| 648 | + SND_SOC_DAILINK_REG(ssp0_pin, ssp0_codec, platform), |
|---|
| 559 | 649 | }, |
|---|
| 560 | 650 | { |
|---|
| 561 | 651 | .name = "SSP1-Codec", |
|---|
| 562 | 652 | .id = 1, |
|---|
| 563 | | - .cpu_dai_name = "SSP1 Pin", |
|---|
| 564 | | - .platform_name = "0000:00:1f.3", |
|---|
| 565 | 653 | .no_pcm = 1, |
|---|
| 566 | | - .codec_name = RT5663_DEV_NAME, |
|---|
| 567 | | - .codec_dai_name = KBL_REALTEK_CODEC_DAI, |
|---|
| 568 | 654 | .init = kabylake_rt5663_codec_init, |
|---|
| 569 | 655 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | |
|---|
| 570 | 656 | SND_SOC_DAIFMT_CBS_CFS, |
|---|
| .. | .. |
|---|
| 573 | 659 | .ops = &kabylake_rt5663_ops, |
|---|
| 574 | 660 | .dpcm_playback = 1, |
|---|
| 575 | 661 | .dpcm_capture = 1, |
|---|
| 662 | + SND_SOC_DAILINK_REG(ssp1_pin, ssp1_codec, platform), |
|---|
| 576 | 663 | }, |
|---|
| 577 | 664 | { |
|---|
| 578 | 665 | .name = "iDisp1", |
|---|
| 579 | 666 | .id = 3, |
|---|
| 580 | | - .cpu_dai_name = "iDisp1 Pin", |
|---|
| 581 | | - .codec_name = "ehdaudio0D2", |
|---|
| 582 | | - .codec_dai_name = "intel-hdmi-hifi1", |
|---|
| 583 | | - .platform_name = "0000:00:1f.3", |
|---|
| 584 | 667 | .dpcm_playback = 1, |
|---|
| 585 | 668 | .init = kabylake_hdmi1_init, |
|---|
| 586 | 669 | .no_pcm = 1, |
|---|
| 670 | + SND_SOC_DAILINK_REG(idisp1_pin, idisp1_codec, platform), |
|---|
| 587 | 671 | }, |
|---|
| 588 | 672 | { |
|---|
| 589 | 673 | .name = "iDisp2", |
|---|
| 590 | 674 | .id = 4, |
|---|
| 591 | | - .cpu_dai_name = "iDisp2 Pin", |
|---|
| 592 | | - .codec_name = "ehdaudio0D2", |
|---|
| 593 | | - .codec_dai_name = "intel-hdmi-hifi2", |
|---|
| 594 | | - .platform_name = "0000:00:1f.3", |
|---|
| 595 | 675 | .init = kabylake_hdmi2_init, |
|---|
| 596 | 676 | .dpcm_playback = 1, |
|---|
| 597 | 677 | .no_pcm = 1, |
|---|
| 678 | + SND_SOC_DAILINK_REG(idisp2_pin, idisp2_codec, platform), |
|---|
| 598 | 679 | }, |
|---|
| 599 | 680 | }; |
|---|
| 681 | + |
|---|
| 682 | +static int kabylake_set_bias_level(struct snd_soc_card *card, |
|---|
| 683 | + struct snd_soc_dapm_context *dapm, enum snd_soc_bias_level level) |
|---|
| 684 | +{ |
|---|
| 685 | + struct snd_soc_component *component = dapm->component; |
|---|
| 686 | + struct kbl_codec_private *priv = snd_soc_card_get_drvdata(card); |
|---|
| 687 | + int ret = 0; |
|---|
| 688 | + |
|---|
| 689 | + if (!component || strcmp(component->name, RT5514_DEV_NAME)) |
|---|
| 690 | + return 0; |
|---|
| 691 | + |
|---|
| 692 | + if (IS_ERR(priv->mclk)) |
|---|
| 693 | + return 0; |
|---|
| 694 | + |
|---|
| 695 | + /* |
|---|
| 696 | + * It's required to control mclk directly in the set_bias_level |
|---|
| 697 | + * function for rt5514 codec or the recording function could |
|---|
| 698 | + * break. |
|---|
| 699 | + */ |
|---|
| 700 | + switch (level) { |
|---|
| 701 | + case SND_SOC_BIAS_PREPARE: |
|---|
| 702 | + if (dapm->bias_level == SND_SOC_BIAS_ON) { |
|---|
| 703 | + if (!__clk_is_enabled(priv->mclk)) |
|---|
| 704 | + return 0; |
|---|
| 705 | + dev_dbg(card->dev, "Disable mclk"); |
|---|
| 706 | + clk_disable_unprepare(priv->mclk); |
|---|
| 707 | + } else { |
|---|
| 708 | + dev_dbg(card->dev, "Enable mclk"); |
|---|
| 709 | + ret = clk_set_rate(priv->mclk, 24000000); |
|---|
| 710 | + if (ret) { |
|---|
| 711 | + dev_err(card->dev, "Can't set rate for mclk, err: %d\n", |
|---|
| 712 | + ret); |
|---|
| 713 | + return ret; |
|---|
| 714 | + } |
|---|
| 715 | + |
|---|
| 716 | + ret = clk_prepare_enable(priv->mclk); |
|---|
| 717 | + if (ret) { |
|---|
| 718 | + dev_err(card->dev, "Can't enable mclk, err: %d\n", |
|---|
| 719 | + ret); |
|---|
| 720 | + |
|---|
| 721 | + /* mclk is already enabled in FW */ |
|---|
| 722 | + ret = 0; |
|---|
| 723 | + } |
|---|
| 724 | + } |
|---|
| 725 | + break; |
|---|
| 726 | + default: |
|---|
| 727 | + break; |
|---|
| 728 | + } |
|---|
| 729 | + |
|---|
| 730 | + return ret; |
|---|
| 731 | +} |
|---|
| 600 | 732 | |
|---|
| 601 | 733 | static int kabylake_card_late_probe(struct snd_soc_card *card) |
|---|
| 602 | 734 | { |
|---|
| .. | .. |
|---|
| 633 | 765 | * kabylake audio machine driver for MAX98927 + RT5514 + RT5663 |
|---|
| 634 | 766 | */ |
|---|
| 635 | 767 | static struct snd_soc_card kabylake_audio_card = { |
|---|
| 636 | | - .name = "kbl_r5514_5663_max", |
|---|
| 768 | + .name = "kbl-r5514-5663-max", |
|---|
| 637 | 769 | .owner = THIS_MODULE, |
|---|
| 638 | 770 | .dai_link = kabylake_dais, |
|---|
| 639 | 771 | .num_links = ARRAY_SIZE(kabylake_dais), |
|---|
| 772 | + .set_bias_level = kabylake_set_bias_level, |
|---|
| 640 | 773 | .controls = kabylake_controls, |
|---|
| 641 | 774 | .num_controls = ARRAY_SIZE(kabylake_controls), |
|---|
| 642 | 775 | .dapm_widgets = kabylake_widgets, |
|---|
| .. | .. |
|---|
| 652 | 785 | static int kabylake_audio_probe(struct platform_device *pdev) |
|---|
| 653 | 786 | { |
|---|
| 654 | 787 | struct kbl_codec_private *ctx; |
|---|
| 655 | | - struct skl_machine_pdata *pdata; |
|---|
| 788 | + struct snd_soc_acpi_mach *mach; |
|---|
| 789 | + int ret; |
|---|
| 656 | 790 | |
|---|
| 657 | 791 | ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL); |
|---|
| 658 | 792 | if (!ctx) |
|---|
| .. | .. |
|---|
| 663 | 797 | kabylake_audio_card.dev = &pdev->dev; |
|---|
| 664 | 798 | snd_soc_card_set_drvdata(&kabylake_audio_card, ctx); |
|---|
| 665 | 799 | |
|---|
| 666 | | - pdata = dev_get_drvdata(&pdev->dev); |
|---|
| 667 | | - if (pdata) |
|---|
| 668 | | - dmic_constraints = pdata->dmic_num == 2 ? |
|---|
| 800 | + mach = pdev->dev.platform_data; |
|---|
| 801 | + if (mach) |
|---|
| 802 | + dmic_constraints = mach->mach_params.dmic_num == 2 ? |
|---|
| 669 | 803 | &constraints_dmic_2ch : &constraints_dmic_channels; |
|---|
| 670 | 804 | |
|---|
| 805 | + ctx->mclk = devm_clk_get(&pdev->dev, "ssp1_mclk"); |
|---|
| 806 | + if (IS_ERR(ctx->mclk)) { |
|---|
| 807 | + ret = PTR_ERR(ctx->mclk); |
|---|
| 808 | + if (ret == -ENOENT) { |
|---|
| 809 | + dev_info(&pdev->dev, |
|---|
| 810 | + "Failed to get ssp1_mclk, defer probe\n"); |
|---|
| 811 | + return -EPROBE_DEFER; |
|---|
| 812 | + } |
|---|
| 813 | + |
|---|
| 814 | + dev_err(&pdev->dev, "Failed to get ssp1_mclk with err:%d\n", |
|---|
| 815 | + ret); |
|---|
| 816 | + return ret; |
|---|
| 817 | + } |
|---|
| 818 | + |
|---|
| 819 | + ctx->sclk = devm_clk_get(&pdev->dev, "ssp1_sclk"); |
|---|
| 820 | + if (IS_ERR(ctx->sclk)) { |
|---|
| 821 | + ret = PTR_ERR(ctx->sclk); |
|---|
| 822 | + if (ret == -ENOENT) { |
|---|
| 823 | + dev_info(&pdev->dev, |
|---|
| 824 | + "Failed to get ssp1_sclk, defer probe\n"); |
|---|
| 825 | + return -EPROBE_DEFER; |
|---|
| 826 | + } |
|---|
| 827 | + |
|---|
| 828 | + dev_err(&pdev->dev, "Failed to get ssp1_sclk with err:%d\n", |
|---|
| 829 | + ret); |
|---|
| 830 | + return ret; |
|---|
| 831 | + } |
|---|
| 832 | + |
|---|
| 671 | 833 | return devm_snd_soc_register_card(&pdev->dev, &kabylake_audio_card); |
|---|
| 672 | 834 | } |
|---|
| 673 | 835 | |
|---|