Enables DSP DAI format for mcbsp in omap platform driver Signed-off-by: Arun KS <arunks@xxxxxxxxxxxxxxxxxxxx> --- sound/soc/omap/omap-mcbsp.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index 35310e1..fb920e1 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c @@ -245,6 +245,11 @@ static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai, regs->rcr2 |= RDATDLY(1); regs->xcr2 |= XDATDLY(1); break; + case SND_SOC_DAIFMT_DSP_A: + /* 0-bit data delay */ + regs->rcr2 |= RDATDLY(0); + regs->xcr2 |= XDATDLY(0); + break; default: /* Unsupported data format */ return -EINVAL; -- 1.5.3.4
From 3f3c252625236bd7f3a3c949769d41b26efbc805 Mon Sep 17 00:00:00 2001 From: Arun KS <arunks@xxxxxxxxxxxxxxxxxxxx> Date: Tue, 30 Sep 2008 13:30:15 +0530 Subject: [PATCH] ASoC Adds DSP DAI format support for platform driver Enables DSP DAI format for mcbsp in omap platform driver Signed-off-by: Arun KS <arunks@xxxxxxxxxxxxxxxxxxxx> --- sound/soc/omap/omap-mcbsp.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index 35310e1..fb920e1 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c @@ -245,6 +245,11 @@ static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai, regs->rcr2 |= RDATDLY(1); regs->xcr2 |= XDATDLY(1); break; + case SND_SOC_DAIFMT_DSP_A: + /* 0-bit data delay */ + regs->rcr2 |= RDATDLY(0); + regs->xcr2 |= XDATDLY(0); + break; default: /* Unsupported data format */ return -EINVAL; -- 1.5.3.4