ramips: fix DTS EEPROM property for some MT7628 devices
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7621_huasifei_ws1208v2.dts
1 #include "mt7621.dtsi"
2
3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/input/input.h>
5
6 / {
7 compatible = "huasifei,ws1208v2", "mediatek,mt7621-soc";
8 model = "Huasifei WS1208V2";
9
10 aliases {
11 led-boot = &led_status;
12 led-failsafe = &led_status;
13 led-running = &led_status;
14 led-upgrade = &led_status;
15 label-mac-device = &gmac0;
16 };
17
18 chosen {
19 bootargs = "console=ttyS0,115200";
20 };
21
22 keys {
23 compatible = "gpio-keys";
24
25 button-reset {
26 label = "Reset";
27 gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
28 linux,code = <KEY_RESTART>;
29 };
30 };
31
32 leds {
33 compatible = "gpio-leds";
34
35 led_status: led-status {
36 label = "green:status";
37 gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
38 };
39
40 led-cellular {
41 label = "green:cellular";
42 gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
43 };
44
45 led-wlan5g {
46 label = "green:wlan5g";
47 gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
48 linux,default-trigger = "phy1tpt";
49 };
50
51 led-wlan2g {
52 label = "green:wlan2g";
53 gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
54 linux,default-trigger = "phy0tpt";
55 };
56
57 led-usb {
58 label = "green:usb";
59 gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
60 trigger-sources = <&xhci_ehci_port1>;
61 linux,default-trigger = "usbport";
62 };
63 };
64 };
65
66 &sdhci {
67 status = "okay";
68 };
69
70 &spi0 {
71 status = "okay";
72
73 flash@0 {
74 compatible = "jedec,spi-nor";
75 reg = <0>;
76 spi-max-frequency = <10000000>;
77
78 partitions {
79 compatible = "fixed-partitions";
80 #address-cells = <1>;
81 #size-cells = <1>;
82
83 partition@0 {
84 label = "u-boot";
85 reg = <0x0 0x30000>;
86 read-only;
87 };
88
89 partition@30000 {
90 label = "u-boot-env";
91 reg = <0x30000 0x10000>;
92 read-only;
93 };
94
95 factory: partition@40000 {
96 compatible = "nvmem-cells";
97 label = "factory";
98 reg = <0x40000 0x10000>;
99 #address-cells = <1>;
100 #size-cells = <1>;
101 read-only;
102
103 eeprom_factory_0: eeprom@0 {
104 reg = <0x0 0x400>;
105 };
106
107 eeprom_factory_8000: eeprom@8000 {
108 reg = <0x8000 0x200>;
109 };
110
111 macaddr_factory_e000: macaddr@e000 {
112 reg = <0xe000 0x6>;
113 };
114 };
115
116 partition@50000 {
117 compatible = "denx,uimage";
118 reg = <0x50000 0xfb0000>;
119 label = "firmware";
120 };
121 };
122 };
123 };
124
125 &pcie {
126 status = "okay";
127 };
128
129 &pcie0 {
130 wifi@0,0 {
131 compatible = "pci14c3,7603";
132 reg = <0x0000 0 0 0 0>;
133 nvmem-cells = <&eeprom_factory_0>;
134 nvmem-cell-names = "eeprom";
135 };
136 };
137
138 &pcie1 {
139 wifi@0,0 {
140 compatible = "pci14c3,7662";
141 reg = <0x0000 0 0 0 0>;
142 nvmem-cells = <&eeprom_factory_8000>;
143 nvmem-cell-names = "eeprom";
144 ieee80211-freq-limit = <5000000 6000000>;
145
146 led {
147 led-sources = <2>;
148 };
149 };
150 };
151
152 &gmac0 {
153 nvmem-cells = <&macaddr_factory_e000>;
154 nvmem-cell-names = "mac-address";
155 };
156
157 &gmac1 {
158 status = "okay";
159 label = "wan";
160 phy-handle = <&ethphy4>;
161
162 nvmem-cells = <&macaddr_factory_e000>;
163 nvmem-cell-names = "mac-address";
164 };
165
166 &mdio {
167 ethphy4: ethernet-phy@4 {
168 reg = <4>;
169 };
170 };
171
172 &switch0 {
173 ports {
174 port@0 {
175 status = "okay";
176 label = "lan1";
177 };
178
179 port@1 {
180 status = "okay";
181 label = "lan2";
182 };
183
184 port@2 {
185 status = "okay";
186 label = "lan3";
187 };
188
189 port@3 {
190 status = "okay";
191 label = "lan4";
192 };
193 };
194 };