ramips: convert rt2x00 EEPROM to NVMEM format
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7621_xzwifi_creativebox-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 = "xzwifi,creativebox-v1", "mediatek,mt7621-soc";
10 model = "CreativeBox v1";
11
12 aliases {
13 led-boot = &led_sys;
14 led-failsafe = &led_sys;
15 led-running = &led_sys;
16 led-upgrade = &led_sys;
17 };
18
19 chosen {
20 bootargs = "console=ttyS0,115200";
21 };
22
23 leds {
24 compatible = "gpio-leds";
25
26 power {
27 label = "blue:power";
28 gpios = <&gpio 31 GPIO_ACTIVE_LOW>;
29 default-state = "on";
30 };
31
32 led_sys: sys {
33 label = "blue:sys";
34 gpios = <&gpio 32 GPIO_ACTIVE_LOW>;
35 };
36
37 internet {
38 label = "blue:internet";
39 gpios = <&gpio 29 GPIO_ACTIVE_LOW>;
40 };
41
42 wlan2g {
43 label = "blue:wlan2g";
44 gpios = <&gpio 33 GPIO_ACTIVE_LOW>;
45 linux,default-trigger = "phy0tpt";
46 };
47
48 wlan5g {
49 label = "blue:wlan5g";
50 gpios = <&gpio 28 GPIO_ACTIVE_LOW>;
51 linux,default-trigger = "phy1tpt";
52 };
53 };
54
55 keys {
56 compatible = "gpio-keys";
57
58 reset {
59 label = "reset";
60 gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
61 linux,code = <KEY_RESTART>;
62 };
63 };
64
65 gpio_export {
66 compatible = "gpio-export";
67 #size-cells = <0>;
68
69 power_usb2 {
70 gpio-export,name = "power_usb2";
71 gpio-export,output = <1>;
72 gpios = <&gpio 22 GPIO_ACTIVE_HIGH>;
73 };
74
75 power_usb3 {
76 gpio-export,name = "power_usb3";
77 gpio-export,output = <1>;
78 gpios = <&gpio 25 GPIO_ACTIVE_HIGH>;
79 };
80
81 power_sata {
82 gpio-export,name = "power_sata";
83 gpio-export,output = <1>;
84 gpios = <&gpio 27 GPIO_ACTIVE_HIGH>;
85 };
86 };
87 };
88
89 &spi0 {
90 status = "okay";
91
92 flash@0 {
93 compatible = "jedec,spi-nor";
94 reg = <0>;
95 spi-max-frequency = <40000000>;
96 broken-flash-reset;
97
98 partitions {
99 compatible = "fixed-partitions";
100 #address-cells = <1>;
101 #size-cells = <1>;
102
103 partition@0 {
104 label = "u-boot";
105 reg = <0x0 0x30000>;
106 read-only;
107 };
108
109 partition@30000 {
110 label = "u-boot-env";
111 reg = <0x30000 0x10000>;
112 read-only;
113 };
114
115 factory: partition@40000 {
116 compatible = "nvmem-cells";
117 label = "factory";
118 reg = <0x40000 0x10000>;
119 #address-cells = <1>;
120 #size-cells = <1>;
121 read-only;
122
123 eeprom_factory_0: eeprom@0 {
124 reg = <0x0 0x400>;
125 };
126
127 eeprom_factory_8000: eeprom@8000 {
128 reg = <0x8000 0x200>;
129 };
130
131 macaddr_factory_e000: macaddr@e000 {
132 reg = <0xe000 0x6>;
133 };
134 };
135
136 partition@50000 {
137 compatible = "denx,uimage";
138 label = "firmware";
139 reg = <0x50000 0x1fb0000>;
140 };
141 };
142 };
143 };
144
145 &sdhci {
146 status = "okay";
147 };
148
149 &pcie {
150 status = "okay";
151 };
152
153 &pcie0 {
154 wifi@0,0 {
155 compatible = "pci1400,7603";
156 reg = <0x0000 0 0 0 0>;
157 nvmem-cells = <&eeprom_factory_0>;
158 nvmem-cell-names = "eeprom";
159 };
160 };
161
162 &pcie1 {
163 wifi@0,0 {
164 compatible = "pci14c3,7662";
165 reg = <0x0000 0 0 0 0>;
166 nvmem-cells = <&eeprom_factory_8000>;
167 nvmem-cell-names = "eeprom";
168 ieee80211-freq-limit = <5000000 6000000>;
169 };
170 };
171
172 &ethernet {
173 pinctrl-0 = <&mdio_pins>, <&rgmii1_pins>;
174 };
175
176 &gmac0 {
177 nvmem-cells = <&macaddr_factory_e000>;
178 nvmem-cell-names = "mac-address";
179 };
180
181 &switch0 {
182 ports {
183 port@0 {
184 status = "okay";
185 label = "lan1";
186 };
187
188 port@1 {
189 status = "okay";
190 label = "lan2";
191 };
192
193 port@2 {
194 status = "okay";
195 label = "lan3";
196 };
197
198 port@3 {
199 status = "okay";
200 label = "lan4";
201 };
202
203 port@4 {
204 status = "okay";
205 label = "wan";
206 nvmem-cells = <&macaddr_factory_e000>;
207 nvmem-cell-names = "mac-address";
208 mac-address-increment = <1>;
209 };
210 };
211 };
212
213 &state_default {
214 gpio {
215 groups = "wdt", "rgmii2";
216 function = "gpio";
217 };
218 };