diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-04-03 07:31:48 -0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-04-04 19:17:43 -0400 |
commit | 5741a2560afa66dce9e53752888241310d8e7c93 (patch) | |
tree | a6c5a269408f388948cc177be1b02e2dc29682ca /arch/arm/boot/dts/tegra20-trimslice.dts | |
parent | 15d5ef4d9a1f6fd7bcf706e41f13d5029a91760f (diff) |
ARM: tegra: add power gpio keys to DT
This adds the power gpio key to DT and enable the wakeup of the gpio key
for the device. The Seaboard and paz00 already had the power gpio key
binding and the power key of Whistler was on KBC. So these boards' device
tree didn't include in this patch.
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/boot/dts/tegra20-trimslice.dts')
-rw-r--r-- | arch/arm/boot/dts/tegra20-trimslice.dts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/tegra20-trimslice.dts b/arch/arm/boot/dts/tegra20-trimslice.dts index 51b3a44fc063..f96870c4bdac 100644 --- a/arch/arm/boot/dts/tegra20-trimslice.dts +++ b/arch/arm/boot/dts/tegra20-trimslice.dts | |||
@@ -343,6 +343,17 @@ | |||
343 | }; | 343 | }; |
344 | }; | 344 | }; |
345 | 345 | ||
346 | gpio-keys { | ||
347 | compatible = "gpio-keys"; | ||
348 | |||
349 | power { | ||
350 | label = "Power"; | ||
351 | gpios = <&gpio 190 1>; /* gpio PX6, active low */ | ||
352 | linux,code = <116>; /* KEY_POWER */ | ||
353 | gpio-key,wakeup; | ||
354 | }; | ||
355 | }; | ||
356 | |||
346 | poweroff { | 357 | poweroff { |
347 | compatible = "gpio-poweroff"; | 358 | compatible = "gpio-poweroff"; |
348 | gpios = <&gpio 191 1>; /* gpio PX7, active low */ | 359 | gpios = <&gpio 191 1>; /* gpio PX7, active low */ |