26bb9069108eab41068923e2358e461696513180
[openwrt/staging/dedeckeh.git] / target / linux / ath79 / dts / qca9563_tplink_deco-m4r-v1.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/input/input.h>
5
6 #include "qca956x.dtsi"
7
8 / {
9 compatible = "tplink,deco-m4r-v1", "qca,qca9563";
10 model = "TP-Link Deco M4R v1";
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 wlan2g {
23 label = "red:wlan2g";
24 gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
25 linux,default-trigger = "phy1tpt";
26 };
27
28 led_power: power {
29 label = "green:power";
30 gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
31 default-state = "on";
32 };
33
34 wlan5g {
35 label = "blue:wlan5g";
36 gpios = <&gpio 9 GPIO_ACTIVE_LOW>;
37 linux,default-trigger = "phy0tpt";
38 };
39 };
40
41
42 keys {
43 compatible = "gpio-keys";
44
45 reset {
46 label = "Reset button";
47 linux,code = <KEY_RESTART>;
48 gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
49 debounce-interval = <60>;
50 };
51 };
52 };
53
54 &pcie {
55 status = "okay";
56 };
57
58 &mdio0 {
59 status = "okay";
60 phy-mask = <0>;
61
62 phy0: ethernet-phy@0 {
63 reg = <0>;
64 phy-mode = "sgmii";
65 qca,mib-poll-interval = <500>;
66
67 qca,ar8327-initvals = <
68 0x04 0x00080080 /* PORT0 PAD MODE CTRL */
69 0x7c 0x0000007e /* PORT0_STATUS */
70 >;
71 };
72 };
73
74 &spi {
75 status = "okay";
76 num-cs = <1>;
77
78 flash@0 {
79 compatible = "jedec,spi-nor";
80 reg = <0>;
81 spi-max-frequency = <25000000>;
82
83 partitions {
84 compatible = "fixed-partitions";
85 #address-cells = <1>;
86 #size-cells = <1>;
87
88 uboot: partition@0 {
89 label = "u-boot";
90 reg = <0x000000 0x080000>;
91 read-only;
92 };
93
94 partition@80000 {
95 compatible = "denx,uimage";
96 label = "firmware";
97 reg = <0x080000 0xe00000>;
98 };
99
100 partition@e80000 {
101 label = "product-info";
102 reg = <0xe80000 0x05000>;
103 read-only;
104 };
105
106 config: partition@e85000 {
107 label = "config";
108 reg = <0xe85000 0x16b000>;
109 read-only;
110 };
111
112 art: partition@ff0000 {
113 label = "art";
114 reg = <0xff0000 0x010000>;
115 read-only;
116 };
117 };
118 };
119 };
120
121 &eth0 {
122 status = "okay";
123
124 phy-mode = "sgmii";
125 phy-handle = <&phy0>;
126
127 nvmem-cells = <&macaddr_config_8>;
128 nvmem-cell-names = "mac-address";
129 };
130
131 &wmac {
132 status = "okay";
133
134 mtd-cal-data = <&art 0x1000>;
135 nvmem-cells = <&macaddr_config_8>;
136 nvmem-cell-names = "mac-address";
137 };
138
139 &config {
140 compatible = "nvmem-cells";
141 #address-cells = <1>;
142 #size-cells = <1>;
143
144 macaddr_config_8: macaddr@8 {
145 reg = <0x8 0x6>;
146 };
147 };