2019-05-29 07:18:02 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2017-10-12 18:49:41 -05:00
|
|
|
/*
|
2019-07-25 07:35:23 +02:00
|
|
|
* soc-acpi-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
|
2017-10-12 18:49:41 -05:00
|
|
|
*
|
|
|
|
* 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_broadwell_machines[] = {
|
|
|
|
{
|
|
|
|
.id = "INT343A",
|
2022-06-20 12:13:55 +02:00
|
|
|
.drv_name = "bdw_rt286",
|
2019-02-08 17:45:47 -06:00
|
|
|
.sof_tplg_filename = "sof-bdw-rt286.tplg",
|
2017-10-12 18:49:41 -05:00
|
|
|
},
|
2019-12-18 06:39:30 -08:00
|
|
|
{
|
|
|
|
.id = "10EC5650",
|
|
|
|
.drv_name = "bdw-rt5650",
|
|
|
|
.sof_tplg_filename = "sof-bdw-rt5650.tplg",
|
|
|
|
},
|
2017-10-12 18:49:41 -05:00
|
|
|
{
|
|
|
|
.id = "RT5677CE",
|
|
|
|
.drv_name = "bdw-rt5677",
|
2019-02-08 17:45:47 -06:00
|
|
|
.sof_tplg_filename = "sof-bdw-rt5677.tplg",
|
2017-10-12 18:49:41 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = "INT33CA",
|
2022-06-20 12:13:48 +02:00
|
|
|
.drv_name = "hsw_rt5640",
|
2019-02-08 17:45:47 -06:00
|
|
|
.sof_tplg_filename = "sof-bdw-rt5640.tplg",
|
2017-10-12 18:49:41 -05:00
|
|
|
},
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);
|