ramips: convert MT7603 EEPROM to NVMEM format
[openwrt/staging/nbd.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 macaddr_factory_e000: macaddr@e000 {
108 reg = <0xe000 0x6>;
109 };
110 };
111
112 partition@50000 {
113 compatible = "denx,uimage";
114 reg = <0x50000 0xfb0000>;
115 label = "firmware";
116 };
117 };
118 };
119 };
120
121 &pcie {
122 status = "okay";
123 };
124
125 &pcie0 {
126 wifi@0,0 {
127 compatible = "pci14c3,7603";
128 reg = <0x0000 0 0 0 0>;
129 nvmem-cells = <&eeprom_factory_0>;
130 nvmem-cell-names = "eeprom";
131 };
132 };
133
134 &pcie1 {
135 wifi@0,0 {
136 compatible = "pci14c3,7662";
137 reg = <0x0000 0 0 0 0>;
138 mediatek,mtd-eeprom = <&factory 0x8000>;
139 ieee80211-freq-limit = <5000000 6000000>;
140
141 led {
142 led-sources = <2>;
143 };
144 };
145 };
146
147 &gmac0 {
148 nvmem-cells = <&macaddr_factory_e000>;
149 nvmem-cell-names = "mac-address";
150 };
151
152 &gmac1 {
153 status = "okay";
154 label = "wan";
155 phy-handle = <&ethphy4>;
156
157 nvmem-cells = <&macaddr_factory_e000>;
158 nvmem-cell-names = "mac-address";
159 };
160
161 &mdio {
162 ethphy4: ethernet-phy@4 {
163 reg = <4>;
164 };
165 };
166
167 &switch0 {
168 ports {
169 port@0 {
170 status = "okay";
171 label = "lan1";
172 };
173
174 port@1 {
175 status = "okay";
176 label = "lan2";
177 };
178
179 port@2 {
180 status = "okay";
181 label = "lan3";
182 };
183
184 port@3 {
185 status = "okay";
186 label = "lan4";
187 };
188 };
189 };