kernel: update 3.18 to 3.18.14
[openwrt/svn-archive/archive.git] / target / linux / bcm53xx / patches-3.18 / 061-ARM-BCM5301X-Add-DT-for-Asus-RT-AC68U.patch
1 From b5f350c790ae6aaf3dda5a825d7e3fdeed731164 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
3 Date: Sat, 28 Mar 2015 15:01:38 +0100
4 Subject: [PATCH] ARM: BCM5301X: Add DT for Asus RT-AC68U
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
10 Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
11 ---
12 arch/arm/boot/dts/Makefile | 1 +
13 arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts | 83 +++++++++++++++++++++++++++++
14 2 files changed, 84 insertions(+)
15 create mode 100644 arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
16
17 --- a/arch/arm/boot/dts/Makefile
18 +++ b/arch/arm/boot/dts/Makefile
19 @@ -55,6 +55,7 @@ dtb-$(CONFIG_ARCH_ATLAS6) += atlas6-evb.
20 dtb-$(CONFIG_ARCH_AXXIA) += axm5516-amarillo.dtb
21 dtb-$(CONFIG_ARCH_BCM2835) += bcm2835-rpi-b.dtb
22 dtb-$(CONFIG_ARCH_BCM_5301X) += \
23 + bcm4708-asus-rt-ac68u.dtb \
24 bcm4708-buffalo-wzr-1750dhp.dtb \
25 bcm4708-luxul-xwc-1000.dtb \
26 bcm4708-netgear-r6250.dtb \
27 --- /dev/null
28 +++ b/arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
29 @@ -0,0 +1,83 @@
30 +/*
31 + * Broadcom BCM470X / BCM5301X ARM platform code.
32 + * DTS for Asus RT-AC68U
33 + *
34 + * Copyright (C) 2015 Rafał Miłecki <zajec5@gmail.com>
35 + *
36 + * Licensed under the GNU/GPL. See COPYING for details.
37 + */
38 +
39 +/dts-v1/;
40 +
41 +#include "bcm4708.dtsi"
42 +
43 +/ {
44 + compatible = "asus,rt-ac68u", "brcm,bcm4708";
45 + model = "Asus RT-AC68U (BCM4708)";
46 +
47 + chosen {
48 + bootargs = "console=ttyS0,115200";
49 + };
50 +
51 + memory {
52 + reg = <0x00000000 0x08000000>;
53 + };
54 +
55 + leds {
56 + compatible = "gpio-leds";
57 +
58 + usb2 {
59 + label = "bcm53xx:blue:usb2";
60 + gpios = <&chipcommon 0 GPIO_ACTIVE_LOW>;
61 + linux,default-trigger = "default-off";
62 + };
63 +
64 + power {
65 + label = "bcm53xx:blue:power";
66 + gpios = <&chipcommon 3 GPIO_ACTIVE_LOW>;
67 + linux,default-trigger = "default-on";
68 + };
69 +
70 + logo {
71 + label = "bcm53xx:white:logo";
72 + gpios = <&chipcommon 4 GPIO_ACTIVE_LOW>;
73 + linux,default-trigger = "default-on";
74 + };
75 +
76 + usb3 {
77 + label = "bcm53xx:blue:usb3";
78 + gpios = <&chipcommon 14 GPIO_ACTIVE_LOW>;
79 + linux,default-trigger = "default-off";
80 + };
81 + };
82 +
83 + gpio-keys {
84 + compatible = "gpio-keys";
85 + #address-cells = <1>;
86 + #size-cells = <0>;
87 +
88 + brightness {
89 + label = "Backlight";
90 + linux,code = <KEY_BRIGHTNESS_ZERO>;
91 + gpios = <&chipcommon 5 GPIO_ACTIVE_LOW>;
92 + };
93 +
94 + wps {
95 + label = "WPS";
96 + linux,code = <KEY_WPS_BUTTON>;
97 + gpios = <&chipcommon 7 GPIO_ACTIVE_LOW>;
98 + };
99 +
100 + restart {
101 + label = "Reset";
102 + linux,code = <KEY_RESTART>;
103 + gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>;
104 + };
105 +
106 + rfkill {
107 + label = "WiFi";
108 + linux,code = <KEY_RFKILL>;
109 + gpios = <&chipcommon 15 GPIO_ACTIVE_LOW>;
110 + };
111 + };
112 +};