2016-05-09 06:32:52 +00:00
|
|
|
#include "mt7620n.dtsi"
|
2014-07-12 06:54:03 +00:00
|
|
|
|
2017-07-29 02:14:07 +00:00
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
2016-11-11 21:43:08 +00:00
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
2014-07-12 06:54:03 +00:00
|
|
|
/ {
|
2015-08-17 05:57:41 +00:00
|
|
|
compatible = "zbtlink,zbt-wr8305rt", "ralink,mt7620n-soc";
|
|
|
|
model = "Zbtlink ZBT-WR8305RT";
|
2014-07-12 06:54:03 +00:00
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
aliases {
|
2018-08-28 04:54:27 +00:00
|
|
|
led-boot = &led_sys;
|
|
|
|
led-failsafe = &led_sys;
|
|
|
|
led-running = &led_sys;
|
|
|
|
led-upgrade = &led_sys;
|
2018-07-16 08:27:22 +00:00
|
|
|
};
|
|
|
|
|
2018-12-30 11:42:53 +00:00
|
|
|
leds {
|
2014-07-12 06:54:03 +00:00
|
|
|
compatible = "gpio-leds";
|
2015-08-17 05:57:18 +00:00
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
led_sys: sys {
|
2020-09-27 17:40:51 +00:00
|
|
|
label = "green:sys";
|
2017-07-29 02:14:07 +00:00
|
|
|
gpios = <&gpio1 14 GPIO_ACTIVE_LOW>;
|
2014-07-12 06:54:03 +00:00
|
|
|
};
|
2015-08-17 05:57:18 +00:00
|
|
|
|
2014-07-12 06:54:03 +00:00
|
|
|
lan {
|
2020-09-27 17:40:51 +00:00
|
|
|
label = "green:usb";
|
2017-07-29 02:14:07 +00:00
|
|
|
gpios = <&gpio1 15 GPIO_ACTIVE_LOW>;
|
2018-08-13 15:14:08 +00:00
|
|
|
trigger-sources = <&ohci_port1>, <&ehci_port1>;
|
|
|
|
linux,default-trigger = "usbport";
|
2014-07-12 06:54:03 +00:00
|
|
|
};
|
2015-08-17 05:57:18 +00:00
|
|
|
|
2014-07-12 06:54:03 +00:00
|
|
|
wifi {
|
2020-09-27 17:40:51 +00:00
|
|
|
label = "green:wifi";
|
2017-07-29 02:14:07 +00:00
|
|
|
gpios = <&gpio3 0 GPIO_ACTIVE_LOW>;
|
2014-07-12 06:54:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-12-30 11:17:25 +00:00
|
|
|
keys {
|
2019-09-20 12:03:02 +00:00
|
|
|
compatible = "gpio-keys";
|
2015-08-17 05:57:18 +00:00
|
|
|
|
2014-07-12 06:54:03 +00:00
|
|
|
reset {
|
|
|
|
label = "reset";
|
2017-07-29 02:14:07 +00:00
|
|
|
gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
|
2016-11-11 21:43:08 +00:00
|
|
|
linux,code = <KEY_RESTART>;
|
2014-07-12 06:54:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2016-05-10 10:41:46 +00:00
|
|
|
|
|
|
|
&gpio1 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpio3 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi0 {
|
|
|
|
status = "okay";
|
|
|
|
|
2020-05-07 14:15:27 +00:00
|
|
|
flash@0 {
|
2016-05-10 10:41:46 +00:00
|
|
|
compatible = "jedec,spi-nor";
|
2016-05-14 17:22:08 +00:00
|
|
|
reg = <0>;
|
2016-05-10 10:41:46 +00:00
|
|
|
spi-max-frequency = <10000000>;
|
|
|
|
|
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 0x30000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@30000 {
|
|
|
|
label = "u-boot-env";
|
|
|
|
reg = <0x30000 0x10000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
factory: partition@40000 {
|
2023-10-02 02:12:02 +00:00
|
|
|
compatible = "nvmem-cells";
|
2018-08-01 20:32:34 +00:00
|
|
|
label = "factory";
|
|
|
|
reg = <0x40000 0x10000>;
|
2023-10-02 02:12:02 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
2018-08-01 20:32:34 +00:00
|
|
|
read-only;
|
2023-10-02 02:12:02 +00:00
|
|
|
|
|
|
|
eeprom_factory_0: eeprom@0 {
|
|
|
|
reg = <0x0 0x200>;
|
|
|
|
};
|
|
|
|
|
|
|
|
macaddr_factory_4: macaddr@4 {
|
|
|
|
reg = <0x4 0x6>;
|
|
|
|
};
|
2018-08-01 20:32:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
partition@50000 {
|
2018-11-28 03:28:35 +00:00
|
|
|
compatible = "denx,uimage";
|
2018-08-01 20:32:34 +00:00
|
|
|
label = "firmware";
|
|
|
|
reg = <0x50000 0x7b0000>;
|
|
|
|
};
|
2016-05-10 10:41:46 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&ehci {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&ohci {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
ðernet {
|
2017-11-18 21:05:16 +00:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&ephy_pins>;
|
2020-05-14 13:41:31 +00:00
|
|
|
|
2021-04-02 21:50:02 +00:00
|
|
|
nvmem-cells = <&macaddr_factory_4>;
|
|
|
|
nvmem-cell-names = "mac-address";
|
2020-05-14 13:41:31 +00:00
|
|
|
|
2016-05-10 10:41:46 +00:00
|
|
|
mediatek,portmap = "llllw";
|
|
|
|
};
|
|
|
|
|
|
|
|
&wmac {
|
2023-10-02 02:12:02 +00:00
|
|
|
nvmem-cells = <&eeprom_factory_0>;
|
|
|
|
nvmem-cell-names = "eeprom";
|
2016-05-10 10:41:46 +00:00
|
|
|
};
|
|
|
|
|
2019-12-22 20:26:01 +00:00
|
|
|
&state_default {
|
|
|
|
default {
|
2020-04-12 12:58:29 +00:00
|
|
|
groups = "i2c", "uartf", "spi refclk", "wled";
|
|
|
|
function = "gpio";
|
2016-05-10 10:41:46 +00:00
|
|
|
};
|
|
|
|
};
|