diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2023-03-23 23:06:14 +0900 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2023-05-18 16:17:52 +0200 |
commit | 4fffa0f6af7944d630687657958c9d872cf67285 (patch) | |
tree | 9f0e233b465c7c6cfb3b1da9df856e7e34b1ee9a /target/linux/mvebu/files/arch/arm/boot/dts | |
parent | bf12aac46435373f0ef3baaa5046046d2f51aa2f (diff) | |
download | upstream-4fffa0f6af7944d630687657958c9d872cf67285.tar.gz upstream-4fffa0f6af7944d630687657958c9d872cf67285.tar.bz2 upstream-4fffa0f6af7944d630687657958c9d872cf67285.zip |
mvebu: use PHY LED trigger for speed LEDs on FortiGate 50E
Use <mdio>:<addr>:<speed> trigger instead of netdev(link) trigger for
Fortinet FortiGate 50E, to indicate link speed on the each phys.
1000 Mbps: Green
100 Mbps : Amber
10 Mbps : (turn off)
Fixes: 102dc5a62506 ("mvebu: add support for Fortinet FortiGate 50E")
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/mvebu/files/arch/arm/boot/dts')
-rw-r--r-- | target/linux/mvebu/files/arch/arm/boot/dts/armada-385-fortinet-fg-50e.dts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/mvebu/files/arch/arm/boot/dts/armada-385-fortinet-fg-50e.dts b/target/linux/mvebu/files/arch/arm/boot/dts/armada-385-fortinet-fg-50e.dts index 506e01f0ff..61d2da1755 100644 --- a/target/linux/mvebu/files/arch/arm/boot/dts/armada-385-fortinet-fg-50e.dts +++ b/target/linux/mvebu/files/arch/arm/boot/dts/armada-385-fortinet-fg-50e.dts @@ -97,72 +97,84 @@ label = "green:speed_wan1"; gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "f1072004.mdio-mii:00:1Gbps"; }; led-7 { label = "green:speed_wan2"; gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "f1072004.mdio-mii:01:1Gbps"; }; led-8 { label = "amber:speed_lan5"; gpios = <&gpio2 2 GPIO_ACTIVE_HIGH>; color = <LED_COLOR_ID_AMBER>; + linux,default-trigger = "mv88e6xxx-1:00:100Mbps"; }; led-9 { label = "green:speed_lan5"; gpios = <&gpio2 3 GPIO_ACTIVE_HIGH>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "mv88e6xxx-1:00:1Gbps"; }; led-10 { label = "green:speed_lan4"; gpios = <&gpio2 4 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "mv88e6xxx-1:01:1Gbps"; }; led-11 { label = "amber:speed_lan4"; gpios = <&gpio2 5 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_AMBER>; + linux,default-trigger = "mv88e6xxx-1:01:100Mbps"; }; led-12 { label = "amber:speed_lan3"; gpios = <&gpio2 6 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_AMBER>; + linux,default-trigger = "mv88e6xxx-1:02:100Mbps"; }; led-13 { label = "green:speed_lan3"; gpios = <&gpio2 7 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "mv88e6xxx-1:02:1Gbps"; }; led-14 { label = "green:speed_lan1"; gpios = <&gpio2 12 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "mv88e6xxx-1:04:1Gbps"; }; led-15 { label = "amber:speed_lan1"; gpios = <&gpio2 13 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_AMBER>; + linux,default-trigger = "mv88e6xxx-1:04:100Mbps"; }; led-16 { label = "green:speed_lan2"; gpios = <&gpio2 14 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_GREEN>; + linux,default-trigger = "mv88e6xxx-1:03:1Gbps"; }; led-17 { label = "amber:speed_lan2"; gpios = <&gpio2 15 GPIO_ACTIVE_LOW>; color = <LED_COLOR_ID_AMBER>; + linux,default-trigger = "mv88e6xxx-1:03:100Mbps"; }; }; |