apm821xx: align gpio-keys node names with dt-schema
[openwrt/staging/hauke.git] / target / linux / apm821xx / dts / netgear-wndr4700.dts
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Device Tree Source for Netgear WNDR4700/WNDR4720 Series
4 *
5 * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
6 */
7
8 /dts-v1/;
9
10 #include <dt-bindings/thermal/thermal.h>
11 #include <dt-bindings/leds/common.h>
12 #include "apm82181.dtsi"
13
14 / {
15 model = "Netgear WNDR4700/WNDR4720 Series";
16 compatible = "netgear,wndr4700", "apm,bluestone";
17
18 aliases {
19 serial0 = &UART0;
20 };
21
22 chosen {
23 stdout-path = "/plb/opb/serial@ef600300:115200n8";
24 };
25
26 thermal-zones {
27 cpu_thermal: cpu-thermal {
28 polling-delay-passive = <10000>; /* milliseconds */
29 polling-delay = <20000>; /* milliseconds */
30
31 thermal-sensors = <&temp0 1>;
32
33 /*
34 * REVISIT:
35 *
36 * Add the <&drive_temp>; sensor there and wire up
37 * the coefficients = <1 1>; property.
38 *
39 * Note: The kernel does not yet support more than
40 * one sensor (see of_thermal.c's function:
41 * thermal_of_build_thermal_zon()). Once this is
42 * implemented.
43 */
44
45 trips {
46 /*
47 * Once the thermal governers are a bit smarter
48 * and do hysteresis properly, we can disable
49 * the fan when the HDD and CPU has < 39 C.
50 */
51 cpu_alert0: board-alert0 {
52 temperature = <25000>;
53 hysteresis = <2000>;
54 type = "active";
55 };
56
57 cpu_alert1: cpu-alert1 {
58 temperature = <27000>; /* millicelsius */
59 hysteresis = <2000>; /* millicelsius */
60 type = "active";
61 };
62
63 cpu_alert2: cpu-alert2 {
64 temperature = <65000>; /* millicelsius */
65 hysteresis = <2000>; /* millicelsius */
66 type = "active";
67 };
68
69 cpu_alert3: cpu-alert3 {
70 temperature = <70000>; /* millicelsius */
71 hysteresis = <2000>; /* millicelsius */
72 type = "active";
73 };
74
75 cpu_alert4: cpu-alert4 {
76 temperature = <75000>; /* millicelsius */
77 hysteresis = <2000>; /* millicelsius */
78 type = "active";
79 };
80
81 cpu_alert5: cpu-alert5 {
82 temperature = <80000>; /* millicelsius */
83 hysteresis = <2000>; /* millicelsius */
84 type = "active";
85 };
86
87 cpu_alert6: cpu-alert6 {
88 temperature = <85000>; /* millicelsius */
89 hysteresis = <2000>; /* millicelsius */
90 type = "active";
91 };
92
93 cpu_crit: cpu-crit {
94 temperature = <90000>; /* millicelsius */
95 hysteresis = <2000>; /* millicelsius */
96 type = "critical";
97 };
98 };
99
100 cooling-maps {
101 map0 {
102 trip = <&cpu_alert0>;
103 cooling-device = <&fan0 THERMAL_NO_LIMIT 0>;
104 };
105
106 map1 {
107 trip = <&cpu_alert1>;
108 cooling-device = <&fan0 1 1>;
109 };
110
111 map2 {
112 trip = <&cpu_alert2>;
113 cooling-device = <&fan0 2 4>;
114 };
115
116 map3 {
117 trip = <&cpu_alert3>;
118 cooling-device = <&fan0 4 8>;
119 };
120
121 map4 {
122 trip = <&cpu_alert4>;
123 cooling-device = <&fan0 9 12>;
124 };
125
126 map5 {
127 trip = <&cpu_alert5>;
128 cooling-device = <&fan0 13 15>;
129 };
130
131 map6 {
132 trip = <&cpu_alert6>;
133 cooling-device =<&fan0 16 THERMAL_NO_LIMIT>;
134 };
135 };
136 };
137 };
138 };
139
140 &CRYPTO {
141 status = "okay";
142 };
143
144 &PKA {
145 status = "okay";
146 };
147
148 &TRNG {
149 status = "okay";
150 };
151
152 &SATA1 {
153 status = "okay";
154
155 /*
156 * This drive may have a temperature sensor with a
157 * thermal zone we can use for thermal control of the
158 * chassis temperature using the fan.
159 */
160
161 drive_temp: sata-port@0 {
162 reg = <0>;
163 #thermal-sensor-cells = <0>;
164 };
165 };
166
167 &USBOTG0 {
168 status = "okay";
169 dr_mode = "host";
170 };
171
172 &ndfc {
173 status = "okay";
174 /* 128 MiB Nand Flash */
175 nand {
176 nand-is-boot-medium;
177
178 partitions {
179 compatible = "fixed-partitions";
180 #address-cells = <1>;
181 #size-cells = <1>;
182
183 partition@0 {
184 label = "uboot";
185 reg = <0x00000000 0x00180000>;
186 read-only;
187 };
188
189 partition@180000 {
190 label = "firmware";
191 reg = <0x00180000 0x01860000>;
192
193 compatible = "fixed-partitions";
194 #address-cells = <1>;
195 #size-cells = <1>;
196
197 partition@0 {
198 label = "kernel";
199 reg = <0x00000000 0x00380000>;
200
201 compatible = "fixed-partitions";
202 #address-cells = <1>;
203 #size-cells = <1>;
204
205 /*
206 * device-tree is @ 0x00180000 - 0x0019ffff
207 * kernel starts from 0x20000.
208 * this is coded into netgear's u-boot.
209 */
210 partition@0 {
211 label = "dtb";
212 reg = <0x00000000 0x20000>;
213 };
214 /*
215 * this partition will also contain a
216 * fake/empty rootfs at the end to fool
217 * Netgear's uboot rootfs integrety checks.
218 */
219 };
220
221 partition@380000 {
222 label = "ubi";
223 reg = <0x00380000 0x014e0000>;
224 };
225 };
226
227
228 /*
229 * Netgear's u-boot in the fw_recovery mode (can be
230 * triggered by holding the reset button, or if
231 * "bootm" fails) will not flash past this point
232 * (= 0x19E0000).
233 */
234
235 partition@19e0000 {
236 label = "config";
237 reg = <0x019e0000 0x00080000>;
238 read-only;
239 };
240
241 partition@1a60000 {
242 label = "pot";
243 reg = <0x01a60000 0x00080000>;
244 read-only;
245 };
246
247 partition@1ae0000 {
248 label = "traffic_meter";
249 reg = <0x01ae0000 0x00300000>;
250 read-only;
251 };
252
253 partition@1de0000 {
254 label = "language";
255 reg = <0x01de0000 0x001c0000>;
256 read-only;
257 };
258
259 partition@1fa0000 {
260 label = "ecos";
261 reg = <0x01fa0000 0x06020000>;
262 read-only;
263 };
264
265 partition@7fc0000 {
266 label = "wifi_data";
267 reg = <0x07fc0000 0x00040000>;
268 read-only;
269
270 compatible = "nvmem-cells";
271 #address-cells = <1>;
272 #size-cells = <1>;
273
274 macaddr_wifi_0: macaddr@0 {
275 reg = <0x0 0x6>;
276 };
277 macaddr_wifi_c: macaddr@c {
278 reg = <0xc 0x6>;
279 };
280
281 calibration_wifi_1000: calibration@1000 {
282 reg = <0x1000 0x440>;
283 };
284
285 calibration_wifi_5000: calibration@5000 {
286 reg = <0x5000 0x440>;
287 };
288 };
289 };
290 };
291 };
292
293 &UART0 {
294 status = "okay";
295 };
296
297 &GPIO0 {
298 status = "okay";
299 };
300
301 &IIC0 {
302 status = "okay";
303
304 fan0: fan@1b {
305 compatible = "microchip,tc654";
306 reg = <0x1b>;
307 #cooling-cells = <2>; /* min followed by max */
308
309 gpios = <&GPIO0 16 GPIO_ACTIVE_LOW>; /* fan status */
310 alarm-gpios = <&GPIO0 5 GPIO_ACTIVE_LOW>; /* fault */
311 interrupt-parent = <&UIC3>;
312 interrupts = <0x16 IRQ_TYPE_EDGE_FALLING>; /* fault */
313 };
314
315 temp0: temp@4d {
316 compatible = "gmt,g781";
317 reg = <0x4d>;
318 #thermal-sensor-cells = <1>;
319
320 /*
321 * The LM90 has two sensors:
322 * temp0 -> internal to LM90
323 * temp1 -> external NTC near CPU
324 */
325 };
326 };
327
328
329 &EMAC0 {
330 status = "okay";
331 phy-handle = <&phy0>;
332 fifo-entry-size = <10>;
333
334 mdio {
335 #address-cells = <1>;
336 #size-cells = <0>;
337 phy0: ethernet-phy@0 {
338 device_type = "ethernet-phy";
339 reg = <0>;
340 qca,mib-poll-interval = <500>;
341
342 qca,ar8327-initvals = <
343 0x0010 0x40000000
344 0x0624 0x007f7f7f
345 0x0004 0x07a00000 /* PAD0_MODE */
346 0x000c 0x01000000 /* PAD6_MODE */
347 0x007c 0x0000007e /* PORT0_STATUS */
348 >;
349 };
350 };
351 };
352
353 &POB0 {
354
355 keys {
356 compatible = "gpio-keys";
357
358 button-restart {
359 label = "Reset button";
360 gpios = <&GPIO0 15 GPIO_ACTIVE_LOW>;
361 linux,code = <KEY_RESTART>;
362 interrupt-parent = <&UIC1>;
363 interrupts = <0x14 IRQ_TYPE_EDGE_FALLING>;
364 debounce-interval = <60>;
365 };
366
367 button-backup_hd {
368 label = "Backup HD button";
369 gpios = <&GPIO0 19 GPIO_ACTIVE_LOW>;
370 linux,code = <BTN_0>;
371 interrupt-parent = <&UIC1>;
372 interrupts = <0x1e IRQ_TYPE_EDGE_FALLING>;
373 debounce-interval = <60>;
374 };
375
376 button-rfkill {
377 label = "RFKILL button";
378 gpios = <&GPIO0 20 GPIO_ACTIVE_LOW>;
379 linux,code = <KEY_RFKILL>;
380 interrupt-parent = <&UIC1>;
381 interrupts = <0x1f IRQ_TYPE_EDGE_FALLING>;
382 debounce-interval = <60>;
383 };
384
385 button-wps {
386 label = "WPS button";
387 gpios = <&GPIO0 23 GPIO_ACTIVE_LOW>;
388 linux,code = <KEY_WPS_BUTTON>;
389 interrupt-parent = <&UIC2>;
390 interrupts = <0x19 IRQ_TYPE_EDGE_FALLING>;
391 debounce-interval = <60>;
392 };
393 };
394
395 leds {
396 compatible = "gpio-leds";
397
398 led-0 {
399 color = <LED_COLOR_ID_GREEN>;
400 function = LED_FUNCTION_POWER;
401 gpios = <&GPIO0 8 GPIO_ACTIVE_HIGH>;
402 };
403
404 led-1 {
405 color = <LED_COLOR_ID_AMBER>;
406 function = LED_FUNCTION_FAULT;
407 gpios = <&GPIO0 9 GPIO_ACTIVE_LOW>;
408 panic-indicator;
409 };
410
411 led-2 {
412 color = <LED_COLOR_ID_BLUE>;
413 function = LED_FUNCTION_USB;
414 gpios = <&GPIO0 10 GPIO_ACTIVE_HIGH>;
415 trigger-sources = <&usb2_port 1>, <&usb2_port 2>,
416 <&usb3_port 1>, <&usb3_port 2>;
417 linux,default-trigger = "usbport";
418 };
419
420 led-3 {
421 color = <LED_COLOR_ID_WHITE>;
422 function = LED_FUNCTION_INDICATOR;
423 gpios = <&GPIO0 11 GPIO_ACTIVE_HIGH>;
424 };
425
426 led-4 {
427 color = <LED_COLOR_ID_YELLOW>;
428 function = LED_FUNCTION_WAN;
429 gpios = <&GPIO0 3 GPIO_ACTIVE_HIGH>;
430 };
431
432 led-5 {
433 color = <LED_COLOR_ID_GREEN>;
434 function = LED_FUNCTION_WAN;
435 gpios = <&GPIO0 12 GPIO_ACTIVE_HIGH>;
436 };
437
438 led-6 {
439 color = <LED_COLOR_ID_GREEN>;
440 function = LED_FUNCTION_DISK;
441 gpios = <&GPIO0 14 GPIO_ACTIVE_HIGH>;
442 linux,default-trigger = "disk-activity";
443 };
444
445 led-7 {
446 color = <LED_COLOR_ID_RED>;
447 function = LED_FUNCTION_DISK_ERR;
448 gpios = <&GPIO0 17 GPIO_ACTIVE_HIGH>;
449 };
450
451 led-8 {
452 color = <LED_COLOR_ID_BLUE>;
453 function = LED_FUNCTION_WLAN;
454 gpios = <&GPIO0 18 GPIO_ACTIVE_HIGH>;
455 linux,default-trigger = "phy0tpt";
456 };
457 };
458 };
459
460 &PCIE0 {
461 status = "okay";
462
463 /*
464 * relevant lspci topology:
465 *
466 * -+-[0000:40]---00.0-[41-7f]----00.0-[42-45]--+-02.0-[43]----00.0
467 * +-03.0-[44]----00.0
468 * \-04.0-[45]----00.0
469 *
470 */
471
472 bridge@64,0 {
473 reg = <0x00400000 0 0 0 0>;
474 #address-cells = <3>;
475 #size-cells = <2>;
476 ranges;
477
478 bridge@65,0 {
479 /* IDT PES4T4 PCI Express Switch */
480 compatible = "pci111d,803a";
481 reg = <0x00410000 0 0 0 0>;
482 #address-cells = <3>;
483 #size-cells = <2>;
484 ranges;
485
486 bridge@66,2 {
487 compatible = "pci111d,803a";
488 reg = <0x00421000 0 0 0 0>;
489 #address-cells = <3>;
490 #size-cells = <2>;
491 ranges;
492
493 wifi0: wifi@67,0 {
494 /* Atheros AR9380 5GHz */
495 compatible = "pci168c,0030";
496 reg = <0x00430000 0 0 0 0>;
497 interrupts = <3>; /* INTC */
498 nvmem-cell-names = "mac-address", "calibration";
499 nvmem-cells = <&macaddr_wifi_0>, <&calibration_wifi_1000>;
500
501 /*
502 * Because this was such a pain.
503 * Here's the full device path:
504 * pci0000:40/0000:40:00.0/0000:41:00.0/0000:42:02.0/0000:43:00.0
505 */
506 };
507 };
508
509 bridge@66,3 {
510 compatible = "pci111d,803a";
511 reg = <0x00421800 0 0 0 0>;
512 #address-cells = <3>;
513 #size-cells = <2>;
514 ranges;
515
516 wifi1: wifi@68,0 {
517 /* Atheros AR9381 2.4GHz */
518 compatible = "pci168c,0033";
519 reg = <0x00440000 0 0 0 0>;
520 interrupts = <4>; /* INTD */
521 nvmem-cell-names = "mac-address", "calibration";
522 nvmem-cells = <&macaddr_wifi_c>, <&calibration_wifi_5000>;
523 };
524 };
525
526 bridge@66,4 {
527 compatible = "pci111d,803a";
528 reg = <0x00422000 0 0 0 0>;
529 #address-cells = <3>;
530 #size-cells = <2>;
531 ranges;
532
533 usb1: usb@69,0 {
534 /* Renesas uPD720202 */
535 compatible = "pci1912,0015";
536 reg = <0x00450000 0 0 0 0>;
537 interrupts = <1>; /* INTA */
538
539 #address-cells = <1>;
540 #size-cells = <0>;
541
542 usb2_port: port@1 {
543 reg = <1>;
544 #trigger-source-cells = <1>;
545 };
546
547 usb3_port: port@2 {
548 reg = <2>;
549 #trigger-source-cells = <1>;
550 };
551 };
552 };
553 };
554 };
555 };