ath79: qca: convert to nvmem-layout
[openwrt/staging/hauke.git] / target / linux / ath79 / dts / qca9533_tplink_cpexxx.dtsi
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include "qca953x.dtsi"
4
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 aliases {
10 led-boot = &led_link4;
11 led-failsafe = &led_link4;
12 led-running = &led_link4;
13 led-upgrade = &led_link4;
14 label-mac-device = &wmac;
15 };
16
17 leds: leds {
18 compatible = "gpio-leds";
19
20 link1 {
21 label = "green:link1";
22 gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
23 };
24
25 link2 {
26 label = "green:link2";
27 gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
28 };
29
30 link3 {
31 label = "green:link3";
32 gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
33 };
34
35 led_link4: link4 {
36 label = "green:link4";
37 gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
38 };
39 };
40
41 keys {
42 compatible = "gpio-keys";
43
44 reset {
45 label = "Reset button";
46 linux,code = <KEY_RESTART>;
47 gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
48 };
49 };
50 };
51
52 &spi {
53 status = "okay";
54
55 flash@0 {
56 #address-cells = <1>;
57 #size-cells = <1>;
58 compatible = "jedec,spi-nor";
59 reg = <0>;
60 spi-max-frequency = <25000000>;
61
62 partitions {
63 compatible = "fixed-partitions";
64 #address-cells = <1>;
65 #size-cells = <1>;
66
67 uboot: partition@0 {
68 label = "u-boot";
69 reg = <0x000000 0x020000>;
70 read-only;
71 };
72
73 partition@20000 {
74 label = "partition-table";
75 reg = <0x020000 0x010000>;
76 read-only;
77 };
78
79 info: partition@30000 {
80 label = "info";
81 reg = <0x030000 0x010000>;
82 read-only;
83
84 nvmem-layout {
85 compatible = "fixed-layout";
86 #address-cells = <1>;
87 #size-cells = <1>;
88
89 macaddr_info_8: macaddr@8 {
90 reg = <0x8 0x6>;
91 };
92 };
93 };
94
95 partition@40000 {
96 label = "firmware";
97 reg = <0x040000 0x780000>;
98 compatible = "tplink,firmware";
99 };
100
101 config: partition@7c0000 {
102 label = "config";
103 reg = <0x7c0000 0x030000>;
104 read-only;
105 };
106
107 art: partition@7f0000 {
108 label = "art";
109 reg = <0x7f0000 0x010000>;
110 read-only;
111 };
112 };
113 };
114 };
115
116 &eth0 {
117 status = "okay";
118
119 phy-handle = <&swphy4>;
120
121 nvmem-cells = <&macaddr_info_8>;
122 nvmem-cell-names = "mac-address";
123 };
124
125 &wmac {
126 status = "okay";
127
128 mtd-cal-data = <&art 0x1000>;
129 nvmem-cells = <&macaddr_info_8>;
130 nvmem-cell-names = "mac-address";
131 };