
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms and conditions of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 263 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190529141901.208660670@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* soc-apci-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
|
|
*
|
|
* Copyright (c) 2017, Intel Corporation.
|
|
*/
|
|
|
|
#include <linux/dmi.h>
|
|
#include <sound/soc-acpi.h>
|
|
#include <sound/soc-acpi-intel-match.h>
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[] = {
|
|
{
|
|
.id = "INT33CA",
|
|
.drv_name = "haswell-audio",
|
|
.fw_filename = "intel/IntcSST1.bin",
|
|
.sof_fw_filename = "sof-hsw.ri",
|
|
.sof_tplg_filename = "sof-hsw.tplg",
|
|
},
|
|
{}
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines);
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = {
|
|
{
|
|
.id = "INT343A",
|
|
.drv_name = "broadwell-audio",
|
|
.fw_filename = "intel/IntcSST2.bin",
|
|
.sof_fw_filename = "sof-bdw.ri",
|
|
.sof_tplg_filename = "sof-bdw-rt286.tplg",
|
|
},
|
|
{
|
|
.id = "RT5677CE",
|
|
.drv_name = "bdw-rt5677",
|
|
.fw_filename = "intel/IntcSST2.bin",
|
|
.sof_fw_filename = "sof-bdw.ri",
|
|
.sof_tplg_filename = "sof-bdw-rt5677.tplg",
|
|
},
|
|
{
|
|
.id = "INT33CA",
|
|
.drv_name = "haswell-audio",
|
|
.fw_filename = "intel/IntcSST2.bin",
|
|
.sof_fw_filename = "sof-bdw.ri",
|
|
.sof_tplg_filename = "sof-bdw-rt5640.tplg",
|
|
},
|
|
{}
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("Intel Common ACPI Match module");
|