Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / sound / soc / intel / common / soc-acpi-intel-hda-match.c
blobaa9cb522aac97939aabb05693c33757dd7a16432
1 // SPDX-License-Identifier: GPL-2.0-only
2 // Copyright (c) 2018, Intel Corporation.
4 /*
5 * soc-acpi-intel-hda-match.c - tables and support for HDA+ACPI enumeration.
7 */
9 #include <sound/soc-acpi.h>
10 #include <sound/soc-acpi-intel-match.h>
11 #include "../skylake/skl.h"
13 static struct skl_machine_pdata hda_pdata = {
14 .use_tplg_pcm = true,
17 struct snd_soc_acpi_mach snd_soc_acpi_intel_hda_machines[] = {
19 /* .id is not used in this file */
20 .drv_name = "skl_hda_dsp_generic",
22 /* .fw_filename is dynamically set in skylake driver */
24 /* .sof_fw_filename is dynamically set in sof/intel driver */
26 .sof_tplg_filename = "sof-hda-generic.tplg",
29 * .machine_quirk and .quirk_data are not used here but
30 * can be used if we need a more complicated machine driver
31 * combining HDA+other device (e.g. DMIC).
33 .pdata = &hda_pdata,
35 {},
37 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_hda_machines);
39 MODULE_LICENSE("GPL v2");
40 MODULE_DESCRIPTION("Intel Common ACPI Match module");