ramips: convert MT7628 EEPROM to NVMEM format
[openwrt/staging/jow.git] / target / linux / ramips / dts / mt7628an_asus_rt-ac1200.dtsi
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include "mt7628an.dtsi"
4
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 aliases {
10 led-boot = &led_wps;
11 led-failsafe = &led_wps;
12 led-running = &led_wps;
13 led-upgrade = &led_wps;
14 label-mac-device = &ethernet;
15 };
16
17 keys {
18 compatible = "gpio-keys";
19
20 reset {
21 label = "reset";
22 gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
23 linux,code = <KEY_RESTART>;
24 };
25
26 wps {
27 label = "wps";
28 gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
29 linux,code = <KEY_WPS_BUTTON>;
30 };
31 };
32
33 leds {
34 compatible = "gpio-leds";
35
36 led_wps: wps {
37 label = "blue:wps";
38 gpios = <&gpio 37 GPIO_ACTIVE_LOW>;
39 };
40
41 wlan2g {
42 label = "blue:wlan2g";
43 gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
44 linux,default-trigger = "phy0tpt";
45 };
46 };
47 };
48
49 &spi0 {
50 status = "okay";
51
52 flash@0 {
53 compatible = "jedec,spi-nor";
54 reg = <0>;
55 spi-max-frequency = <58000000>;
56 m25p,fast-read;
57
58 partitions: partitions {
59 compatible = "fixed-partitions";
60 #address-cells = <1>;
61 #size-cells = <1>;
62
63 partition@0 {
64 label = "u-boot";
65 reg = <0x0 0x30000>;
66 read-only;
67 };
68
69 partition@30000 {
70 label = "u-boot-env";
71 reg = <0x30000 0x10000>;
72 read-only;
73 };
74
75 factory: partition@40000 {
76 compatible = "nvmem-cells";
77 label = "factory";
78 reg = <0x40000 0x10000>;
79 #address-cells = <1>;
80 #size-cells = <1>;
81 read-only;
82
83 eeprom_factory_0: eeprom@0 {
84 reg = <0x0 0x400>;
85 };
86
87 macaddr_factory_4: macaddr@4 {
88 reg = <0x4 0x6>;
89 };
90 };
91
92 partition@50000 {
93 compatible = "denx,uimage";
94 label = "firmware";
95 reg = <0x50000 0xfb0000>;
96 };
97 };
98 };
99 };
100
101 &gpio {
102 enable-leds {
103 gpio-hog;
104 line-name = "enable-leds";
105 output-low;
106 gpios = <4 GPIO_ACTIVE_HIGH>;
107 };
108 };
109
110 &ethernet {
111 nvmem-cells = <&macaddr_factory_4>;
112 nvmem-cell-names = "mac-address";
113 };
114
115 &esw {
116 mediatek,portmap = <0x3e>;
117 mediatek,led_source = <4>;
118 };
119
120 &wmac {
121 status = "okay";
122
123 nvmem-cells = <&eeprom_factory_0>;
124 nvmem-cell-names = "eeprom";
125 };
126
127 &pcie {
128 status = "okay";
129 };
130
131 &pcie0 {
132 mt76@0,0 {
133 compatible = "mediatek,mt76";
134 reg = <0x0000 0 0 0 0>;
135 mediatek,mtd-eeprom = <&factory 0x8000>;
136 ieee80211-freq-limit = <5000000 6000000>;
137
138 led {
139 led-sources = <2>;
140 led-active-low;
141 };
142 };
143 };