From: Bo Shen <voice.shen@atmel.com>
To: Peter Rosin <peda@axentia.se>, Mark Brown <broonie@kernel.org>
Cc: Takashi Iwai <tiwai@suse.de>,
"'alsa-devel@alsa-project.org'" <alsa-devel@alsa-project.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>
Subject: Re: [PATCH v2] ASoC: atmel_ssc_dai: Match the CMR divider only in full duplex.
Date: Fri, 24 Oct 2014 11:15:03 +0800 [thread overview]
Message-ID: <5449C437.30309@atmel.com> (raw)
In-Reply-To: <5733bb4302d148feb0bbd8ffd8c054a2@EMAIL.axentia.se>
Hi Peter,
Thanks for your patch.
Btw, do you use "git send-email" command to send the patch?
On 10/22/2014 11:13 PM, Peter Rosin wrote:
> From 86be84c4de4e7b21cfda9656a02a902c543210af Mon Sep 17 00:00:00 2001
> From: Peter Rosin <peda@axentia.se>
> Date: Wed, 22 Oct 2014 16:45:29 +0200
> Subject: [PATCH v2] ASoC: atmel_ssc_dai: Match the CMR divider only in full
> duplex.
>
> The CMR divider register is shared by playback and capture. The SSC driver
> therefore tries to enforce rules so that the needed register content do
> not conflict during simultaneous playback/capture. However, the
> implementation also prevents changing the register content in
> half-duplex scenarios, which is needed when using the OSS API.
>
> Thus, only lock the divider if there is a stream in the other direction.
>
> Fixes the below program to not fail with the atmel ssc dai in master mode.
>
> #include <sys/ioctl.h>
> #include <unistd.h>
> #include <fcntl.h>
> #include <sys/soundcard.h>
>
> int
> main(void)
> {
> int fd;
> int format;
> int channels;
> int speed;
>
> if ((fd = open("/dev/dsp", O_WRONLY, 0)) == -1) {
> perror("open");
> return 1;
> }
> format = AFMT_S16_LE;
> if (ioctl(fd, SNDCTL_DSP_SETFMT, &format) == -1) {
> perror("SNDCTL_DSP_SETFMT");
> return 1;
> }
> channels = 2;
> if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) == -1) {
> perror("SNDCTL_DSP_CHANNELS");
> return 1;
> }
> speed = 22025;
> if (ioctl(fd, SNDCTL_DSP_SPEED, &speed) == -1) {
> perror("SNDCTL_DSP_SPEED");
> return 1;
> }
> return 0;
> }
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
Acked-by: Bo Shen <voice.shen@atmel.com>
> ---
> sound/soc/atmel/atmel_ssc_dai.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index de433cfd..9ae8475 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -310,7 +310,10 @@ static int atmel_ssc_set_dai_clkdiv(struct snd_soc_dai *cpu_dai,
> * transmit and receive, so if a value has already
> * been set, it must match this value.
> */
> - if (ssc_p->cmr_div == 0)
> + if (ssc_p->dir_mask !=
> + (SSC_DIR_MASK_PLAYBACK | SSC_DIR_MASK_CAPTURE))
> + ssc_p->cmr_div = div;
> + else if (ssc_p->cmr_div == 0)
> ssc_p->cmr_div = div;
> else
> if (div != ssc_p->cmr_div)
>
Best Regards,
Bo Shen
WARNING: multiple messages have this Message-ID (diff)
From: Bo Shen <voice.shen@atmel.com>
To: Peter Rosin <peda@axentia.se>, Mark Brown <broonie@kernel.org>
Cc: "'alsa-devel@alsa-project.org'" <alsa-devel@alsa-project.org>,
"Takashi Iwai" <tiwai@suse.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>
Subject: Re: [PATCH v2] ASoC: atmel_ssc_dai: Match the CMR divider only in full duplex.
Date: Fri, 24 Oct 2014 11:15:03 +0800 [thread overview]
Message-ID: <5449C437.30309@atmel.com> (raw)
In-Reply-To: <5733bb4302d148feb0bbd8ffd8c054a2@EMAIL.axentia.se>
Hi Peter,
Thanks for your patch.
Btw, do you use "git send-email" command to send the patch?
On 10/22/2014 11:13 PM, Peter Rosin wrote:
> From 86be84c4de4e7b21cfda9656a02a902c543210af Mon Sep 17 00:00:00 2001
> From: Peter Rosin <peda@axentia.se>
> Date: Wed, 22 Oct 2014 16:45:29 +0200
> Subject: [PATCH v2] ASoC: atmel_ssc_dai: Match the CMR divider only in full
> duplex.
>
> The CMR divider register is shared by playback and capture. The SSC driver
> therefore tries to enforce rules so that the needed register content do
> not conflict during simultaneous playback/capture. However, the
> implementation also prevents changing the register content in
> half-duplex scenarios, which is needed when using the OSS API.
>
> Thus, only lock the divider if there is a stream in the other direction.
>
> Fixes the below program to not fail with the atmel ssc dai in master mode.
>
> #include <sys/ioctl.h>
> #include <unistd.h>
> #include <fcntl.h>
> #include <sys/soundcard.h>
>
> int
> main(void)
> {
> int fd;
> int format;
> int channels;
> int speed;
>
> if ((fd = open("/dev/dsp", O_WRONLY, 0)) == -1) {
> perror("open");
> return 1;
> }
> format = AFMT_S16_LE;
> if (ioctl(fd, SNDCTL_DSP_SETFMT, &format) == -1) {
> perror("SNDCTL_DSP_SETFMT");
> return 1;
> }
> channels = 2;
> if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) == -1) {
> perror("SNDCTL_DSP_CHANNELS");
> return 1;
> }
> speed = 22025;
> if (ioctl(fd, SNDCTL_DSP_SPEED, &speed) == -1) {
> perror("SNDCTL_DSP_SPEED");
> return 1;
> }
> return 0;
> }
>
> Signed-off-by: Peter Rosin <peda@axentia.se>
Acked-by: Bo Shen <voice.shen@atmel.com>
> ---
> sound/soc/atmel/atmel_ssc_dai.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index de433cfd..9ae8475 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -310,7 +310,10 @@ static int atmel_ssc_set_dai_clkdiv(struct snd_soc_dai *cpu_dai,
> * transmit and receive, so if a value has already
> * been set, it must match this value.
> */
> - if (ssc_p->cmr_div == 0)
> + if (ssc_p->dir_mask !=
> + (SSC_DIR_MASK_PLAYBACK | SSC_DIR_MASK_CAPTURE))
> + ssc_p->cmr_div = div;
> + else if (ssc_p->cmr_div == 0)
> ssc_p->cmr_div = div;
> else
> if (div != ssc_p->cmr_div)
>
Best Regards,
Bo Shen
next prev parent reply other threads:[~2014-10-24 3:15 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-22 15:13 [PATCH v2] ASoC: atmel_ssc_dai: Match the CMR divider only in full duplex Peter Rosin
2014-10-24 3:15 ` Bo Shen [this message]
2014-10-24 3:15 ` Bo Shen
2014-10-24 7:13 ` Peter Rosin
2014-10-24 7:13 ` Peter Rosin
2014-10-24 8:43 ` Bo Shen
2014-10-24 19:25 ` Peter Rosin
2014-10-24 19:25 ` Peter Rosin
2014-10-24 19:25 ` [PATCH] " Peter Rosin
2014-10-24 19:25 ` Peter Rosin
2014-10-31 18:12 ` Mark Brown
2014-11-03 1:25 ` Bo Shen
2014-11-03 1:25 ` Bo Shen
2014-11-03 12:45 ` Mark Brown
2014-10-24 8:46 ` [PATCH v2] " Bo Shen
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=5449C437.30309@atmel.com \
--to=voice.shen@atmel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=peda@axentia.se \
--cc=tiwai@suse.de \
/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 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.