2022-12-07 08:45:15

by LI Qingwu

[permalink] [raw]
Subject: [PATCH V1] clk: imx8mp: Alias M7 SRC/DIV to M7 CORE

Defined IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV in imx8mp-clock.h
but never assigned. It will cause the system to hang if using it.
Alias IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV to IMX8MP_CLK_M7_CORE
for backward compatibility.

Signed-off-by: LI Qingwu <[email protected]>
---
drivers/clk/imx/clk-imx8mp.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/clk/imx/clk-imx8mp.c b/drivers/clk/imx/clk-imx8mp.c
index 652ae58c2735..bae5ecc81bdc 100644
--- a/drivers/clk/imx/clk-imx8mp.c
+++ b/drivers/clk/imx/clk-imx8mp.c
@@ -531,6 +531,9 @@ static int imx8mp_clocks_probe(struct platform_device *pdev)
hws[IMX8MP_CLK_HSIO_AXI] = imx8m_clk_hw_composite("hsio_axi", imx8mp_hsio_axi_sels, ccm_base + 0x8380);
hws[IMX8MP_CLK_MEDIA_ISP] = imx8m_clk_hw_composite("media_isp", imx8mp_media_isp_sels, ccm_base + 0x8400);

+ hws[IMX8MP_CLK_M7_SRC] = hws[IMX8MP_CLK_M7_CORE];
+ hws[IMX8MP_CLK_M7_DIV] = hws[IMX8MP_CLK_M7_CORE];
+
/* CORE SEL */
hws[IMX8MP_CLK_A53_CORE] = imx_clk_hw_mux2("arm_a53_core", ccm_base + 0x9880, 24, 1, imx8mp_a53_core_sels, ARRAY_SIZE(imx8mp_a53_core_sels));

--
2.25.1


2022-12-09 19:35:20

by Stephen Boyd

[permalink] [raw]
Subject: Re: [PATCH V1] clk: imx8mp: Alias M7 SRC/DIV to M7 CORE

Quoting LI Qingwu (2022-12-07 00:10:42)
> Defined IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV in imx8mp-clock.h
> but never assigned. It will cause the system to hang if using it.
> Alias IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV to IMX8MP_CLK_M7_CORE
> for backward compatibility.
>
> Signed-off-by: LI Qingwu <[email protected]>

Any Fixes tag?

2022-12-12 05:38:18

by LI Qingwu

[permalink] [raw]
Subject: RE: [PATCH V1] clk: imx8mp: Alias M7 SRC/DIV to M7 CORE



> -----Original Message-----
> From: Stephen Boyd <[email protected]>
> Sent: Saturday, December 10, 2022 2:28 AM
> To: LI Qingwu <[email protected]>; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]
> Cc: LI Qingwu <[email protected]>;
> [email protected]
> Subject: Re: [PATCH V1] clk: imx8mp: Alias M7 SRC/DIV to M7 CORE
>
> Quoting LI Qingwu (2022-12-07 00:10:42)
> > Defined IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV in imx8mp-clock.h
> but
> > never assigned. It will cause the system to hang if using it.
> > Alias IMX8MP_CLK_M7_SRC and IMX8MP_CLK_M7_DIV to
> IMX8MP_CLK_M7_CORE
> > for backward compatibility.
> >
> > Signed-off-by: LI Qingwu <[email protected]>
>
> Any Fixes tag?

Thanks, I will and Fixes in V2
Fixes: 8c83a8ff4dd9 (clk: imx8mp: use imx8m_clk_hw_composite_core to simplify code)