mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 08:32:55 +00:00

Define handlers specific to ACE platforms, that Frisco Lake (FCL), a PantherLake (PTL)-based platform, is founded upon. Most operations are still inherited from their predecessors with the major difference being AudioDSP cores management - replaced by DSP-domain power management. Software has to ensure the DSP domain is both powered on and its power-gating disabled before it can be utilized for streaming. Reviewed-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com> Link: https://patch.msgid.link/20250407112352.3720779-6-cezary.rojewski@intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
21 lines
544 B
Makefile
21 lines
544 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
snd-soc-avs-y := dsp.o ipc.o messages.o utils.o core.o loader.o \
|
|
topology.o path.o pcm.o board_selection.o control.o \
|
|
sysfs.o
|
|
snd-soc-avs-y += cldma.o
|
|
snd-soc-avs-y += skl.o apl.o cnl.o icl.o tgl.o mtl.o lnl.o ptl.o
|
|
|
|
snd-soc-avs-y += trace.o
|
|
# tell define_trace.h where to find the trace header
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
ifneq ($(CONFIG_DEBUG_FS),)
|
|
snd-soc-avs-y += probes.o debugfs.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SND_SOC_INTEL_AVS) += snd-soc-avs.o
|
|
|
|
# Machine support
|
|
obj-$(CONFIG_SND_SOC) += boards/
|