mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 10:01:39 -05:00
Revert "ASoC: Intel: soc-acpi-intel-nvl-match: add rt722 l3 support"
NVL should be only using functional topologies for products, no monolithic
topologies are planned to be released.
In parallel a feature has been landed [1] which allows to remove the
entries from the match table for sdca codecs to rely solely on function
fragments.
This reverts commit 41566e3de4.
Link: https://lore.kernel.org/linux-sound/20251014071335.3844631-1-yung-chuan.liao@linux.intel.com/
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Link: https://patch.msgid.link/20251215101036.9370-3-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* soc-acpi-intel-nvl-match.c - tables and support for NVL ACPI enumeration.
|
|
*
|
|
* Copyright (c) 2025, Intel Corporation.
|
|
*
|
|
*/
|
|
|
|
#include <sound/soc-acpi.h>
|
|
#include <sound/soc-acpi-intel-match.h>
|
|
#include "soc-acpi-intel-sdw-mockup-match.h"
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_nvl_machines[] = {
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_nvl_machines);
|
|
|
|
/* this table is used when there is no I2S codec present */
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_nvl_sdw_machines[] = {
|
|
/* mockup tests need to be first */
|
|
{
|
|
.link_mask = GENMASK(3, 0),
|
|
.links = sdw_mockup_headset_2amps_mic,
|
|
.drv_name = "sof_sdw",
|
|
.sof_tplg_filename = "sof-nvl-rt711-rt1308-rt715.tplg",
|
|
},
|
|
{
|
|
.link_mask = BIT(0) | BIT(1) | BIT(3),
|
|
.links = sdw_mockup_headset_1amp_mic,
|
|
.drv_name = "sof_sdw",
|
|
.sof_tplg_filename = "sof-nvl-rt711-rt1308-mono-rt715.tplg",
|
|
},
|
|
{
|
|
.link_mask = GENMASK(2, 0),
|
|
.links = sdw_mockup_mic_headset_1amp,
|
|
.drv_name = "sof_sdw",
|
|
.sof_tplg_filename = "sof-nvl-rt715-rt711-rt1308-mono.tplg",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_nvl_sdw_machines);
|