Commit 5780c206 authored by Thierry Reding's avatar Thierry Reding

ARM: tegra: cardhu: Add power and volume keys

The Cardhu has a power key on the top-right as well as volume up and
volume down keys on the right side.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent a4b6916c
#include <dt-bindings/input/input.h>
#include "tegra30.dtsi"
/**
......@@ -615,4 +616,31 @@ sound {
<&tegra_car TEGRA30_CLK_EXTERN1>;
clock-names = "pll_a", "pll_a_out0", "mclk";
};
gpio-keys {
compatible = "gpio-keys";
power {
label = "Power";
interrupt-parent = <&pmic>;
interrupts = <2 0>;
linux,code = <KEY_POWER>;
debounce-interval = <100>;
gpio-key,wakeup;
};
volume-down {
label = "Volume Down";
gpios = <&gpio TEGRA_GPIO(R, 0) GPIO_ACTIVE_LOW>;
linux,code = <KEY_VOLUMEDOWN>;
debounce-interval = <10>;
};
volume-up {
label = "Volume Up";
gpios = <&gpio TEGRA_GPIO(R, 1) GPIO_ACTIVE_LOW>;
linux,code = <KEY_VOLUMEUP>;
debounce-interval = <10>;
};
};
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment