~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/soc/intel/common/soc-acpi-intel-cnl-match.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * soc-acpi-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 #include "soc-acpi-intel-sdw-mockup-match.h"
 13 
 14 static const struct snd_soc_acpi_codecs essx_83x6 = {
 15         .num_codecs = 3,
 16         .codecs = { "ESSX8316", "ESSX8326", "ESSX8336"},
 17 };
 18 
 19 static struct skl_machine_pdata cnl_pdata = {
 20         .use_tplg_pcm = true,
 21 };
 22 
 23 struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[] = {
 24         {
 25                 .id = "INT34C2",
 26                 .drv_name = "cnl_rt274",
 27                 .fw_filename = "intel/dsp_fw_cnl.bin",
 28                 .pdata = &cnl_pdata,
 29                 .sof_tplg_filename = "sof-cnl-rt274.tplg",
 30         },
 31         {
 32                 .comp_ids = &essx_83x6,
 33                 .drv_name = "sof-essx8336",
 34                 /* cnl and cml are identical */
 35                 .sof_tplg_filename = "sof-cml-es8336", /* the tplg suffix is added at run time */
 36                 .tplg_quirk_mask = SND_SOC_ACPI_TPLG_INTEL_SSP_NUMBER |
 37                                         SND_SOC_ACPI_TPLG_INTEL_SSP_MSB |
 38                                         SND_SOC_ACPI_TPLG_INTEL_DMIC_NUMBER,
 39         },
 40         {},
 41 };
 42 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_machines);
 43 
 44 static const struct snd_soc_acpi_endpoint single_endpoint = {
 45         .num = 0,
 46         .aggregated = 0,
 47         .group_position = 0,
 48         .group_id = 0,
 49 };
 50 
 51 static const struct snd_soc_acpi_adr_device rt5682_2_adr[] = {
 52         {
 53                 .adr = 0x000220025D568200ull,
 54                 .num_endpoints = 1,
 55                 .endpoints = &single_endpoint,
 56                 .name_prefix = "rt5682"
 57         }
 58 };
 59 
 60 static const struct snd_soc_acpi_link_adr up_extreme_rt5682_2[] = {
 61         {
 62                 .mask = BIT(2),
 63                 .num_adr = ARRAY_SIZE(rt5682_2_adr),
 64                 .adr_d = rt5682_2_adr,
 65         },
 66         {}
 67 };
 68 
 69 struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_sdw_machines[] = {
 70         {
 71                 .link_mask = BIT(2),
 72                 .links = up_extreme_rt5682_2,
 73                 .drv_name = "sof_sdw",
 74                 .sof_tplg_filename = "sof-cnl-rt5682-sdw2.tplg"
 75         },
 76         {
 77                 .link_mask = GENMASK(3, 0),
 78                 .links = sdw_mockup_headset_2amps_mic,
 79                 .drv_name = "sof_sdw",
 80                 .sof_tplg_filename = "sof-cml-rt711-rt1308-rt715.tplg",
 81         },
 82         {
 83                 .link_mask = BIT(0) | BIT(1) | BIT(3),
 84                 .links = sdw_mockup_headset_1amp_mic,
 85                 .drv_name = "sof_sdw",
 86                 .sof_tplg_filename = "sof-cml-rt711-rt1308-mono-rt715.tplg",
 87         },
 88         {}
 89 };
 90 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_sdw_machines);
 91 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php