[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20251127091321.2853940-1-macpaul.lin@mediatek.com>
Date: Thu, 27 Nov 2025 17:13:21 +0800
From: Macpaul Lin <macpaul.lin@...iatek.com>
To: Michael Turquette <mturquette@...libre.com>, Stephen Boyd
<sboyd@...nel.org>, Matthias Brugger <matthias.bgg@...il.com>,
AngeloGioacchino Del Regno <angelogioacchino.delregno@...labora.com>,
"Macpaul Lin" <macpaul.lin@...iatek.com>, "Garmin . Chang"
<Garmin.Chang@...iatek.com>, <linux-clk@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <linux-arm-kernel@...ts.infradead.org>,
<linux-mediatek@...ts.infradead.org>
CC: Jian Hui Lee <jianhui.lee@...onical.com>, "Andy . Hsieh"
<andy.hsieh@...iatek.com>, Zoran Zhan <zoran.zhan@...iatek.com>, Cyril Chao
<Cyril.Chao@...iatek.com>, Chris-QJ Chen <chris-qj.chen@...iatek.com>, "Bear
Wang" <bear.wang@...iatek.com>, Pablo Sun <pablo.sun@...iatek.com>, Ramax Lo
<ramax.lo@...iatek.com>, Macpaul Lin <macpaul@...il.com>, "MediaTek
Chromebook Upstream" <Project_Global_Chrome_Upstream_Group@...iatek.com>,
<Stable@...r.kernel.org>
Subject: [PATCH] clk: mediatek: set CLK_IGNORE_UNUSED to clock mt8188 adsp audio26m
Set CLK_IGNORE_UNUSED flag to clock adsp audio26m to prevent disabling
this clock during early boot, as turning it off causes other modules
to fail probing and leads to boot failures in ARM SystemReady test cases
and the EFI boot process (on Linux Distributions, for example, debian,
openSuse, etc.). Without this flag, disabling unused clocks cannot
complete properly after adsp_audio26m is turned off.
Fixes: 0d2f2cefba64 ("clk: mediatek: Add MT8188 adsp clock support")
Cc: Stable@...r.kernel.org
Signed-off-by: Macpaul Lin <macpaul.lin@...iatek.com>
---
drivers/clk/mediatek/clk-mt8188-adsp_audio26m.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/mediatek/clk-mt8188-adsp_audio26m.c b/drivers/clk/mediatek/clk-mt8188-adsp_audio26m.c
index dcde2187d24a..b9fe66ef4f2e 100644
--- a/drivers/clk/mediatek/clk-mt8188-adsp_audio26m.c
+++ b/drivers/clk/mediatek/clk-mt8188-adsp_audio26m.c
@@ -20,8 +20,8 @@ static const struct mtk_gate_regs adsp_audio26m_cg_regs = {
};
#define GATE_ADSP_FLAGS(_id, _name, _parent, _shift) \
- GATE_MTK(_id, _name, _parent, &adsp_audio26m_cg_regs, _shift, \
- &mtk_clk_gate_ops_no_setclr)
+ GATE_MTK_FLAGS(_id, _name, _parent, &adsp_audio26m_cg_regs, _shift, \
+ &mtk_clk_gate_ops_no_setclr, CLK_IGNORE_UNUSED)
static const struct mtk_gate adsp_audio26m_clks[] = {
GATE_ADSP_FLAGS(CLK_AUDIODSP_AUDIO26M, "audiodsp_audio26m", "clk26m", 3),
--
2.45.2
Powered by blists - more mailing lists