891a4cb5a1
patches added are (not all, just some) fixes and feature enhancements for msm8992 and msm8994 from qcom mainline maintainer tree [1] for v5.18 and v5.19. Changes: * update deviceinfo_dtb_mainline for device-huawei-angler and device-lg-bullhead. * add sdhc1 support for device-huawei-angler [1] https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git Signed-off-by: Petr Vorel <petr.vorel@gmail.com> [ci:skip-build] Already built successfully in CI in MR
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 6ad8a8b7d7240ff76cd0c8190d2992100602b547 Mon Sep 17 00:00:00 2001
|
|
From: Konrad Dybcio <konrad.dybcio@somainline.org>
|
|
Date: Sat, 19 Mar 2022 18:46:31 +0100
|
|
Subject: [PATCH 5/8] arm64: dts: qcom: msm8994: Fix sleep clock name
|
|
|
|
The sleep clock name expected by GCC is actually "sleep" and not
|
|
"sleep_clk". Fix the clock-names value for it to make sure it is
|
|
provided.
|
|
|
|
[ cherry-picked from 5827e28304673444f8e1cf426c2b08cc16382290 ]
|
|
|
|
Fixes: 9204da57cd65 ("arm64: dts: qcom: msm8994: Provide missing "xo_board" and "sleep_clk" to GCC")
|
|
|
|
Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
|
|
Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
|
|
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
Link: https://lore.kernel.org/r/20220319174645.340379-2-konrad.dybcio@somainline.org
|
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/qcom/msm8994.dtsi | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/arch/arm64/boot/dts/qcom/msm8994.dtsi b/arch/arm64/boot/dts/qcom/msm8994.dtsi
|
|
index 8c1dc5155b71..9fab5094338f 100644
|
|
--- a/arch/arm64/boot/dts/qcom/msm8994.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/msm8994.dtsi
|
|
@@ -714,7 +714,7 @@ gcc: clock-controller@fc400000 {
|
|
#power-domain-cells = <1>;
|
|
reg = <0xfc400000 0x2000>;
|
|
|
|
- clock-names = "xo", "sleep_clk";
|
|
+ clock-names = "xo", "sleep";
|
|
clocks = <&xo_board>, <&sleep_clk>;
|
|
};
|
|
|
|
--
|
|
2.35.1
|
|
|