mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 05:17:10 +09:00
ASoC: max98090: Fix reset at resume time
commit 25b4ab430f upstream.
Reset needs to wait 20ms before other codec IO is performed. This wait
was not being performed. Fix this by making sure the reset register is not
restored with the cache, but use the manual reset method in resume with
the wait.
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
02897cf1bd
commit
132bb68d6d
@@ -255,6 +255,7 @@ static struct reg_default max98090_reg[] = {
|
||||
static bool max98090_volatile_register(struct device *dev, unsigned int reg)
|
||||
{
|
||||
switch (reg) {
|
||||
case M98090_REG_SOFTWARE_RESET:
|
||||
case M98090_REG_DEVICE_STATUS:
|
||||
case M98090_REG_JACK_STATUS:
|
||||
case M98090_REG_REVISION_ID:
|
||||
@@ -2373,6 +2374,8 @@ static int max98090_runtime_resume(struct device *dev)
|
||||
|
||||
regcache_cache_only(max98090->regmap, false);
|
||||
|
||||
max98090_reset(max98090);
|
||||
|
||||
regcache_sync(max98090->regmap);
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user