ASoC: Intel: sof_rt5682: Add support for adl_rt1019_rt5682s
This patch adds the driver data for two rt1019 speaker amplifiers on SSP1 and rt5682s on SSP0 for ADL platform Reviewed-by: Brent Lu <brent.lu@intel.com> Signed-off-by: Vamshi Krishna <vamshi.krishna.gopal@intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20220509170922.54868-2-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e1c9f68aa2
commit
0b56ed197d
|
@ -459,5 +459,44 @@ void sof_rt1308_dai_link(struct snd_soc_dai_link *link)
|
|||
}
|
||||
EXPORT_SYMBOL_NS(sof_rt1308_dai_link, SND_SOC_INTEL_SOF_REALTEK_COMMON);
|
||||
|
||||
/*
|
||||
* 2-amp Configuration for RT1019
|
||||
*/
|
||||
|
||||
static const struct snd_soc_dapm_route rt1019_dapm_routes[] = {
|
||||
/* speaker */
|
||||
{ "Left Spk", NULL, "Speaker" },
|
||||
{ "Right Spk", NULL, "Speaker" },
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_link_component rt1019_components[] = {
|
||||
{
|
||||
.name = RT1019_DEV0_NAME,
|
||||
.dai_name = RT1019_CODEC_DAI,
|
||||
},
|
||||
};
|
||||
|
||||
static int rt1019_init(struct snd_soc_pcm_runtime *rtd)
|
||||
{
|
||||
struct snd_soc_card *card = rtd->card;
|
||||
int ret;
|
||||
|
||||
ret = snd_soc_dapm_add_routes(&card->dapm, rt1019_dapm_routes,
|
||||
ARRAY_SIZE(rt1019_dapm_routes));
|
||||
if (ret) {
|
||||
dev_err(rtd->dev, "Speaker map addition failed: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
void sof_rt1019_dai_link(struct snd_soc_dai_link *link)
|
||||
{
|
||||
link->codecs = rt1019_components;
|
||||
link->num_codecs = ARRAY_SIZE(rt1019_components);
|
||||
link->init = rt1019_init;
|
||||
}
|
||||
EXPORT_SYMBOL_NS(sof_rt1019_dai_link, SND_SOC_INTEL_SOF_REALTEK_COMMON);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC Intel SOF Realtek helpers");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -39,4 +39,9 @@ void sof_rt1015_codec_conf(struct snd_soc_card *card);
|
|||
#define RT1308_DEV0_NAME "i2c-10EC1308:00"
|
||||
void sof_rt1308_dai_link(struct snd_soc_dai_link *link);
|
||||
|
||||
#define RT1019_CODEC_DAI "HiFi"
|
||||
#define RT1019_DEV0_NAME "RTL1019:00"
|
||||
|
||||
void sof_rt1019_dai_link(struct snd_soc_dai_link *link);
|
||||
|
||||
#endif /* __SOF_REALTEK_COMMON_H */
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
#define SOF_RT5682S_HEADPHONE_CODEC_PRESENT BIT(23)
|
||||
#define SOF_MAX98390_SPEAKER_AMP_PRESENT BIT(24)
|
||||
#define SOF_MAX98390_TWEETER_SPEAKER_PRESENT BIT(25)
|
||||
#define SOF_RT1019_SPEAKER_AMP_PRESENT BIT(26)
|
||||
|
||||
|
||||
/* Default: MCLK on, MCLK 19.2M, SSP0 */
|
||||
|
@ -733,6 +734,8 @@ static struct snd_soc_dai_link *sof_card_dai_links_create(struct device *dev,
|
|||
SOF_RT1015_SPEAKER_AMP_100FS) ? 100 : 64);
|
||||
} else if (sof_rt5682_quirk & SOF_RT1015P_SPEAKER_AMP_PRESENT) {
|
||||
sof_rt1015p_dai_link(&links[id]);
|
||||
} else if (sof_rt5682_quirk & SOF_RT1019_SPEAKER_AMP_PRESENT) {
|
||||
sof_rt1019_dai_link(&links[id]);
|
||||
} else if (sof_rt5682_quirk &
|
||||
SOF_MAX98373_SPEAKER_AMP_PRESENT) {
|
||||
links[id].codecs = max_98373_components;
|
||||
|
@ -1070,6 +1073,16 @@ static const struct platform_device_id board_ids[] = {
|
|||
SOF_BT_OFFLOAD_SSP(2) |
|
||||
SOF_SSP_BT_OFFLOAD_PRESENT),
|
||||
},
|
||||
{
|
||||
.name = "adl_rt1019_rt5682s",
|
||||
.driver_data = (kernel_ulong_t)(SOF_RT5682_MCLK_EN |
|
||||
SOF_RT5682_SSP_CODEC(0) |
|
||||
SOF_RT5682S_HEADPHONE_CODEC_PRESENT |
|
||||
SOF_SPEAKER_AMP_PRESENT |
|
||||
SOF_RT1019_SPEAKER_AMP_PRESENT |
|
||||
SOF_RT5682_SSP_AMP(1) |
|
||||
SOF_RT5682_NUM_HDMIDEV(4)),
|
||||
},
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(platform, board_ids);
|
||||
|
|
|
@ -455,6 +455,13 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_adl_machines[] = {
|
|||
.quirk_data = &adl_max98360a_amp,
|
||||
.sof_tplg_filename = "sof-adl-mx98360a-nau8825.tplg",
|
||||
},
|
||||
{
|
||||
.id = "RTL5682",
|
||||
.drv_name = "adl_rt1019_rt5682s",
|
||||
.machine_quirk = snd_soc_acpi_codec_list,
|
||||
.quirk_data = &adl_rt1019p_amp,
|
||||
.sof_tplg_filename = "sof-adl-rt1019-rt5682.tplg",
|
||||
},
|
||||
{
|
||||
.id = "10508825",
|
||||
.drv_name = "sof_nau8825",
|
||||
|
|
Loading…
Reference in New Issue