summaryrefslogtreecommitdiffstats
path: root/sound/soc/meson/Makefile
diff options
context:
space:
mode:
authorJerome Brunet2018-07-17 17:42:59 +0200
committerMark Brown2018-07-20 18:38:33 +0200
commitd60e4f1e4be5e2dfb55fb084b119aed094227a35 (patch)
tree6309b26c3f67cd264e500ccd109b383e50a098d4 /sound/soc/meson/Makefile
parentASoC: meson: add tdm formatter base driver (diff)
downloadkernel-qcow2-linux-d60e4f1e4be5e2dfb55fb084b119aed094227a35.tar.gz
kernel-qcow2-linux-d60e4f1e4be5e2dfb55fb084b119aed094227a35.tar.xz
kernel-qcow2-linux-d60e4f1e4be5e2dfb55fb084b119aed094227a35.zip
ASoC: meson: add tdm interface driver
Add Amlogic's axg TDM interface driver. This driver manages the format and clocks provided on the pads. On this SoC, each stream direction provides 4 serial lanes. This makes a maximum of 8 channels in i2s modes and 128 channels in DSP modes. While each lanes operate on the same slot number (same bit clock), they may have different TDM masks. This requires to provide a function to let the card set the 4 masks, in lieu of the usual set_tdm_slots() callback of the dai driver. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/meson/Makefile')
-rw-r--r--sound/soc/meson/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/meson/Makefile b/sound/soc/meson/Makefile
index a06b56a1c995..1a8eb77402e3 100644
--- a/sound/soc/meson/Makefile
+++ b/sound/soc/meson/Makefile
@@ -4,10 +4,12 @@ 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-spdifout-objs := axg-spdifout.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_SPDIFOUT) += snd-soc-meson-axg-spdifout.o