b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
| 2 | /* |
| 3 | * soc-acpi-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 | |
| 12 | struct 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 | }; |
| 22 | EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines); |
| 23 | |
| 24 | struct 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 | }; |
| 48 | EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines); |
| 49 | |
| 50 | MODULE_LICENSE("GPL v2"); |
| 51 | MODULE_DESCRIPTION("Intel Common ACPI Match module"); |