2020-09-22 20:49:55 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2018-08-19 08:05:15 +09:00
|
|
|
|
|
|
|
#include "mt7621.dtsi"
|
|
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
2024-02-07 14:48:43 +01:00
|
|
|
#include <dt-bindings/leds/common.h>
|
2018-08-19 08:05:15 +09:00
|
|
|
|
|
|
|
/ {
|
|
|
|
aliases {
|
2018-08-28 06:54:27 +02:00
|
|
|
led-boot = &led_power_green;
|
|
|
|
led-failsafe = &led_power_green;
|
|
|
|
led-running = &led_power_green;
|
|
|
|
led-upgrade = &led_power_green;
|
2022-07-06 01:20:32 +03:00
|
|
|
label-mac-device = &gmac1;
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
|
2020-11-28 18:41:12 +09:00
|
|
|
leds: leds {
|
2018-08-19 08:05:15 +09:00
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
|
|
|
led_power_green: power_green {
|
2024-02-07 14:48:43 +01:00
|
|
|
function = LED_FUNCTION_POWER;
|
|
|
|
color = <LED_COLOR_ID_GREEN>;
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
power_blue {
|
2024-02-07 14:48:43 +01:00
|
|
|
function = LED_FUNCTION_POWER;
|
|
|
|
color = <LED_COLOR_ID_BLUE>;
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 8 GPIO_ACTIVE_HIGH>;
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
wps {
|
2024-02-07 14:48:43 +01:00
|
|
|
function = LED_FUNCTION_WPS;
|
|
|
|
color = <LED_COLOR_ID_RED>;
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
power_red {
|
2024-02-07 14:48:43 +01:00
|
|
|
function = LED_FUNCTION_POWER;
|
|
|
|
color = <LED_COLOR_ID_RED>;
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 16 GPIO_ACTIVE_HIGH>;
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-12-30 12:17:25 +01:00
|
|
|
keys {
|
2019-09-20 14:03:02 +02:00
|
|
|
compatible = "gpio-keys";
|
2018-08-19 08:05:15 +09:00
|
|
|
|
|
|
|
reset {
|
|
|
|
label = "reset";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
};
|
|
|
|
|
|
|
|
wps {
|
|
|
|
label = "wps";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
|
|
};
|
|
|
|
|
|
|
|
client {
|
|
|
|
label = "client";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 41 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <BTN_0>;
|
|
|
|
linux,input-type = <EV_SW>;
|
|
|
|
};
|
|
|
|
|
|
|
|
ap {
|
|
|
|
label = "ap";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 42 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <BTN_0>;
|
|
|
|
linux,input-type = <EV_SW>;
|
|
|
|
};
|
|
|
|
|
|
|
|
extender {
|
|
|
|
label = "extender";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 43 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <BTN_0>;
|
|
|
|
linux,input-type = <EV_SW>;
|
|
|
|
};
|
|
|
|
|
|
|
|
router {
|
|
|
|
label = "router";
|
2020-03-04 05:22:24 +08:00
|
|
|
gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
|
2018-08-19 08:05:15 +09:00
|
|
|
linux,code = <BTN_0>;
|
|
|
|
linux,input-type = <EV_SW>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-07-06 01:20:32 +03:00
|
|
|
&gmac1 {
|
|
|
|
status = "okay";
|
|
|
|
label = "wan";
|
|
|
|
phy-handle = <ðphy0>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&mdio {
|
|
|
|
ethphy0: ethernet-phy@0 {
|
|
|
|
reg = <0>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-03-18 23:38:58 +08:00
|
|
|
&switch0 {
|
|
|
|
ports {
|
|
|
|
port@1 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan4";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@2 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan3";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@3 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan2";
|
|
|
|
};
|
|
|
|
|
|
|
|
port@4 {
|
|
|
|
status = "okay";
|
|
|
|
label = "lan1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-19 08:05:15 +09:00
|
|
|
&spi0 {
|
|
|
|
status = "okay";
|
|
|
|
|
2020-05-07 23:15:27 +09:00
|
|
|
flash@0 {
|
2018-08-19 08:05:15 +09:00
|
|
|
compatible = "jedec,spi-nor";
|
|
|
|
reg = <0>;
|
2020-05-16 15:14:18 +09:00
|
|
|
spi-max-frequency = <40000000>;
|
2018-08-19 08:05:15 +09:00
|
|
|
|
2020-05-16 17:39:26 +09:00
|
|
|
partitions: partitions {
|
2018-08-19 08:05:15 +09:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
factory: partition@40000 {
|
|
|
|
label = "factory";
|
|
|
|
reg = <0x40000 0x10000>;
|
|
|
|
read-only;
|
2023-10-02 10:12:02 +08:00
|
|
|
|
2023-11-07 15:55:58 -08:00
|
|
|
nvmem-layout {
|
|
|
|
compatible = "fixed-layout";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
eeprom_factory_0: eeprom@0 {
|
|
|
|
reg = <0x0 0x4da8>;
|
|
|
|
};
|
2023-10-02 10:12:02 +08:00
|
|
|
|
2023-11-07 15:55:58 -08:00
|
|
|
eeprom_factory_8000: eeprom@8000 {
|
|
|
|
reg = <0x8000 0x4da8>;
|
|
|
|
};
|
2023-10-02 10:12:02 +08:00
|
|
|
};
|
2018-08-19 08:05:15 +09:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&pcie {
|
|
|
|
status = "okay";
|
2019-06-25 22:20:44 +09:00
|
|
|
};
|
|
|
|
|
2018-08-19 08:05:15 +09:00
|
|
|
&xhci {
|
|
|
|
status = "disabled";
|
|
|
|
};
|