mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 21:14:18 +00:00

Add support for the DMIC DAIs present on the MT8188 SoC. To achieve that, add a DAI driver for DMIC and register it during probe, and describe the AFE routes that connect the DMIC (I004-I011) to the UL9 frontend (O002-O009). Signed-off-by: parkeryang <Parker.Yang@mediatek.com> Co-developed-by: Nícolas F. R. A. Prado <nfraprado@collabora.com> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Link: https://patch.msgid.link/20250225-genio700-dmic-v2-4-3076f5b50ef7@collabora.com Signed-off-by: Mark Brown <broonie@kernel.org>
17 lines
351 B
Makefile
17 lines
351 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# platform driver
|
|
snd-soc-mt8188-afe-y := \
|
|
mt8188-afe-clk.o \
|
|
mt8188-afe-pcm.o \
|
|
mt8188-audsys-clk.o \
|
|
mt8188-dai-adda.o \
|
|
mt8188-dai-dmic.o \
|
|
mt8188-dai-etdm.o \
|
|
mt8188-dai-pcm.o
|
|
|
|
obj-$(CONFIG_SND_SOC_MT8188) += snd-soc-mt8188-afe.o
|
|
|
|
# machine driver
|
|
obj-$(CONFIG_SND_SOC_MT8188_MT6359) += mt8188-mt6359.o
|