blob: 8ade7def2e8aa1fbd4bbc18acaa7e3ef6ef75a0c [file] [log] [blame]
Rafał Miłecki26343bd2015-05-16 16:55:39 +02001/*
2 * Broadcom BCM470X / BCM5301X ARM platform code.
3 * DTS for Asus RT-AC87U
4 *
5 * Copyright (C) 2015 Rafał Miłecki <zajec5@gmail.com>
6 *
7 * Licensed under the GNU/GPL. See COPYING for details.
8 */
9
10/dts-v1/;
11
12#include "bcm4708.dtsi"
Hauke Mehrtensbb1d8fb2015-09-12 13:17:36 +020013#include "bcm5301x-nand-cs0-bch8.dtsi"
Rafał Miłecki26343bd2015-05-16 16:55:39 +020014
15/ {
16 compatible = "asus,rt-ac87u", "brcm,bcm4709", "brcm,bcm4708";
17 model = "Asus RT-AC87U";
18
19 chosen {
20 bootargs = "console=ttyS0,115200";
21 };
22
23 memory {
24 reg = <0x00000000 0x08000000>;
25 };
26
27 leds {
28 compatible = "gpio-leds";
29
30 wps {
31 label = "bcm53xx:blue:wps";
32 gpios = <&chipcommon 1 GPIO_ACTIVE_LOW>;
33 linux,default-trigger = "default-off";
34 };
35
36 power {
37 label = "bcm53xx:blue:power";
38 gpios = <&chipcommon 3 GPIO_ACTIVE_LOW>;
39 linux,default-trigger = "default-on";
40 };
41
42 wan {
43 label = "bcm53xx:red:wan";
44 gpios = <&chipcommon 5 GPIO_ACTIVE_LOW>;
45 linux,default-trigger = "default-off";
46 };
47 };
48
49 gpio-keys {
50 compatible = "gpio-keys";
51 #address-cells = <1>;
52 #size-cells = <0>;
53
54 wps {
55 label = "WPS";
56 linux,code = <KEY_WPS_BUTTON>;
57 gpios = <&chipcommon 2 GPIO_ACTIVE_LOW>;
58 };
59
60 restart {
61 label = "Reset";
62 linux,code = <KEY_RESTART>;
63 gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>;
64 };
65 };
66};