ramips: convert mtd-mac-address to nvmem implementation
[openwrt/staging/mkresin.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 label = "factory";
117 reg = <0x40000 0x10000>;
118 read-only;
119 };
120
121 partition@50000 {
122 compatible = "denx,uimage";
123 label = "firmware";
124 reg = <0x50000 0x1fb0000>;
125 };
126 };
127 };
128 };
129
130 &sdhci {
131 status = "okay";
132 };
133
134 &pcie {
135 status = "okay";
136 };
137
138 &pcie0 {
139 wifi@0,0 {
140 compatible = "pci1400,7603";
141 reg = <0x0000 0 0 0 0>;
142 mediatek,mtd-eeprom = <&factory 0x0000>;
143 };
144 };
145
146 &pcie1 {
147 wifi@0,0 {
148 compatible = "pci14c3,7662";
149 reg = <0x0000 0 0 0 0>;
150 mediatek,mtd-eeprom = <&factory 0x8000>;
151 ieee80211-freq-limit = <5000000 6000000>;
152 };
153 };
154
155 &gmac0 {
156 nvmem-cells = <&macaddr_factory_e000>;
157 nvmem-cell-names = "mac-address";
158 };
159
160 &switch0 {
161 ports {
162 port@0 {
163 status = "okay";
164 label = "lan1";
165 };
166
167 port@1 {
168 status = "okay";
169 label = "lan2";
170 };
171
172 port@2 {
173 status = "okay";
174 label = "lan3";
175 };
176
177 port@3 {
178 status = "okay";
179 label = "lan4";
180 };
181
182 port@4 {
183 status = "okay";
184 label = "wan";
185 nvmem-cells = <&macaddr_factory_e000>;
186 nvmem-cell-names = "mac-address";
187 mac-address-increment = <1>;
188 };
189 };
190 };
191
192 &state_default {
193 gpio {
194 groups = "wdt", "rgmii2";
195 function = "gpio";
196 };
197 };
198
199 &factory {
200 compatible = "nvmem-cells";
201 #address-cells = <1>;
202 #size-cells = <1>;
203
204 macaddr_factory_e000: macaddr@e000 {
205 reg = <0xe000 0x6>;
206 };
207 };