mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 12:47:02 +07:00
ee1e79b72e
Move all the audio-specific code in the core, audio-specific logic in the top-level PM callbacks and the core header files into a separate file (sof-audio.*) in preparation for adding an audio client device. In the process of moving all structure definitions for widget, routes, pcm's etc, the snd_sof_dev member in all these structs is replaced with the snd_soc_component member. Also, use the component device instead of the snd_sof_dev device wherever possible in the PCM component driver, control IO functions and the topology parser as the component device will be moved over to the client device later on. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20191204211556.12671-9-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
23 lines
688 B
Makefile
23 lines
688 B
Makefile
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
|
|
|
|
snd-sof-objs := core.o ops.o loader.o ipc.o pcm.o pm.o debug.o topology.o\
|
|
control.o trace.o utils.o sof-audio.o
|
|
|
|
snd-sof-pci-objs := sof-pci-dev.o
|
|
snd-sof-acpi-objs := sof-acpi-dev.o
|
|
snd-sof-of-objs := sof-of-dev.o
|
|
|
|
snd-sof-nocodec-objs := nocodec.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF) += snd-sof.o
|
|
obj-$(CONFIG_SND_SOC_SOF_NOCODEC) += snd-sof-nocodec.o
|
|
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_ACPI) += snd-sof-acpi.o
|
|
obj-$(CONFIG_SND_SOC_SOF_OF) += snd-sof-of.o
|
|
obj-$(CONFIG_SND_SOC_SOF_PCI) += snd-sof-pci.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL) += intel/
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX_TOPLEVEL) += imx/
|
|
obj-$(CONFIG_SND_SOC_SOF_XTENSA) += xtensa/
|