ramips: add support for TP-Link Archer C6U v1 (EU)
[openwrt/staging/ynezz.git] / target / linux / ramips / dts / mt7621_tplink_archer-c6u-v1.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 = "tplink,archer-c6u-v1", "mediatek,mt7621-soc";
10 model = "TP-Link Archer C6U v1";
11
12 aliases {
13 led-boot = &led_power;
14 led-failsafe = &led_power;
15 led-running = &led_power;
16 led-upgrade = &led_power;
17 label-mac-device = &gmac0;
18 };
19
20 chosen {
21 bootargs = "console=ttyS0,115200";
22 };
23
24 keys {
25 compatible = "gpio-keys";
26
27 reset {
28 label = "reset";
29 gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
30 linux,code = <KEY_RESTART>;
31 };
32
33 wps {
34 label = "wps";
35 gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
36 linux,code = <KEY_WPS_BUTTON>;
37 };
38 };
39
40 leds {
41 compatible = "gpio-leds";
42
43 led_power: power {
44 label = "green:power";
45 gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
46 };
47
48 usb {
49 label = "green:usb";
50 gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
51 trigger-sources = <&ehci_port2>;
52 linux,default-trigger = "usbport";
53 };
54
55 wan-orange {
56 label = "orange:wan";
57 gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
58 };
59
60 lan {
61 label = "green:lan";
62 gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
63 };
64
65 wifi5g {
66 label = "green:wifi5g";
67 gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
68 linux,default-trigger = "phy1tpt";
69 };
70
71 wifi2g {
72 label = "green:wifi2g";
73 gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
74 linux,default-trigger = "phy0tpt";
75 };
76
77 wan-green {
78 label = "green:wan";
79 gpios = <&gpio 45 GPIO_ACTIVE_LOW>;
80 };
81 };
82
83 reg_usb_vbus: regulator {
84 compatible = "regulator-fixed";
85 regulator-name = "usb_vbus";
86 regulator-min-microvolt = <5000000>;
87 regulator-max-microvolt = <5000000>;
88 gpio = <&gpio 3 GPIO_ACTIVE_HIGH>;
89 enable-active-high;
90 };
91 };
92
93 &spi0 {
94 status = "okay";
95
96 flash@0 {
97 compatible = "jedec,spi-nor";
98 reg = <0>;
99 spi-max-frequency = <80000000>;
100
101 partitions {
102 compatible = "fixed-partitions";
103 #address-cells = <1>;
104 #size-cells = <1>;
105
106 partition@0 {
107 label = "u-boot";
108 reg = <0x000000 0x040000>;
109 read-only;
110 };
111
112 partition@40000 {
113 compatible = "denx,uimage";
114 label = "firmware";
115 reg = <0x040000 0xf60000>;
116 };
117
118 config: partition@fa0000 {
119 label = "config";
120 reg = <0xfa0000 0x010000>;
121 read-only;
122 };
123
124 partition@fb0000 {
125 label = "tplink";
126 reg = <0xfb0000 0x040000>;
127 read-only;
128 };
129
130 radio: partition@ff0000 {
131 label = "radio";
132 reg = <0xff0000 0x010000>;
133 read-only;
134 };
135 };
136 };
137 };
138
139 &pcie {
140 status = "okay";
141 };
142
143 &pcie0 {
144 mt76@0,0 {
145 compatible = "mediatek,mt76";
146 reg = <0x0000 0 0 0 0>;
147 mediatek,mtd-eeprom = <&radio 0x0>;
148 mtd-mac-address = <&config 0x8>;
149 ieee80211-freq-limit = <2400000 2500000>;
150 };
151 };
152
153 &pcie1 {
154 mt76@0,0 {
155 compatible = "mediatek,mt76";
156 reg = <0x0000 0 0 0 0>;
157 mediatek,mtd-eeprom = <&radio 0x8000>;
158 mtd-mac-address = <&config 0x8>;
159 mtd-mac-address-increment = <(-1)>;
160 ieee80211-freq-limit = <5000000 6000000>;
161 };
162 };
163
164 &ethernet {
165 pinctrl-names = "default";
166 pinctrl-0 = <&rgmii1_pins &mdio_pins>;
167 };
168
169 &gmac0 {
170 mtd-mac-address = <&config 0x8>;
171 };
172
173 &switch0 {
174 ports {
175 port@0 {
176 status = "okay";
177 label = "wan";
178 mtd-mac-address = <&config 0x8>;
179 mtd-mac-address-increment = <1>;
180 };
181
182 port@1 {
183 status = "okay";
184 label = "lan1";
185 };
186
187 port@2 {
188 status = "okay";
189 label = "lan2";
190 };
191
192 port@3 {
193 status = "okay";
194 label = "lan3";
195 };
196
197 port@4 {
198 status = "okay";
199 label = "lan4";
200 };
201 };
202 };
203
204 &state_default {
205 gpio {
206 groups = "i2c", "uart2", "uart3", "jtag", "wdt", "sdhci";
207 function = "gpio";
208 };
209 };
210
211 &xhci {
212 vbus-supply = <&reg_usb_vbus>;
213 };