mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:47:28 +07:00
db0b9efb98
The two configurations are with the Realtek 3-in-1 board requiring all 4 links to be enabled, or basic configuration with the on-board RT700 using link1. For now we only have definitions for CML. CNL and CFL are just placeholders. Signed-off-by: Rander Wang <rander.wang@linux.intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20200110222530.30303-5-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
37 lines
872 B
C
37 lines
872 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* soc-acpi-intel-cnl-match.c - tables and support for CNL ACPI enumeration.
|
|
*
|
|
* Copyright (c) 2018, Intel Corporation.
|
|
*
|
|
*/
|
|
|
|
#include <sound/soc-acpi.h>
|
|
#include <sound/soc-acpi-intel-match.h>
|
|
#include "../skylake/skl.h"
|
|
|
|
static struct skl_machine_pdata cnl_pdata = {
|
|
.use_tplg_pcm = true,
|
|
};
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[] = {
|
|
{
|
|
.id = "INT34C2",
|
|
.drv_name = "cnl_rt274",
|
|
.fw_filename = "intel/dsp_fw_cnl.bin",
|
|
.pdata = &cnl_pdata,
|
|
.sof_fw_filename = "sof-cnl.ri",
|
|
.sof_tplg_filename = "sof-cnl-rt274.tplg",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_machines);
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_sdw_machines[] = {
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_sdw_machines);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("Intel Common ACPI Match module");
|