Re: [PATCH 0/6] ASoC: fsl: Don't use devm_regmap_init_mmio_clk

2021-03-24 Thread Mark Brown
On Wed, 24 Mar 2021 17:58:42 +0800, Shengjiu Wang wrote: > When there is power domain bind with ipg clock, > > The call flow: > devm_regmap_init_mmio_clk > - clk_prepare() > - clk_pm_runtime_get() > > [...] Applied to

[PATCH 0/6] ASoC: fsl: Don't use devm_regmap_init_mmio_clk

2021-03-24 Thread Shengjiu Wang
When there is power domain bind with ipg clock, The call flow: devm_regmap_init_mmio_clk - clk_prepare() - clk_pm_runtime_get() cause the power domain of clock always be enabled after regmap_init(). which impact the power consumption. So use devm_regmap_init_mmio instead of