ramips: set Netgear R6220 MAC NVMEM cell directly in the part node
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7621_edimax_re23s.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 #include <dt-bindings/mtd/partitions/uimage.h>
8
9 / {
10 compatible = "edimax,re23s", "mediatek,mt7621-soc";
11 model = "Edimax RE23S";
12
13 aliases {
14 led-boot = &led_power;
15 led-failsafe = &led_wifi_red;
16 led-running = &led_power;
17 led-upgrade = &led_power;
18 label-mac-device = &gmac0;
19 };
20
21 leds {
22 compatible = "gpio-leds";
23
24 led_power: power {
25 label = "green:power";
26 gpios = <&gpio 13 GPIO_ACTIVE_HIGH>;
27 };
28
29 wifi_green {
30 label = "green:wifi";
31 gpios = <&gpio 12 GPIO_ACTIVE_HIGH>;
32 };
33
34 wifi_amber {
35 label = "amber:wifi";
36 gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
37 };
38
39 led_wifi_red: wifi_red {
40 label = "red:wifi";
41 gpios = <&gpio 6 GPIO_ACTIVE_HIGH>;
42 };
43 };
44
45 keys {
46 compatible = "gpio-keys";
47
48 reset {
49 label = "reset";
50 gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
51 linux,code = <KEY_RESTART>;
52 };
53
54 wps {
55 label = "wps";
56 gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
57 linux,code = <KEY_WPS_BUTTON>;
58 };
59 };
60 };
61
62 &spi0 {
63 status = "okay";
64
65 flash@0 {
66 compatible = "jedec,spi-nor";
67 reg = <0>;
68 spi-max-frequency = <50000000>;
69 m25p,fast-read;
70
71 partitions {
72 compatible = "fixed-partitions";
73 #address-cells = <1>;
74 #size-cells = <1>;
75
76 partition@0 {
77 label = "bootloader";
78 reg = <0x0 0x30000>;
79 read-only;
80 };
81
82 partition@30000 {
83 label = "config";
84 reg = <0x30000 0x10000>;
85 read-only;
86 };
87
88 factory: partition@40000 {
89 label = "factory";
90 reg = <0x40000 0x10000>;
91 read-only;
92 };
93
94 partition@50000 {
95 label = "cimage";
96 reg = <0x50000 0x20000>;
97 read-only;
98 };
99
100 partition@70000 {
101 compatible = "openwrt,uimage", "denx,uimage";
102 openwrt,offset = <FW_EDIMAX_OFFSET>;
103 openwrt,partition-magic = <FW_MAGIC_EDIMAX>;
104 label = "firmware";
105 reg = <0x70000 0xf50000>;
106 };
107
108 partition@fc0000 {
109 label = "freespace";
110 reg = <0xfc0000 0x40000>;
111 read-only;
112 };
113 };
114 };
115 };
116
117 &pcie {
118 status = "okay";
119 };
120
121 &pcie0 {
122 wifi@0,0 {
123 compatible = "mediatek,mt76";
124 reg = <0x0000 0 0 0 0>;
125 mediatek,mtd-eeprom = <&factory 0x0>;
126 ieee80211-freq-limit = <2400000 2500000>;
127 };
128 };
129
130 &pcie1 {
131 wifi@0,0 {
132 compatible = "mediatek,mt76";
133 reg = <0x0000 0 0 0 0>;
134 mediatek,mtd-eeprom = <&factory 0x8000>;
135 ieee80211-freq-limit = <5000000 6000000>;
136 };
137 };
138
139 &gmac0 {
140 nvmem-cells = <&macaddr_factory_8004>;
141 nvmem-cell-names = "mac-address";
142 };
143
144 &switch0 {
145 ports {
146 port@4 {
147 status = "okay";
148 label = "lan";
149 };
150 };
151 };
152
153 &state_default {
154 gpio {
155 groups = "uart3", "uart2", "jtag", "wdt";
156 function = "gpio";
157 };
158 };
159
160 &xhci {
161 status = "disabled";
162 };
163
164 &factory {
165 compatible = "nvmem-cells";
166 #address-cells = <1>;
167 #size-cells = <1>;
168
169 macaddr_factory_8004: macaddr@8004 {
170 reg = <0x8004 0x6>;
171 };
172 };