aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79/dts/ar7161_siemens_ws-ap3610.dts
blob: 8e0a80cb328ed92e0d5b7d1930f35744baf1997a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/dts-v1/;

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

#include "ar7100.dtsi"

/ {
	compatible = "siemens,ws-ap3610", "qca,ar7161";
	model = "Siemens WS-AP3610";

	chosen {
		bootargs = "console=ttyS0,115200";
	};

	aliases {
		led-boot = &led_power_green;
		led-failsafe = &led_power_red;
		led-running = &led_power_green;
		led-upgrade = &led_power_red;
		label-mac-device = &eth0;
	};

	extosc: ref {
		compatible = "fixed-clock";
		#clock-cells = <0>;
		clock-output-names = "ref";
		clock-frequency = <40000000>;
	};

	leds {
		compatible = "gpio-leds";

		led_power_green: led_power_green {
			label = "ws-ap3610:green:power";
			gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
		};

		led_power_red: led_power_red {
			label = "ws-ap3610:red:power";
			gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
		};

		led_wlan5_blue {
			label = "ws-ap3610:blue:wlan5";
			gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy0tpt";
		};

		led_wlan5_green {
			label = "ws-ap3610:green:wlan5";
			gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
		};

		led_wlan2_blue {
			label = "ws-ap3610:blue:wlan2";
			gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy1tpt";
		};

		led_wlan2_green {
			label = "ws-ap3610:green:wlan2";
			gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
		};
	};

	keys {
		compatible = "gpio-keys";

		reset {
			label = "reset";
			linux,code = <KEY_RESTART>;
			gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
		};
	};
};

&pcie0 {
	status = "okay";
};

&uart {
	status = "okay";
};

&mdio0 {
	status = "okay";

	phy0: ethernet-phy@0 {
		/*
		 * When the compatible-is missing, PHY autodetection
		 * is performed, but the PHY-ID reads all 0xff.
		 *
		 * Linux does not create the device in this case,
		 * and the reset is never even de-asserted.
		 */
		compatible = "ethernet-phy-id0143.bca2",
				"ethernet-phy-ieee802.3-c22";
		reg = <0>;

		resets = <&rst 8>;
		reset-names = "phy";
		reset-assert-us = <10000>;
		reset-deassert-us = <10000>;
	};
};

&eth0 {
	status = "okay";

	phy-mode = "rgmii-id";
	phy-handle = <&phy0>;
};

&spi {
	status = "okay";

	num-cs = <1>;

	flash@0 {
		compatible = "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <25000000>;

		partitions {
			compatible = "fixed-partitions";
			#address-cells = <1>;
			#size-cells = <1>;

			partition@0 {
				label = "u-boot";
				reg = <0x0 0x40000>;
				read-only;
			};

			partition@40000 {
				label = "u-boot-bak";
				reg = <0x40000 0x40000>;
				read-only;
			};

			partition@80000 {
				compatible = "denx,uimage";
				label = "firmware";
				reg = <0x80000 0xe00000>;
			};

			partition@e80000 {
				label = "cfg1";
				reg = <0xe80000 0x40000>;
				read-only;
			};

			partition@ec0000 {
				label = "cfg2";
				reg = <0xec0000 0x40000>;
				read-only;
			};

			partition@f00000 {
				label = "nvram1";
				reg = <0xf00000 0x40000>;
				read-only;
			};

			partition@f40000 {
				label = "nvram2";
				reg = <0xf40000 0x40000>;
				read-only;
			};

			partition@f80000 {
				label = "rsvd1";
				reg = <0xf80000 0x40000>;
				read-only;
			};

			partition@fc0000 {
				label = "rsvd2";
				reg = <0xfc0000 0x40000>;
				read-only;
			};
		};
	};
};