blob: ec8e28e7b937aab8d763c8cc01d991a332a0b545 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * soc-apci-intel-cnl-match.c - tables and support for CNL ACPI enumeration.
4 *
5 * Copyright (c) 2018, Intel Corporation.
6 *
7 */
8
9#include <sound/soc-acpi.h>
10#include <sound/soc-acpi-intel-match.h>
11#include "../skylake/skl.h"
12
13static struct skl_machine_pdata cnl_pdata = {
14 .use_tplg_pcm = true,
15};
16
17struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[] = {
18 {
19 .id = "INT34C2",
20 .drv_name = "cnl_rt274",
21 .fw_filename = "intel/dsp_fw_cnl.bin",
22 .pdata = &cnl_pdata,
23 .sof_fw_filename = "intel/sof-cnl.ri",
24 .sof_tplg_filename = "intel/sof-cnl-rt274.tplg",
25 .asoc_plat_name = "0000:00:1f.3",
26 },
27 {},
28};
29EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_machines);
30
31MODULE_LICENSE("GPL v2");
32MODULE_DESCRIPTION("Intel Common ACPI Match module");