Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2 51 lines 1.3 kB view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * soc-apci-intel-hsw-bdw-match.c - tables and support for ACPI enumeration. 4 * 5 * Copyright (c) 2017, Intel Corporation. 6 */ 7 8#include <linux/dmi.h> 9#include <sound/soc-acpi.h> 10#include <sound/soc-acpi-intel-match.h> 11 12struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[] = { 13 { 14 .id = "INT33CA", 15 .drv_name = "haswell-audio", 16 .fw_filename = "intel/IntcSST1.bin", 17 .sof_fw_filename = "sof-hsw.ri", 18 .sof_tplg_filename = "sof-hsw.tplg", 19 }, 20 {} 21}; 22EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines); 23 24struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = { 25 { 26 .id = "INT343A", 27 .drv_name = "broadwell-audio", 28 .fw_filename = "intel/IntcSST2.bin", 29 .sof_fw_filename = "sof-bdw.ri", 30 .sof_tplg_filename = "sof-bdw-rt286.tplg", 31 }, 32 { 33 .id = "RT5677CE", 34 .drv_name = "bdw-rt5677", 35 .fw_filename = "intel/IntcSST2.bin", 36 .sof_fw_filename = "sof-bdw.ri", 37 .sof_tplg_filename = "sof-bdw-rt5677.tplg", 38 }, 39 { 40 .id = "INT33CA", 41 .drv_name = "haswell-audio", 42 .fw_filename = "intel/IntcSST2.bin", 43 .sof_fw_filename = "sof-bdw.ri", 44 .sof_tplg_filename = "sof-bdw-rt5640.tplg", 45 }, 46 {} 47}; 48EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines); 49 50MODULE_LICENSE("GPL v2"); 51MODULE_DESCRIPTION("Intel Common ACPI Match module");