blob: bcedec6c6117cbae801548bf87607e6b0b26e8a1 [file] [log] [blame]
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * soc-acpi-intel-cml-match.c - tables and support for CML ACPI enumeration.
4 *
5 * Copyright (c) 2019, Intel Corporation.
6 *
7 */
8
9#include <sound/soc-acpi.h>
10#include <sound/soc-acpi-intel-match.h>
11
Amery Song4e64ba32019-12-09 18:48:54 -060012static struct snd_soc_acpi_codecs rt1011_spk_codecs = {
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060013 .num_codecs = 1,
Amery Song4e64ba32019-12-09 18:48:54 -060014 .codecs = {"10EC1011"}
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060015};
16
Amery Song4e64ba32019-12-09 18:48:54 -060017static struct snd_soc_acpi_codecs max98357a_spk_codecs = {
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060018 .num_codecs = 1,
19 .codecs = {"MX98357A"}
20};
21
Amery Song4e64ba32019-12-09 18:48:54 -060022/*
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.
26 */
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060027struct snd_soc_acpi_mach snd_soc_acpi_intel_cml_machines[] = {
28 {
Amery Song4e64ba32019-12-09 18:48:54 -060029 .id = "10EC5682",
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060030 .drv_name = "cml_rt1011_rt5682",
Amery Song4e64ba32019-12-09 18:48:54 -060031 .machine_quirk = snd_soc_acpi_codec_list,
32 .quirk_data = &rt1011_spk_codecs,
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060033 .sof_fw_filename = "sof-cml.ri",
34 .sof_tplg_filename = "sof-cml-rt1011-rt5682.tplg",
35 },
36 {
37 .id = "10EC5682",
38 .drv_name = "sof_rt5682",
Amery Song4e64ba32019-12-09 18:48:54 -060039 .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",
43 },
44 {
45 .id = "10EC5682",
46 .drv_name = "sof_rt5682",
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060047 .sof_fw_filename = "sof-cml.ri",
48 .sof_tplg_filename = "sof-cml-rt5682.tplg",
49 },
Amery Song4e64ba32019-12-09 18:48:54 -060050 {
51 .id = "DLGS7219",
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",
57 },
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -060058 {},
59};
60EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cml_machines);
61
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -050062static const struct snd_soc_acpi_endpoint single_endpoint = {
63 .num = 0,
64 .aggregated = 0,
65 .group_position = 0,
66 .group_id = 0,
Rander Wangdb0b9ef2020-01-10 16:25:28 -060067};
68
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -050069static const struct snd_soc_acpi_endpoint spk_l_endpoint = {
70 .num = 0,
71 .aggregated = 1,
72 .group_position = 0,
73 .group_id = 1,
Rander Wangdb0b9ef2020-01-10 16:25:28 -060074};
75
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -050076static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
77 .num = 0,
78 .aggregated = 1,
79 .group_position = 1,
80 .group_id = 1,
Rander Wangdb0b9ef2020-01-10 16:25:28 -060081};
82
Rander Wangba762e62020-03-25 17:07:43 -050083static const struct snd_soc_acpi_adr_device rt700_1_adr[] = {
84 {
85 .adr = 0x000110025D070000,
86 .num_endpoints = 1,
87 .endpoints = &single_endpoint,
88 }
89};
90
91static const struct snd_soc_acpi_link_adr cml_rvp[] = {
92 {
93 .mask = BIT(1),
94 .num_adr = ARRAY_SIZE(rt700_1_adr),
95 .adr_d = rt700_1_adr,
96 },
97 {}
98};
99
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500100static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
101 {
102 .adr = 0x000010025D071100,
103 .num_endpoints = 1,
104 .endpoints = &single_endpoint,
105 }
106};
107
108static const struct snd_soc_acpi_adr_device rt1308_1_adr[] = {
109 {
110 .adr = 0x000110025D130800,
111 .num_endpoints = 1,
112 .endpoints = &single_endpoint,
113 }
114};
115
116static const struct snd_soc_acpi_adr_device rt1308_2_adr[] = {
117 {
118 .adr = 0x000210025D130800,
119 .num_endpoints = 1,
120 .endpoints = &single_endpoint,
121 }
122};
123
124static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
125 {
126 .adr = 0x000110025D130800,
127 .num_endpoints = 1,
128 .endpoints = &spk_l_endpoint,
129 }
130};
131
132static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
133 {
134 .adr = 0x000210025D130800,
135 .num_endpoints = 1,
136 .endpoints = &spk_r_endpoint,
137 }
138};
139
140static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
141 {
142 .adr = 0x000310025D071500,
143 .num_endpoints = 1,
144 .endpoints = &single_endpoint,
145 }
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600146};
147
148static const struct snd_soc_acpi_link_adr cml_3_in_1_default[] = {
149 {
150 .mask = BIT(0),
151 .num_adr = ARRAY_SIZE(rt711_0_adr),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500152 .adr_d = rt711_0_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600153 },
154 {
155 .mask = BIT(1),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500156 .num_adr = ARRAY_SIZE(rt1308_1_group1_adr),
157 .adr_d = rt1308_1_group1_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600158 },
159 {
160 .mask = BIT(2),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500161 .num_adr = ARRAY_SIZE(rt1308_2_group1_adr),
162 .adr_d = rt1308_2_group1_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600163 },
164 {
165 .mask = BIT(3),
166 .num_adr = ARRAY_SIZE(rt715_3_adr),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500167 .adr_d = rt715_3_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600168 },
169 {}
170};
171
172static const struct snd_soc_acpi_link_adr cml_3_in_1_mono_amp[] = {
173 {
174 .mask = BIT(0),
175 .num_adr = ARRAY_SIZE(rt711_0_adr),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500176 .adr_d = rt711_0_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600177 },
178 {
179 .mask = BIT(1),
180 .num_adr = ARRAY_SIZE(rt1308_1_adr),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500181 .adr_d = rt1308_1_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600182 },
183 {
184 .mask = BIT(3),
185 .num_adr = ARRAY_SIZE(rt715_3_adr),
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500186 .adr_d = rt715_3_adr,
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600187 },
188 {}
189};
190
191struct snd_soc_acpi_mach snd_soc_acpi_intel_cml_sdw_machines[] = {
192 {
193 .link_mask = 0xF, /* 4 active links required */
194 .links = cml_3_in_1_default,
Rander Wangba762e62020-03-25 17:07:43 -0500195 .drv_name = "sof_sdw",
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600196 .sof_fw_filename = "sof-cml.ri",
197 .sof_tplg_filename = "sof-cml-rt711-rt1308-rt715.tplg",
198 },
199 {
200 /*
201 * link_mask should be 0xB, but all links are enabled by BIOS.
202 * This entry will be selected if there is no rt1308 exposed
203 * on link2 since it will fail to match the above entry.
204 */
205 .link_mask = 0xF,
206 .links = cml_3_in_1_mono_amp,
Rander Wangba762e62020-03-25 17:07:43 -0500207 .drv_name = "sof_sdw",
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600208 .sof_fw_filename = "sof-cml.ri",
209 .sof_tplg_filename = "sof-cml-rt711-rt1308-mono-rt715.tplg",
210 },
211 {
212 .link_mask = 0x2, /* RT700 connected on Link1 */
Rander Wangba762e62020-03-25 17:07:43 -0500213 .links = cml_rvp,
214 .drv_name = "sof_sdw",
Rander Wangdb0b9ef2020-01-10 16:25:28 -0600215 .sof_fw_filename = "sof-cml.ri",
216 .sof_tplg_filename = "sof-cml-rt700.tplg",
217 },
218 {}
219};
220EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cml_sdw_machines);
221
Pierre-Louis Bossart1f24d932019-11-11 16:28:59 -0600222MODULE_LICENSE("GPL v2");
223MODULE_DESCRIPTION("Intel Common ACPI Match module");