From mboxrd@z Thu Jan 1 00:00:00 1970 From: Liam Girdwood Subject: Re: ASoC: PATCH: wm8731 - reinitialize regmap cache after hardware reset Date: Thu, 28 May 2015 17:52:46 +0100 Message-ID: <1432831966.2726.63.camel@loki> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by alsa0.perex.cz (Postfix) with ESMTP id 9E062260502 for ; Thu, 28 May 2015 18:53:28 +0200 (CEST) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Sergey Kiselev Cc: alsa-devel@alsa-project.org, Mark Brown , Richard Fitzgerald List-Id: alsa-devel@alsa-project.org Hi Sergey, Best to always CC Mark on any ASoC patches, I've also added Richard from Wolfson. Best to read submitting patches from the Documentation directory too :) On Thu, 2015-05-28 at 09:34 -0700, Sergey Kiselev wrote: > Hi, > > I am working on a machine driver that uses wm8731 codec and I've > noticed that it will not work after rmmod/modprobe of that machine > driver. The issue is that wm8731_probe() resets the hardware, but it > doesn't reinitialize the regmap cache to the default values. > > The patch below fixes this issue. > > I also skimmed through other codecs, and some of them might have > similar issue (wm8510.c, wm8711.c, wm8750.c, wm8753.c, wm8940.c, > wm8960.c, wm8971.c, wm8974.c, wm8988.c, wm8990.c) > Richard, can Wolfson take care of these ones. I guess some of the older codecs have no way to reset the registers ? > Another way to avoid this issue might be resetting the codec in the > *_spi_probe()/*_i2c_probe(), so that it only gets reset once when > codec is loading. > > Thanks in advance for any comments/suggestions on the patch. > > Thanks, > Sergey > > Signed-off-by: Sergey Kiselev > > diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c > index 2245b6a..76af75b 100644 > --- a/sound/soc/codecs/wm8731.c > +++ b/sound/soc/codecs/wm8731.c > @@ -84,7 +84,7 @@ static bool wm8731_writeable(struct device *dev, > unsigned int reg) > return reg <= WM8731_RESET; > } > > -#define wm8731_reset(c) snd_soc_write(c, WM8731_RESET, 0) I would have expected this to reset the register values so I'm not sure why it's failing in your case ? > +static int wm8731_reset(struct snd_soc_codec *codec); > > static const char *wm8731_input_select[] = {"Line In", "Mic"}; > > @@ -665,6 +665,21 @@ static const struct regmap_config wm8731_regmap = { > .num_reg_defaults = ARRAY_SIZE(wm8731_reg_defaults), > }; > > +static int wm8731_reset(struct snd_soc_codec *codec) > +{ > + int ret; > + struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); > + > + ret = snd_soc_write(codec, WM8731_RESET, 0); > + > + if (ret != 0) > + return ret; > + > + regmap_reinit_cache(wm8731->regmap, &wm8731_regmap); > + > + return 0; > +} > + Your mailer has screwed up the formatting here :( > #if defined(CONFIG_SPI_MASTER) > static int wm8731_spi_probe(struct spi_device *spi) > { Liam