ramips: convert MT7628 EEPROM to NVMEM format
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7628an_comfast_cf-wr617ac.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2 /dts-v1/;
3
4 #include "mt7628an.dtsi"
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 compatible = "comfast,cf-wr617ac", "mediatek,mt7628an-soc";
10 model = "Comfast CF-WR617AC";
11
12 keys {
13 compatible = "gpio-keys";
14 reset {
15 label = "reset";
16 gpios = <&gpio 38 GPIO_ACTIVE_LOW>;
17 linux,code = <KEY_RESTART>;
18 };
19 };
20
21 leds {
22 compatible = "gpio-leds";
23 led_status_blue: status_blue {
24 label = "blue:status";
25 gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
26 };
27 led_status_red: status_red {
28 label = "red:status";
29 gpios = <&gpio 37 GPIO_ACTIVE_LOW>;
30 };
31 };
32
33 aliases {
34 led-boot = &led_status_red;
35 led-failsafe = &led_status_red;
36 led-running = &led_status_blue;
37 led-upgrade = &led_status_red;
38 };
39
40
41 chosen {
42 bootargs = "console=ttyS0,115200";
43 };
44
45 };
46
47 &spi0 {
48 status = "okay";
49
50 flash@0 {
51 compatible = "jedec,spi-nor";
52 reg = <0>;
53 spi-max-frequency = <40000000>;
54
55 partitions {
56 compatible = "fixed-partitions";
57 #address-cells = <1>;
58 #size-cells = <1>;
59
60 partition@0 {
61 label = "u-boot";
62 reg = <0x0 0x30000>;
63 read-only;
64 };
65
66 partition@30000 {
67 label = "u-boot-env";
68 reg = <0x30000 0x10000>;
69 read-only;
70 };
71
72 factory: partition@40000 {
73 compatible = "nvmem-cells";
74 label = "factory";
75 reg = <0x40000 0x10000>;
76 #address-cells = <1>;
77 #size-cells = <1>;
78 read-only;
79
80 eeprom_factory_0: eeprom@0 {
81 reg = <0x0 0x400>;
82 };
83
84 macaddr_factory_8004: macaddr@8004 {
85 reg = <0x8004 0x6>;
86 };
87
88 macaddr_factory_e000: macaddr@e000 {
89 reg = <0xe000 0x6>;
90 };
91 };
92
93 partition@50000 {
94 compatible = "denx,uimage";
95 label = "firmware";
96 reg = <0x50000 0x760000>;
97 };
98 };
99 };
100 };
101
102 &pcie {
103 status = "okay";
104 };
105
106 &pcie0 {
107 wifi@0,0 {
108 compatible = "mediatek,mt76";
109 reg = <0x0000 0 0 0 0>;
110 mediatek,mtd-eeprom = <&factory 0x8000>;
111 ieee80211-freq-limit = <5000000 6000000>;
112 nvmem-cells = <&macaddr_factory_8004>;
113 nvmem-cell-names = "mac-address";
114 mac-address-increment = <2>;
115 };
116 };
117
118 &ethernet {
119 nvmem-cells = <&macaddr_factory_e000>;
120 nvmem-cell-names = "mac-address";
121 };
122
123 &esw {
124 mediatek,portmap = <0x2f>;
125 };
126
127 &wmac {
128 status = "okay";
129 nvmem-cells = <&eeprom_factory_0>;
130 nvmem-cell-names = "eeprom";
131 };