mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
af2618a2ee
Add support for the internal audio DAC glue found on the Amlogic g12a and sm1 SoC families. This allows to connect the TDM outputs of the SoC to the internal t9015 audio DAC. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Link: https://lore.kernel.org/r/20200221153607.1585499-3-jbrunet@baylibre.com Signed-off-by: Mark Brown <broonie@kernel.org>
46 lines
2.3 KiB
Makefile
46 lines
2.3 KiB
Makefile
# SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
|
|
snd-soc-meson-aiu-objs := aiu.o
|
|
snd-soc-meson-aiu-objs += aiu-acodec-ctrl.o
|
|
snd-soc-meson-aiu-objs += aiu-codec-ctrl.o
|
|
snd-soc-meson-aiu-objs += aiu-encoder-i2s.o
|
|
snd-soc-meson-aiu-objs += aiu-encoder-spdif.o
|
|
snd-soc-meson-aiu-objs += aiu-fifo.o
|
|
snd-soc-meson-aiu-objs += aiu-fifo-i2s.o
|
|
snd-soc-meson-aiu-objs += aiu-fifo-spdif.o
|
|
snd-soc-meson-axg-fifo-objs := axg-fifo.o
|
|
snd-soc-meson-axg-frddr-objs := axg-frddr.o
|
|
snd-soc-meson-axg-toddr-objs := axg-toddr.o
|
|
snd-soc-meson-axg-tdm-formatter-objs := axg-tdm-formatter.o
|
|
snd-soc-meson-axg-tdm-interface-objs := axg-tdm-interface.o
|
|
snd-soc-meson-axg-tdmin-objs := axg-tdmin.o
|
|
snd-soc-meson-axg-tdmout-objs := axg-tdmout.o
|
|
snd-soc-meson-axg-sound-card-objs := axg-card.o
|
|
snd-soc-meson-axg-spdifin-objs := axg-spdifin.o
|
|
snd-soc-meson-axg-spdifout-objs := axg-spdifout.o
|
|
snd-soc-meson-axg-pdm-objs := axg-pdm.o
|
|
snd-soc-meson-card-utils-objs := meson-card-utils.o
|
|
snd-soc-meson-codec-glue-objs := meson-codec-glue.o
|
|
snd-soc-meson-gx-sound-card-objs := gx-card.o
|
|
snd-soc-meson-g12a-toacodec-objs := g12a-toacodec.o
|
|
snd-soc-meson-g12a-tohdmitx-objs := g12a-tohdmitx.o
|
|
snd-soc-meson-t9015-objs := t9015.o
|
|
|
|
obj-$(CONFIG_SND_MESON_AIU) += snd-soc-meson-aiu.o
|
|
obj-$(CONFIG_SND_MESON_AXG_FIFO) += snd-soc-meson-axg-fifo.o
|
|
obj-$(CONFIG_SND_MESON_AXG_FRDDR) += snd-soc-meson-axg-frddr.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TODDR) += snd-soc-meson-axg-toddr.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDM_FORMATTER) += snd-soc-meson-axg-tdm-formatter.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDM_INTERFACE) += snd-soc-meson-axg-tdm-interface.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDMIN) += snd-soc-meson-axg-tdmin.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDMOUT) += snd-soc-meson-axg-tdmout.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SOUND_CARD) += snd-soc-meson-axg-sound-card.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SPDIFIN) += snd-soc-meson-axg-spdifin.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SPDIFOUT) += snd-soc-meson-axg-spdifout.o
|
|
obj-$(CONFIG_SND_MESON_AXG_PDM) += snd-soc-meson-axg-pdm.o
|
|
obj-$(CONFIG_SND_MESON_CARD_UTILS) += snd-soc-meson-card-utils.o
|
|
obj-$(CONFIG_SND_MESON_CODEC_GLUE) += snd-soc-meson-codec-glue.o
|
|
obj-$(CONFIG_SND_MESON_GX_SOUND_CARD) += snd-soc-meson-gx-sound-card.o
|
|
obj-$(CONFIG_SND_MESON_G12A_TOACODEC) += snd-soc-meson-g12a-toacodec.o
|
|
obj-$(CONFIG_SND_MESON_G12A_TOHDMITX) += snd-soc-meson-g12a-tohdmitx.o
|
|
obj-$(CONFIG_SND_SOC_MESON_T9015) += snd-soc-meson-t9015.o
|