From 062304a1d1cd67cb7fa22ae7224473f55e4bd0b4 Mon Sep 17 00:00:00 2001 From: Songhee Baek Date: Thu, 19 Sep 2013 18:11:04 -0700 Subject: [PATCH] ASoC: tegra-alt: vcm30-t124 machine driver This machine driver is for the vcm30_t124 platform supporting dual codecs(wm8731 and ad1937). Bug 1373091 Change-Id: Icdde8b5e9067dc3365009d6e6262a964986dae37 Signed-off-by: Songhee Baek Reviewed-on: http://git-master/r/290004 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Manoj Gangwal GVS: Gerrit_Virtual_Submit Reviewed-by: Bharat Nihalani --- sound/soc/tegra-alt/Kconfig | 15 +++++++++++++++ sound/soc/tegra-alt/Makefile | 4 ++++ 2 files changed, 19 insertions(+) diff --git a/sound/soc/tegra-alt/Kconfig b/sound/soc/tegra-alt/Kconfig index 60ea0688..1fbc85f4 100644 --- a/sound/soc/tegra-alt/Kconfig +++ b/sound/soc/tegra-alt/Kconfig @@ -47,3 +47,18 @@ config SND_SOC_TEGRA114_ADX_ALT depends on SND_SOC_TEGRA_ALT && SND_SOC_TEGRA_ALT_114_OR_LATER help Say Y or M if you want to add support for Tegra114 ADX module. + +config SND_SOC_TEGRA_VCM30T124_ALT + tristate "SoC Audio support for VCM30_T124" + depends on SND_SOC_TEGRA_ALT + depends on MACH_VCM30_T124 + select SND_SOC_TEGRA30_XBAR_ALT + select SND_SOC_TEGRA30_APBIF_ALT + select SND_SOC_TEGRA30_I2S_ALT + select SND_SOC_TEGRA114_AMX_ALT + select SND_SOC_TEGRA114_ADX_ALT + select SND_SOC_AD193X + select SND_SOC_WM8731 + help + Say Y or M here if you want to add support for SoC audio on the + TEGRA VCM30_T124 using wm8731 and ad1937 codecs. diff --git a/sound/soc/tegra-alt/Makefile b/sound/soc/tegra-alt/Makefile index 38c71d61..52ef0ef1 100644 --- a/sound/soc/tegra-alt/Makefile +++ b/sound/soc/tegra-alt/Makefile @@ -18,3 +18,7 @@ obj-$(CONFIG_SND_SOC_TEGRA30_XBAR_ALT) += snd-soc-tegra30-alt-xbar.o obj-$(CONFIG_SND_SOC_TEGRA30_I2S_ALT) += snd-soc-tegra30-alt-i2s.o obj-$(CONFIG_SND_SOC_TEGRA114_AMX_ALT) += snd-soc-tegra114-alt-amx.o obj-$(CONFIG_SND_SOC_TEGRA114_ADX_ALT) += snd-soc-tegra114-alt-adx.o + +# Tegra machine Support +snd-soc-tegra-alt-vcm30t124-objs := tegra_vcm30t124_alt.o +obj-$(CONFIG_SND_SOC_TEGRA_VCM30T124_ALT) += snd-soc-tegra-alt-vcm30t124.o