alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: pandora: Add APLL supply to fix audio output
@ 2010-02-04 22:55 Grazvydas Ignotas
  2010-02-05  6:50 ` Peter Ujfalusi
  0 siblings, 1 reply; 4+ messages in thread
From: Grazvydas Ignotas @ 2010-02-04 22:55 UTC (permalink / raw)
  To: alsa-devel; +Cc: Mark Brown, Peter Ujfalusi, Grazvydas Ignotas

Pandora's external DAC is using 256*Fs output from the TWL4030
codec, and TWL4030 needs to have APLL enabled for it's 256*Fs
output to function.

Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
---
I noticed this a bit late because TWL4030 codec used to have APLL
enable hardcoded until that was clean up by not-so-old patch.
Would be nice to see this in next -rc, as without this audio
won't work completely on pandora (again)..

 sound/soc/omap/omap3pandora.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sound/soc/omap/omap3pandora.c b/sound/soc/omap/omap3pandora.c
index 71b2c16..68980c1 100644
--- a/sound/soc/omap/omap3pandora.c
+++ b/sound/soc/omap/omap3pandora.c
@@ -145,6 +145,7 @@ static const struct snd_soc_dapm_widget omap3pandora_in_dapm_widgets[] = {
 };
 
 static const struct snd_soc_dapm_route omap3pandora_out_map[] = {
+	{"PCM DAC", NULL, "APLL Enable"},
 	{"Headphone Amplifier", NULL, "PCM DAC"},
 	{"Line Out", NULL, "PCM DAC"},
 	{"Headphone Jack", NULL, "Headphone Amplifier"},
-- 
1.6.3.3

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

* Re: [PATCH] ASoC: pandora: Add APLL supply to fix audio output
  2010-02-04 22:55 [PATCH] ASoC: pandora: Add APLL supply to fix audio output Grazvydas Ignotas
@ 2010-02-05  6:50 ` Peter Ujfalusi
  2010-02-05 10:13   ` Liam Girdwood
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Ujfalusi @ 2010-02-05  6:50 UTC (permalink / raw)
  To: ext Grazvydas Ignotas; +Cc: alsa-devel@alsa-project.org, Mark Brown

On Friday 05 February 2010 00:55:33 ext Grazvydas Ignotas wrote:
> Pandora's external DAC is using 256*Fs output from the TWL4030
> codec, and TWL4030 needs to have APLL enabled for it's 256*Fs
> output to function.
> 
> Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
> ---
> I noticed this a bit late because TWL4030 codec used to have APLL
> enable hardcoded until that was clean up by not-so-old patch.
> Would be nice to see this in next -rc, as without this audio
> won't work completely on pandora (again)..

Yeah, when I made the changes to the twl4030 codec, I did missed the pandora 
setup..

Acked-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>

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

* Re: [PATCH] ASoC: pandora: Add APLL supply to fix audio output
  2010-02-05  6:50 ` Peter Ujfalusi
@ 2010-02-05 10:13   ` Liam Girdwood
  2010-02-05 12:35     ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Liam Girdwood @ 2010-02-05 10:13 UTC (permalink / raw)
  To: Peter Ujfalusi
  Cc: alsa-devel@alsa-project.org, Mark Brown, ext Grazvydas Ignotas

On Fri, 2010-02-05 at 08:50 +0200, Peter Ujfalusi wrote:
> On Friday 05 February 2010 00:55:33 ext Grazvydas Ignotas wrote:
> > Pandora's external DAC is using 256*Fs output from the TWL4030
> > codec, and TWL4030 needs to have APLL enabled for it's 256*Fs
> > output to function.
> > 
> > Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
> > ---
> > I noticed this a bit late because TWL4030 codec used to have APLL
> > enable hardcoded until that was clean up by not-so-old patch.
> > Would be nice to see this in next -rc, as without this audio
> > won't work completely on pandora (again)..
> 
> Yeah, when I made the changes to the twl4030 codec, I did missed the pandora 
> setup..
> 
> Acked-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>

Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>

Btw, I may be getting a pandora soon so I should be able to keep on top
of any future breakages.

Liam

-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

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

* Re: [PATCH] ASoC: pandora: Add APLL supply to fix audio output
  2010-02-05 10:13   ` Liam Girdwood
@ 2010-02-05 12:35     ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2010-02-05 12:35 UTC (permalink / raw)
  To: Liam Girdwood
  Cc: alsa-devel@alsa-project.org, Peter Ujfalusi,
	ext Grazvydas Ignotas

On Fri, Feb 05, 2010 at 10:13:21AM +0000, Liam Girdwood wrote:
> On Fri, 2010-02-05 at 08:50 +0200, Peter Ujfalusi wrote:
> > On Friday 05 February 2010 00:55:33 ext Grazvydas Ignotas wrote:
> > > Pandora's external DAC is using 256*Fs output from the TWL4030
> > > codec, and TWL4030 needs to have APLL enabled for it's 256*Fs
> > > output to function.
> > > 
> > > Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
> > > ---
> > > I noticed this a bit late because TWL4030 codec used to have APLL
> > > enable hardcoded until that was clean up by not-so-old patch.
> > > Would be nice to see this in next -rc, as without this audio
> > > won't work completely on pandora (again)..
> > 
> > Yeah, when I made the changes to the twl4030 codec, I did missed the pandora 
> > setup..
> > 
> > Acked-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
> 
> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>

Applied, thanks.

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

end of thread, other threads:[~2010-02-05 12:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-04 22:55 [PATCH] ASoC: pandora: Add APLL supply to fix audio output Grazvydas Ignotas
2010-02-05  6:50 ` Peter Ujfalusi
2010-02-05 10:13   ` Liam Girdwood
2010-02-05 12:35     ` 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).