acp-config.c (4f2c0a4acffbec01079c28f839422e64ddeff004) acp-config.c (ef51cddf014b3e4909e9656025d1f7c2b4cc4117)
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2021 Advanced Micro Devices, Inc.
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>

--- 68 unchanged lines hidden (view full) ---

77 .codecs = {"10EC1019"}
78};
79
80static struct snd_soc_acpi_codecs amp_max = {
81 .num_codecs = 1,
82 .codecs = {"MX98360A"}
83};
84
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2021 Advanced Micro Devices, Inc.
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>

--- 68 unchanged lines hidden (view full) ---

77 .codecs = {"10EC1019"}
78};
79
80static struct snd_soc_acpi_codecs amp_max = {
81 .num_codecs = 1,
82 .codecs = {"MX98360A"}
83};
84
85static struct snd_soc_acpi_codecs amp_max98388 = {
86 .num_codecs = 1,
87 .codecs = {"ADS8388"}
88};
89
85struct snd_soc_acpi_mach snd_soc_acpi_amd_sof_machines[] = {
86 {
87 .id = "10EC5682",
88 .drv_name = "rt5682-rt1019",
89 .pdata = (void *)&acp_quirk_data,
90 .machine_quirk = snd_soc_acpi_codec_list,
91 .quirk_data = &amp_rt1019,
92 .fw_filename = "sof-rn.ri",

--- 32 unchanged lines hidden (view full) ---

125 .pdata = (void *)&acp_quirk_data,
126 .fw_filename = "sof-rn.ri",
127 .sof_tplg_filename = "sof-acp.tplg",
128 },
129 {},
130};
131EXPORT_SYMBOL(snd_soc_acpi_amd_sof_machines);
132
90struct snd_soc_acpi_mach snd_soc_acpi_amd_sof_machines[] = {
91 {
92 .id = "10EC5682",
93 .drv_name = "rt5682-rt1019",
94 .pdata = (void *)&acp_quirk_data,
95 .machine_quirk = snd_soc_acpi_codec_list,
96 .quirk_data = &amp_rt1019,
97 .fw_filename = "sof-rn.ri",

--- 32 unchanged lines hidden (view full) ---

130 .pdata = (void *)&acp_quirk_data,
131 .fw_filename = "sof-rn.ri",
132 .sof_tplg_filename = "sof-acp.tplg",
133 },
134 {},
135};
136EXPORT_SYMBOL(snd_soc_acpi_amd_sof_machines);
137
138struct snd_soc_acpi_mach snd_soc_acpi_amd_vangogh_sof_machines[] = {
139 {
140 .id = "NVTN2020",
141 .drv_name = "nau8821-max",
142 .pdata = &acp_quirk_data,
143 .machine_quirk = snd_soc_acpi_codec_list,
144 .quirk_data = &amp_max98388,
145 .fw_filename = "sof-vangogh.ri",
146 .sof_tplg_filename = "sof-vangogh-nau8821-max.tplg",
147 },
148 {},
149};
150EXPORT_SYMBOL(snd_soc_acpi_amd_vangogh_sof_machines);
151
133struct snd_soc_acpi_mach snd_soc_acpi_amd_rmb_sof_machines[] = {
134 {
135 .id = "AMDI1019",
136 .drv_name = "rmb-dsp",
137 .pdata = &acp_quirk_data,
138 .fw_filename = "sof-rmb.ri",
139 .sof_tplg_filename = "sof-acp-rmb.tplg",
140 },

--- 23 unchanged lines hidden ---
152struct snd_soc_acpi_mach snd_soc_acpi_amd_rmb_sof_machines[] = {
153 {
154 .id = "AMDI1019",
155 .drv_name = "rmb-dsp",
156 .pdata = &acp_quirk_data,
157 .fw_filename = "sof-rmb.ri",
158 .sof_tplg_filename = "sof-acp-rmb.tplg",
159 },

--- 23 unchanged lines hidden ---