* [PATCH] ASoC: cs53l30: Correct clock inversion check
@ 2016-06-08 23:03 Nicolin Chen
2016-06-08 23:09 ` Nicolin Chen
2016-06-13 16:54 ` Applied "ASoC: cs53l30: Correct clock inversion check" to the asoc tree Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Nicolin Chen @ 2016-06-08 23:03 UTC (permalink / raw)
To: broonie; +Cc: brian.austin, alsa-devel, lgirdwood, Paul.Handrigan, linux-kernel
SND_SOC_DAIFMT_IB_NF = 0x3 (11b) | SND_SOC_DAIFMT_IB_IF = 0x4 (100b)
creates a mask 0x7 (111b) which also includes SND_SOC_DAIFMT_IB_NF
= 0x2 (10b).
So this patch uses the traditional way to check the clock inversion.
Signed-off-by: Nicolin Chen <nicoleotsuka@gmail.com>
---
sound/soc/codecs/cs53l30.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c
index ac90dd7..62daa0c 100644
--- a/sound/soc/codecs/cs53l30.c
+++ b/sound/soc/codecs/cs53l30.c
@@ -598,8 +598,14 @@ static int cs53l30_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
}
/* Check to see if the SCLK is inverted */
- if (fmt & (SND_SOC_DAIFMT_IB_NF | SND_SOC_DAIFMT_IB_IF))
+ switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
+ case SND_SOC_DAIFMT_IB_NF:
+ case SND_SOC_DAIFMT_IB_IF:
aspcfg ^= CS53L30_ASP_SCLK_INV;
+ break;
+ default:
+ break;
+ }
regmap_update_bits(priv->regmap, CS53L30_ASPCFG_CTL,
CS53L30_ASP_MS | CS53L30_ASP_SCLK_INV, aspcfg);
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: cs53l30: Correct clock inversion check
2016-06-08 23:03 [PATCH] ASoC: cs53l30: Correct clock inversion check Nicolin Chen
@ 2016-06-08 23:09 ` Nicolin Chen
2016-06-13 16:54 ` Applied "ASoC: cs53l30: Correct clock inversion check" to the asoc tree Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Nicolin Chen @ 2016-06-08 23:09 UTC (permalink / raw)
To: Mark Brown
Cc: Brian Austin, alsa-devel@alsa-project.org, Liam Girdwood,
Paul Handrigan, linux-kernel@vger.kernel.org
On Wed, Jun 8, 2016 at 4:03 PM, Nicolin Chen <nicoleotsuka@gmail.com> wrote:
> SND_SOC_DAIFMT_IB_NF = 0x3 (11b) | SND_SOC_DAIFMT_IB_IF = 0x4 (100b)
> creates a mask 0x7 (111b) which also includes SND_SOC_DAIFMT_IB_NF
Oops, here should be NB_IF for (10b). Will send v2. Please ignore this one.
> = 0x2 (10b).
>
> So this patch uses the traditional way to check the clock inversion.
>
> Signed-off-by: Nicolin Chen <nicoleotsuka@gmail.com>
> ---
> sound/soc/codecs/cs53l30.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c
> index ac90dd7..62daa0c 100644
> --- a/sound/soc/codecs/cs53l30.c
> +++ b/sound/soc/codecs/cs53l30.c
> @@ -598,8 +598,14 @@ static int cs53l30_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
> }
>
> /* Check to see if the SCLK is inverted */
> - if (fmt & (SND_SOC_DAIFMT_IB_NF | SND_SOC_DAIFMT_IB_IF))
> + switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
> + case SND_SOC_DAIFMT_IB_NF:
> + case SND_SOC_DAIFMT_IB_IF:
> aspcfg ^= CS53L30_ASP_SCLK_INV;
> + break;
> + default:
> + break;
> + }
>
> regmap_update_bits(priv->regmap, CS53L30_ASPCFG_CTL,
> CS53L30_ASP_MS | CS53L30_ASP_SCLK_INV, aspcfg);
> --
> 2.1.4
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Applied "ASoC: cs53l30: Correct clock inversion check" to the asoc tree
2016-06-08 23:03 [PATCH] ASoC: cs53l30: Correct clock inversion check Nicolin Chen
2016-06-08 23:09 ` Nicolin Chen
@ 2016-06-13 16:54 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2016-06-13 16:54 UTC (permalink / raw)
To: Nicolin Chen
Cc: brian.austin, alsa-devel, linux-kernel, Paul.Handrigan, lgirdwood,
broonie
The patch
ASoC: cs53l30: Correct clock inversion check
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 88b1c01fb42e3d637c7e7f36cd4a30ce39a2add4 Mon Sep 17 00:00:00 2001
From: Nicolin Chen <nicoleotsuka@gmail.com>
Date: Wed, 8 Jun 2016 16:10:05 -0700
Subject: [PATCH] ASoC: cs53l30: Correct clock inversion check
SND_SOC_DAIFMT_IB_NF = 0x3 (11b) | SND_SOC_DAIFMT_IB_IF = 0x4 (100b)
creates a mask 0x7 (111b) which also includes SND_SOC_DAIFMT_NB_IF
= 0x2 (10b).
So this patch uses the traditional way to check the clock inversion.
Signed-off-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/codecs/cs53l30.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c
index aa511e70099e..384a3f79f1c5 100644
--- a/sound/soc/codecs/cs53l30.c
+++ b/sound/soc/codecs/cs53l30.c
@@ -599,8 +599,14 @@ static int cs53l30_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
}
/* Check to see if the SCLK is inverted */
- if (fmt & (SND_SOC_DAIFMT_IB_NF | SND_SOC_DAIFMT_IB_IF))
+ switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
+ case SND_SOC_DAIFMT_IB_NF:
+ case SND_SOC_DAIFMT_IB_IF:
aspcfg ^= CS53L30_ASP_SCLK_INV;
+ break;
+ default:
+ break;
+ }
regmap_update_bits(priv->regmap, CS53L30_ASPCFG_CTL,
CS53L30_ASP_MS | CS53L30_ASP_SCLK_INV, aspcfg);
--
2.8.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-06-13 16:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-08 23:03 [PATCH] ASoC: cs53l30: Correct clock inversion check Nicolin Chen
2016-06-08 23:09 ` Nicolin Chen
2016-06-13 16:54 ` Applied "ASoC: cs53l30: Correct clock inversion check" to the asoc tree Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).