Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: fsl: Correct FSL_SAI_CR2_MSEL_MASK definition
@ 2015-06-03 12:51 Takashi Iwai
  2015-06-03 18:47 ` Nicolin Chen
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2015-06-03 12:51 UTC (permalink / raw)
  To: Mark Brown; +Cc: Nicolin Chen, alsa-devel, Xiubo Li, Liam Girdwood, Timur Tabi

The bit mask FSL_SAI_CR2_MSEL_MASK is defined as (0xff << 26) and this
obviously overflows the 32bit integer.  Also this clears other bits
than the needed ones (FSL_SAI_CR2_MSEL_XXX) wrongly.

This patch fixes the definition only to mask bits 26 and 27.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=84351
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 sound/soc/fsl/fsl_sai.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/fsl/fsl_sai.h b/sound/soc/fsl/fsl_sai.h
index 34667209b607..0e33a17ddd01 100644
--- a/sound/soc/fsl/fsl_sai.h
+++ b/sound/soc/fsl/fsl_sai.h
@@ -72,7 +72,7 @@
 
 /* SAI Transmit and Recieve Configuration 2 Register */
 #define FSL_SAI_CR2_SYNC	BIT(30)
-#define FSL_SAI_CR2_MSEL_MASK	(0xff << 26)
+#define FSL_SAI_CR2_MSEL_MASK	(0x03 << 26)
 #define FSL_SAI_CR2_MSEL_BUS	0
 #define FSL_SAI_CR2_MSEL_MCLK1	BIT(26)
 #define FSL_SAI_CR2_MSEL_MCLK2	BIT(27)
-- 
2.4.2

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

* Re: [PATCH] ASoC: fsl: Correct FSL_SAI_CR2_MSEL_MASK definition
  2015-06-03 12:51 [PATCH] ASoC: fsl: Correct FSL_SAI_CR2_MSEL_MASK definition Takashi Iwai
@ 2015-06-03 18:47 ` Nicolin Chen
  2015-06-03 19:29   ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolin Chen @ 2015-06-03 18:47 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Xiubo Li, alsa-devel, Mark Brown, Liam Girdwood, Timur Tabi

Hello Iwai-san,

On Wed, Jun 03, 2015 at 02:51:01PM +0200, Takashi Iwai wrote:
> The bit mask FSL_SAI_CR2_MSEL_MASK is defined as (0xff << 26) and this
> obviously overflows the 32bit integer.  Also this clears other bits
> than the needed ones (FSL_SAI_CR2_MSEL_XXX) wrongly.
> 
> This patch fixes the definition only to mask bits 26 and 27.

An identical fix was included in the Commit c3ecef21c3f26bf47
(ASoC: fsl_sai: add sai master mode support) by Zidan Wang.
And it's already in the linux-next tree.

Thank you
Nicolin

> Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=84351
> Reported-by: David Binderman <dcb314@hotmail.com>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
>  sound/soc/fsl/fsl_sai.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/fsl/fsl_sai.h b/sound/soc/fsl/fsl_sai.h
> index 34667209b607..0e33a17ddd01 100644
> --- a/sound/soc/fsl/fsl_sai.h
> +++ b/sound/soc/fsl/fsl_sai.h
> @@ -72,7 +72,7 @@
>  
>  /* SAI Transmit and Recieve Configuration 2 Register */
>  #define FSL_SAI_CR2_SYNC	BIT(30)
> -#define FSL_SAI_CR2_MSEL_MASK	(0xff << 26)
> +#define FSL_SAI_CR2_MSEL_MASK	(0x03 << 26)
>  #define FSL_SAI_CR2_MSEL_BUS	0
>  #define FSL_SAI_CR2_MSEL_MCLK1	BIT(26)
>  #define FSL_SAI_CR2_MSEL_MCLK2	BIT(27)
> -- 
> 2.4.2
> 

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

* Re: [PATCH] ASoC: fsl: Correct FSL_SAI_CR2_MSEL_MASK definition
  2015-06-03 18:47 ` Nicolin Chen
@ 2015-06-03 19:29   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2015-06-03 19:29 UTC (permalink / raw)
  To: Nicolin Chen; +Cc: Xiubo Li, alsa-devel, Mark Brown, Liam Girdwood, Timur Tabi

At Wed, 3 Jun 2015 11:47:15 -0700,
Nicolin Chen wrote:
> 
> Hello Iwai-san,
> 
> On Wed, Jun 03, 2015 at 02:51:01PM +0200, Takashi Iwai wrote:
> > The bit mask FSL_SAI_CR2_MSEL_MASK is defined as (0xff << 26) and this
> > obviously overflows the 32bit integer.  Also this clears other bits
> > than the needed ones (FSL_SAI_CR2_MSEL_XXX) wrongly.
> > 
> > This patch fixes the definition only to mask bits 26 and 27.
> 
> An identical fix was included in the Commit c3ecef21c3f26bf47
> (ASoC: fsl_sai: add sai master mode support) by Zidan Wang.
> And it's already in the linux-next tree.

Ah good, thanks.
I hope I would have received pulls for ASoC changes more often...


Takashi

> 
> Thank you
> Nicolin
> 
> > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=84351
> > Reported-by: David Binderman <dcb314@hotmail.com>
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
> > ---
> >  sound/soc/fsl/fsl_sai.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/sound/soc/fsl/fsl_sai.h b/sound/soc/fsl/fsl_sai.h
> > index 34667209b607..0e33a17ddd01 100644
> > --- a/sound/soc/fsl/fsl_sai.h
> > +++ b/sound/soc/fsl/fsl_sai.h
> > @@ -72,7 +72,7 @@
> >  
> >  /* SAI Transmit and Recieve Configuration 2 Register */
> >  #define FSL_SAI_CR2_SYNC	BIT(30)
> > -#define FSL_SAI_CR2_MSEL_MASK	(0xff << 26)
> > +#define FSL_SAI_CR2_MSEL_MASK	(0x03 << 26)
> >  #define FSL_SAI_CR2_MSEL_BUS	0
> >  #define FSL_SAI_CR2_MSEL_MCLK1	BIT(26)
> >  #define FSL_SAI_CR2_MSEL_MCLK2	BIT(27)
> > -- 
> > 2.4.2
> > 
> 

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

end of thread, other threads:[~2015-06-03 19:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-03 12:51 [PATCH] ASoC: fsl: Correct FSL_SAI_CR2_MSEL_MASK definition Takashi Iwai
2015-06-03 18:47 ` Nicolin Chen
2015-06-03 19:29   ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox