2017-02-22 12:47:22 +00:00
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
#include "mt7621.dtsi"
|
|
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
|
|
|
/ {
|
2017-07-27 16:49:06 +00:00
|
|
|
compatible = "hiwifi,hc5962", "mediatek,mt7621-soc";
|
2017-02-22 12:47:22 +00:00
|
|
|
model = "HiWiFi HC5962";
|
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
aliases {
|
2020-01-16 16:27:59 +00:00
|
|
|
led-boot = &led_system;
|
|
|
|
led-failsafe = &led_system;
|
2018-08-28 04:54:27 +00:00
|
|
|
led-running = &led_status;
|
|
|
|
led-upgrade = &led_status;
|
2018-07-16 08:27:22 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 12:47:22 +00:00
|
|
|
chosen {
|
|
|
|
bootargs = "console=ttyS0,115200";
|
|
|
|
};
|
|
|
|
|
2018-12-30 11:42:53 +00:00
|
|
|
leds {
|
2017-02-22 12:47:22 +00:00
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
led_status: status {
|
2017-02-22 12:47:22 +00:00
|
|
|
label = "hc5962:white:status";
|
2020-03-03 21:22:24 +00:00
|
|
|
gpios = <&gpio 6 GPIO_ACTIVE_LOW>;
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
|
|
|
|
2020-01-16 16:27:59 +00:00
|
|
|
led_system: system {
|
2017-02-22 12:47:22 +00:00
|
|
|
label = "hc5962:red:system";
|
2020-03-03 21:22:24 +00:00
|
|
|
gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
|
2020-01-16 16:27:59 +00:00
|
|
|
panic-indicator;
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-12-30 11:17:25 +00:00
|
|
|
keys {
|
2019-09-20 12:03:02 +00:00
|
|
|
compatible = "gpio-keys";
|
2017-02-22 12:47:22 +00:00
|
|
|
|
|
|
|
reset {
|
|
|
|
label = "reset";
|
2020-03-03 21:22:24 +00:00
|
|
|
gpios = <&gpio 18 GPIO_ACTIVE_HIGH>;
|
2017-02-22 12:47:22 +00:00
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&nand {
|
|
|
|
status = "okay";
|
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
partition@0 {
|
|
|
|
label = "u-boot";
|
|
|
|
reg = <0x0 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@80000 {
|
|
|
|
label = "debug";
|
|
|
|
reg = <0x80000 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
factory: partition@100000 {
|
|
|
|
label = "factory";
|
|
|
|
reg = <0x100000 0x40000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@140000 {
|
|
|
|
label = "kernel";
|
|
|
|
reg = <0x140000 0x200000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@340000 {
|
|
|
|
label = "ubi";
|
|
|
|
reg = <0x340000 0x1E00000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@2140000 {
|
|
|
|
label = "hw_panic";
|
|
|
|
reg = <0x2140000 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@21c0000 {
|
|
|
|
label = "bdinfo";
|
|
|
|
reg = <0x21c0000 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@2240000 {
|
|
|
|
label = "backup";
|
|
|
|
reg = <0x2240000 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@22c0000 {
|
|
|
|
label = "overly";
|
|
|
|
reg = <0x22c0000 0x1000000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@32c0000 {
|
|
|
|
label = "firmware_backup";
|
|
|
|
reg = <0x32c0000 0x2000000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@52c0000 {
|
|
|
|
label = "oem";
|
|
|
|
reg = <0x52c0000 0x200000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@54c0000 {
|
|
|
|
label = "opt";
|
|
|
|
reg = <0x54c0000 0x2ac0000>;
|
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&pcie {
|
|
|
|
status = "okay";
|
2018-07-21 14:19:46 +00:00
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-07-21 14:19:46 +00:00
|
|
|
&pcie0 {
|
|
|
|
mt76@0,0 {
|
|
|
|
reg = <0x0000 0 0 0 0>;
|
|
|
|
mediatek,mtd-eeprom = <&factory 0x0000>;
|
|
|
|
ieee80211-freq-limit = <2400000 2500000>;
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
2018-07-21 14:19:46 +00:00
|
|
|
};
|
2017-02-22 12:47:22 +00:00
|
|
|
|
2018-07-21 14:19:46 +00:00
|
|
|
&pcie1 {
|
|
|
|
mt76@0,0 {
|
|
|
|
reg = <0x0000 0 0 0 0>;
|
|
|
|
mediatek,mtd-eeprom = <&factory 0x8000>;
|
|
|
|
ieee80211-freq-limit = <5000000 6000000>;
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-03-18 15:38:58 +00:00
|
|
|
&switch0 {
|
|
|
|
ports {
|
|
|
|
port@1 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan1";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@2 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan2";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@3 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan3";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@4 {
|
|
|
|
status = "okay";
|
|
|
|
label = "wan";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-12-22 20:26:01 +00:00
|
|
|
&state_default {
|
|
|
|
gpio {
|
2020-03-13 13:27:03 +00:00
|
|
|
groups = "uart3", "jtag";
|
|
|
|
function = "gpio";
|
2017-02-22 12:47:22 +00:00
|
|
|
};
|
|
|
|
};
|