2016-09-08 22:57:31 +00:00
|
|
|
/dts-v1/;
|
|
|
|
|
2016-11-11 06:32:12 +00:00
|
|
|
#include "mt7628an.dtsi"
|
2016-09-08 22:57:31 +00:00
|
|
|
|
2017-07-29 02:14:07 +00:00
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
2016-09-08 22:57:31 +00:00
|
|
|
/ {
|
2017-07-29 02:14:07 +00:00
|
|
|
compatible = "mercury,mac1200r-v2", "mediatek,mt7628an-soc";
|
2016-09-08 22:57:31 +00:00
|
|
|
model = "Mercury MAC1200R v2";
|
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
aliases {
|
2018-08-28 04:54:27 +00:00
|
|
|
led-boot = &led_status;
|
|
|
|
led-failsafe = &led_status;
|
|
|
|
led-running = &led_status;
|
|
|
|
led-upgrade = &led_status;
|
2018-07-16 08:27:22 +00:00
|
|
|
};
|
|
|
|
|
2016-09-08 22:57:31 +00:00
|
|
|
chosen {
|
|
|
|
bootargs = "console=ttyS0,57600";
|
|
|
|
};
|
|
|
|
|
2018-12-30 11:42:53 +00:00
|
|
|
leds {
|
2016-09-08 22:57:31 +00:00
|
|
|
compatible = "gpio-leds";
|
2019-09-20 12:03:02 +00:00
|
|
|
|
2018-07-16 08:27:22 +00:00
|
|
|
led_status: status {
|
2016-09-08 22:57:31 +00:00
|
|
|
label = "mac1200rv2:green:status";
|
2017-07-29 02:14:07 +00:00
|
|
|
gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;
|
2016-09-08 22:57:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi0 {
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
m25p80@0 {
|
2017-02-02 21:11:23 +00:00
|
|
|
compatible = "jedec,spi-nor";
|
2016-09-08 22:57:31 +00:00
|
|
|
reg = <0 0>;
|
|
|
|
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 0x1d800>;
|
|
|
|
};
|
|
|
|
|
|
|
|
factory: partition@1d800 {
|
|
|
|
label = "factory_info";
|
|
|
|
reg = <0x1d800 0x800>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
art: partition@1e000 {
|
|
|
|
label = "art";
|
|
|
|
reg = <0x1e000 0x2000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@20000 {
|
|
|
|
label = "config";
|
|
|
|
reg = <0x20000 0x10000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@30000 {
|
|
|
|
label = "u-boot2";
|
|
|
|
reg = <0x30000 0x10000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@40000 {
|
2018-11-28 03:28:35 +00:00
|
|
|
compatible = "denx,uimage";
|
2018-08-01 20:32:34 +00:00
|
|
|
label = "firmware";
|
|
|
|
reg = <0x40000 0x7c0000>;
|
|
|
|
};
|
2016-09-08 22:57:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ðernet {
|
|
|
|
pinctrl-names = "default";
|
|
|
|
mtd-mac-address = <&factory 0xd>;
|
ramips: mt76x8: fix bogus mediatek,portmap
mt76x8 uses esw_rt3050 driver, which does not accept mediatek,portmap with
string values. Convert the strings to integers to make it work.
According to its switch setup, WRTnode 2P/2R have a WAN port at port 0,
so the correct value should be 0x3e.
tplink_8m.dtsi uses "llllw", but it does not match switch setups of any
device using the DTSI. Remove it from the DTSI and add correct value to DTS
for each device.
These devices have a WAN port at port 0. Set the value to 0x3e.
- tplink,archer-c20-v4
- tplink,archer-c50-v3
- tplink,tl-mr3420-v5
- tplink,tl-wr840n-v4
- tplink,tl-wr841n-v13
- tplink,tl-wr842n-v5
These devices have only one ethernet port. They don't need portmap setting.
- tplink,tl-wa801nd-v5
- tplink,tl-wr802n-v4
- tplink,tl-wr902ac-v3
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
2020-01-01 12:34:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
&esw {
|
|
|
|
mediatek,portmap = <0x2f>;
|
2016-09-08 22:57:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
&wmac {
|
|
|
|
status = "okay";
|
|
|
|
ralink,mtd-eeprom = <&art 0x0>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&pcie {
|
|
|
|
status = "okay";
|
2018-07-21 14:19:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
&pcie0 {
|
|
|
|
mt76@0,0 {
|
|
|
|
reg = <0x0000 0 0 0 0>;
|
|
|
|
mediatek,mtd-eeprom = <&art 0x1000>;
|
|
|
|
ieee80211-freq-limit = <5000000 6000000>;
|
2016-09-08 22:57:31 +00:00
|
|
|
};
|
|
|
|
};
|