1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * soc-acpi-intel-byt-match.c - tables and support for BYT ACPI enumeration.
4 *
5 * Copyright (c) 2017, Intel Corporation.
6 */
7
8#include <linux/dmi.h>
9#include <sound/soc-acpi.h>
10#include <sound/soc-acpi-intel-match.h>
11
12static unsigned long byt_machine_id;
13
14#define BYT_THINKPAD_10  1
15#define BYT_POV_P1006W   2
16#define BYT_AEGEX_10     3
17
18static int byt_thinkpad10_quirk_cb(const struct dmi_system_id *id)
19{
20	byt_machine_id = BYT_THINKPAD_10;
21	return 1;
22}
23
24static int byt_pov_p1006w_quirk_cb(const struct dmi_system_id *id)
25{
26	byt_machine_id = BYT_POV_P1006W;
27	return 1;
28}
29
30static int byt_aegex10_quirk_cb(const struct dmi_system_id *id)
31{
32	byt_machine_id = BYT_AEGEX_10;
33	return 1;
34}
35
36static const struct dmi_system_id byt_table[] = {
37	{
38		.callback = byt_thinkpad10_quirk_cb,
39		.matches = {
40			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
41			DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
42		},
43	},
44	{
45		.callback = byt_thinkpad10_quirk_cb,
46		.matches = {
47			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
48			DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 10"),
49		},
50	},
51	{
52		.callback = byt_thinkpad10_quirk_cb,
53		.matches = {
54			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
55			DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Tablet B"),
56		},
57	},
58	{
59		.callback = byt_thinkpad10_quirk_cb,
60		.matches = {
61			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
62			DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo Miix 2 10"),
63		},
64	},
65	{
66		/* Point of View mobii wintab p1006w (v1.0) */
67		.callback = byt_pov_p1006w_quirk_cb,
68		.matches = {
69			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
70			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "BayTrail"),
71			/* Note 105b is Foxcon's USB/PCI vendor id */
72			DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "105B"),
73			DMI_EXACT_MATCH(DMI_BOARD_NAME, "0E57"),
74		},
75	},
76	{
77		/* Aegex 10 tablet (RU2) */
78		.callback = byt_aegex10_quirk_cb,
79		.matches = {
80			DMI_MATCH(DMI_SYS_VENDOR, "AEGEX"),
81			DMI_MATCH(DMI_PRODUCT_VERSION, "RU2"),
82		},
83	},
84	{ }
85};
86
87/* The Thinkapd 10 and Aegex 10 tablets have the same ID problem */
88static struct snd_soc_acpi_mach byt_thinkpad_10 = {
89	.id = "10EC5640",
90	.drv_name = "cht-bsw-rt5672",
91	.fw_filename = "intel/fw_sst_0f28.bin",
92	.board = "cht-bsw",
93	.sof_fw_filename = "sof-byt.ri",
94	.sof_tplg_filename = "sof-byt-rt5670.tplg",
95};
96
97static struct snd_soc_acpi_mach byt_pov_p1006w = {
98	.id = "10EC5640",
99	.drv_name = "bytcr_rt5651",
100	.fw_filename = "intel/fw_sst_0f28.bin",
101	.board = "bytcr_rt5651",
102	.sof_fw_filename = "sof-byt.ri",
103	.sof_tplg_filename = "sof-byt-rt5651.tplg",
104};
105
106static struct snd_soc_acpi_mach *byt_quirk(void *arg)
107{
108	struct snd_soc_acpi_mach *mach = arg;
109
110	dmi_check_system(byt_table);
111
112	switch (byt_machine_id) {
113	case BYT_THINKPAD_10:
114	case BYT_AEGEX_10:
115		return &byt_thinkpad_10;
116	case BYT_POV_P1006W:
117		return &byt_pov_p1006w;
118	default:
119		return mach;
120	}
121}
122
123struct snd_soc_acpi_mach  snd_soc_acpi_intel_baytrail_machines[] = {
124	{
125		.id = "10EC5640",
126		.drv_name = "bytcr_rt5640",
127		.fw_filename = "intel/fw_sst_0f28.bin",
128		.board = "bytcr_rt5640",
129		.machine_quirk = byt_quirk,
130		.sof_fw_filename = "sof-byt.ri",
131		.sof_tplg_filename = "sof-byt-rt5640.tplg",
132	},
133	{
134		.id = "10EC5642",
135		.drv_name = "bytcr_rt5640",
136		.fw_filename = "intel/fw_sst_0f28.bin",
137		.board = "bytcr_rt5640",
138		.sof_fw_filename = "sof-byt.ri",
139		.sof_tplg_filename = "sof-byt-rt5640.tplg",
140	},
141	{
142		.id = "INTCCFFD",
143		.drv_name = "bytcr_rt5640",
144		.fw_filename = "intel/fw_sst_0f28.bin",
145		.board = "bytcr_rt5640",
146		.sof_fw_filename = "sof-byt.ri",
147		.sof_tplg_filename = "sof-byt-rt5640.tplg",
148	},
149	{
150		.id = "10EC5651",
151		.drv_name = "bytcr_rt5651",
152		.fw_filename = "intel/fw_sst_0f28.bin",
153		.board = "bytcr_rt5651",
154		.sof_fw_filename = "sof-byt.ri",
155		.sof_tplg_filename = "sof-byt-rt5651.tplg",
156	},
157	{
158		.id = "DLGS7212",
159		.drv_name = "bytcht_da7213",
160		.fw_filename = "intel/fw_sst_0f28.bin",
161		.board = "bytcht_da7213",
162		.sof_fw_filename = "sof-byt.ri",
163		.sof_tplg_filename = "sof-byt-da7213.tplg",
164	},
165	{
166		.id = "DLGS7213",
167		.drv_name = "bytcht_da7213",
168		.fw_filename = "intel/fw_sst_0f28.bin",
169		.board = "bytcht_da7213",
170		.sof_fw_filename = "sof-byt.ri",
171		.sof_tplg_filename = "sof-byt-da7213.tplg",
172	},
173	{
174		.id = "ESSX8316",
175		.drv_name = "bytcht_es8316",
176		.fw_filename = "intel/fw_sst_0f28.bin",
177		.board = "bytcht_es8316",
178		.sof_fw_filename = "sof-byt.ri",
179		.sof_tplg_filename = "sof-byt-es8316.tplg",
180	},
181	{
182		.id = "10EC5682",
183		.drv_name = "sof_rt5682",
184		.sof_fw_filename = "sof-byt.ri",
185		.sof_tplg_filename = "sof-byt-rt5682.tplg",
186	},
187	/* some Baytrail platforms rely on RT5645, use CHT machine driver */
188	{
189		.id = "10EC5645",
190		.drv_name = "cht-bsw-rt5645",
191		.fw_filename = "intel/fw_sst_0f28.bin",
192		.board = "cht-bsw",
193		.sof_fw_filename = "sof-byt.ri",
194		.sof_tplg_filename = "sof-byt-rt5645.tplg",
195	},
196	{
197		.id = "10EC5648",
198		.drv_name = "cht-bsw-rt5645",
199		.fw_filename = "intel/fw_sst_0f28.bin",
200		.board = "cht-bsw",
201		.sof_fw_filename = "sof-byt.ri",
202		.sof_tplg_filename = "sof-byt-rt5645.tplg",
203	},
204	/* use CHT driver to Baytrail Chromebooks */
205	{
206		.id = "193C9890",
207		.drv_name = "cht-bsw-max98090",
208		.fw_filename = "intel/fw_sst_0f28.bin",
209		.board = "cht-bsw",
210		.sof_fw_filename = "sof-byt.ri",
211		.sof_tplg_filename = "sof-byt-max98090.tplg",
212	},
213	{
214		.id = "14F10720",
215		.drv_name = "bytcht_cx2072x",
216		.fw_filename = "intel/fw_sst_0f28.bin",
217		.board = "bytcht_cx2072x",
218		.sof_fw_filename = "sof-byt.ri",
219		.sof_tplg_filename = "sof-byt-cx2072x.tplg",
220	},
221#if IS_ENABLED(CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH)
222	/*
223	 * This is always last in the table so that it is selected only when
224	 * enabled explicitly and there is no codec-related information in SSDT
225	 */
226	{
227		.id = "80860F28",
228		.drv_name = "bytcht_nocodec",
229		.fw_filename = "intel/fw_sst_0f28.bin",
230		.board = "bytcht_nocodec",
231	},
232#endif
233	{},
234};
235EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_baytrail_machines);
236
237MODULE_LICENSE("GPL v2");
238MODULE_DESCRIPTION("Intel Common ACPI Match module");
239