Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: arizona: Add 32uS delay after putting FLL into freerun
@ 2015-11-26 14:03 Charles Keepax
  2015-11-27 12:26 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Charles Keepax @ 2015-11-26 14:03 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, patches, lgirdwood

When switching between two clock sources using the FLL freerun to smooth
the transition we should wait 32uS after putting the FLL into freerun
before we proceed. In practice we appear to be getting enough delay from
the surrounding code, but better to make it explicit.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 sound/soc/codecs/arizona.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c
index e76ecc7..8cd448c 100644
--- a/sound/soc/codecs/arizona.c
+++ b/sound/soc/codecs/arizona.c
@@ -2215,6 +2215,7 @@ static int arizona_enable_fll(struct arizona_fll *fll)
 		regmap_update_bits_async(fll->arizona->regmap, fll->base + 1,
 					 ARIZONA_FLL1_FREERUN,
 					 ARIZONA_FLL1_FREERUN);
+		udelay(32);
 	}
 
 	/*
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [PATCH] ASoC: arizona: Add 32uS delay after putting FLL into freerun
@ 2015-11-30 17:37 Charles Keepax
  0 siblings, 0 replies; 4+ messages in thread
From: Charles Keepax @ 2015-11-30 17:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, patches, lgirdwood

When switching between two clock sources using the FLL freerun to smooth
the transition we should wait 32uS after putting the FLL into freerun
before we proceed. In practice we appear to be getting enough delay from
the surrounding code, but better to make it explicit.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 sound/soc/codecs/arizona.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c
index e76ecc7..a23f7d1 100644
--- a/sound/soc/codecs/arizona.c
+++ b/sound/soc/codecs/arizona.c
@@ -2212,9 +2212,9 @@ static int arizona_enable_fll(struct arizona_fll *fll)
 		/* Facilitate smooth refclk across the transition */
 		regmap_update_bits_async(fll->arizona->regmap, fll->base + 0x9,
 					 ARIZONA_FLL1_GAIN_MASK, 0);
-		regmap_update_bits_async(fll->arizona->regmap, fll->base + 1,
-					 ARIZONA_FLL1_FREERUN,
-					 ARIZONA_FLL1_FREERUN);
+		regmap_update_bits(fll->arizona->regmap, fll->base + 1,
+				   ARIZONA_FLL1_FREERUN, ARIZONA_FLL1_FREERUN);
+		udelay(32);
 	}
 
 	/*
-- 
2.1.4

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

end of thread, other threads:[~2015-11-30 17:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-26 14:03 [PATCH] ASoC: arizona: Add 32uS delay after putting FLL into freerun Charles Keepax
2015-11-27 12:26 ` Mark Brown
2015-11-27 13:05   ` Charles Keepax
  -- strict thread matches above, loose matches on Subject: below --
2015-11-30 17:37 Charles Keepax

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