
Add initial support for new target with the initial patch for ethernet support using pending upstream patches for PCS UNIPHY, PPE and EDMA. Only initramfs currently working as support for new SPI/NAND implementation, USB, CPUFreq and other devices is still unfinished and needs to be evaluated. Link: https://github.com/openwrt/openwrt/pull/17725 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From e60ac570137b42ef61a01a6b26133a8e2d7e8d4b Mon Sep 17 00:00:00 2001
|
|
From: Alexandru Gagniuc <mr.nuke.me@gmail.com>
|
|
Date: Mon, 6 May 2024 21:47:58 -0500
|
|
Subject: [PATCH] arm64: dts: qcom: ipq9574: add MDIO bus
|
|
|
|
The IPQ95xx uses an IPQ4019 compatible MDIO controller that is already
|
|
supported. Add a DT node to expose it.
|
|
|
|
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
|
|
Link: https://lore.kernel.org/r/20240507024758.2810514-2-mr.nuke.me@gmail.com
|
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
|
---
|
|
arch/arm64/boot/dts/qcom/ipq9574.dtsi | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/qcom/ipq9574.dtsi b/arch/arm64/boot/dts/qcom/ipq9574.dtsi
|
|
index 7f2e5cbf3bbb..ded02bc39275 100644
|
|
--- a/arch/arm64/boot/dts/qcom/ipq9574.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq9574.dtsi
|
|
@@ -232,6 +232,16 @@ rng: rng@e3000 {
|
|
clock-names = "core";
|
|
};
|
|
|
|
+ mdio: mdio@90000 {
|
|
+ compatible = "qcom,ipq9574-mdio", "qcom,ipq4019-mdio";
|
|
+ reg = <0x00090000 0x64>;
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ clocks = <&gcc GCC_MDIO_AHB_CLK>;
|
|
+ clock-names = "gcc_mdio_ahb_clk";
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
qfprom: efuse@a4000 {
|
|
compatible = "qcom,ipq9574-qfprom", "qcom,qfprom";
|
|
reg = <0x000a4000 0x5a1>;
|
|
--
|
|
2.45.2
|
|
|