forked from Minki/linux
dd7733da69
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
58 lines
1.0 KiB
Plaintext
58 lines
1.0 KiB
Plaintext
/*
|
|
* Broadcom BCM470X / BCM5301X ARM platform code.
|
|
* DTS for Buffalo WZR-600DHP2
|
|
*
|
|
* Copyright (C) 2014 Rafał Miłecki <zajec5@gmail.com>
|
|
*
|
|
* Licensed under the GNU/GPL. See COPYING for details.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "bcm47081.dtsi"
|
|
|
|
/ {
|
|
compatible = "buffalo,wzr-600dhp2", "brcm,bcm47081", "brcm,bcm4708";
|
|
model = "Buffalo WZR-600DHP2 (BCM47081)";
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS0,115200";
|
|
};
|
|
|
|
memory {
|
|
reg = <0x00000000 0x08000000>;
|
|
};
|
|
|
|
gpio-keys {
|
|
compatible = "gpio-keys";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
poll-interval = <200>;
|
|
|
|
aoss {
|
|
label = "AOSS";
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
gpios = <&chipcommon 9 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
restart {
|
|
label = "Reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
/* Switch device mode? */
|
|
mode {
|
|
label = "Mode";
|
|
linux,code = <KEY_SETUP>;
|
|
gpios = <&chipcommon 14 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
eject {
|
|
label = "USB eject";
|
|
linux,code = <KEY_EJECTCD>;
|
|
gpios = <&chipcommon 15 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|