|
|
@@ -0,0 +1,125 @@
|
|
|
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
+
|
|
|
+#include "qca953x.dtsi"
|
|
|
+
|
|
|
+#include <dt-bindings/gpio/gpio.h>
|
|
|
+#include <dt-bindings/input/input.h>
|
|
|
+#include <dt-bindings/mtd/partitions/uimage.h>
|
|
|
+
|
|
|
+/ {
|
|
|
+ aliases {
|
|
|
+ led-boot = &led_wps;
|
|
|
+ led-failsafe = &led_wps;
|
|
|
+ led-running = &led_wps;
|
|
|
+ led-upgrade = &led_wps;
|
|
|
+ };
|
|
|
+
|
|
|
+ leds {
|
|
|
+ compatible = "gpio-leds";
|
|
|
+
|
|
|
+ wan {
|
|
|
+ label = "green:wan";
|
|
|
+ gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ wlan {
|
|
|
+ label = "green:wlan";
|
|
|
+ gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,default-trigger = "phy0tpt";
|
|
|
+ };
|
|
|
+
|
|
|
+ lan1 {
|
|
|
+ label = "green:lan1";
|
|
|
+ gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan2 {
|
|
|
+ label = "green:lan2";
|
|
|
+ gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan3 {
|
|
|
+ label = "green:lan3";
|
|
|
+ gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ lan4 {
|
|
|
+ label = "green:lan4";
|
|
|
+ gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led_wps: wps {
|
|
|
+ label = "green:wps";
|
|
|
+ gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ keys {
|
|
|
+ compatible = "gpio-keys";
|
|
|
+
|
|
|
+ wps {
|
|
|
+ label = "WPS button";
|
|
|
+ linux,code = <KEY_WPS_BUTTON>;
|
|
|
+ gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
|
|
|
+ debounce-interval = <60>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&spi {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ flash@0 {
|
|
|
+ compatible = "jedec,spi-nor";
|
|
|
+ reg = <0>;
|
|
|
+ spi-max-frequency = <25000000>;
|
|
|
+
|
|
|
+ partitions: partitions {
|
|
|
+ compatible = "fixed-partitions";
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ partition@0 {
|
|
|
+ label = "u-boot";
|
|
|
+ reg = <0x000000 0x040000>;
|
|
|
+ read-only;
|
|
|
+ };
|
|
|
+
|
|
|
+ partition@40000 {
|
|
|
+ label = "u-boot-env";
|
|
|
+ reg = <0x040000 0x010000>;
|
|
|
+ read-only;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+ð0 {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ mtd-mac-address = <&art 0x0>;
|
|
|
+
|
|
|
+ phy-handle = <&swphy4>;
|
|
|
+};
|
|
|
+
|
|
|
+ð1 {
|
|
|
+ mtd-mac-address = <&art 0x6>;
|
|
|
+
|
|
|
+ gmac-config {
|
|
|
+ device = <&gmac>;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&wmac {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ mtd-cal-data = <&art 0x1000>;
|
|
|
+};
|
|
|
+
|
|
|
+&usb0 {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&usb_phy {
|
|
|
+ status = "okay";
|
|
|
+};
|