Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Lars-Peter Clausen <lars@metafoo.de>
To: Daniel Mack <zonque@gmail.com>
Cc: alsa-devel@alsa-project.org, broonie@kernel.org
Subject: Re: [PATCH 3/3] ASoC: codecs: adau1701: add support for pin muxing
Date: Fri, 21 Jun 2013 09:35:00 +0200	[thread overview]
Message-ID: <51C40224.8000604@metafoo.de> (raw)
In-Reply-To: <51C4008D.6080303@gmail.com>

On 06/21/2013 09:28 AM, Daniel Mack wrote:
> On 21.06.2013 09:24, Lars-Peter Clausen wrote:
>> On 06/20/2013 07:29 PM, Daniel Mack wrote:
>>> [...]
>>>  static int adau1701_probe(struct snd_soc_codec *codec)
>>>  {
>>> -	int ret;
>>> +	int ret, i;
>>> +	unsigned int val;
>>>  	struct i2c_client *client = to_i2c_client(codec->dev);
>>>  	struct adau1701 *adau1701 = snd_soc_codec_get_drvdata(codec);
>>>  
>>> @@ -576,6 +584,19 @@ static int adau1701_probe(struct snd_soc_codec *codec)
>>>  	regmap_write(adau1701->regmap, ADAU1701_DACSET, ADAU1701_DACSET_DACINIT);
>>>  	regmap_write(adau1701->regmap, ADAU1701_DSPCTRL, ADAU1701_DSPCTRL_CR);
>>>  
>>> +	/* set up pin config */
>>> +	val = 0;
>>> +	for (i = 0; i < 6; i++)
>>> +		val |= adau1701->pin_config[i] << (i * 4);
>>> +
>>> +	regmap_write(adau1701->regmap, ADAU1701_PINCONF_0, val);
>>> +
>>> +	val = 0;
>>> +	for (i = 0; i < 6; i++)
>>> +		val |= adau1701->pin_config[i + 6] << (i * 4);
>>> +
>>> +	regmap_write(adau1701->regmap, ADAU1701_PINCONF_1, val);
>>
>> Will the config survive a reset?
>>
> 
> That will be synced back via regcache_sync(), no?
> 
Oh, sorry I missed the regcache_sync(), but you still need to call
regcache_mark_dirty() first, otherwise regcache_sync() won't do anything.

- Lars

  reply	other threads:[~2013-06-21  7:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-20 17:29 [PATCH v2 0/3] ASoC: codecs: some more improvements for adau1701 Daniel Mack
2013-06-20 17:29 ` [PATCH 1/3] ASoC: codecs: adau1701: allow configuration of PLL mode pins Daniel Mack
2013-06-21  4:46   ` Rajeev kumar
2013-06-21  6:06     ` Daniel Mack
2013-06-21  8:14       ` Rajeev kumar
2013-06-21  8:17         ` Daniel Mack
2013-06-21  8:18         ` Lars-Peter Clausen
2013-06-21  7:23   ` Lars-Peter Clausen
2013-06-21  7:31     ` Daniel Mack
2013-06-21  7:39       ` Lars-Peter Clausen
2013-06-20 17:29 ` [PATCH 2/3] ASoC: codecs: adau1701: switch to direct regmap API usage Daniel Mack
2013-06-21  7:28   ` Lars-Peter Clausen
2013-06-21  7:31     ` Daniel Mack
2013-06-20 17:29 ` [PATCH 3/3] ASoC: codecs: adau1701: add support for pin muxing Daniel Mack
2013-06-21  7:24   ` Lars-Peter Clausen
2013-06-21  7:28     ` Daniel Mack
2013-06-21  7:35       ` Lars-Peter Clausen [this message]
2013-06-21  7:38         ` Lars-Peter Clausen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51C40224.8000604@metafoo.de \
    --to=lars@metafoo.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=zonque@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox