2018-07-02 06:24:04 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
2017-10-12 23:49:41 +00:00
|
|
|
*
|
2018-07-02 06:24:04 +00:00
|
|
|
* Copyright (C) 2017, Intel Corporation. All rights reserved.
|
2017-10-12 23:49:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
|
|
#define __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
|
|
|
2018-01-04 22:35:52 +00:00
|
|
|
#include <linux/module.h>
|
2017-10-12 23:49:41 +00:00
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* these tables are not constants, some fields can be used for
|
|
|
|
* pdata or machine ops
|
|
|
|
*/
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_baytrail_legacy_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_baytrail_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_cherrytrail_machines[];
|
2018-06-18 18:29:37 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_skl_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_kbl_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_bxt_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_glk_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[];
|
2019-11-11 22:28:59 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_cfl_machines[];
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_cml_machines[];
|
2018-12-01 00:54:37 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_icl_machines[];
|
2019-08-15 15:57:46 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_tgl_machines[];
|
2019-08-15 15:57:48 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_ehl_machines[];
|
2019-10-22 19:47:04 +00:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_jsl_machines[];
|
2017-10-12 23:49:41 +00:00
|
|
|
|
2018-08-22 20:24:58 +00:00
|
|
|
/*
|
|
|
|
* generic table used for HDA codec-based platforms, possibly with
|
|
|
|
* additional ACPI-enumerated codecs
|
|
|
|
*/
|
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_hda_machines[];
|
|
|
|
|
2017-10-12 23:49:41 +00:00
|
|
|
#endif
|