mirror of
https://github.com/cjdelisle/openwrt.git
synced 2025-06-17 23:09:29 +00:00
Some devices have both the color/function and label property defined. The label can be constructed from the former properties, making it redundant. Signed-off-by: Sander Vanheule <sander@svanheule.net>
63 lines
1.0 KiB
Plaintext
63 lines
1.0 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "rtl8380_netgear_gigabit.dtsi"
|
|
|
|
#include <dt-bindings/leds/common.h>
|
|
|
|
/ {
|
|
compatible = "netgear,gs310tp-v1", "realtek,rtl838x-soc";
|
|
model = "Netgear GS310TP v1";
|
|
|
|
aliases {
|
|
led-boot = &led_power_green;
|
|
led-failsafe = &led_power_amber;
|
|
led-running = &led_power_green;
|
|
led-upgrade = &led_power_amber;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_power_amber: led-0 {
|
|
color = <LED_COLOR_ID_AMBER>;
|
|
function = LED_FUNCTION_POWER;
|
|
gpios = <&gpio1 32 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_power_green: led-1 {
|
|
color = <LED_COLOR_ID_GREEN>;
|
|
function = LED_FUNCTION_POWER;
|
|
gpios = <&gpio1 31 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&gpio1 {
|
|
poe-enable {
|
|
gpio-hog;
|
|
gpios = <10 GPIO_ACTIVE_HIGH>;
|
|
output-high;
|
|
line-name = "poe-enable";
|
|
};
|
|
};
|
|
|
|
&firmware {
|
|
openwrt,ih-magic = <0x4e474335>;
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&mdio {
|
|
INTERNAL_PHY(24)
|
|
INTERNAL_PHY(26)
|
|
};
|
|
|
|
&switch0 {
|
|
ports {
|
|
SWITCH_SFP_PORT(24, 9, rgmii-id)
|
|
SWITCH_SFP_PORT(26, 10, rgmii-id)
|
|
};
|
|
};
|