ramips: convert MT7603 EEPROM to NVMEM format
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7621_linksys_re7000.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 = "linksys,re7000", "mediatek,mt7621-soc";
10 model = "Linksys RE7000";
11
12 aliases {
13 led-boot = &led_power;
14 led-failsafe = &led_power;
15 led-running = &led_power;
16 led-upgrade = &led_power;
17 };
18
19 leds {
20 compatible = "gpio-leds";
21
22 wifi {
23 label = "orange:wifi";
24 gpios = <&gpio 9 GPIO_ACTIVE_HIGH>;
25 linux,default-trigger = "phy0tpt";
26 };
27
28 wps {
29 label = "orange:wps";
30 gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;
31 };
32
33 led_power: power {
34 label = "green:power";
35 gpios = <&gpio 25 GPIO_ACTIVE_HIGH>;
36 };
37 };
38
39 keys {
40 compatible = "gpio-keys";
41
42 wps {
43 label = "wps";
44 gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
45 linux,code = <KEY_WPS_BUTTON>;
46 };
47
48 reset {
49 label = "reset";
50 gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
51 linux,code = <KEY_RESTART>;
52 };
53 };
54 };
55
56 &spi0 {
57 status = "okay";
58
59 flash@0 {
60 compatible = "jedec,spi-nor";
61 reg = <0>;
62 spi-max-frequency = <10000000>;
63
64 partitions {
65 compatible = "fixed-partitions";
66 #address-cells = <1>;
67 #size-cells = <1>;
68
69 partition@0 {
70 label = "u-boot";
71 reg = <0x0 0x30000>;
72 read-only;
73 };
74
75 partition@30000 {
76 label = "u-boot-env";
77 reg = <0x30000 0x1000>;
78 };
79
80 partition@32000 {
81 label = "config";
82 reg = <0x32000 0xe000>;
83 read-only;
84 };
85
86 factory: partition@40000 {
87 compatible = "nvmem-cells";
88 label = "factory";
89 reg = <0x40000 0x10000>;
90 #address-cells = <1>;
91 #size-cells = <1>;
92 read-only;
93
94 eeprom_factory_0: eeprom@0 {
95 reg = <0x0 0x400>;
96 };
97
98 macaddr_factory_2e: macaddr@2e {
99 reg = <0x2e 0x6>;
100 };
101 };
102
103 partition@50000 {
104 compatible = "denx,uimage";
105 label = "firmware";
106 reg = <0x50000 0xfb0000>;
107 };
108 };
109 };
110 };
111
112 &state_default {
113 gpio {
114 groups = "i2c", "uart2", "rgmii2";
115 function = "gpio";
116 };
117 };
118
119 &pcie {
120 status = "okay";
121 };
122
123 &pcie0 {
124 mt76@0,0 {
125 reg = <0x0000 0 0 0 0>;
126 nvmem-cells = <&eeprom_factory_0>;
127 nvmem-cell-names = "eeprom";
128 ieee80211-freq-limit = <2400000 2500000>;
129 };
130 };
131
132 &pcie1 {
133 mt76@0,0 {
134 reg = <0x0000 0 0 0 0>;
135 mediatek,mtd-eeprom = <&factory 0x8000>;
136 ieee80211-freq-limit = <5000000 6000000>;
137 };
138 };
139
140 &gmac0 {
141 nvmem-cells = <&macaddr_factory_2e>;
142 nvmem-cell-names = "mac-address";
143 };
144
145 &ethernet {
146 pinctrl-0 = <&mdio_pins>, <&rgmii1_pins>;
147 };
148
149 &switch0 {
150 ports {
151 port@0 {
152 status = "okay";
153 label = "lan";
154 };
155 };
156 };