diff options
author | Mark Brown <broonie@kernel.org> | 2022-03-11 23:21:10 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-03-11 23:21:10 +0300 |
commit | ee60f738e3bcb75549a094ccb6396ae8ad6b9101 (patch) | |
tree | 4bbfa67fa33cec924f67ba6006d364720d259ddd /sound | |
parent | c1156cce4719ab2633575dd4822606f959142ef7 (diff) | |
parent | ee7f79a81a27c47088fe0af95788621644826d91 (diff) | |
download | linux-ee60f738e3bcb75549a094ccb6396ae8ad6b9101.tar.xz |
ASoC: mediatek: Add mt8195 reset control support
Merge series from Trevor Wu <trevor.wu@mediatek.com>:
Add reset controller support for MT8195.
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/mediatek/mt8195/mt8195-afe-pcm.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sound/soc/mediatek/mt8195/mt8195-afe-pcm.c b/sound/soc/mediatek/mt8195/mt8195-afe-pcm.c index 550636500949..72b2c6d629b9 100644 --- a/sound/soc/mediatek/mt8195/mt8195-afe-pcm.c +++ b/sound/soc/mediatek/mt8195/mt8195-afe-pcm.c @@ -16,6 +16,7 @@ #include <linux/of_platform.h> #include <linux/of_reserved_mem.h> #include <linux/pm_runtime.h> +#include <linux/reset.h> #include "mt8195-afe-common.h" #include "mt8195-afe-clk.h" #include "mt8195-reg.h" @@ -3056,6 +3057,7 @@ static int mt8195_afe_pcm_dev_probe(struct platform_device *pdev) struct mtk_base_afe *afe; struct mt8195_afe_private *afe_priv; struct device *dev = &pdev->dev; + struct reset_control *rstc; int i, irq_id, ret; struct snd_soc_component *component; @@ -3092,6 +3094,20 @@ static int mt8195_afe_pcm_dev_probe(struct platform_device *pdev) return ret; } + /* reset controller to reset audio regs before regmap cache */ + rstc = devm_reset_control_get_exclusive(dev, "audiosys"); + if (IS_ERR(rstc)) { + ret = PTR_ERR(rstc); + dev_err(dev, "could not get audiosys reset:%d\n", ret); + return ret; + } + + ret = reset_control_reset(rstc); + if (ret) { + dev_err(dev, "failed to trigger audio reset:%d\n", ret); + return ret; + } + spin_lock_init(&afe_priv->afe_ctrl_lock); mutex_init(&afe->irq_alloc_lock); |