diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-07-25 10:02:44 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-07-25 10:02:44 +0000 |
commit | c8ebf766becbfbf41c228379cb304658748c906d (patch) | |
tree | 1055682a59cb2776cf942455c0e21a7599173004 /target | |
parent | 8e79e1da857c091dab1cadd247fd6ba80f59a1fc (diff) | |
download | upstream-c8ebf766becbfbf41c228379cb304658748c906d.tar.gz upstream-c8ebf766becbfbf41c228379cb304658748c906d.tar.bz2 upstream-c8ebf766becbfbf41c228379cb304658748c906d.zip |
CC: brcm63xx: HG553 buttons support
This patch adds buttons support for Huawei EchoLife HG553.
Backport of r46388.
Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@46486 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm63xx/dts/hg553.dts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/dts/hg553.dts b/target/linux/brcm63xx/dts/hg553.dts index 140e2de404..4d798246cf 100644 --- a/target/linux/brcm63xx/dts/hg553.dts +++ b/target/linux/brcm63xx/dts/hg553.dts @@ -6,6 +6,26 @@ model = "Huawei EchoLife HG553"; compatible = "huawei,hg553", "brcm,bcm6358"; + gpio-keys-polled { + compatible = "gpio-keys-polled"; + #address-cells = <1>; + #size-cells = <0>; + poll-interval = <20>; + debounce-interval = <60>; + + rfkill { + label = "rfkill"; + gpios = <&gpio0 9 1>; + linux,code = <0xf7>; + }; + + reset { + label = "reset"; + gpios = <&gpio1 5 1>; + linux,code = <0x198>; + }; + }; + gpio-leds { compatible = "gpio-leds"; |