2018-07-02 09:24:04 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
2017-10-13 02:49:41 +03:00
|
|
|
*
|
2018-07-02 09:24:04 +03:00
|
|
|
* Copyright (C) 2017, Intel Corporation. All rights reserved.
|
2017-10-13 02:49:41 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
|
|
#define __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
|
|
|
2018-01-05 01:35:52 +03:00
|
|
|
#include <linux/module.h>
|
2017-10-13 02:49:41 +03: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 21:29:37 +03: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[];
|
2018-12-01 03:54:37 +03:00
|
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_icl_machines[];
|
2017-10-13 02:49:41 +03:00
|
|
|
|
2018-08-22 23:24:58 +03: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-13 02:49:41 +03:00
|
|
|
#endif
|