Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * soc-acpi-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
0004  *
0005  * Copyright (c) 2017, Intel Corporation.
0006  */
0007 
0008 #include <linux/dmi.h>
0009 #include <sound/soc-acpi.h>
0010 #include <sound/soc-acpi-intel-match.h>
0011 
0012 struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[] = {
0013     {
0014         .id = "INT33CA",
0015         .drv_name = "hsw_rt5640",
0016         .fw_filename = "intel/IntcSST1.bin",
0017         .sof_tplg_filename = "sof-hsw.tplg",
0018     },
0019     {}
0020 };
0021 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines);
0022 
0023 struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = {
0024     {
0025         .id = "INT343A",
0026         .drv_name = "bdw_rt286",
0027         .fw_filename =  "intel/IntcSST2.bin",
0028         .sof_tplg_filename = "sof-bdw-rt286.tplg",
0029     },
0030     {
0031         .id = "10EC5650",
0032         .drv_name = "bdw-rt5650",
0033         .fw_filename = "intel/IntcSST2.bin",
0034         .sof_tplg_filename = "sof-bdw-rt5650.tplg",
0035     },
0036     {
0037         .id = "RT5677CE",
0038         .drv_name = "bdw-rt5677",
0039         .fw_filename =  "intel/IntcSST2.bin",
0040         .sof_tplg_filename = "sof-bdw-rt5677.tplg",
0041     },
0042     {
0043         .id = "INT33CA",
0044         .drv_name = "hsw_rt5640",
0045         .fw_filename = "intel/IntcSST2.bin",
0046         .sof_tplg_filename = "sof-bdw-rt5640.tplg",
0047     },
0048     {}
0049 };
0050 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);