Commit 9b95b166 authored by Miguel Aguilar's avatar Miguel Aguilar Committed by Mark Brown

ASoC: Davinci: Add audio codec support for DM365 EVM

This patch enables tlv320aic3101 support on DM365 EVM and
it was tested on DM365 EVM rev c.

Note: this patch was created based on temp/asoc branch.
Signed-off-by: default avatarMiguel Aguilar <miguel.aguilar@ridgerun.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 08db48f1
...@@ -13,9 +13,9 @@ config SND_DAVINCI_SOC_MCASP ...@@ -13,9 +13,9 @@ config SND_DAVINCI_SOC_MCASP
tristate tristate
config SND_DAVINCI_SOC_EVM config SND_DAVINCI_SOC_EVM
tristate "SoC Audio support for DaVinci DM6446 or DM355 EVM" tristate "SoC Audio support for DaVinci DM6446, DM355 or DM365 EVM"
depends on SND_DAVINCI_SOC depends on SND_DAVINCI_SOC
depends on MACH_DAVINCI_EVM || MACH_DAVINCI_DM355_EVM depends on MACH_DAVINCI_EVM || MACH_DAVINCI_DM355_EVM || MACH_DAVINCI_DM365_EVM
select SND_DAVINCI_SOC_I2S select SND_DAVINCI_SOC_I2S
select SND_SOC_TLV320AIC3X select SND_SOC_TLV320AIC3X
help help
......
...@@ -45,7 +45,8 @@ static int evm_hw_params(struct snd_pcm_substream *substream, ...@@ -45,7 +45,8 @@ static int evm_hw_params(struct snd_pcm_substream *substream,
unsigned sysclk; unsigned sysclk;
/* ASP1 on DM355 EVM is clocked by an external oscillator */ /* ASP1 on DM355 EVM is clocked by an external oscillator */
if (machine_is_davinci_dm355_evm() || machine_is_davinci_dm6467_evm()) if (machine_is_davinci_dm355_evm() || machine_is_davinci_dm6467_evm() ||
machine_is_davinci_dm365_evm())
sysclk = 27000000; sysclk = 27000000;
/* ASP0 in DM6446 EVM is clocked by U55, as configured by /* ASP0 in DM6446 EVM is clocked by U55, as configured by
...@@ -176,7 +177,7 @@ static struct snd_soc_dai_link da8xx_evm_dai = { ...@@ -176,7 +177,7 @@ static struct snd_soc_dai_link da8xx_evm_dai = {
.ops = &evm_ops, .ops = &evm_ops,
}; };
/* davinci-evm audio machine driver */ /* davinci dm6446, dm355 or dm365 evm audio machine driver */
static struct snd_soc_card snd_soc_card_evm = { static struct snd_soc_card snd_soc_card_evm = {
.name = "DaVinci EVM", .name = "DaVinci EVM",
.platform = &davinci_soc_platform, .platform = &davinci_soc_platform,
...@@ -243,7 +244,7 @@ static int __init evm_init(void) ...@@ -243,7 +244,7 @@ static int __init evm_init(void)
int index; int index;
int ret; int ret;
if (machine_is_davinci_evm()) { if (machine_is_davinci_evm() || machine_is_davinci_dm365_evm()) {
evm_snd_dev_data = &evm_snd_devdata; evm_snd_dev_data = &evm_snd_devdata;
index = 0; index = 0;
} else if (machine_is_davinci_dm355_evm()) { } else if (machine_is_davinci_dm355_evm()) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment