|
|
@@ -0,0 +1,171 @@
|
|
|
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
+
|
|
|
+#include "mt7628an.dtsi"
|
|
|
+
|
|
|
+#include <dt-bindings/gpio/gpio.h>
|
|
|
+#include <dt-bindings/input/input.h>
|
|
|
+#include <dt-bindings/leds/common.h>
|
|
|
+
|
|
|
+/ {
|
|
|
+ compatible = "hongdian,h7920-v40", "mediatek,mt7628an-soc";
|
|
|
+ model = "Hongdian H7920 v40";
|
|
|
+
|
|
|
+ aliases {
|
|
|
+ led-boot = &led_sys;
|
|
|
+ led-failsafe = &led_sys;
|
|
|
+ led-running = &led_sys;
|
|
|
+ led-upgrade = &led_sys;
|
|
|
+ };
|
|
|
+
|
|
|
+ chosen {
|
|
|
+ bootargs = "console=ttyS0,115200";
|
|
|
+ };
|
|
|
+
|
|
|
+ leds {
|
|
|
+ compatible = "gpio-leds";
|
|
|
+
|
|
|
+ led-rf {
|
|
|
+ gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ function = "rf";
|
|
|
+ };
|
|
|
+
|
|
|
+ led-net {
|
|
|
+ gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ function = LED_FUNCTION_MOBILE;
|
|
|
+ };
|
|
|
+
|
|
|
+ led_sys: led-sys {
|
|
|
+ gpios = <&gpio 37 GPIO_ACTIVE_LOW>;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ default-state = "on";
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ keys {
|
|
|
+ compatible = "gpio-keys";
|
|
|
+
|
|
|
+ reset {
|
|
|
+ label = "reset";
|
|
|
+ gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,code = <KEY_RESTART>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ watchdog {
|
|
|
+ compatible = "linux,wdt-gpio";
|
|
|
+
|
|
|
+ gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
|
|
+ hw_algo = "toggle";
|
|
|
+ hw_margin_ms = <600>;
|
|
|
+ always-running;
|
|
|
+ };
|
|
|
+
|
|
|
+ gpio-export {
|
|
|
+ compatible = "gpio-export";
|
|
|
+
|
|
|
+ gpio_modem_power {
|
|
|
+ gpio-export,name = "modem_power";
|
|
|
+ gpio-export,output = <0>;
|
|
|
+ gpios = <&gpio 4 GPIO_ACTIVE_HIGH>;
|
|
|
+ };
|
|
|
+
|
|
|
+ gpio_serial_rs485_mode {
|
|
|
+ gpio-export,name = "serial_rs485_mode";
|
|
|
+ gpio-export,output = <0>;
|
|
|
+ gpios = <&gpio 6 GPIO_ACTIVE_HIGH>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&watchdog {
|
|
|
+ status = "disabled";
|
|
|
+};
|
|
|
+
|
|
|
+&spi0 {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ flash@0 {
|
|
|
+ compatible = "jedec,spi-nor";
|
|
|
+ reg = <0>;
|
|
|
+ spi-max-frequency = <40000000>;
|
|
|
+
|
|
|
+ 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>;
|
|
|
+ read-only;
|
|
|
+ };
|
|
|
+
|
|
|
+ partition@40000 {
|
|
|
+ label = "factory";
|
|
|
+ reg = <0x40000 0x10000>;
|
|
|
+ read-only;
|
|
|
+
|
|
|
+ nvmem-layout {
|
|
|
+ compatible = "fixed-layout";
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ eeprom_factory_0: eeprom@0 {
|
|
|
+ reg = <0x0 0x400>;
|
|
|
+ };
|
|
|
+
|
|
|
+ macaddr_factory_28: macaddr@28 {
|
|
|
+ reg = <0x28 0x6>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ partition@50000 {
|
|
|
+ compatible = "denx,uimage";
|
|
|
+ label = "firmware";
|
|
|
+ reg = <0x50000 0xfb0000>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&state_default {
|
|
|
+ gpio {
|
|
|
+ groups = "i2s", "gpio", "refclk";
|
|
|
+ function = "gpio";
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+ðernet {
|
|
|
+ nvmem-cells = <&macaddr_factory_28>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
+};
|
|
|
+
|
|
|
+&esw {
|
|
|
+ mediatek,portmap = <0x3e>;
|
|
|
+ mediatek,portdisable = <0x3c>;
|
|
|
+};
|
|
|
+
|
|
|
+&wmac {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ nvmem-cells = <&eeprom_factory_0>;
|
|
|
+ nvmem-cell-names = "eeprom";
|
|
|
+};
|
|
|
+
|
|
|
+&uart1 {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&pcie {
|
|
|
+ status = "okay";
|
|
|
+};
|