[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAF+7xWntQUw6g7FD92iZm+D7ZS8dGG4=Q4SiHZRTkevbVrLCyg@mail.gmail.com>
Date: Sat, 5 Nov 2011 14:46:55 +0800
From: Axel Lin <axel.lin@...il.com>
To: Mark Brown <broonie@...nsource.wolfsonmicro.com>
Cc: linux-kernel@...r.kernel.org,
Dimitris Papastamos <dp@...nsource.wolfsonmicro.com>,
Liam Girdwood <lrg@...com>, alsa-devel@...a-project.org
Subject: Re: [PATCH v2 RESEND] ASoC: wm9081: Use snd_soc_update_bits for read-modify-write
2011/11/5 Mark Brown <broonie@...nsource.wolfsonmicro.com>:
> On Wed, Oct 19, 2011 at 11:06:27AM +0800, Axel Lin wrote:
>
>> /* Normal bias enable & soft start off */
>> - reg |= WM9081_BIAS_ENA;
>> - reg &= ~WM9081_VMID_RAMP;
>> - snd_soc_write(codec, WM9081_VMID_CONTROL, reg);
>> + snd_soc_update_bits(codec, WM9081_VMID_CONTROL,
>> + WM9081_VMID_RAMP | WM9081_BIAS_ENA |
>> + WM9081_VMID_SEL_MASK,
>> + WM9081_BIAS_ENA);
>
> This looks (and sounds) wrong - the original code didn't touch
> VMID_SEL_MASK for this update but the new version will clear
> VMID_SEL_MASK. Even with that fixed there still seems to be some issue
> here, though.
>
Hi Mark,
I just re-check current code, and I think current code (before converting to
snd_soc_update_bits) is broken.
See below 2 patches: ( I'm sending the patch now)
ASoC: wm9081: Fix reading wrong register for setting VMID 2*240k
ASoC: wm9081: Don't write WM9081_BIAS_ENA bit to WM9081_VMID_CONTROL register
Would you mind to test if above 2 patches works.
If it works, I'll send a new patch to use snd_soc_update_bits for
read-modify-write.
Thanks,
Axel
--
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