xref: /linux/sound/soc/intel/boards/sof_sdw.c (revision d26aed5eba16bf5a4aa86bc717edf0b5ed192b93)
1 // SPDX-License-Identifier: GPL-2.0-only
2 // Copyright (c) 2020 Intel Corporation
3 
4 /*
5  *  sof_sdw - ASOC Machine driver for Intel SoundWire platforms
6  */
7 
8 #include <linux/acpi.h>
9 #include <linux/bitmap.h>
10 #include <linux/device.h>
11 #include <linux/dmi.h>
12 #include <linux/module.h>
13 #include <linux/soundwire/sdw.h>
14 #include <linux/soundwire/sdw_type.h>
15 #include <linux/soundwire/sdw_intel.h>
16 #include <sound/soc-acpi.h>
17 #include "sof_sdw_common.h"
18 #include "../../codecs/rt711.h"
19 
20 static unsigned long sof_sdw_quirk = RT711_JD1;
21 static int quirk_override = -1;
22 module_param_named(quirk, quirk_override, int, 0444);
23 MODULE_PARM_DESC(quirk, "Board-specific quirk override");
24 
25 static void log_quirks(struct device *dev)
26 {
27 	if (SOC_SDW_JACK_JDSRC(sof_sdw_quirk))
28 		dev_dbg(dev, "quirk realtek,jack-detect-source %ld\n",
29 			SOC_SDW_JACK_JDSRC(sof_sdw_quirk));
30 	if (sof_sdw_quirk & SOC_SDW_FOUR_SPK)
31 		dev_err(dev, "quirk SOC_SDW_FOUR_SPK enabled but no longer supported\n");
32 	if (sof_sdw_quirk & SOF_SDW_TGL_HDMI)
33 		dev_dbg(dev, "quirk SOF_SDW_TGL_HDMI enabled\n");
34 	if (sof_sdw_quirk & SOC_SDW_PCH_DMIC)
35 		dev_dbg(dev, "quirk SOC_SDW_PCH_DMIC enabled\n");
36 	if (SOF_SSP_GET_PORT(sof_sdw_quirk))
37 		dev_dbg(dev, "SSP port %ld\n",
38 			SOF_SSP_GET_PORT(sof_sdw_quirk));
39 	if (sof_sdw_quirk & SOC_SDW_NO_AGGREGATION)
40 		dev_err(dev, "quirk SOC_SDW_NO_AGGREGATION enabled but no longer supported\n");
41 	if (sof_sdw_quirk & SOC_SDW_CODEC_SPKR)
42 		dev_dbg(dev, "quirk SOC_SDW_CODEC_SPKR enabled\n");
43 	if (sof_sdw_quirk & SOC_SDW_SIDECAR_AMPS)
44 		dev_dbg(dev, "quirk SOC_SDW_SIDECAR_AMPS enabled\n");
45 }
46 
47 static int sof_sdw_quirk_cb(const struct dmi_system_id *id)
48 {
49 	sof_sdw_quirk = (unsigned long)id->driver_data;
50 	return 1;
51 }
52 
53 static const struct dmi_system_id sof_sdw_quirk_table[] = {
54 	/* CometLake devices */
55 	{
56 		.callback = sof_sdw_quirk_cb,
57 		.matches = {
58 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
59 			DMI_MATCH(DMI_PRODUCT_NAME, "CometLake Client"),
60 		},
61 		.driver_data = (void *)SOC_SDW_PCH_DMIC,
62 	},
63 	{
64 		.callback = sof_sdw_quirk_cb,
65 		.matches = {
66 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
67 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "09C6")
68 		},
69 		.driver_data = (void *)RT711_JD2,
70 	},
71 	{
72 		/* early version of SKU 09C6 */
73 		.callback = sof_sdw_quirk_cb,
74 		.matches = {
75 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
76 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0983")
77 		},
78 		.driver_data = (void *)RT711_JD2,
79 	},
80 	{
81 		.callback = sof_sdw_quirk_cb,
82 		.matches = {
83 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
84 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "098F"),
85 		},
86 		.driver_data = (void *)(RT711_JD2),
87 	},
88 	{
89 		.callback = sof_sdw_quirk_cb,
90 		.matches = {
91 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
92 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0990"),
93 		},
94 		.driver_data = (void *)(RT711_JD2),
95 	},
96 	/* IceLake devices */
97 	{
98 		.callback = sof_sdw_quirk_cb,
99 		.matches = {
100 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
101 			DMI_MATCH(DMI_PRODUCT_NAME, "Ice Lake Client"),
102 		},
103 		.driver_data = (void *)SOC_SDW_PCH_DMIC,
104 	},
105 	/* TigerLake devices */
106 	{
107 		.callback = sof_sdw_quirk_cb,
108 		.matches = {
109 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
110 			DMI_MATCH(DMI_PRODUCT_NAME,
111 				  "Tiger Lake Client Platform"),
112 		},
113 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
114 					RT711_JD1 |
115 					SOC_SDW_PCH_DMIC |
116 					SOF_SSP_PORT(SOF_I2S_SSP2)),
117 	},
118 	{
119 		.callback = sof_sdw_quirk_cb,
120 		.matches = {
121 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
122 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A3E")
123 		},
124 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
125 					RT711_JD2),
126 	},
127 	{
128 		/* another SKU of Dell Latitude 9520 */
129 		.callback = sof_sdw_quirk_cb,
130 		.matches = {
131 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
132 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A3F")
133 		},
134 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
135 					RT711_JD2),
136 	},
137 	{
138 		/* Dell XPS 9710 */
139 		.callback = sof_sdw_quirk_cb,
140 		.matches = {
141 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
142 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A5D")
143 		},
144 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
145 					RT711_JD2),
146 	},
147 	{
148 		.callback = sof_sdw_quirk_cb,
149 		.matches = {
150 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
151 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A5E")
152 		},
153 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
154 					RT711_JD2),
155 	},
156 	{
157 		.callback = sof_sdw_quirk_cb,
158 		.matches = {
159 			DMI_MATCH(DMI_SYS_VENDOR, "Google"),
160 			DMI_MATCH(DMI_PRODUCT_NAME, "Volteer"),
161 		},
162 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
163 					SOC_SDW_PCH_DMIC |
164 					SOF_BT_OFFLOAD_SSP(2) |
165 					SOF_SSP_BT_OFFLOAD_PRESENT),
166 	},
167 	{
168 		.callback = sof_sdw_quirk_cb,
169 		.matches = {
170 			DMI_MATCH(DMI_SYS_VENDOR, "Google"),
171 			DMI_MATCH(DMI_PRODUCT_NAME, "Ripto"),
172 		},
173 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
174 					SOC_SDW_PCH_DMIC),
175 	},
176 	{
177 		/*
178 		 * this entry covers multiple HP SKUs. The family name
179 		 * does not seem robust enough, so we use a partial
180 		 * match that ignores the product name suffix
181 		 * (e.g. 15-eb1xxx, 14t-ea000 or 13-aw2xxx)
182 		 */
183 		.callback = sof_sdw_quirk_cb,
184 		.matches = {
185 			DMI_MATCH(DMI_SYS_VENDOR, "HP"),
186 			DMI_MATCH(DMI_PRODUCT_NAME, "HP Spectre x360 Conv"),
187 		},
188 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
189 					SOC_SDW_PCH_DMIC |
190 					RT711_JD1),
191 	},
192 	{
193 		/*
194 		 * this entry covers HP Spectre x360 where the DMI information
195 		 * changed somehow
196 		 */
197 		.callback = sof_sdw_quirk_cb,
198 		.matches = {
199 			DMI_MATCH(DMI_SYS_VENDOR, "HP"),
200 			DMI_MATCH(DMI_BOARD_NAME, "8709"),
201 		},
202 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
203 					SOC_SDW_PCH_DMIC |
204 					RT711_JD1),
205 	},
206 	{
207 		/* NUC15 'Bishop County' LAPBC510 and LAPBC710 skews */
208 		.callback = sof_sdw_quirk_cb,
209 		.matches = {
210 			DMI_MATCH(DMI_SYS_VENDOR, "Intel(R) Client Systems"),
211 			DMI_MATCH(DMI_PRODUCT_NAME, "LAPBC"),
212 		},
213 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
214 					SOC_SDW_PCH_DMIC |
215 					RT711_JD1),
216 	},
217 	{
218 		/* NUC15 LAPBC710 skews */
219 		.callback = sof_sdw_quirk_cb,
220 		.matches = {
221 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
222 			DMI_MATCH(DMI_BOARD_NAME, "LAPBC710"),
223 		},
224 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
225 					SOC_SDW_PCH_DMIC |
226 					RT711_JD1),
227 	},
228 	{
229 		/* NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */
230 		.callback = sof_sdw_quirk_cb,
231 		.matches = {
232 			DMI_MATCH(DMI_SYS_VENDOR, "Intel(R) Client Systems"),
233 			DMI_MATCH(DMI_PRODUCT_NAME, "LAPRC"),
234 		},
235 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
236 					SOC_SDW_PCH_DMIC |
237 					RT711_JD2_100K),
238 	},
239 	{
240 		/* NUC15 LAPRC710 skews */
241 		.callback = sof_sdw_quirk_cb,
242 		.matches = {
243 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
244 			DMI_MATCH(DMI_BOARD_NAME, "LAPRC710"),
245 		},
246 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
247 					SOC_SDW_PCH_DMIC |
248 					RT711_JD2_100K),
249 	},
250 	/* TigerLake-SDCA devices */
251 	{
252 		.callback = sof_sdw_quirk_cb,
253 		.matches = {
254 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
255 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A32")
256 		},
257 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
258 					RT711_JD2),
259 	},
260 	{
261 		.callback = sof_sdw_quirk_cb,
262 		.matches = {
263 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
264 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A45")
265 		},
266 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
267 					RT711_JD2),
268 	},
269 	/* AlderLake devices */
270 	{
271 		.callback = sof_sdw_quirk_cb,
272 		.matches = {
273 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
274 			DMI_MATCH(DMI_PRODUCT_NAME, "Alder Lake Client Platform"),
275 		},
276 		.driver_data = (void *)(RT711_JD2_100K |
277 					SOF_SDW_TGL_HDMI |
278 					SOF_BT_OFFLOAD_SSP(2) |
279 					SOF_SSP_BT_OFFLOAD_PRESENT),
280 	},
281 	{
282 		.callback = sof_sdw_quirk_cb,
283 		.matches = {
284 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
285 			DMI_MATCH(DMI_PRODUCT_SKU, "0000000000070000"),
286 		},
287 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
288 					RT711_JD2_100K),
289 	},
290 	{
291 		.callback = sof_sdw_quirk_cb,
292 		.matches = {
293 			DMI_MATCH(DMI_SYS_VENDOR, "Google"),
294 			DMI_MATCH(DMI_PRODUCT_NAME, "Brya"),
295 		},
296 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
297 					SOC_SDW_PCH_DMIC |
298 					SOF_BT_OFFLOAD_SSP(2) |
299 					SOF_SSP_BT_OFFLOAD_PRESENT),
300 	},
301 	{
302 		.callback = sof_sdw_quirk_cb,
303 		.matches = {
304 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
305 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0AF0")
306 		},
307 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
308 					RT711_JD2),
309 	},
310 	{
311 		.callback = sof_sdw_quirk_cb,
312 		.matches = {
313 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
314 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0AF3"),
315 		},
316 		/* No Jack */
317 		.driver_data = (void *)(SOF_SDW_TGL_HDMI),
318 	},
319 	{
320 		.callback = sof_sdw_quirk_cb,
321 		.matches = {
322 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
323 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0AFE")
324 		},
325 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
326 					RT711_JD2),
327 	},
328 	{
329 		.callback = sof_sdw_quirk_cb,
330 		.matches = {
331 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
332 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0AFF")
333 		},
334 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
335 					RT711_JD2),
336 	},
337 	{
338 		.callback = sof_sdw_quirk_cb,
339 		.matches = {
340 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
341 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B00")
342 		},
343 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
344 					RT711_JD2),
345 	},
346 	{
347 		.callback = sof_sdw_quirk_cb,
348 		.matches = {
349 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
350 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B01")
351 		},
352 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
353 					RT711_JD2),
354 	},
355 	{
356 		.callback = sof_sdw_quirk_cb,
357 		.matches = {
358 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
359 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B11")
360 		},
361 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
362 					RT711_JD2),
363 	},
364 	{
365 		.callback = sof_sdw_quirk_cb,
366 		.matches = {
367 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
368 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B12")
369 		},
370 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
371 					RT711_JD2),
372 	},
373 	{
374 		.callback = sof_sdw_quirk_cb,
375 		.matches = {
376 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
377 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B13"),
378 		},
379 		/* No Jack */
380 		.driver_data = (void *)SOF_SDW_TGL_HDMI,
381 	},
382 	{
383 		.callback = sof_sdw_quirk_cb,
384 		.matches = {
385 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
386 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B14"),
387 		},
388 		/* No Jack */
389 		.driver_data = (void *)SOF_SDW_TGL_HDMI,
390 	},
391 
392 	{
393 		.callback = sof_sdw_quirk_cb,
394 		.matches = {
395 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
396 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B29"),
397 		},
398 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
399 					RT711_JD2),
400 	},
401 	{
402 		.callback = sof_sdw_quirk_cb,
403 		.matches = {
404 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
405 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B34"),
406 		},
407 		/* No Jack */
408 		.driver_data = (void *)SOF_SDW_TGL_HDMI,
409 	},
410 	{
411 		.callback = sof_sdw_quirk_cb,
412 		.matches = {
413 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
414 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B8C"),
415 		},
416 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
417 					RT711_JD2),
418 	},
419 	{
420 		.callback = sof_sdw_quirk_cb,
421 		.matches = {
422 			DMI_MATCH(DMI_SYS_VENDOR, "HP"),
423 			DMI_MATCH(DMI_PRODUCT_NAME, "OMEN by HP Gaming Laptop 16"),
424 		},
425 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
426 					RT711_JD2),
427 	},
428 	/* RaptorLake devices */
429 	{
430 		.callback = sof_sdw_quirk_cb,
431 		.matches = {
432 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
433 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0BDA")
434 		},
435 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
436 					RT711_JD2),
437 	},
438 	{
439 		.callback = sof_sdw_quirk_cb,
440 		.matches = {
441 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
442 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0C0F")
443 		},
444 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
445 					RT711_JD2),
446 	},
447 	{
448 		.callback = sof_sdw_quirk_cb,
449 		.matches = {
450 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
451 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0C10"),
452 		},
453 		/* No Jack */
454 		.driver_data = (void *)(SOF_SDW_TGL_HDMI),
455 	},
456 	{
457 		.callback = sof_sdw_quirk_cb,
458 		.matches = {
459 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
460 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0C11")
461 		},
462 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
463 					RT711_JD2),
464 	},
465 	{
466 		.callback = sof_sdw_quirk_cb,
467 		.matches = {
468 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
469 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0C40")
470 		},
471 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
472 					RT711_JD2),
473 	},
474 	{
475 		.callback = sof_sdw_quirk_cb,
476 		.matches = {
477 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
478 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0C4F")
479 		},
480 		.driver_data = (void *)(SOF_SDW_TGL_HDMI |
481 					RT711_JD2),
482 	},
483 	{
484 		.callback = sof_sdw_quirk_cb,
485 		.matches = {
486 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
487 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CF9")
488 		},
489 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
490 	},
491 	/* MeteorLake devices */
492 	{
493 		.callback = sof_sdw_quirk_cb,
494 		.matches = {
495 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Intel_mtlrvp"),
496 		},
497 		.driver_data = (void *)(RT711_JD1),
498 	},
499 	{
500 		.callback = sof_sdw_quirk_cb,
501 		.matches = {
502 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
503 			DMI_MATCH(DMI_PRODUCT_NAME, "Meteor Lake Client Platform"),
504 		},
505 		.driver_data = (void *)(RT711_JD2_100K),
506 	},
507 	{
508 		.callback = sof_sdw_quirk_cb,
509 		.matches = {
510 			DMI_MATCH(DMI_SYS_VENDOR, "Google"),
511 			DMI_MATCH(DMI_PRODUCT_NAME, "Rex"),
512 		},
513 		.driver_data = (void *)(SOC_SDW_PCH_DMIC |
514 					SOF_BT_OFFLOAD_SSP(1) |
515 					SOF_SSP_BT_OFFLOAD_PRESENT),
516 	},
517 	{
518 		.callback = sof_sdw_quirk_cb,
519 		.matches = {
520 			DMI_MATCH(DMI_SYS_VENDOR, "HP"),
521 			DMI_MATCH(DMI_PRODUCT_NAME, "OMEN Transcend Gaming Laptop"),
522 		},
523 		.driver_data = (void *)(RT711_JD2),
524 	},
525 
526 	/* LunarLake devices */
527 	{
528 		.callback = sof_sdw_quirk_cb,
529 		.matches = {
530 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
531 			DMI_MATCH(DMI_PRODUCT_NAME, "Lunar Lake Client Platform"),
532 		},
533 		.driver_data = (void *)(RT711_JD2),
534 	},
535 	{
536 		.callback = sof_sdw_quirk_cb,
537 		.matches = {
538 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
539 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CE3")
540 		},
541 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
542 	},
543 	{
544 		.callback = sof_sdw_quirk_cb,
545 		.matches = {
546 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
547 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CE4")
548 		},
549 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
550 	},
551 	{
552 		.callback = sof_sdw_quirk_cb,
553 		.matches = {
554 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
555 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CDB")
556 		},
557 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
558 	},
559 	{
560 		.callback = sof_sdw_quirk_cb,
561 		.matches = {
562 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
563 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CDC")
564 		},
565 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
566 	},
567 	{
568 		.callback = sof_sdw_quirk_cb,
569 		.matches = {
570 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
571 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CDD")
572 		},
573 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
574 	},
575 	{
576 		.callback = sof_sdw_quirk_cb,
577 		.matches = {
578 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
579 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CF8")
580 		},
581 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
582 	},
583 	{
584 		.callback = sof_sdw_quirk_cb,
585 		.matches = {
586 			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
587 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "3838")
588 		},
589 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
590 	},
591 	{
592 		.callback = sof_sdw_quirk_cb,
593 		.matches = {
594 			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
595 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "3832")
596 		},
597 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
598 	},
599 	{
600 		.callback = sof_sdw_quirk_cb,
601 		.matches = {
602 			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
603 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "380E")
604 		},
605 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
606 	},
607 	{
608 		.callback = sof_sdw_quirk_cb,
609 		.matches = {
610 			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
611 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "233C")
612 		},
613 		/* Note this quirk excludes the CODEC mic */
614 		.driver_data = (void *)(SOC_SDW_CODEC_MIC),
615 	},
616 	{
617 		.callback = sof_sdw_quirk_cb,
618 		.matches = {
619 			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
620 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "233B")
621 		},
622 		.driver_data = (void *)(SOC_SDW_SIDECAR_AMPS),
623 	},
624 
625 	/* ArrowLake devices */
626 	{
627 		.callback = sof_sdw_quirk_cb,
628 		.matches = {
629 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
630 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CE8")
631 		},
632 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
633 	},
634 	{
635 		.callback = sof_sdw_quirk_cb,
636 		.matches = {
637 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
638 			DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0CF7")
639 		},
640 		.driver_data = (void *)(SOC_SDW_CODEC_SPKR),
641 	},
642 	/* Pantherlake devices*/
643 	{
644 		.callback = sof_sdw_quirk_cb,
645 		.matches = {
646 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Intel_ptlrvp"),
647 		},
648 		.driver_data = (void *)(SOC_SDW_PCH_DMIC),
649 	},
650 	{}
651 };
652 
653 static struct snd_soc_dai_link_component platform_component[] = {
654 	{
655 		/* name might be overridden during probe */
656 		.name = "0000:00:1f.3"
657 	}
658 };
659 
660 static const struct snd_soc_ops sdw_ops = {
661 	.startup = asoc_sdw_startup,
662 	.prepare = asoc_sdw_prepare,
663 	.trigger = asoc_sdw_trigger,
664 	.hw_params = asoc_sdw_hw_params,
665 	.hw_free = asoc_sdw_hw_free,
666 	.shutdown = asoc_sdw_shutdown,
667 };
668 
669 static const char * const type_strings[] = {"SimpleJack", "SmartAmp", "SmartMic"};
670 
671 static int create_sdw_dailink(struct snd_soc_card *card,
672 			      struct asoc_sdw_dailink *sof_dai,
673 			      struct snd_soc_dai_link **dai_links,
674 			      int *be_id, struct snd_soc_codec_conf **codec_conf)
675 {
676 	struct device *dev = card->dev;
677 	struct asoc_sdw_mc_private *ctx = snd_soc_card_get_drvdata(card);
678 	struct intel_mc_ctx *intel_ctx = (struct intel_mc_ctx *)ctx->private;
679 	struct asoc_sdw_endpoint *sof_end;
680 	int stream;
681 	int ret;
682 
683 	list_for_each_entry(sof_end, &sof_dai->endpoints, list) {
684 		if (sof_end->name_prefix) {
685 			(*codec_conf)->dlc.name = sof_end->codec_name;
686 			(*codec_conf)->name_prefix = sof_end->name_prefix;
687 			(*codec_conf)++;
688 		}
689 
690 		if (sof_end->include_sidecar) {
691 			ret = sof_end->codec_info->add_sidecar(card, dai_links, codec_conf);
692 			if (ret)
693 				return ret;
694 		}
695 	}
696 
697 	for_each_pcm_streams(stream) {
698 		static const char * const sdw_stream_name[] = {
699 			"SDW%d-Playback",
700 			"SDW%d-Capture",
701 			"SDW%d-Playback-%s",
702 			"SDW%d-Capture-%s",
703 		};
704 		struct snd_soc_dai_link_ch_map *codec_maps;
705 		struct snd_soc_dai_link_component *codecs;
706 		struct snd_soc_dai_link_component *cpus;
707 		int num_cpus = hweight32(sof_dai->link_mask[stream]);
708 		int num_codecs = sof_dai->num_devs[stream];
709 		int playback, capture;
710 		int cur_link = 0;
711 		int i = 0, j = 0;
712 		char *name;
713 
714 		if (!sof_dai->num_devs[stream])
715 			continue;
716 
717 		sof_end = list_first_entry(&sof_dai->endpoints,
718 					   struct asoc_sdw_endpoint, list);
719 
720 		*be_id = sof_end->dai_info->dailink[stream];
721 		if (*be_id < 0) {
722 			dev_err(dev, "Invalid dailink id %d\n", *be_id);
723 			return -EINVAL;
724 		}
725 
726 		/* create stream name according to first link id */
727 		if (ctx->append_dai_type)
728 			name = devm_kasprintf(dev, GFP_KERNEL,
729 					      sdw_stream_name[stream + 2],
730 					      ffs(sof_end->link_mask) - 1,
731 					      type_strings[sof_end->dai_info->dai_type]);
732 		else
733 			name = devm_kasprintf(dev, GFP_KERNEL,
734 					      sdw_stream_name[stream],
735 					      ffs(sof_end->link_mask) - 1);
736 		if (!name)
737 			return -ENOMEM;
738 
739 		cpus = devm_kcalloc(dev, num_cpus, sizeof(*cpus), GFP_KERNEL);
740 		if (!cpus)
741 			return -ENOMEM;
742 
743 		codecs = devm_kcalloc(dev, num_codecs, sizeof(*codecs), GFP_KERNEL);
744 		if (!codecs)
745 			return -ENOMEM;
746 
747 		codec_maps = devm_kcalloc(dev, num_codecs, sizeof(*codec_maps), GFP_KERNEL);
748 		if (!codec_maps)
749 			return -ENOMEM;
750 
751 		list_for_each_entry(sof_end, &sof_dai->endpoints, list) {
752 			if (!sof_end->dai_info->direction[stream])
753 				continue;
754 
755 			if (cur_link != sof_end->link_mask) {
756 				int link_num = ffs(sof_end->link_mask) - 1;
757 				int pin_num = intel_ctx->sdw_pin_index[link_num]++;
758 
759 				cur_link = sof_end->link_mask;
760 
761 				cpus[i].dai_name = devm_kasprintf(dev, GFP_KERNEL,
762 								  "SDW%d Pin%d",
763 								  link_num, pin_num);
764 				if (!cpus[i].dai_name)
765 					return -ENOMEM;
766 				i++;
767 			}
768 
769 			codec_maps[j].cpu = i - 1;
770 			codec_maps[j].codec = j;
771 
772 			codecs[j].name = sof_end->codec_name;
773 			codecs[j].dai_name = sof_end->dai_info->dai_name;
774 			j++;
775 		}
776 
777 		WARN_ON(i != num_cpus || j != num_codecs);
778 
779 		playback = (stream == SNDRV_PCM_STREAM_PLAYBACK);
780 		capture = (stream == SNDRV_PCM_STREAM_CAPTURE);
781 
782 		asoc_sdw_init_dai_link(dev, *dai_links, be_id, name, playback, capture,
783 				       cpus, num_cpus, platform_component,
784 				       ARRAY_SIZE(platform_component), codecs, num_codecs,
785 				       asoc_sdw_rtd_init, &sdw_ops);
786 
787 		/*
788 		 * SoundWire DAILINKs use 'stream' functions and Bank Switch operations
789 		 * based on wait_for_completion(), tag them as 'nonatomic'.
790 		 */
791 		(*dai_links)->nonatomic = true;
792 		(*dai_links)->ch_maps = codec_maps;
793 
794 		list_for_each_entry(sof_end, &sof_dai->endpoints, list) {
795 			if (sof_end->dai_info->init)
796 				sof_end->dai_info->init(card, *dai_links,
797 							sof_end->codec_info,
798 							playback);
799 		}
800 
801 		(*dai_links)++;
802 	}
803 
804 	return 0;
805 }
806 
807 static int create_sdw_dailinks(struct snd_soc_card *card,
808 			       struct snd_soc_dai_link **dai_links, int *be_id,
809 			       struct asoc_sdw_dailink *sof_dais,
810 			       struct snd_soc_codec_conf **codec_conf)
811 {
812 	struct asoc_sdw_mc_private *ctx = snd_soc_card_get_drvdata(card);
813 	struct intel_mc_ctx *intel_ctx = (struct intel_mc_ctx *)ctx->private;
814 	int ret, i;
815 
816 	for (i = 0; i < SDW_INTEL_MAX_LINKS; i++)
817 		intel_ctx->sdw_pin_index[i] = SOC_SDW_INTEL_BIDIR_PDI_BASE;
818 
819 	/* generate DAI links by each sdw link */
820 	while (sof_dais->initialised) {
821 		int current_be_id;
822 
823 		ret = create_sdw_dailink(card, sof_dais, dai_links,
824 					 &current_be_id, codec_conf);
825 		if (ret)
826 			return ret;
827 
828 		/* Update the be_id to match the highest ID used for SDW link */
829 		if (*be_id < current_be_id)
830 			*be_id = current_be_id;
831 
832 		sof_dais++;
833 	}
834 
835 	return 0;
836 }
837 
838 static int create_ssp_dailinks(struct snd_soc_card *card,
839 			       struct snd_soc_dai_link **dai_links, int *be_id,
840 			       struct asoc_sdw_codec_info *ssp_info,
841 			       unsigned long ssp_mask)
842 {
843 	struct device *dev = card->dev;
844 	int i, j = 0;
845 	int ret;
846 
847 	for_each_set_bit(i, &ssp_mask, BITS_PER_TYPE(ssp_mask)) {
848 		char *name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d-Codec", i);
849 		char *cpu_dai_name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d Pin", i);
850 		char *codec_name = devm_kasprintf(dev, GFP_KERNEL, "i2c-%s:0%d",
851 						  ssp_info->acpi_id, j++);
852 		if (!name || !cpu_dai_name || !codec_name)
853 			return -ENOMEM;
854 
855 		int playback = ssp_info->dais[0].direction[SNDRV_PCM_STREAM_PLAYBACK];
856 		int capture = ssp_info->dais[0].direction[SNDRV_PCM_STREAM_CAPTURE];
857 
858 		ret = asoc_sdw_init_simple_dai_link(dev, *dai_links, be_id, name,
859 						    playback, capture, cpu_dai_name,
860 						    platform_component->name,
861 						    ARRAY_SIZE(platform_component), codec_name,
862 						    ssp_info->dais[0].dai_name, NULL,
863 						    ssp_info->ops);
864 		if (ret)
865 			return ret;
866 
867 		ret = ssp_info->dais[0].init(card, *dai_links, ssp_info, 0);
868 		if (ret < 0)
869 			return ret;
870 
871 		(*dai_links)++;
872 	}
873 
874 	return 0;
875 }
876 
877 static int create_dmic_dailinks(struct snd_soc_card *card,
878 				struct snd_soc_dai_link **dai_links, int *be_id)
879 {
880 	struct device *dev = card->dev;
881 	int ret;
882 
883 	ret = asoc_sdw_init_simple_dai_link(dev, *dai_links, be_id, "dmic01",
884 					    0, 1, // DMIC only supports capture
885 					    "DMIC01 Pin", platform_component->name,
886 					    ARRAY_SIZE(platform_component),
887 					    "dmic-codec", "dmic-hifi",
888 					    asoc_sdw_dmic_init, NULL);
889 	if (ret)
890 		return ret;
891 
892 	(*dai_links)++;
893 
894 	ret = asoc_sdw_init_simple_dai_link(dev, *dai_links, be_id, "dmic16k",
895 					    0, 1, // DMIC only supports capture
896 					    "DMIC16k Pin", platform_component->name,
897 					    ARRAY_SIZE(platform_component),
898 					    "dmic-codec", "dmic-hifi",
899 					    /* don't call asoc_sdw_dmic_init() twice */
900 					    NULL, NULL);
901 	if (ret)
902 		return ret;
903 
904 	(*dai_links)++;
905 
906 	return 0;
907 }
908 
909 static int create_hdmi_dailinks(struct snd_soc_card *card,
910 				struct snd_soc_dai_link **dai_links, int *be_id,
911 				int hdmi_num)
912 {
913 	struct device *dev = card->dev;
914 	struct asoc_sdw_mc_private *ctx = snd_soc_card_get_drvdata(card);
915 	struct intel_mc_ctx *intel_ctx = (struct intel_mc_ctx *)ctx->private;
916 	int i, ret;
917 
918 	for (i = 0; i < hdmi_num; i++) {
919 		char *name = devm_kasprintf(dev, GFP_KERNEL, "iDisp%d", i + 1);
920 		char *cpu_dai_name = devm_kasprintf(dev, GFP_KERNEL, "iDisp%d Pin", i + 1);
921 		if (!name || !cpu_dai_name)
922 			return -ENOMEM;
923 
924 		char *codec_name, *codec_dai_name;
925 
926 		if (intel_ctx->hdmi.idisp_codec) {
927 			codec_name = "ehdaudio0D2";
928 			codec_dai_name = devm_kasprintf(dev, GFP_KERNEL,
929 							"intel-hdmi-hifi%d", i + 1);
930 		} else {
931 			codec_name = "snd-soc-dummy";
932 			codec_dai_name = "snd-soc-dummy-dai";
933 		}
934 
935 		if (!codec_dai_name)
936 			return -ENOMEM;
937 
938 		ret = asoc_sdw_init_simple_dai_link(dev, *dai_links, be_id, name,
939 						    1, 0, // HDMI only supports playback
940 						    cpu_dai_name, platform_component->name,
941 						    ARRAY_SIZE(platform_component),
942 						    codec_name, codec_dai_name,
943 						    i == 0 ? sof_sdw_hdmi_init : NULL, NULL);
944 		if (ret)
945 			return ret;
946 
947 		(*dai_links)++;
948 	}
949 
950 	return 0;
951 }
952 
953 static int create_bt_dailinks(struct snd_soc_card *card,
954 			      struct snd_soc_dai_link **dai_links, int *be_id)
955 {
956 	struct device *dev = card->dev;
957 	int port = (sof_sdw_quirk & SOF_BT_OFFLOAD_SSP_MASK) >>
958 			SOF_BT_OFFLOAD_SSP_SHIFT;
959 	char *name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d-BT", port);
960 	char *cpu_dai_name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d Pin", port);
961 	if (!name || !cpu_dai_name)
962 		return -ENOMEM;
963 
964 	int ret;
965 
966 	ret = asoc_sdw_init_simple_dai_link(dev, *dai_links, be_id, name,
967 					    1, 1, cpu_dai_name, platform_component->name,
968 					    ARRAY_SIZE(platform_component),
969 					    snd_soc_dummy_dlc.name, snd_soc_dummy_dlc.dai_name,
970 					    NULL, NULL);
971 	if (ret)
972 		return ret;
973 
974 	(*dai_links)++;
975 
976 	return 0;
977 }
978 
979 static int sof_card_dai_links_create(struct snd_soc_card *card)
980 {
981 	struct device *dev = card->dev;
982 	struct snd_soc_acpi_mach *mach = dev_get_platdata(card->dev);
983 	int sdw_be_num = 0, ssp_num = 0, dmic_num = 0, bt_num = 0;
984 	struct asoc_sdw_mc_private *ctx = snd_soc_card_get_drvdata(card);
985 	struct intel_mc_ctx *intel_ctx = (struct intel_mc_ctx *)ctx->private;
986 	struct snd_soc_acpi_mach_params *mach_params = &mach->mach_params;
987 	struct snd_soc_codec_conf *codec_conf;
988 	struct asoc_sdw_codec_info *ssp_info;
989 	struct asoc_sdw_endpoint *sof_ends;
990 	struct asoc_sdw_dailink *sof_dais;
991 	int num_devs = 0;
992 	int num_ends = 0;
993 	struct snd_soc_dai_link *dai_links;
994 	int num_links;
995 	int be_id = 0;
996 	int hdmi_num;
997 	unsigned long ssp_mask;
998 	int ret;
999 
1000 	ret = asoc_sdw_count_sdw_endpoints(card, &num_devs, &num_ends);
1001 	if (ret < 0) {
1002 		dev_err(dev, "failed to count devices/endpoints: %d\n", ret);
1003 		return ret;
1004 	}
1005 
1006 	/* One per DAI link, worst case is a DAI link for every endpoint */
1007 	sof_dais = kcalloc(num_ends, sizeof(*sof_dais), GFP_KERNEL);
1008 	if (!sof_dais)
1009 		return -ENOMEM;
1010 
1011 	/* One per endpoint, ie. each DAI on each codec/amp */
1012 	sof_ends = kcalloc(num_ends, sizeof(*sof_ends), GFP_KERNEL);
1013 	if (!sof_ends) {
1014 		ret = -ENOMEM;
1015 		goto err_dai;
1016 	}
1017 
1018 	ret = asoc_sdw_parse_sdw_endpoints(card, sof_dais, sof_ends, &num_devs);
1019 	if (ret < 0)
1020 		goto err_end;
1021 
1022 	sdw_be_num = ret;
1023 
1024 	/*
1025 	 * on generic tgl platform, I2S or sdw mode is supported
1026 	 * based on board rework. A ACPI device is registered in
1027 	 * system only when I2S mode is supported, not sdw mode.
1028 	 * Here check ACPI ID to confirm I2S is supported.
1029 	 */
1030 	ssp_info = asoc_sdw_find_codec_info_acpi(mach->id);
1031 	if (ssp_info) {
1032 		ssp_mask = SOF_SSP_GET_PORT(sof_sdw_quirk);
1033 		ssp_num = hweight_long(ssp_mask);
1034 	}
1035 
1036 	if (mach_params->codec_mask & IDISP_CODEC_MASK)
1037 		intel_ctx->hdmi.idisp_codec = true;
1038 
1039 	if (sof_sdw_quirk & SOF_SDW_TGL_HDMI)
1040 		hdmi_num = SOF_TGL_HDMI_COUNT;
1041 	else
1042 		hdmi_num = SOF_PRE_TGL_HDMI_COUNT;
1043 
1044 	/* enable dmic01 & dmic16k */
1045 	if (sof_sdw_quirk & SOC_SDW_PCH_DMIC || mach_params->dmic_num) {
1046 		if (ctx->ignore_internal_dmic)
1047 			dev_warn(dev, "Ignoring PCH DMIC\n");
1048 		else
1049 			dmic_num = 2;
1050 	}
1051 	/*
1052 	 * mach_params->dmic_num will be used to set the cfg-mics value of card->components
1053 	 * string. Overwrite it to the actual number of PCH DMICs used in the device.
1054 	 */
1055 	mach_params->dmic_num = dmic_num;
1056 
1057 	if (sof_sdw_quirk & SOF_SSP_BT_OFFLOAD_PRESENT)
1058 		bt_num = 1;
1059 
1060 	dev_dbg(dev, "sdw %d, ssp %d, dmic %d, hdmi %d, bt: %d\n",
1061 		sdw_be_num, ssp_num, dmic_num,
1062 		intel_ctx->hdmi.idisp_codec ? hdmi_num : 0, bt_num);
1063 
1064 	codec_conf = devm_kcalloc(dev, num_devs, sizeof(*codec_conf), GFP_KERNEL);
1065 	if (!codec_conf) {
1066 		ret = -ENOMEM;
1067 		goto err_end;
1068 	}
1069 
1070 	/* allocate BE dailinks */
1071 	num_links = sdw_be_num + ssp_num + dmic_num + hdmi_num + bt_num;
1072 	dai_links = devm_kcalloc(dev, num_links, sizeof(*dai_links), GFP_KERNEL);
1073 	if (!dai_links) {
1074 		ret = -ENOMEM;
1075 		goto err_end;
1076 	}
1077 
1078 	card->codec_conf = codec_conf;
1079 	card->num_configs = num_devs;
1080 	card->dai_link = dai_links;
1081 	card->num_links = num_links;
1082 
1083 	/* SDW */
1084 	if (sdw_be_num) {
1085 		ret = create_sdw_dailinks(card, &dai_links, &be_id,
1086 					  sof_dais, &codec_conf);
1087 		if (ret)
1088 			goto err_end;
1089 	}
1090 
1091 	/* SSP */
1092 	if (ssp_num) {
1093 		ret = create_ssp_dailinks(card, &dai_links, &be_id,
1094 					  ssp_info, ssp_mask);
1095 		if (ret)
1096 			goto err_end;
1097 	}
1098 
1099 	/* dmic */
1100 	if (dmic_num) {
1101 		ret = create_dmic_dailinks(card, &dai_links, &be_id);
1102 		if (ret)
1103 			goto err_end;
1104 	}
1105 
1106 	/* HDMI */
1107 	ret = create_hdmi_dailinks(card, &dai_links, &be_id, hdmi_num);
1108 	if (ret)
1109 		goto err_end;
1110 
1111 	/* BT */
1112 	if (sof_sdw_quirk & SOF_SSP_BT_OFFLOAD_PRESENT) {
1113 		ret = create_bt_dailinks(card, &dai_links, &be_id);
1114 		if (ret)
1115 			goto err_end;
1116 	}
1117 
1118 	WARN_ON(codec_conf != card->codec_conf + card->num_configs);
1119 	WARN_ON(dai_links != card->dai_link + card->num_links);
1120 
1121 err_end:
1122 	kfree(sof_ends);
1123 err_dai:
1124 	kfree(sof_dais);
1125 
1126 	return ret;
1127 }
1128 
1129 static int sof_sdw_card_late_probe(struct snd_soc_card *card)
1130 {
1131 	struct asoc_sdw_mc_private *ctx = snd_soc_card_get_drvdata(card);
1132 	struct intel_mc_ctx *intel_ctx = (struct intel_mc_ctx *)ctx->private;
1133 	int ret = 0;
1134 
1135 	ret = asoc_sdw_card_late_probe(card);
1136 	if (ret < 0)
1137 		return ret;
1138 
1139 	if (intel_ctx->hdmi.idisp_codec)
1140 		ret = sof_sdw_hdmi_card_late_probe(card);
1141 
1142 	return ret;
1143 }
1144 
1145 static int mc_probe(struct platform_device *pdev)
1146 {
1147 	struct snd_soc_acpi_mach *mach = dev_get_platdata(&pdev->dev);
1148 	struct snd_soc_card *card;
1149 	struct asoc_sdw_mc_private *ctx;
1150 	struct intel_mc_ctx *intel_ctx;
1151 	int amp_num = 0, i;
1152 	int ret;
1153 
1154 	dev_dbg(&pdev->dev, "Entry\n");
1155 
1156 	intel_ctx = devm_kzalloc(&pdev->dev, sizeof(*intel_ctx), GFP_KERNEL);
1157 	if (!intel_ctx)
1158 		return -ENOMEM;
1159 
1160 	ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL);
1161 	if (!ctx)
1162 		return -ENOMEM;
1163 
1164 	ctx->private = intel_ctx;
1165 	ctx->codec_info_list_count = asoc_sdw_get_codec_info_list_count();
1166 	card = &ctx->card;
1167 	card->dev = &pdev->dev;
1168 	card->name = "soundwire";
1169 	card->owner = THIS_MODULE;
1170 	card->late_probe = sof_sdw_card_late_probe;
1171 
1172 	snd_soc_card_set_drvdata(card, ctx);
1173 
1174 	dmi_check_system(sof_sdw_quirk_table);
1175 
1176 	if (quirk_override != -1) {
1177 		dev_info(card->dev, "Overriding quirk 0x%lx => 0x%x\n",
1178 			 sof_sdw_quirk, quirk_override);
1179 		sof_sdw_quirk = quirk_override;
1180 	}
1181 
1182 	log_quirks(card->dev);
1183 
1184 	ctx->mc_quirk = sof_sdw_quirk;
1185 	/* reset amp_num to ensure amp_num++ starts from 0 in each probe */
1186 	for (i = 0; i < ctx->codec_info_list_count; i++)
1187 		codec_info_list[i].amp_num = 0;
1188 
1189 	if (mach->mach_params.subsystem_id_set) {
1190 		snd_soc_card_set_pci_ssid(card,
1191 					  mach->mach_params.subsystem_vendor,
1192 					  mach->mach_params.subsystem_device);
1193 	}
1194 
1195 	ret = sof_card_dai_links_create(card);
1196 	if (ret < 0)
1197 		return ret;
1198 
1199 	/*
1200 	 * the default amp_num is zero for each codec and
1201 	 * amp_num will only be increased for active amp
1202 	 * codecs on used platform
1203 	 */
1204 	for (i = 0; i < ctx->codec_info_list_count; i++)
1205 		amp_num += codec_info_list[i].amp_num;
1206 
1207 	card->components = devm_kasprintf(card->dev, GFP_KERNEL,
1208 					  " cfg-amp:%d", amp_num);
1209 	if (!card->components)
1210 		return -ENOMEM;
1211 
1212 	if (mach->mach_params.dmic_num) {
1213 		card->components = devm_kasprintf(card->dev, GFP_KERNEL,
1214 						  "%s mic:dmic cfg-mics:%d",
1215 						  card->components,
1216 						  mach->mach_params.dmic_num);
1217 		if (!card->components)
1218 			return -ENOMEM;
1219 	}
1220 
1221 	/* Register the card */
1222 	ret = devm_snd_soc_register_card(card->dev, card);
1223 	if (ret) {
1224 		dev_err_probe(card->dev, ret, "snd_soc_register_card failed %d\n", ret);
1225 		asoc_sdw_mc_dailink_exit_loop(card);
1226 		return ret;
1227 	}
1228 
1229 	platform_set_drvdata(pdev, card);
1230 
1231 	return ret;
1232 }
1233 
1234 static void mc_remove(struct platform_device *pdev)
1235 {
1236 	struct snd_soc_card *card = platform_get_drvdata(pdev);
1237 
1238 	asoc_sdw_mc_dailink_exit_loop(card);
1239 }
1240 
1241 static const struct platform_device_id mc_id_table[] = {
1242 	{ "sof_sdw", },
1243 	{}
1244 };
1245 MODULE_DEVICE_TABLE(platform, mc_id_table);
1246 
1247 static struct platform_driver sof_sdw_driver = {
1248 	.driver = {
1249 		.name = "sof_sdw",
1250 		.pm = &snd_soc_pm_ops,
1251 	},
1252 	.probe = mc_probe,
1253 	.remove = mc_remove,
1254 	.id_table = mc_id_table,
1255 };
1256 
1257 module_platform_driver(sof_sdw_driver);
1258 
1259 MODULE_DESCRIPTION("ASoC SoundWire Generic Machine driver");
1260 MODULE_AUTHOR("Bard Liao <yung-chuan.liao@linux.intel.com>");
1261 MODULE_AUTHOR("Rander Wang <rander.wang@linux.intel.com>");
1262 MODULE_AUTHOR("Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>");
1263 MODULE_LICENSE("GPL v2");
1264 MODULE_IMPORT_NS(SND_SOC_INTEL_HDA_DSP_COMMON);
1265 MODULE_IMPORT_NS(SND_SOC_SDW_UTILS);
1266