All of lore.kernel.org
 help / color / mirror / Atom feed
* HDA buffer alignment
@ 2007-03-16 11:54 Joachim Deguara
  2007-03-16 12:00 ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Joachim Deguara @ 2007-03-16 11:54 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 274 bytes --]

>From the HDA spec it appears that the buffers written to the BDL and
sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
was not happening especially when playing 6 channels.  This patch set
the alignment of buffers and periods to 128 bytes.

-Joachim

[-- Attachment #2: align_hda_buffers --]
[-- Type: text/plain, Size: 665 bytes --]

diff -r f8284261b2be pci/hda/hda_intel.c
--- a/pci/hda/hda_intel.c	Thu Mar 15 15:10:28 2007 +0100
+++ b/pci/hda/hda_intel.c	Fri Mar 16 06:34:03 2007 +0100
@@ -1087,6 +1087,10 @@ static int azx_pcm_open(struct snd_pcm_s
 	runtime->hw.rates = hinfo->rates;
 	snd_pcm_limit_hw_rates(runtime);
 	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
+	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
+128);
+        snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
+128);
 	if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
 		azx_release_device(azx_dev);
 		mutex_unlock(&chip->open_mutex);

[-- Attachment #3: Type: text/plain, Size: 345 bytes --]

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

[-- Attachment #4: Type: text/plain, Size: 161 bytes --]

_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

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

* Re: HDA buffer alignment
  2007-03-16 11:54 HDA buffer alignment Joachim Deguara
@ 2007-03-16 12:00 ` Takashi Iwai
  2007-03-16 13:21   ` Joachim Deguara
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2007-03-16 12:00 UTC (permalink / raw)
  To: Joachim Deguara; +Cc: alsa-devel

At Fri, 16 Mar 2007 12:54:02 +0100,
Joachim Deguara wrote:
> 
> >From the HDA spec it appears that the buffers written to the BDL and
> sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
> was not happening especially when playing 6 channels.  This patch set
> the alignment of buffers and periods to 128 bytes.

Good catch.

The changes look good to me, but please fold lines to fit within 80
chars.  Also, please give a sign-off for the patch to apply to the
upstream.


Thanks,

Takashi


> -Joachim
> [2 align_hda_buffers <text/plain (base64)>]
> diff -r f8284261b2be pci/hda/hda_intel.c
> --- a/pci/hda/hda_intel.c	Thu Mar 15 15:10:28 2007 +0100
> +++ b/pci/hda/hda_intel.c	Fri Mar 16 06:34:03 2007 +0100
> @@ -1087,6 +1087,10 @@ static int azx_pcm_open(struct snd_pcm_s
>  	runtime->hw.rates = hinfo->rates;
>  	snd_pcm_limit_hw_rates(runtime);
>  	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
> +	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
> +128);
> +        snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
> +128);
>  	if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
>  		azx_release_device(azx_dev);
>  		mutex_unlock(&chip->open_mutex);
> [3  <text/plain; us-ascii (7bit)>]
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> [4  <text/plain; us-ascii (7bit)>]
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/alsa-devel

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

* Re: HDA buffer alignment
  2007-03-16 12:00 ` Takashi Iwai
@ 2007-03-16 13:21   ` Joachim Deguara
  2007-03-16 14:02     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Joachim Deguara @ 2007-03-16 13:21 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

"Takashi Iwai" <tiwai@suse.de> wrote on 13:00 16/03/2007 +0100 :
> At Fri, 16 Mar 2007 12:54:02 +0100,
> Joachim Deguara wrote:
>> >From the HDA spec it appears that the buffers written to the BDL and
>> sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
>> was not happening especially when playing 6 channels.  This patch set
>> the alignment of buffers and periods to 128 bytes.
> 
> Good catch.
> 
> The changes look good to me, but please fold lines to fit within 80
> chars.  Also, please give a sign-off for the patch to apply to the
> upstream.

>From the HDA spec it appears that the buffers written to the BDL and
sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
was not happening especially when playing 6 channels.  This patch set
the alignment of buffers and periods to 128 bytes.

Signed-off-by: Joachim Deguara <joachim.deguara@amd.com>

diff -r f8284261b2be pci/hda/hda_intel.c
--- a/pci/hda/hda_intel.c       Thu Mar 15 15:10:28 2007 +0100
+++ b/pci/hda/hda_intel.c       Fri Mar 16 07:04:47 2007 +0100
@@ -1087,6 +1087,10 @@ static int azx_pcm_open(struct snd_pcm_s
        runtime->hw.rates = hinfo->rates;
        snd_pcm_limit_hw_rates(runtime);
        snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
+       snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
+                                  128);
+        snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
+                                  128);
        if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
                azx_release_device(azx_dev);
                mutex_unlock(&chip->open_mutex);




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

* Re: HDA buffer alignment
  2007-03-16 13:21   ` Joachim Deguara
@ 2007-03-16 14:02     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2007-03-16 14:02 UTC (permalink / raw)
  To: Joachim Deguara; +Cc: alsa-devel

At Fri, 16 Mar 2007 14:21:34 +0100,
Joachim Deguara wrote:
> 
> "Takashi Iwai" <tiwai@suse.de> wrote on 13:00 16/03/2007 +0100 :
> > At Fri, 16 Mar 2007 12:54:02 +0100,
> > Joachim Deguara wrote:
> >> >From the HDA spec it appears that the buffers written to the BDL and
> >> sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
> >> was not happening especially when playing 6 channels.  This patch set
> >> the alignment of buffers and periods to 128 bytes.
> > 
> > Good catch.
> > 
> > The changes look good to me, but please fold lines to fit within 80
> > chars.  Also, please give a sign-off for the patch to apply to the
> > upstream.
> 
> >From the HDA spec it appears that the buffers written to the BDL and
> sent to a codec must be 128 byte aligned (section 4.5.1).  The alignment
> was not happening especially when playing 6 channels.  This patch set
> the alignment of buffers and periods to 128 bytes.
> 
> Signed-off-by: Joachim Deguara <joachim.deguara@amd.com>

Thanks, applied to HG tree now.


Takashi

> 
> diff -r f8284261b2be pci/hda/hda_intel.c
> --- a/pci/hda/hda_intel.c       Thu Mar 15 15:10:28 2007 +0100
> +++ b/pci/hda/hda_intel.c       Fri Mar 16 07:04:47 2007 +0100
> @@ -1087,6 +1087,10 @@ static int azx_pcm_open(struct snd_pcm_s
>         runtime->hw.rates = hinfo->rates;
>         snd_pcm_limit_hw_rates(runtime);
>         snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
> +       snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
> +                                  128);
> +        snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
> +                                  128);
>         if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
>                 azx_release_device(azx_dev);
>                 mutex_unlock(&chip->open_mutex);
> 
> 
> 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

end of thread, other threads:[~2007-03-16 14:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-16 11:54 HDA buffer alignment Joachim Deguara
2007-03-16 12:00 ` Takashi Iwai
2007-03-16 13:21   ` Joachim Deguara
2007-03-16 14:02     ` Takashi Iwai

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.