Patch "clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     clk-mediatek-clk-mt8195-mfg-reparent-mfg_bg3d-and-pr.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 4c249b26fc9529bb39f905aac0e6c2c25761fab6
Author: AngeloGioacchino Del Regno <angelogioacchino.delregno@xxxxxxxxxxxxx>
Date:   Tue Sep 27 12:11:23 2022 +0200

    clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes
    
    [ Upstream commit a5f7bf5458c2cf6730106e16a6373638a0e5ed1e ]
    
    The MFG_BG3D is a gate to enable/disable clock output to the GPU,
    but the actual output is decided by multiple muxes; in particular:
    mfg_ck_fast_ref muxes between "slow" (top_mfg_core_tmp) and
    "fast" (MFGPLL) clock, while top_mfg_core_tmp muxes between the
    26MHz clock and various system PLLs.
    
    The clock gate comes after all the muxes, so its parent is
    mfg_ck_fast_reg, not top_mfg_core_tmp.
    Reparent MFG_BG3D to the latter to match the hardware and add the
    CLK_SET_RATE_PARENT flag to it: this way we ensure propagating
    rate changes that are requested on MFG_BG3D along its entire clock
    tree.
    
    Fixes: 35016f10c0e5 ("clk: mediatek: Add MT8195 mfgcfg clock support")
    Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@xxxxxxxxxxxxx>
    Reviewed-by: Chen-Yu Tsai <wenst@xxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220927101128.44758-6-angelogioacchino.delregno@xxxxxxxxxxxxx
    Signed-off-by: Chen-Yu Tsai <wenst@xxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/clk/mediatek/clk-mt8195-mfg.c b/drivers/clk/mediatek/clk-mt8195-mfg.c
index 9411c556a5a9..c94cb71bd9b9 100644
--- a/drivers/clk/mediatek/clk-mt8195-mfg.c
+++ b/drivers/clk/mediatek/clk-mt8195-mfg.c
@@ -17,10 +17,12 @@ static const struct mtk_gate_regs mfg_cg_regs = {
 };
 
 #define GATE_MFG(_id, _name, _parent, _shift)			\
-	GATE_MTK(_id, _name, _parent, &mfg_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
+	GATE_MTK_FLAGS(_id, _name, _parent, &mfg_cg_regs,	\
+		       _shift, &mtk_clk_gate_ops_setclr,	\
+		       CLK_SET_RATE_PARENT)
 
 static const struct mtk_gate mfg_clks[] = {
-	GATE_MFG(CLK_MFG_BG3D, "mfg_bg3d", "top_mfg_core_tmp", 0),
+	GATE_MFG(CLK_MFG_BG3D, "mfg_bg3d", "mfg_ck_fast_ref", 0),
 };
 
 static const struct mtk_clk_desc mfg_desc = {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux