[alsa-devel] [PATCH 1/4 v4] ASoC: add a WM8978 codec driver

Guennadi Liakhovetski g.liakhovetski at gmx.de
Mon Feb 1 21:01:41 CET 2010


On Mon, 1 Feb 2010, Mark Brown wrote:

> On Fri, Jan 29, 2010 at 02:57:34PM +0100, Guennadi Liakhovetski wrote:
> > On Wed, 27 Jan 2010, Mark Brown wrote:
> 
> > > I'm fairly sure this and the similar logic for SYSCLK can be squashed
> > > together with some suitable local variables.  Might be more legible
> > > since this requires some staring at.  I didn't actually go so far as to
> > > work out what the relevant code is, though.
> 
> > Well, not really. In one case f_PLLOUT can be derived directly, because 
> > OPCLKDIV covers the whole its value range 1-4, whereas MCLKDIV takes 
> > values 1, 3/2, 2, 3, 4, 6, 8, 12, so, you have to apply an iterative 
> > process to select the best match. I've just sent a patch, that improves 
> 
> I don't follow your logic there at all, I'm afraid.  Both options have a
> table of possible values for the divider (and hence the PLL output
> frequencies they can use) which they need to additionally constrain
> based on the PLL operating conditions.

In principle, yes, both dividers have a table of possible values. But, 
possible OPCLK dividers are 1, 2, 3, and 4, which makes it possible to 
just calculate the needed divisor by dividing the target through the 
source. Whereas possible MCLK divisors are 1, 3/2, 2, 3, 4, 6, 8, 12, so, 
you cannot compute the index, therefore I just iterate over the table and 
try each. Of course, the sequence is ascending, so, you could bisection, 
but I found that to be an overkill for this case;)

> Looking at the code I think half the issue here is that all the
> constraints that are shared from the PLL and its input path aren't
> factored out but are in per-output conditional cases, making those more
> complex than they need to be.  The magic number heaviness of the code
> and comments accentuates the issue.

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/


More information about the Alsa-devel mailing list