[openwrt/openwrt] qualcommax: ipq50xx: fix XO board clock rate for Yuncore AX850

LEDE Commits lede-commits at lists.infradead.org
Tue Oct 14 03:45:19 PDT 2025


robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/c035447afdf17553b612faeab020ff4c4b008d19

commit c035447afdf17553b612faeab020ff4c4b008d19
Author: George Moussalem <george.moussalem at outlook.com>
AuthorDate: Tue Oct 14 13:36:17 2025 +0400

    qualcommax: ipq50xx: fix XO board clock rate for Yuncore AX850
    
    Commit 468975a985ab changed the XO board clock definition from a fixed
    clock to a fixed rate clock in the dtsi.
    
    As such, boards must use clock dividers and multipliers to calculate
    the clock rate based on the referenced parent clock.
    
    Fixes: 5d2994a73e20 ("qualcommax: ipq50xx: Add support for Yuncore AX850")
    Signed-off-by: George Moussalem <george.moussalem at outlook.com>
    Link: https://github.com/openwrt/openwrt/pull/20405
    Signed-off-by: Robert Marko <robimarko at gmail.com>
---
 .../linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-ax850.dts  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-ax850.dts b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-ax850.dts
index d8488cc29e..fbc857a4d1 100644
--- a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-ax850.dts
+++ b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq5018-ax850.dts
@@ -147,7 +147,8 @@
 };
 
 &xo_board_clk {
-	clock-frequency = <24000000>;
+	clock-div = <4>;
+	clock-mult = <1>;
 };
 
 &blsp1_uart1 {




More information about the lede-commits mailing list