1 /*
2  * soc-apci-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
3  *
4  * Copyright (c) 2017, Intel Corporation.
5  *
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms and conditions of the GNU General Public License,
9  * version 2, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  */
16 
17 #include <linux/dmi.h>
18 #include <sound/soc-acpi.h>
19 #include <sound/soc-acpi-intel-match.h>
20 
21 struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[] = {
22 	{
23 		.id = "INT33CA",
24 		.drv_name = "haswell-audio",
25 		.fw_filename = "intel/IntcSST1.bin",
26 		.sof_fw_filename = "sof-hsw.ri",
27 		.sof_tplg_filename = "sof-hsw.tplg",
28 	},
29 	{}
30 };
31 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines);
32 
33 struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = {
34 	{
35 		.id = "INT343A",
36 		.drv_name = "broadwell-audio",
37 		.fw_filename =  "intel/IntcSST2.bin",
38 		.sof_fw_filename = "sof-bdw.ri",
39 		.sof_tplg_filename = "sof-bdw-rt286.tplg",
40 	},
41 	{
42 		.id = "RT5677CE",
43 		.drv_name = "bdw-rt5677",
44 		.fw_filename =  "intel/IntcSST2.bin",
45 		.sof_fw_filename = "sof-bdw.ri",
46 		.sof_tplg_filename = "sof-bdw-rt5677.tplg",
47 	},
48 	{
49 		.id = "INT33CA",
50 		.drv_name = "haswell-audio",
51 		.fw_filename = "intel/IntcSST2.bin",
52 		.sof_fw_filename = "sof-bdw.ri",
53 		.sof_tplg_filename = "sof-bdw-rt5640.tplg",
54 	},
55 	{}
56 };
57 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);
58 
59 MODULE_LICENSE("GPL v2");
60 MODULE_DESCRIPTION("Intel Common ACPI Match module");
61