mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-23 21:39:02 +00:00
88 lines
2.1 KiB
Diff
88 lines
2.1 KiB
Diff
From: Russell King <rmk+kernel@arm.linux.org.uk>
|
|
Subject: [PATCH 29/30] ARM: dts: add SFP module support for Clearfog
|
|
MIME-Version: 1.0
|
|
Content-Disposition: inline
|
|
Content-Transfer-Encoding: 8bit
|
|
Content-Type: text/plain; charset="utf-8"
|
|
|
|
Add SFP module support for Clearfog using the SFP phylink support.
|
|
|
|
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
|
|
---
|
|
arch/arm/boot/dts/armada-388-clearfog.dts | 44 ++++++++-----------------------
|
|
1 file changed, 11 insertions(+), 33 deletions(-)
|
|
|
|
diff --git a/arch/arm/boot/dts/armada-388-clearfog.dts b/arch/arm/boot/dts/armada-388-clearfog.dts
|
|
index c6e180eb3b11..bf0409b8cfd1 100644
|
|
--- a/arch/arm/boot/dts/armada-388-clearfog.dts
|
|
+++ b/arch/arm/boot/dts/armada-388-clearfog.dts
|
|
@@ -87,13 +87,9 @@
|
|
};
|
|
|
|
ethernet@34000 {
|
|
+ managed = "in-band-status";
|
|
phy-mode = "sgmii";
|
|
status = "okay";
|
|
-
|
|
- fixed-link {
|
|
- speed = <1000>;
|
|
- full-duplex;
|
|
- };
|
|
};
|
|
|
|
i2c@11000 {
|
|
@@ -177,34 +173,6 @@
|
|
output-low;
|
|
line-name = "m.2 devslp";
|
|
};
|
|
- sfp_los {
|
|
- /* SFP loss of signal */
|
|
- gpio-hog;
|
|
- gpios = <12 GPIO_ACTIVE_HIGH>;
|
|
- input;
|
|
- line-name = "sfp-los";
|
|
- };
|
|
- sfp_tx_fault {
|
|
- /* SFP laser fault */
|
|
- gpio-hog;
|
|
- gpios = <13 GPIO_ACTIVE_HIGH>;
|
|
- input;
|
|
- line-name = "sfp-tx-fault";
|
|
- };
|
|
- sfp_tx_disable {
|
|
- /* SFP transmit disable */
|
|
- gpio-hog;
|
|
- gpios = <14 GPIO_ACTIVE_HIGH>;
|
|
- output-low;
|
|
- line-name = "sfp-tx-disable";
|
|
- };
|
|
- sfp_mod_def0 {
|
|
- /* SFP module present */
|
|
- gpio-hog;
|
|
- gpios = <15 GPIO_ACTIVE_LOW>;
|
|
- input;
|
|
- line-name = "sfp-mod-def0";
|
|
- };
|
|
};
|
|
|
|
/* The MCP3021 is 100kHz clock only */
|
|
@@ -384,6 +352,16 @@
|
|
};
|
|
};
|
|
|
|
+ sfp: sfp {
|
|
+ compatible = "sff,sfp";
|
|
+ i2c-bus = <&i2c1>;
|
|
+ los-gpio = <&expander0 12 GPIO_ACTIVE_HIGH>;
|
|
+ moddef0-gpio = <&expander0 15 GPIO_ACTIVE_LOW>;
|
|
+ sfp,ethernet = <ð2>;
|
|
+ tx-disable-gpio = <&expander0 14 GPIO_ACTIVE_HIGH>;
|
|
+ tx-fault-gpio = <&expander0 13 GPIO_ACTIVE_HIGH>;
|
|
+ };
|
|
+
|
|
dsa@0 {
|
|
compatible = "marvell,dsa";
|
|
dsa,ethernet = <ð1>;
|
|
--
|
|
2.1.0
|
|
|