ramips: add support for Linksys RE7000
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7621_linksys_re7000.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include "mt7621.dtsi"
4
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 compatible = "linksys,re7000", "mediatek,mt7621-soc";
10 model = "Linksys RE7000";
11
12 aliases {
13 led-boot = &led_power;
14 led-failsafe = &led_power;
15 led-running = &led_power;
16 led-upgrade = &led_power;
17 };
18
19 leds {
20 compatible = "gpio-leds";
21
22 wifi {
23 label = "orange:wifi";
24 gpios = <&gpio 9 GPIO_ACTIVE_HIGH>;
25 linux,default-trigger = "phy0tpt";
26 };
27
28 wps {
29 label = "orange:wps";
30 gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;
31 };
32
33 led_power: power {
34 label = "green:power";
35 gpios = <&gpio 25 GPIO_ACTIVE_HIGH>;
36 };
37 };
38
39 keys {
40 compatible = "gpio-keys";
41
42 wps {
43 label = "wps";
44 gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
45 linux,code = <KEY_WPS_BUTTON>;
46 };
47
48 reset {
49 label = "reset";
50 gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
51 linux,code = <KEY_RESTART>;
52 };
53 };
54 };
55
56 &spi0 {
57 status = "okay";
58
59 flash@0 {
60 compatible = "jedec,spi-nor";
61 reg = <0>;
62 spi-max-frequency = <10000000>;
63
64 partitions {
65 compatible = "fixed-partitions";
66 #address-cells = <1>;
67 #size-cells = <1>;
68
69 partition@0 {
70 label = "u-boot";
71 reg = <0x0 0x30000>;
72 read-only;
73 };
74
75 partition@30000 {
76 label = "u-boot-env";
77 reg = <0x30000 0x1000>;
78 };
79
80 partition@32000 {
81 label = "config";
82 reg = <0x32000 0xe000>;
83 read-only;
84 };
85
86 factory: partition@40000 {
87 label = "factory";
88 reg = <0x40000 0x10000>;
89 read-only;
90 };
91
92 partition@50000 {
93 compatible = "denx,uimage";
94 label = "firmware";
95 reg = <0x50000 0xfb0000>;
96 };
97 };
98 };
99 };
100
101 &state_default {
102 gpio {
103 groups = "i2c", "uart2", "rgmii2";
104 function = "gpio";
105 };
106 };
107
108 &pcie {
109 status = "okay";
110 };
111
112 &pcie0 {
113 mt76@0,0 {
114 reg = <0x0000 0 0 0 0>;
115 mediatek,mtd-eeprom = <&factory 0x0000>;
116 ieee80211-freq-limit = <2400000 2500000>;
117 };
118 };
119
120 &pcie1 {
121 mt76@0,0 {
122 reg = <0x0000 0 0 0 0>;
123 mediatek,mtd-eeprom = <&factory 0x8000>;
124 ieee80211-freq-limit = <5000000 6000000>;
125 };
126 };
127
128 &gmac0 {
129 nvmem-cells = <&macaddr_factory_2e>;
130 nvmem-cell-names = "mac-address";
131 };
132
133 &ethernet {
134 pinctrl-0 = <&mdio_pins>, <&rgmii1_pins>;
135 };
136
137 &switch0 {
138 ports {
139 port@0 {
140 status = "okay";
141 label = "lan";
142 };
143 };
144 };
145
146 &factory {
147 compatible = "nvmem-cells";
148 #address-cells = <1>;
149 #size-cells = <1>;
150
151 macaddr_factory_2e: macaddr@2e {
152 reg = <0x2e 0x6>;
153 };
154 };