mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 02:32:49 -04:00
ASoC: Intel: sof_es8336: extend machine driver to support ES8326 codec
The ES8326 requires a different codec driver than ES8316/8336, fixup the codec name and dai name depending on the ACPI _HID exposed in the DSDT. Also add the select in Kconfig Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com> Link: https://lore.kernel.org/r/20220308192610.392950-19-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
8e5db49182
commit
70b519e5ca
@@ -530,12 +530,13 @@ config SND_SOC_INTEL_SOF_PCM512x_MACH
|
||||
If unsure select "N".
|
||||
|
||||
config SND_SOC_INTEL_SOF_ES8336_MACH
|
||||
tristate "SOF with ES8336 codec in I2S mode"
|
||||
tristate "SOF with ES8336 or ES8326 codec in I2S mode"
|
||||
depends on I2C && ACPI
|
||||
depends on MFD_INTEL_LPSS || COMPILE_TEST
|
||||
depends on GPIOLIB || COMPILE_TEST
|
||||
depends on SND_HDA_CODEC_HDMI && SND_SOC_SOF_HDA_AUDIO_CODEC
|
||||
select SND_SOC_ES8316
|
||||
select SND_SOC_ES8326
|
||||
select SND_SOC_DMIC
|
||||
select SND_SOC_INTEL_HDA_DSP_COMMON
|
||||
help
|
||||
|
||||
@@ -292,7 +292,7 @@ static struct snd_soc_dai_link_component platform_component[] = {
|
||||
}
|
||||
};
|
||||
|
||||
SND_SOC_DAILINK_DEF(ssp1_codec,
|
||||
SND_SOC_DAILINK_DEF(es8336_codec,
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC("i2c-ESSX8336:00", "ES8316 HiFi")));
|
||||
|
||||
static struct snd_soc_dai_link_component dmic_component[] = {
|
||||
@@ -356,8 +356,8 @@ static struct snd_soc_dai_link *sof_card_dai_links_create(struct device *dev,
|
||||
goto devm_err;
|
||||
|
||||
links[id].id = id;
|
||||
links[id].codecs = ssp1_codec;
|
||||
links[id].num_codecs = ARRAY_SIZE(ssp1_codec);
|
||||
links[id].codecs = es8336_codec;
|
||||
links[id].num_codecs = ARRAY_SIZE(es8336_codec);
|
||||
links[id].platforms = platform_component;
|
||||
links[id].num_platforms = ARRAY_SIZE(platform_component);
|
||||
links[id].init = sof_es8316_init;
|
||||
@@ -539,6 +539,10 @@ static int sof_es8336_probe(struct platform_device *pdev)
|
||||
"i2c-%s", acpi_dev_name(adev));
|
||||
put_device(&adev->dev);
|
||||
dai_links[0].codecs->name = codec_name;
|
||||
|
||||
/* also fixup codec dai name if relevant */
|
||||
if (!strncmp(mach->id, "ESSX8326", SND_ACPI_I2C_ID_LEN))
|
||||
dai_links[0].codecs->dai_name = "ES8326 HiFi";
|
||||
} else {
|
||||
dev_err(dev, "Error cannot find '%s' dev\n", mach->id);
|
||||
return -ENXIO;
|
||||
|
||||
Reference in New Issue
Block a user