mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
4f4cb52e24
73a9f9f857947bc63fef1aefb7e2e4b906fb9d2b added support. Let's use it. Calibration data is not yet supported. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16256 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
60 lines
939 B
Plaintext
60 lines
939 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7621_mikrotik_routerboard-7xx.dtsi"
|
|
|
|
/ {
|
|
compatible = "mikrotik,routerboard-750gr3", "mediatek,mt7621-soc";
|
|
model = "MikroTik RouterBOARD 750Gr3";
|
|
|
|
aliases {
|
|
led-boot = &led_usr;
|
|
led-failsafe = &led_usr;
|
|
led-running = &led_usr;
|
|
led-upgrade = &led_usr;
|
|
label-mac-device = &gmac1;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
pwr {
|
|
label = "blue:pwr";
|
|
gpios = <&gpio 16 GPIO_ACTIVE_HIGH>;
|
|
default-state = "on";
|
|
};
|
|
|
|
led_usr: usr {
|
|
label = "green:usr";
|
|
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&state_default {
|
|
gpio {
|
|
groups = "uart2", "jtag", "wdt";
|
|
function = "gpio";
|
|
};
|
|
};
|
|
|
|
&gmac1 {
|
|
status = "okay";
|
|
label = "wan";
|
|
phy-handle = <ðphy0>;
|
|
|
|
nvmem-cells = <&macaddr_hard 0>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
ðphy0 {
|
|
/delete-property/ interrupts;
|
|
};
|
|
|
|
&switch0 {
|
|
ports {
|
|
port@0 {
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|