mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Add SoundWire machine with RT722 multi functional codec support for ACP7.0 and ACP7.1 platforms at sdw link0 for sof stack. Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com> Link: https://patch.msgid.link/20250620120942.1168827-2-Vijendar.Mukunda@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
173 lines
3.5 KiB
C
173 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* amd-acp70-acpi-match.c - tables and support for ACP 7.0 & ACP7.1
|
|
* ACPI enumeration.
|
|
*
|
|
* Copyright 2025 Advanced Micro Devices, Inc.
|
|
*/
|
|
|
|
#include <sound/soc-acpi.h>
|
|
#include "../mach-config.h"
|
|
|
|
static const struct snd_soc_acpi_endpoint single_endpoint = {
|
|
.num = 0,
|
|
.aggregated = 0,
|
|
.group_position = 0,
|
|
.group_id = 0
|
|
};
|
|
|
|
static const struct snd_soc_acpi_endpoint spk_l_endpoint = {
|
|
.num = 0,
|
|
.aggregated = 1,
|
|
.group_position = 0,
|
|
.group_id = 1
|
|
};
|
|
|
|
static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
|
|
.num = 0,
|
|
.aggregated = 1,
|
|
.group_position = 1,
|
|
.group_id = 1
|
|
};
|
|
|
|
static const struct snd_soc_acpi_adr_device rt711_rt1316_group_adr[] = {
|
|
{
|
|
.adr = 0x000030025D071101ull,
|
|
.num_endpoints = 1,
|
|
.endpoints = &single_endpoint,
|
|
.name_prefix = "rt711"
|
|
},
|
|
{
|
|
.adr = 0x000030025D131601ull,
|
|
.num_endpoints = 1,
|
|
.endpoints = &spk_l_endpoint,
|
|
.name_prefix = "rt1316-1"
|
|
},
|
|
{
|
|
.adr = 0x000032025D131601ull,
|
|
.num_endpoints = 1,
|
|
.endpoints = &spk_r_endpoint,
|
|
.name_prefix = "rt1316-2"
|
|
},
|
|
};
|
|
|
|
static const struct snd_soc_acpi_adr_device rt714_adr[] = {
|
|
{
|
|
.adr = 0x130025d071401ull,
|
|
.num_endpoints = 1,
|
|
.endpoints = &single_endpoint,
|
|
.name_prefix = "rt714"
|
|
}
|
|
};
|
|
|
|
static const struct snd_soc_acpi_link_adr acp70_4_in_1_sdca[] = {
|
|
{ .mask = BIT(0),
|
|
.num_adr = ARRAY_SIZE(rt711_rt1316_group_adr),
|
|
.adr_d = rt711_rt1316_group_adr,
|
|
},
|
|
{
|
|
.mask = BIT(1),
|
|
.num_adr = ARRAY_SIZE(rt714_adr),
|
|
.adr_d = rt714_adr,
|
|
},
|
|
{}
|
|
};
|
|
|
|
static const struct snd_soc_acpi_endpoint rt722_endpoints[] = {
|
|
{
|
|
.num = 0,
|
|
.aggregated = 0,
|
|
.group_position = 0,
|
|
.group_id = 0,
|
|
},
|
|
{
|
|
.num = 1,
|
|
.aggregated = 0,
|
|
.group_position = 0,
|
|
.group_id = 0,
|
|
},
|
|
{
|
|
.num = 2,
|
|
.aggregated = 0,
|
|
.group_position = 0,
|
|
.group_id = 0,
|
|
},
|
|
};
|
|
|
|
static const struct snd_soc_acpi_adr_device rt722_0_single_adr[] = {
|
|
{
|
|
.adr = 0x000030025d072201ull,
|
|
.num_endpoints = ARRAY_SIZE(rt722_endpoints),
|
|
.endpoints = rt722_endpoints,
|
|
.name_prefix = "rt722"
|
|
}
|
|
};
|
|
|
|
static const struct snd_soc_acpi_adr_device rt1320_1_single_adr[] = {
|
|
{
|
|
.adr = 0x000130025D132001ull,
|
|
.num_endpoints = 1,
|
|
.endpoints = &single_endpoint,
|
|
.name_prefix = "rt1320-1"
|
|
}
|
|
};
|
|
|
|
static const struct snd_soc_acpi_link_adr acp70_rt722_only[] = {
|
|
{
|
|
.mask = BIT(0),
|
|
.num_adr = ARRAY_SIZE(rt722_0_single_adr),
|
|
.adr_d = rt722_0_single_adr,
|
|
},
|
|
{}
|
|
};
|
|
|
|
static const struct snd_soc_acpi_link_adr acp70_rt722_l0_rt1320_l1[] = {
|
|
{
|
|
.mask = BIT(0),
|
|
.num_adr = ARRAY_SIZE(rt722_0_single_adr),
|
|
.adr_d = rt722_0_single_adr,
|
|
},
|
|
{
|
|
.mask = BIT(1),
|
|
.num_adr = ARRAY_SIZE(rt1320_1_single_adr),
|
|
.adr_d = rt1320_1_single_adr,
|
|
},
|
|
{}
|
|
};
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_amd_acp70_sdw_machines[] = {
|
|
{
|
|
.link_mask = BIT(0) | BIT(1),
|
|
.links = acp70_rt722_l0_rt1320_l1,
|
|
.drv_name = "amd_sdw",
|
|
},
|
|
{
|
|
.link_mask = BIT(0),
|
|
.links = acp70_rt722_only,
|
|
.drv_name = "amd_sdw",
|
|
},
|
|
{
|
|
.link_mask = BIT(0) | BIT(1),
|
|
.links = acp70_4_in_1_sdca,
|
|
.drv_name = "amd_sdw",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL(snd_soc_acpi_amd_acp70_sdw_machines);
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_amd_acp70_sof_sdw_machines[] = {
|
|
{
|
|
.link_mask = BIT(0),
|
|
.links = acp70_rt722_only,
|
|
.drv_name = "amd_sof_sdw",
|
|
.sof_tplg_filename = "sof-acp_7_0-rt722-l0.tplg",
|
|
.fw_filename = "sof-acp_7_0.ri",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL(snd_soc_acpi_amd_acp70_sof_sdw_machines);
|
|
|
|
MODULE_DESCRIPTION("AMD ACP7.0 & ACP7.1 tables and support for ACPI enumeration");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Vijendar.Mukunda@amd.com");
|