ath79: add support for Qxwlan E600G v2 / E600GAC v2
[openwrt/openwrt.git] / target / linux / ath79 / dts / ar9344_devolo_magic-2-wifi.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include "ar9344.dtsi"
4
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 model = "Devolo Magic 2 Wifi";
10 compatible = "devolo,magic-2-wifi", "qca,ar9344";
11
12 aliases {
13 led-boot = &led_dlan_red;
14 led-failsafe = &led_dlan_red;
15 led-running = &led_dlan_white;
16 led-upgrade = &led_dlan_red;
17 };
18
19 leds {
20 compatible = "gpio-leds";
21
22 wlan {
23 label = "white:wlan";
24 gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
25 linux,default-trigger = "phy1tpt";
26 };
27
28 led_dlan_white: dlan_white {
29 label = "white:dlan";
30 gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
31 };
32
33 led_dlan_red: dlan_red {
34 label = "red:dlan";
35 gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
36 panic-indicator;
37 };
38 };
39
40 keys {
41 compatible = "gpio-keys";
42
43 reset {
44 label = "Reset button";
45 linux,code = <KEY_RESTART>;
46 gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
47 debounce-interval = <60>;
48 };
49
50 wifi {
51 label = "WIFI button";
52 linux,code = <KEY_RFKILL>;
53 gpios = <&gpio 20 GPIO_ACTIVE_HIGH>;
54 debounce-interval = <60>;
55 };
56
57 dlan {
58 label = "DLAN button";
59 linux,code = <BTN_0>;
60 gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
61 debounce-interval = <60>;
62 };
63 };
64 };
65
66 &gpio {
67 wlan_power {
68 gpio-hog;
69 line-name = "WLAN power";
70 gpios = <&gpio 21 GPIO_ACTIVE_HIGH>;
71 output-high;
72 };
73 };
74
75 &spi {
76 status = "okay";
77
78 num-cs = <1>;
79
80 flash@0 {
81 compatible = "jedec,spi-nor";
82 reg = <0>;
83 spi-max-frequency = <25000000>;
84
85 partitions {
86 compatible = "fixed-partitions";
87 #address-cells = <1>;
88 #size-cells = <1>;
89
90 uboot: partition@0 {
91 label = "u-boot";
92 reg = <0x0 0x40000>;
93 read-only;
94 };
95
96 partition@40000 {
97 label = "u-boot-env";
98 reg = <0x40000 0x10000>;
99 read-only;
100 };
101
102 partition@50000 {
103 label = "Config1";
104 reg = <0x50000 0x10000>;
105 read-only;
106 };
107
108 partition@60000 {
109 label = "Config2";
110 reg = <0x60000 0x10000>;
111 read-only;
112 };
113
114 partition@70000 {
115 compatible = "denx,uimage";
116 label = "firmware";
117 reg = <0x70000 0xf80000>;
118 };
119
120 art: partition@ff0000 {
121 label = "art";
122 reg = <0xff0000 0x10000>;
123 read-only;
124 };
125 };
126 };
127 };
128
129 &ref {
130 clock-frequency = <40000000>;
131 };
132
133 &uart {
134 status = "okay";
135 };
136
137 &eth0 {
138 status = "okay";
139
140 pll-data = <0x02000000 0x00000101 0x00001616>;
141
142 mtd-mac-address = <&art 0x1002>;
143 mtd-mac-address-increment = <2>;
144
145 phy-mode = "rgmii";
146 phy-handle = <&phy0>;
147 };
148
149 &wmac {
150 status = "okay";
151
152 mtd-cal-data = <&art 0x1000>;
153 };
154
155 &pcie {
156 status = "okay";
157
158 wifi@0,0 {
159 compatible = "qcom,ath10k";
160 reg = <0 0 0 0 0>;
161 };
162 };
163
164 &mdio0 {
165 status = "okay";
166
167 phy0: ethernet-phy@0 {
168 reg = <0>;
169 phy-mode = "rgmii";
170
171 qca,ar8327-initvals = <
172 /* PORT0: RGMII, MAC0/6 exchage, tx_delay 01, No rx_delay */
173 0x04 0x06400000
174 0x08 0x00000000 /* PORT5 PAD MODE CTRL */
175 0x0c 0x00000000 /* PORT6 PAD MODE CTRL */
176 0x7c 0x0000007e /* PORT0_STATUS */
177 >;
178 };
179 };