[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <9DF5D0F7-F5A7-4705-8ACB-286B49D668C1@matuschek.net>
Date: Thu, 9 Jan 2014 16:29:13 +0100
From: Daniel Matuschek <daniel@...uschek.net>
To: Charles Keepax <ckeepax@...nsource.wolfsonmicro.com>
Cc: alsa-devel@...a-project.org, Liam Girdwood <lgirdwood@...il.com>,
Dimitris.Papastamos@...fsonmicro.com,
Mark Brown <broonie@...nel.org>,
Jaroslav Kysela <perex@...ex.cz>, Takashi Iwai <tiwai@...e.de>,
Grant Likely <grant.likely@...aro.org>,
Rob Herring <rob.herring@...xeda.com>,
patches@...nsource.wolfsonmicro.com, linux-kernel@...r.kernel.org,
devicetree-discuss@...ts.ozlabs.org
Subject: Re: [alsa-devel] [PATCH] ASoC: wm8804: Allow fine-grained control of the PLL generation
On 09.01.2014, at 15:27, Charles Keepax <ckeepax@...nsource.wolfsonmicro.com> wrote:
> On Wed, Jan 08, 2014 at 10:36:53PM +0100, Daniel Matuschek wrote:
>> Signed-off-by: Daniel Matuschek <daniel@...uschek.net>
>>
>
> <snip>
>
>> pll_div->freqmode = post_table[i].freqmode;
>> - pll_div->mclkdiv = post_table[i].mclkdiv;
>> - target *= post_table[i].div;
>> - break;
>> + if ((mclk_div == WM8804_MCLKDIV_DONTCARE) ||
>> + ((post_table[i].mclkdiv == 1) &&
>> + (mclk_div == WM8804_MCLKDIV_1)) ||
>> + ((post_table[i].mclkdiv == 0) &&
>> + (mclk_div == WM8804_MCLKDIV_0))) {
>
> Would probably be nicer to update the post_table to use the new
> defines and directly compare.
Yes, this is an option.
>
>> + pll_div->mclkdiv = post_table[i].mclkdiv;
>> + target *= post_table[i].div;
>> + break;
>> + }
>> }
>> }
>>
>> @@ -388,7 +396,7 @@ static int wm8804_set_pll(struct snd_soc_dai *dai, int pll_id,
>> int ret;
>> struct pll_div pll_div;
>>
>> - ret = pll_factors(&pll_div, freq_out, freq_in);
>> + ret = pll_factors(&pll_div, freq_out, freq_in, pll_id);
>
> This does feel like a slight abuse of pll_id, it feels to me that
> using the set_clkdiv callback would be a little more natural from
> a user perspective.
Good idea, I will move it to set_clkdiv.
>
>> if (ret)
>> return ret;
>>
>> diff --git a/sound/soc/codecs/wm8804.h b/sound/soc/codecs/wm8804.h
>> index 8ec14f5..0365177 100644
>> --- a/sound/soc/codecs/wm8804.h
>> +++ b/sound/soc/codecs/wm8804.h
>> @@ -58,4 +58,11 @@
>>
>> #define WM8804_CLKOUT_DIV 1
>>
>> +#define WM8804_MCLKDIV_DONTCARE 0
>> +#define WM8804_MCLKDIV_0 1
>> +#define WM8804_MCLKDIV_1 2
>> +#define WM8804_PLL_MCLKDIV_DONTCARE WM8804_MCLKDIV_DONTCARE
>> +#define WM8804_PLL_MCLKDIV_0 WM8804_MCLKDIV_0
>> +#define WM8804_PLL_MCLKDIV_1 WM8804_MCLKDIV_1
>
> Do we really need two copies of these?
Not really ;-) I will remove the duplicates.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists