All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: omap: Add hardware constraint for HDMI and ABE
@ 2010-12-06 22:34 Olaya, Margarita
  2010-12-06 22:46 ` Mark Brown
  2010-12-07  8:57 ` Peter Ujfalusi
  0 siblings, 2 replies; 6+ messages in thread
From: Olaya, Margarita @ 2010-12-06 22:34 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood; +Cc: alsa-devel@alsa-project.org

From: Jorge Eduardo Candelaria <jorge.candelaria@ti.com>

The Audio Backend needs a step size of 24 * 4, while HDMI requires a
step size of 32 * 4 bits to align the audio buffer.

Signed-off-by: Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
Signed-off-by: Margarita Olaya Cabrera <magi.olaya@ti.com>
---
 sound/soc/omap/omap-pcm.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/sound/soc/omap/omap-pcm.c b/sound/soc/omap/omap-pcm.c
index 8caeb8d..6a21447 100644
--- a/sound/soc/omap/omap-pcm.c
+++ b/sound/soc/omap/omap-pcm.c
@@ -280,6 +280,15 @@ static int omap_pcm_open(struct snd_pcm_substream *substream)
 	if (ret < 0)
 		goto out;
 
+	/*
+	 * ABE needs a step of 24 * 4 data bits, and HDMI 32 * 4
+	 * Ensure buffer size satisfies both constraints.
+	 */
+	ret = snd_pcm_hw_constraint_step(runtime, 0,
+					 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 384);
+	if (ret < 0)
+		goto out;
+
 	prtd = kzalloc(sizeof(*prtd), GFP_KERNEL);
 	if (prtd == NULL) {
 		ret = -ENOMEM;
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-12-08 12:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-06 22:34 [PATCH 1/2] ASoC: omap: Add hardware constraint for HDMI and ABE Olaya, Margarita
2010-12-06 22:46 ` Mark Brown
2010-12-07  8:57 ` Peter Ujfalusi
2010-12-08  9:11   ` Peter Ujfalusi
2010-12-08  9:46     ` Mark Brown
2010-12-08 12:09     ` Liam Girdwood

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.