mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 13:04:03 +08:00
ASoC: amd: acp: Add acp_machine struct for renoir platform.
Add acpi_mach struct for renoir platform to select machine driver based on codec and amp ACPI id. Signed-off-by: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com> Link: https://lore.kernel.org/r/20211025074808.471333-1-AjitKumar.Pandey@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e8e8c4a5d1
commit
8a8e1b90bd
@ -25,6 +25,25 @@
|
||||
|
||||
#define DRV_NAME "acp_asoc_renoir"
|
||||
|
||||
static struct snd_soc_acpi_codecs amp_rt1019 = {
|
||||
.num_codecs = 1,
|
||||
.codecs = {"10EC1019"}
|
||||
};
|
||||
|
||||
static struct snd_soc_acpi_mach snd_soc_acpi_amd_acp_machines[] = {
|
||||
{
|
||||
.id = "10EC5682",
|
||||
.drv_name = "rn_rt5682_rt1019",
|
||||
.machine_quirk = snd_soc_acpi_codec_list,
|
||||
.quirk_data = &_rt1019,
|
||||
},
|
||||
{
|
||||
.id = "AMDI1019",
|
||||
.drv_name = "renoir-acp",
|
||||
},
|
||||
{},
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_driver acp_renoir_dai[] = {
|
||||
{
|
||||
.name = "acp-i2s-sp",
|
||||
|
@ -102,7 +102,6 @@ int acp_platform_register(struct device *dev);
|
||||
int acp_platform_unregister(struct device *dev);
|
||||
|
||||
int acp_machine_select(struct acp_dev_data *adata);
|
||||
extern struct snd_soc_acpi_mach snd_soc_acpi_amd_acp_machines[];
|
||||
|
||||
static inline u64 acp_get_byte_count(struct acp_dev_data *adata, int dai_id, int direction)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user