Define handlers specific to cAVS 1.5+ platforms, that is, APL and similar platforms. These differ from SKL-alike ones in terms of AudioDSP firmware generation and thus the '+' suffix. Introduciton of IMR, removal of CLDMA, D0IX support and monolithic-ation of library/module code are most impactful but are not the only changes brought with this newer generation. Some generic and 1.5 operations are being re-used to reduce code size. Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> Link: https://lore.kernel.org/r/20220516101116.190192-16-cezary.rojewski@intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
13 lines
377 B
Makefile
13 lines
377 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
snd-soc-avs-objs := dsp.o ipc.o messages.o utils.o core.o loader.o \
|
|
topology.o path.o pcm.o board_selection.o
|
|
snd-soc-avs-objs += cldma.o
|
|
snd-soc-avs-objs += skl.o apl.o
|
|
|
|
snd-soc-avs-objs += trace.o
|
|
# tell define_trace.h where to find the trace header
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
obj-$(CONFIG_SND_SOC_INTEL_AVS) += snd-soc-avs.o
|