1 // SPDX-License-Identifier: GPL-2.0
3 * soc-acpi-intel-cml-match.c - tables and support for CML ACPI enumeration.
5 * Copyright (c) 2019, Intel Corporation.
9 #include <sound/soc-acpi.h>
10 #include <sound/soc-acpi-intel-match.h>
12 static struct snd_soc_acpi_codecs rt1011_spk_codecs
= {
14 .codecs
= {"10EC1011"}
17 static struct snd_soc_acpi_codecs max98357a_spk_codecs
= {
19 .codecs
= {"MX98357A"}
23 * The order of the three entries with .id = "10EC5682" matters
24 * here, because DSDT tables expose an ACPI HID for the MAX98357A
25 * speaker amplifier which is not populated on the board.
27 struct snd_soc_acpi_mach snd_soc_acpi_intel_cml_machines
[] = {
30 .drv_name
= "cml_rt1011_rt5682",
31 .machine_quirk
= snd_soc_acpi_codec_list
,
32 .quirk_data
= &rt1011_spk_codecs
,
33 .sof_fw_filename
= "sof-cml.ri",
34 .sof_tplg_filename
= "sof-cml-rt1011-rt5682.tplg",
38 .drv_name
= "sof_rt5682",
39 .machine_quirk
= snd_soc_acpi_codec_list
,
40 .quirk_data
= &max98357a_spk_codecs
,
41 .sof_fw_filename
= "sof-cml.ri",
42 .sof_tplg_filename
= "sof-cml-rt5682-max98357a.tplg",
46 .drv_name
= "sof_rt5682",
47 .sof_fw_filename
= "sof-cml.ri",
48 .sof_tplg_filename
= "sof-cml-rt5682.tplg",
52 .drv_name
= "cml_da7219_max98357a",
53 .machine_quirk
= snd_soc_acpi_codec_list
,
54 .quirk_data
= &max98357a_spk_codecs
,
55 .sof_fw_filename
= "sof-cml.ri",
56 .sof_tplg_filename
= "sof-cml-da7219-max98357a.tplg",
60 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cml_machines
);
62 static const u64 rt711_0_adr
[] = {
66 static const u64 rt1308_1_adr
[] = {
70 static const u64 rt1308_2_adr
[] = {
74 static const u64 rt715_3_adr
[] = {
78 static const struct snd_soc_acpi_link_adr cml_3_in_1_default
[] = {
81 .num_adr
= ARRAY_SIZE(rt711_0_adr
),
86 .num_adr
= ARRAY_SIZE(rt1308_1_adr
),
91 .num_adr
= ARRAY_SIZE(rt1308_2_adr
),
96 .num_adr
= ARRAY_SIZE(rt715_3_adr
),
102 static const struct snd_soc_acpi_link_adr cml_3_in_1_mono_amp
[] = {
105 .num_adr
= ARRAY_SIZE(rt711_0_adr
),
110 .num_adr
= ARRAY_SIZE(rt1308_1_adr
),
115 .num_adr
= ARRAY_SIZE(rt715_3_adr
),
121 struct snd_soc_acpi_mach snd_soc_acpi_intel_cml_sdw_machines
[] = {
123 .link_mask
= 0xF, /* 4 active links required */
124 .links
= cml_3_in_1_default
,
125 .drv_name
= "sdw_rt711_rt1308_rt715",
126 .sof_fw_filename
= "sof-cml.ri",
127 .sof_tplg_filename
= "sof-cml-rt711-rt1308-rt715.tplg",
131 * link_mask should be 0xB, but all links are enabled by BIOS.
132 * This entry will be selected if there is no rt1308 exposed
133 * on link2 since it will fail to match the above entry.
136 .links
= cml_3_in_1_mono_amp
,
137 .drv_name
= "sdw_rt711_rt1308_rt715",
138 .sof_fw_filename
= "sof-cml.ri",
139 .sof_tplg_filename
= "sof-cml-rt711-rt1308-mono-rt715.tplg",
142 .link_mask
= 0x2, /* RT700 connected on Link1 */
143 .drv_name
= "sdw_rt700",
144 .sof_fw_filename
= "sof-cml.ri",
145 .sof_tplg_filename
= "sof-cml-rt700.tplg",
149 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cml_sdw_machines
);
151 MODULE_LICENSE("GPL v2");
152 MODULE_DESCRIPTION("Intel Common ACPI Match module");