ath79: enable UART in SoC DTSI files
[openwrt/openwrt.git] / target / linux / ath79 / dts / qca9558_tplink_re350k-v1.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 #include "qca955x.dtsi"
4
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7
8 / {
9 model = "TP-Link RE350K v1";
10 compatible = "tplink,re350k-v1", "qca,qca9558";
11
12 aliases {
13 led-boot = &led_power;
14 led-failsafe = &led_power;
15 led-running = &led_power;
16 led-upgrade = &led_power;
17 mdio-gpio0 = &mdio2;
18 };
19
20 keys {
21 compatible = "gpio-keys";
22
23 app-config {
24 label = "app-config";
25 linux,code = <BTN_0>;
26 gpios = <&gpio 20 GPIO_ACTIVE_LOW>;
27 debounce-interval = <60>;
28 };
29
30 led {
31 label = "led";
32 linux,code = <BTN_1>;
33 gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
34 debounce-interval = <60>;
35 };
36
37 reset {
38 label = "reset";
39 linux,code = <KEY_RESTART>;
40 gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
41 debounce-interval = <60>;
42 };
43 };
44
45 leds {
46 compatible = "gpio-leds";
47
48 led_power: power {
49 label = "green:power";
50 gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
51 default-state = "on";
52 };
53
54 wlan2g_green {
55 label = "green:wlan2g";
56 gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
57 linux,default-trigger = "phy1tpt";
58 };
59
60 wlan2g_red {
61 label = "red:wlan2g";
62 gpios = <&gpio 21 GPIO_ACTIVE_LOW>;
63 };
64
65 wlan5g_green {
66 label = "green:wlan5g";
67 gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
68 linux,default-trigger = "phy0tpt";
69 };
70
71 wlan5g_red {
72 label = "red:wlan5g";
73 gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
74 };
75 };
76
77 mdio2: mdio {
78 compatible = "virtual,mdio-gpio";
79
80 #address-cells = <1>;
81 #size-cells = <0>;
82
83 gpios = <&gpio 23 GPIO_ACTIVE_HIGH>,
84 <&gpio 18 GPIO_ACTIVE_HIGH>;
85
86 phy4: ethernet-phy@4 {
87 reg = <4>;
88
89 phy-mode = "rgmii-rxid";
90 eee-broken-100tx;
91 eee-broken-1000t;
92 };
93 };
94 };
95
96 &eth0 {
97 status = "okay";
98
99 phy-handle = <&phy4>;
100 pll-data = <0x9e000000 0x80000101 0x80001313>;
101
102 mtd-mac-address = <&info 0x8>;
103
104 gmac-config {
105 device = <&gmac>;
106
107 rxdv-delay = <2>;
108 rxd-delay = <2>;
109 txen-delay = <0>;
110 txd-delay = <0>;
111 rgmii-enabled = <1>;
112 };
113 };
114
115 &pcie0 {
116 status = "okay";
117 };
118
119 &spi {
120 status = "okay";
121
122 flash@0 {
123 compatible = "jedec,spi-nor";
124 reg = <0>;
125 spi-max-frequency = <25000000>;
126
127 partitions {
128 compatible = "fixed-partitions";
129 #address-cells = <1>;
130 #size-cells = <1>;
131
132 partition@0 {
133 label = "u-boot";
134 reg = <0x000000 0x020000>;
135 read-only;
136 };
137
138 partition@20000 {
139 compatible = "tplink,firmware";
140 label = "firmware";
141 reg = <0x020000 0xd70000>;
142 };
143
144 partition@d90000 {
145 label = "partition-table";
146 reg = <0xd90000 0x010000>;
147 read-only;
148 };
149
150 info: partition@da0000 {
151 label = "info";
152 reg = <0xda0000 0x020000>;
153 read-only;
154 };
155
156 partition@dc0000 {
157 label = "config";
158 reg = <0xdc0000 0x230000>;
159 read-only;
160 };
161
162 art: partition@ff0000 {
163 label = "art";
164 reg = <0xff0000 0x010000>;
165 read-only;
166 };
167 };
168 };
169 };
170
171 &wmac {
172 status = "okay";
173
174 mtd-cal-data = <&art 0x1000>;
175 mtd-mac-address = <&info 0x8>;
176 };