This is a note to let you know that I've just added the patch titled clk: qcom: ipq5332: fix the src parameter in ftbl_gcc_apss_axi_clk_src to the 6.4-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-qcom-ipq5332-fix-the-src-parameter-in-ftbl_gcc_a.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 3df8a9b59cf81af34a3b231c95e5862d8c5bc1ad Author: Kathiravan T <quic_kathirav@xxxxxxxxxxx> Date: Mon Apr 17 10:13:42 2023 +0530 clk: qcom: ipq5332: fix the src parameter in ftbl_gcc_apss_axi_clk_src [ Upstream commit 81c1ef89a45eccd5603f1e27e281d14fefcb81f9 ] 480MHz is derived from P_GPLL4_OUT_AUX not from P_GPLL4_OUT_MAIN. Update the freq_tbl with the correct src. Fixes: 3d89d52970fd ("clk: qcom: add Global Clock controller (GCC) driver for IPQ5332 SoC") Reported-by: Manikanta Mylavarapu <quic_mmanikan@xxxxxxxxxxx> Signed-off-by: Kathiravan T <quic_kathirav@xxxxxxxxxxx> Signed-off-by: Bjorn Andersson <andersson@xxxxxxxxxx> Link: https://lore.kernel.org/r/20230417044342.9406-1-quic_kathirav@xxxxxxxxxxx Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/clk/qcom/gcc-ipq5332.c b/drivers/clk/qcom/gcc-ipq5332.c index 1ad23aa8aa5a9..b9ab67649130a 100644 --- a/drivers/clk/qcom/gcc-ipq5332.c +++ b/drivers/clk/qcom/gcc-ipq5332.c @@ -366,7 +366,7 @@ static struct clk_rcg2 gcc_adss_pwm_clk_src = { }; static const struct freq_tbl ftbl_gcc_apss_axi_clk_src[] = { - F(480000000, P_GPLL4_OUT_MAIN, 2.5, 0, 0), + F(480000000, P_GPLL4_OUT_AUX, 2.5, 0, 0), F(533333333, P_GPLL0_OUT_MAIN, 1.5, 0, 0), { } };