mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
78322915bd
Mikrotik seems to prefer "hEX S" as general name for this model, therefore include this in devicetree model name as well. Signed-off-by: Priit Laes <plaes@plaes.org> Link: https://github.com/openwrt/openwrt/pull/16658 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7621_mikrotik_routerboard-7xx.dtsi"
|
|
|
|
/ {
|
|
compatible = "mikrotik,routerboard-760igs", "mediatek,mt7621-soc";
|
|
model = "MikroTik RouterBOARD 760iGS (hEX S)";
|
|
|
|
aliases {
|
|
led-boot = &led_pwr;
|
|
led-failsafe = &led_pwr;
|
|
led-running = &led_pwr;
|
|
led-upgrade = &led_pwr;
|
|
label-mac-device = &port0;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_pwr: pwr {
|
|
label = "blue:pwr";
|
|
gpios = <&gpio 16 GPIO_ACTIVE_HIGH>;
|
|
default-state = "on";
|
|
};
|
|
|
|
sfp {
|
|
label = "blue:sfp";
|
|
gpios = <&gpio 9 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
|
|
sfp1: sfp1 {
|
|
compatible = "sff,sfp";
|
|
i2c-bus = <&i2c>;
|
|
los-gpios = <&gpio 6 GPIO_ACTIVE_HIGH>;
|
|
mod-def0-gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
|
|
tx-disable-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>;
|
|
maximum-power-milliwatt = <1000>;
|
|
};
|
|
};
|
|
|
|
&mdio {
|
|
ephy7: ethernet-phy@7 {
|
|
reg = <7>;
|
|
sfp = <&sfp1>;
|
|
};
|
|
};
|
|
|
|
&gmac1 {
|
|
status = "okay";
|
|
|
|
label = "sfp";
|
|
phy-mode = "rgmii-rxid";
|
|
phy-handle = <&ephy7>;
|
|
|
|
nvmem-cells = <&macaddr_hard 5>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&i2c {
|
|
status = "okay";
|
|
};
|
|
|
|
&state_default {
|
|
gpio {
|
|
/* gpio7 (uart3 group) goes high when
|
|
* port5 (PoE out) is cabled to a
|
|
* Mikrotik PoE-in capable port,
|
|
* such as port1 on another rb760iGS */
|
|
groups = "uart2", "uart3", "jtag", "wdt";
|
|
function = "gpio";
|
|
};
|
|
};
|