Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) // SPDX-License-Identifier: GPL-2.0-only
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) // Copyright (c) 2018, Intel Corporation.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  * soc-acpi-intel-hda-match.c - tables and support for HDA+ACPI enumeration.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #include <sound/soc-acpi.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #include <sound/soc-acpi-intel-match.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #include "../skylake/skl.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) static struct skl_machine_pdata hda_pdata = {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	.use_tplg_pcm = true,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) struct snd_soc_acpi_mach snd_soc_acpi_intel_hda_machines[] = {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	{
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 		/* .id is not used in this file */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 		.drv_name = "skl_hda_dsp_generic",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 		/* .fw_filename is dynamically set in skylake driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 		/* .sof_fw_filename is dynamically set in sof/intel driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 		.sof_tplg_filename = "sof-hda-generic.tplg",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 		/*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 		 * .machine_quirk and .quirk_data are not used here but
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 		 * can be used if we need a more complicated machine driver
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 		 * combining HDA+other device (e.g. DMIC).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) 		 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) 		.pdata = &hda_pdata,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 	},
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) 	{},
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_hda_machines);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) MODULE_LICENSE("GPL v2");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) MODULE_DESCRIPTION("Intel Common ACPI Match module");