From: Lars-Peter Clausen <lars@metafoo.de>
To: Fabio Estevam <festevam@gmail.com>
Cc: Fabio Estevam <fabio.estevam@freescale.com>,
alsa-devel@alsa-project.org, matt@genesi-usa.com,
eric.nelson@boundarydevices.com, troy.kisky@boundarydevices.com,
broonie@kernel.org
Subject: Re: [PATCH] ASoC: sgtl5000: Fix driver probe after reset
Date: Wed, 08 May 2013 22:12:58 +0200 [thread overview]
Message-ID: <518AB1CA.8060805@metafoo.de> (raw)
In-Reply-To: <1368032653-19489-1-git-send-email-festevam@gmail.com>
On 05/08/2013 07:04 PM, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> sgtl5000 codec does not have a reset line, nor a reset command in software.
>
> After a 'reboot' command in Linux or after pressing the system's reset button
> the sgtl5000 driver fails to probe:
>
> sgtl5000 0-000a: Device with ID register ffff is not a sgtl5000
> sgtl5000 0-000a: ASoC: failed to probe CODEC -19
> imx-sgtl5000 sound.12: ASoC: failed to instantiate card -19
> imx-sgtl5000 sound.12: snd_soc_register_card failed (-19)
>
> As the sgtl5000 codec did not go through a real reset, we cannot rely on the
> reg_defaults array, since these are only valid after a clean power-on reset.
>
> To fix this issue, use 'reg_defaults_raw' which tells the regcache driver
> to actually read the codec registers and then fill the cache.
No, that's not what it does. It will only fill the cache from the hardware,
if reg_defaults_raw is NULL and num_reg_defaults_raw is not 0.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> sound/soc/codecs/sgtl5000.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c
> index 327b443..c59fae8 100644
> --- a/sound/soc/codecs/sgtl5000.c
> +++ b/sound/soc/codecs/sgtl5000.c
> @@ -1470,8 +1470,8 @@ static const struct regmap_config sgtl5000_regmap = {
> .readable_reg = sgtl5000_readable,
>
> .cache_type = REGCACHE_RBTREE,
> - .reg_defaults = sgtl5000_reg_defaults,
> - .num_reg_defaults = ARRAY_SIZE(sgtl5000_reg_defaults),
> + .reg_defaults_raw = sgtl5000_reg_defaults,
> + .num_reg_defaults_raw = ARRAY_SIZE(sgtl5000_reg_defaults),
This shouldn't even compile without generating a warning.
> };
>
> static int sgtl5000_i2c_probe(struct i2c_client *client,
next prev parent reply other threads:[~2013-05-08 20:13 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-08 17:04 [PATCH] ASoC: sgtl5000: Fix driver probe after reset Fabio Estevam
2013-05-08 20:12 ` Lars-Peter Clausen [this message]
2013-05-09 9:30 ` Mark Brown
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=518AB1CA.8060805@metafoo.de \
--to=lars@metafoo.de \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=eric.nelson@boundarydevices.com \
--cc=fabio.estevam@freescale.com \
--cc=festevam@gmail.com \
--cc=matt@genesi-usa.com \
--cc=troy.kisky@boundarydevices.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.