ASoC: Intel: cht_bsw_rt5645: Add quirk for boards using pmc_plt_clk_0
As of commit648e921888
("clk: x86: Stop marking clocks as CLK_IS_CRITICAL"), the cht_bsw_rt5645 driver needs to enable the clock it's using for the codec's mclk. It does this from commit7735bce05a
("ASoC: Intel: boards: use devm_clk_get() unconditionally"), enabling pmc_plt_clk_3. However, Strago family Chromebooks use pmc_plt_clk_0 for the codec mclk, resulting in white noise with some digital microphones. Add a DMI-based quirk for Strago family Chromebooks to use pmc_plt_clk_0 instead - mirroring the changes made to cht_bsw_max98090_ti in commita182ecd380
("ASoC: intel: cht_bsw_max98090_ti: Add quirk for boards using pmc_plt_clk_0") and making use of the existing dmi_check_system() call and related infrastructure added in commit22af29114e
("ASoC: Intel: cht-bsw-rt5645: add quirks for SSP0/AIF1/AIF2 routing"). Signed-off-by: Sam McNally <sammc@chromium.org> Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20190917054933.209335-1-sammc@chromium.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
@@ -48,6 +48,7 @@ struct cht_mc_private {
|
|||||||
#define CHT_RT5645_SSP2_AIF2 BIT(16) /* default is using AIF1 */
|
#define CHT_RT5645_SSP2_AIF2 BIT(16) /* default is using AIF1 */
|
||||||
#define CHT_RT5645_SSP0_AIF1 BIT(17)
|
#define CHT_RT5645_SSP0_AIF1 BIT(17)
|
||||||
#define CHT_RT5645_SSP0_AIF2 BIT(18)
|
#define CHT_RT5645_SSP0_AIF2 BIT(18)
|
||||||
|
#define CHT_RT5645_PMC_PLT_CLK_0 BIT(19)
|
||||||
|
|
||||||
static unsigned long cht_rt5645_quirk = 0;
|
static unsigned long cht_rt5645_quirk = 0;
|
||||||
|
|
||||||
@@ -59,6 +60,8 @@ static void log_quirks(struct device *dev)
|
|||||||
dev_info(dev, "quirk SSP0_AIF1 enabled");
|
dev_info(dev, "quirk SSP0_AIF1 enabled");
|
||||||
if (cht_rt5645_quirk & CHT_RT5645_SSP0_AIF2)
|
if (cht_rt5645_quirk & CHT_RT5645_SSP0_AIF2)
|
||||||
dev_info(dev, "quirk SSP0_AIF2 enabled");
|
dev_info(dev, "quirk SSP0_AIF2 enabled");
|
||||||
|
if (cht_rt5645_quirk & CHT_RT5645_PMC_PLT_CLK_0)
|
||||||
|
dev_info(dev, "quirk PMC_PLT_CLK_0 enabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
static int platform_clock_control(struct snd_soc_dapm_widget *w,
|
static int platform_clock_control(struct snd_soc_dapm_widget *w,
|
||||||
@@ -226,15 +229,21 @@ static int cht_aif1_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* uncomment when we have a real quirk
|
|
||||||
static int cht_rt5645_quirk_cb(const struct dmi_system_id *id)
|
static int cht_rt5645_quirk_cb(const struct dmi_system_id *id)
|
||||||
{
|
{
|
||||||
cht_rt5645_quirk = (unsigned long)id->driver_data;
|
cht_rt5645_quirk = (unsigned long)id->driver_data;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
static const struct dmi_system_id cht_rt5645_quirk_table[] = {
|
static const struct dmi_system_id cht_rt5645_quirk_table[] = {
|
||||||
|
{
|
||||||
|
/* Strago family Chromebooks */
|
||||||
|
.callback = cht_rt5645_quirk_cb,
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_PRODUCT_FAMILY, "Intel_Strago"),
|
||||||
|
},
|
||||||
|
.driver_data = (void *)CHT_RT5645_PMC_PLT_CLK_0,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -526,6 +535,7 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||||||
int dai_index = 0;
|
int dai_index = 0;
|
||||||
int ret_val = 0;
|
int ret_val = 0;
|
||||||
int i;
|
int i;
|
||||||
|
const char *mclk_name;
|
||||||
|
|
||||||
drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
|
drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
|
||||||
if (!drv)
|
if (!drv)
|
||||||
@@ -662,11 +672,15 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||||||
if (ret_val)
|
if (ret_val)
|
||||||
return ret_val;
|
return ret_val;
|
||||||
|
|
||||||
drv->mclk = devm_clk_get(&pdev->dev, "pmc_plt_clk_3");
|
if (cht_rt5645_quirk & CHT_RT5645_PMC_PLT_CLK_0)
|
||||||
|
mclk_name = "pmc_plt_clk_0";
|
||||||
|
else
|
||||||
|
mclk_name = "pmc_plt_clk_3";
|
||||||
|
|
||||||
|
drv->mclk = devm_clk_get(&pdev->dev, mclk_name);
|
||||||
if (IS_ERR(drv->mclk)) {
|
if (IS_ERR(drv->mclk)) {
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev, "Failed to get MCLK from %s: %ld\n",
|
||||||
"Failed to get MCLK from pmc_plt_clk_3: %ld\n",
|
mclk_name, PTR_ERR(drv->mclk));
|
||||||
PTR_ERR(drv->mclk));
|
|
||||||
return PTR_ERR(drv->mclk);
|
return PTR_ERR(drv->mclk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user