Message ID | 1651925654-32060-1-git-send-email-shengjiu.wang@nxp.com |
---|---|
State | Accepted |
Commit | 292709b9cf3ba470af94b62c9bb60284cc581b79 |
Headers | show |
Series | [1/2] ASoc: fsl_micfil: explicitly clear software reset bit | expand |
On Sat, 7 May 2022 20:14:13 +0800, Shengjiu Wang wrote: > SRES is self-cleared bit, but REG_MICFIL_CTRL1 is defined as > non volatile register, it still remain in regmap cache after set, > then every update of REG_MICFIL_CTRL1, software reset happens. > to avoid this, clear it explicitly. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/2] ASoc: fsl_micfil: explicitly clear software reset bit commit: 292709b9cf3ba470af94b62c9bb60284cc581b79 [2/2] ASoc: fsl_micfil: explicitly clear CHnF flags commit: b776c4a4618ec1b5219d494c423dc142f23c4e8f All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c index cd85c8714f97..2149fac0dcc6 100644 --- a/sound/soc/fsl/fsl_micfil.c +++ b/sound/soc/fsl/fsl_micfil.c @@ -179,6 +179,17 @@ static int fsl_micfil_reset(struct device *dev) if (ret) return ret; + /* + * SRES is self-cleared bit, but REG_MICFIL_CTRL1 is defined + * as non-volatile register, so SRES still remain in regmap + * cache after set, that every update of REG_MICFIL_CTRL1, + * software reset happens. so clear it explicitly. + */ + ret = regmap_clear_bits(micfil->regmap, REG_MICFIL_CTRL1, + MICFIL_CTRL1_SRES); + if (ret) + return ret; + return 0; }
SRES is self-cleared bit, but REG_MICFIL_CTRL1 is defined as non volatile register, it still remain in regmap cache after set, then every update of REG_MICFIL_CTRL1, software reset happens. to avoid this, clear it explicitly. Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com> --- sound/soc/fsl/fsl_micfil.c | 11 +++++++++++ 1 file changed, 11 insertions(+)