ath79: reduce spi-max-frequency to 50 MHz
[oweals/openwrt.git] / target / linux / ath79 / dts / ar9331_tplink_tl-mr3040-v2.dts
1 // SPDX-License-Identifier: GPL-2.0
2 /dts-v1/;
3
4 #include <dt-bindings/gpio/gpio.h>
5 #include <dt-bindings/input/input.h>
6
7 #include "ar9331.dtsi"
8
9 / {
10         model = "TP-Link TL-MR3040 V2";
11         compatible = "tplink,tl-mr3040-v2", "qca,ar9331";
12
13         aliases {
14                 led-boot = &led_lan;
15                 led-failsafe = &led_lan;
16                 label-mac-device = &eth0;
17         };
18
19         leds {
20                 compatible = "gpio-leds";
21
22                 pinctrl-names = "default";
23                 pinctrl-0 = <&switch_led_disable_pins>;
24
25                 wlan {
26                         label = "tp-link:green:wlan";
27                         gpios = <&gpio 26 GPIO_ACTIVE_LOW>;
28                         linux,default-trigger = "phy0tpt";
29                 };
30
31                 led_lan: lan {
32                         label = "tp-link:green:lan";
33                         gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
34                 };
35
36                 led3g {
37                         label = "tp-link:green:3g";
38                         gpios = <&gpio 27 GPIO_ACTIVE_LOW>;
39                         trigger-sources = <&hub_port>;
40                         linux,default-trigger = "usbport";
41                 };
42         };
43
44         keys {
45                 compatible = "gpio-keys";
46
47                 reset {
48                         label = "reset";
49                         linux,code = <KEY_RESTART>;
50                         gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
51                         debounce-interval = <60>;
52                 };
53
54                 sw1 {
55                         label = "sw1";
56                         linux,input-type = <EV_SW>;
57                         linux,code = <BTN_0>;
58                         gpios = <&gpio 19 GPIO_ACTIVE_HIGH>;
59                         debounce-interval = <60>;
60                 };
61
62                 sw2 {
63                         label = "sw2";
64                         linux,input-type = <EV_SW>;
65                         linux,code = <BTN_1>;
66                         gpios = <&gpio 20 GPIO_ACTIVE_HIGH>;
67                         debounce-interval = <60>;
68                 };
69         };
70
71         reg_usb_vbus: reg_usb_vbus {
72                 compatible = "regulator-fixed";
73                 regulator-name = "usb_vbus";
74                 regulator-min-microvolt = <5000000>;
75                 regulator-max-microvolt = <5000000>;
76                 gpio = <&gpio 18 GPIO_ACTIVE_HIGH>;
77                 enable-active-high;
78         };
79 };
80
81 &ref {
82         clock-frequency = <25000000>;
83 };
84
85 &uart {
86         status = "okay";
87 };
88
89 &gpio {
90         status = "okay";
91 };
92
93 &usb {
94         #address-cells = <1>;
95         #size-cells = <0>;
96         dr_mode = "host";
97         vbus-supply = <&reg_usb_vbus>;
98         status = "okay";
99
100         hub_port: port@1 {
101                 reg = <1>;
102                 #trigger-source-cells = <0>;
103         };
104 };
105
106 &usb_phy {
107         status = "okay";
108 };
109
110 &spi {
111         status = "okay";
112
113         num-chipselects = <1>;
114
115         flash@0 {
116                 compatible = "jedec,spi-nor";
117                 spi-max-frequency = <50000000>;
118                 reg = <0>;
119
120                 partitions {
121                         compatible = "fixed-partitions";
122                         #address-cells = <1>;
123                         #size-cells = <1>;
124
125                         uboot:  partition@0 {
126                                 label = "u-boot";
127                                 reg = <0x000000 0x020000>;
128                                 read-only;
129                         };
130
131                         partition@20000 {
132                                 compatible = "tplink,firmware";
133                                 label = "firmware";
134                                 reg = <0x020000 0x3d0000>;
135                         };
136
137                         art: partition@3f0000 {
138                                 label = "art";
139                                 reg = <0x3f0000 0x010000>;
140                                 read-only;
141                         };
142                 };
143         };
144 };
145
146 &eth0 {
147         status = "okay";
148
149         mtd-mac-address = <&uboot 0x1fc00>;
150         gmac-config {
151                 device = <&gmac>;
152
153                 switch-phy-addr-swap = <0>;
154                 switch-phy-swap = <0>;
155         };
156 };
157
158 &eth1 {
159         status = "okay";
160
161         compatible = "syscon", "simple-mfd";
162 };
163
164 &wmac {
165         status = "okay";
166
167         mtd-cal-data = <&art 0x1000>;
168         mtd-mac-address = <&uboot 0x1fc00>;
169 };