From: Takashi Iwai <tiwai@suse.de>
To: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Cc: haavard.skinnemoen@atmel.com, linux-kernel@vger.kernel.org,
hcegtvedt@atmel.com, avictor.za@gmail.com
Subject: Re: [PATCH] at73c213: Fix DMA size at the end of DMA buffer
Date: Mon, 17 Mar 2008 14:21:16 +0100 [thread overview]
Message-ID: <s5hr6e9pjub.wl%tiwai@suse.de> (raw)
In-Reply-To: <20080317.220027.01917573.anemo@mba.ocn.ne.jp>
At Mon, 17 Mar 2008 22:00:27 +0900 (JST),
Atsushi Nemoto wrote:
>
> On Fri, 14 Mar 2008 14:39:42 +0100, Takashi Iwai <tiwai@suse.de> wrote:
> > Add the following constraint in the open callback:
> >
> > err = snd_pcm_hw_constraint_integer(runtime,
> > SNDRV_PCM_HW_PARAM_PERIODS);
> > if (err < 0)
> > return err;
> >
> > This will guarantee that the period size fits with the buffer size.
>
> Thank you! It works fine. Here is a new patch.
Thanks for the patch. So, I should revert your last patch, right?
It's already on ALSA tree...
Takashi
>
> ------------------------------------------------------
> Subject: [PATCH] at73c213: Add constraints for periods value
> From: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
>
> The interrupt handler always provide runtime->period_size data, so it
> works correctly only if buffer_size was a multiple of period_size.
>
> This patch fixes periodic click noise.
>
> Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
> ---
> This patch obsoletes a patch titled "at73c213: fix DMA size at the end
> of DMA buffer" in git-alsa-tiwai.patch in mm tree.
>
> diff --git a/sound/spi/at73c213.c b/sound/spi/at73c213.c
> index 7c077c6..9a5c118 100644
> --- a/sound/spi/at73c213.c
> +++ b/sound/spi/at73c213.c
> @@ -210,7 +210,13 @@ static int snd_at73c213_pcm_open(struct snd_pcm_substream *substream)
> {
> struct snd_at73c213 *chip = snd_pcm_substream_chip(substream);
> struct snd_pcm_runtime *runtime = substream->runtime;
> + int err;
>
> + /* ensure buffer_size is a multiple of period_size */
> + err = snd_pcm_hw_constraint_integer(runtime,
> + SNDRV_PCM_HW_PARAM_PERIODS);
> + if (err < 0)
> + return err;
> snd_at73c213_playback_hw.rate_min = chip->bitrate;
> snd_at73c213_playback_hw.rate_max = chip->bitrate;
> runtime->hw = snd_at73c213_playback_hw;
>
next prev parent reply other threads:[~2008-03-17 13:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-10 14:43 [PATCH] at73c213: Fix DMA size at the end of DMA buffer Atsushi Nemoto
2008-03-14 9:44 ` Haavard Skinnemoen
2008-03-14 13:29 ` Atsushi Nemoto
2008-03-14 13:39 ` Takashi Iwai
2008-03-17 13:00 ` Atsushi Nemoto
2008-03-17 13:21 ` Takashi Iwai [this message]
2008-03-17 13:32 ` Atsushi Nemoto
2008-03-17 13:54 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hr6e9pjub.wl%tiwai@suse.de \
--to=tiwai@suse.de \
--cc=anemo@mba.ocn.ne.jp \
--cc=avictor.za@gmail.com \
--cc=haavard.skinnemoen@atmel.com \
--cc=hcegtvedt@atmel.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox