Unverified Commit 5bbfdad8 authored by Alexandre Mergnat's avatar Alexandre Mergnat Committed by Mark Brown
Browse files

ASoC: mediatek: Add MT8365 support



- Add specific config to enable:
  - MT8365 sound support
  - MT6357 audio codec support
- Add the mt8365 directory and all drivers under it.

Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: default avatarAlexandre Mergnat <amergnat@baylibre.com>
Link: https://patch.msgid.link/20240226-audio-i350-v8-2-e80a57d026ce@baylibre.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5e240449
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -298,3 +298,23 @@ config SND_SOC_MT8195_MT6359
	  boards with the MT6359 and other I2S audio codecs.
	  Select Y if you have such device.
	  If unsure select "N".

config SND_SOC_MT8365
	tristate "ASoC support for MediaTek MT8365 chip"
	depends on ARCH_MEDIATEK
	select SND_SOC_MEDIATEK
	help
	  This adds ASoC platform driver support for MediaTek MT8365 chip
	  that can be used with other codecs.
	  Select Y if you have such device.
	  If unsure select "N".

config SND_SOC_MT8365_MT6357
	tristate "ASoC Audio driver for MT8365 with MT6357 codec"
	depends on SND_SOC_MT8365 && MTK_PMIC_WRAP
	select SND_SOC_MT6357
	help
	  This adds support for ASoC machine driver for MediaTek MT8365
	  boards with the MT6357 PMIC codec.
	  Select Y if you have such device.
	  If unsure select "N".
+1 −0
Original line number Diff line number Diff line
@@ -9,3 +9,4 @@ obj-$(CONFIG_SND_SOC_MT8186) += mt8186/
obj-$(CONFIG_SND_SOC_MT8188) += mt8188/
obj-$(CONFIG_SND_SOC_MT8192) += mt8192/
obj-$(CONFIG_SND_SOC_MT8195) += mt8195/
obj-$(CONFIG_SND_SOC_MT8365) += mt8365/
+15 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0

# MTK Platform driver
snd-soc-mt8365-pcm-objs := \
	mt8365-afe-clk.o \
	mt8365-afe-pcm.o \
	mt8365-dai-adda.o \
	mt8365-dai-dmic.o \
	mt8365-dai-i2s.o \
	mt8365-dai-pcm.o

obj-$(CONFIG_SND_SOC_MT8365) += snd-soc-mt8365-pcm.o

# Machine driver
obj-$(CONFIG_SND_SOC_MT8365_MT6357) += mt8365-mt6357.o