[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150115133439.GA29323@b50113>
Date: Thu, 15 Jan 2015 21:34:40 +0800
From: Zidan Wang <b50113@...escale.com>
To: Mark Brown <broonie@...nel.org>
CC: Zidan Wang <zidan.wang@...escale.com>, <lgirdwood@...il.com>,
<perex@...ex.cz>, <tiwai@...e.de>, <lars@...afoo.de>,
<ckeepax@...nsource.wolfsonmicro.com>,
<patches@...nsource.wolfsonmicro.com>,
<alsa-devel@...a-project.org>, <linux-kernel@...r.kernel.org>
Subject: Re: [alsa-devel][PATCH v2 2/2] ASoC: wm8960: Let wm8960 driver
configure its bit clock and frame clock
On Wed, Jan 14, 2015 at 07:27:03PM +0000, Mark Brown wrote:
> On Wed, Jan 07, 2015 at 03:31:45PM +0800, Zidan Wang wrote:
>
> > + for (i = 0; i < ARRAY_SIZE(dac_divs); ++i) {
> > + if (wm8960->sysclk == lrclk * dac_divs[i]) {
> > + for (j = 0; j < ARRAY_SIZE(bclk_divs); ++j) {
> > + if (wm8960->sysclk == wm8960->bclk *
> > + bclk_divs[j] / 10) {
> > + goto config_clock;
> > + }
> > + }
> > + }
> > + }
> > +
> > + dev_err(codec->dev, "Unsupported sysclk %d\n", wm8960->sysclk);
> > + return;
>
> It's a bit awkward using the goto like this. A more common way of
> writing this is to change the above block to be
>
> if (i == ARRAY_SIZE(dac_divs))
> /* return error */
>
> rather than skipping over the error. Otherwise this looks good.
Hi Mark,
I found it can't generate bclk for S20_3LE data format.
For 2 channel S20_3LE data format:
bclk = fs * 20 * 2
Sysclk = BCLKDIV * bclk = BCLKDIV * fs * 40
Sysclk = DACDIV * fs * 256
BCLKDIV/DACDIV = 256/40 = 32/5
But BCLKDIV/DACDIV can't be 32/5. So I want to support tdm slot.
bclk = fs * slot_width * slots * channal.
Do you think it make sense, or any other ideas?
Best Regards,
Zidan
--
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