|
|
@@ -0,0 +1,132 @@
|
|
|
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
+
|
|
|
+#include "mt7620a.dtsi"
|
|
|
+
|
|
|
+#include <dt-bindings/gpio/gpio.h>
|
|
|
+#include <dt-bindings/input/input.h>
|
|
|
+
|
|
|
+/ {
|
|
|
+ compatible = "netcore,nw5212", "ralink,mt7620a-soc";
|
|
|
+ model = "Netcore NW5212";
|
|
|
+
|
|
|
+ aliases {
|
|
|
+ label-mac-device = ðernet;
|
|
|
+ };
|
|
|
+
|
|
|
+ leds {
|
|
|
+ compatible = "gpio-leds";
|
|
|
+
|
|
|
+ lan4 {
|
|
|
+ label = "green:lan4";
|
|
|
+ gpios = <&gpio2 0 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan3 {
|
|
|
+ label = "green:lan3";
|
|
|
+ gpios = <&gpio2 1 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan2 {
|
|
|
+ label = "green:lan2";
|
|
|
+ gpios = <&gpio2 2 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan1 {
|
|
|
+ label = "green:lan1";
|
|
|
+ gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ wan {
|
|
|
+ label = "green:wan";
|
|
|
+ gpios = <&gpio2 4 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ wlan2g {
|
|
|
+ label = "green:wlan2g";
|
|
|
+ gpios = <&gpio3 0 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,default-trigger = "phy0tpt";
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ keys {
|
|
|
+ compatible = "gpio-keys";
|
|
|
+
|
|
|
+ reset {
|
|
|
+ label = "reset";
|
|
|
+ gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,code = <KEY_RESTART>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&gpio2 {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&gpio3 {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&spi0 {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ flash@0 {
|
|
|
+ compatible = "jedec,spi-nor";
|
|
|
+ reg = <0>;
|
|
|
+ spi-max-frequency = <70000000>;
|
|
|
+ m25p,fast-read;
|
|
|
+
|
|
|
+ partitions {
|
|
|
+ compatible = "fixed-partitions";
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ partition@0 {
|
|
|
+ label = "u-boot";
|
|
|
+ reg = <0x0 0x30000>;
|
|
|
+ read-only;
|
|
|
+ };
|
|
|
+
|
|
|
+ partition@30000 {
|
|
|
+ label = "u-boot-env";
|
|
|
+ reg = <0x30000 0x10000>;
|
|
|
+ };
|
|
|
+
|
|
|
+ factory: partition@40000 {
|
|
|
+ label = "factory";
|
|
|
+ reg = <0x40000 0x10000>;
|
|
|
+ read-only;
|
|
|
+ };
|
|
|
+
|
|
|
+ partition@50000 {
|
|
|
+ compatible = "denx,uimage";
|
|
|
+ label = "firmware";
|
|
|
+ reg = <0x50000 0xfb0000>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&state_default {
|
|
|
+ gpio {
|
|
|
+ groups = "uartf", "wled", "ephy";
|
|
|
+ function = "gpio";
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+ðernet {
|
|
|
+ mtd-mac-address = <&factory 0x28>;
|
|
|
+ mediatek,portmap = "llllw";
|
|
|
+};
|
|
|
+
|
|
|
+&ehci {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&ohci {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&wmac {
|
|
|
+ ralink,mtd-eeprom = <&factory 0x0>;
|
|
|
+};
|