diff options
author | Stephen Warren <swarren@nvidia.com> | 2014-09-02 19:57:09 +0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2014-09-03 19:10:58 +0400 |
commit | bf8f0392306869412887bf4a681fea9cb8062fc5 (patch) | |
tree | 45723a284935f2debd52853ab7cb6db7deae8f93 /arch/arm/boot/dts/tegra124-venice2.dts | |
parent | b10231344f64352bcfc1112b4d33c53e0a63fbcc (diff) | |
download | linux-bf8f0392306869412887bf4a681fea9cb8062fc5.tar.xz |
ARM: tegra: add touchpad to Venice2 DT
Venice2 contains an Atmel MXT touchpad. Add an I2C node for it to DT.
The Linux driver doesn't quite work on this platform yet, but adding
the DT node causes no issues, and will allow the device to work once
the driver is fixed.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/boot/dts/tegra124-venice2.dts')
-rw-r--r-- | arch/arm/boot/dts/tegra124-venice2.dts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/tegra124-venice2.dts b/arch/arm/boot/dts/tegra124-venice2.dts index 70ad91d1a20b..dcbe5858faf1 100644 --- a/arch/arm/boot/dts/tegra124-venice2.dts +++ b/arch/arm/boot/dts/tegra124-venice2.dts @@ -606,6 +606,14 @@ i2c@0,7000c400 { status = "okay"; clock-frequency = <100000>; + + trackpad@4b { + compatible = "atmel,maxtouch"; + reg = <0x4b>; + interrupt-parent = <&gpio>; + interrupts = <TEGRA_GPIO(W, 3) IRQ_TYPE_LEVEL_LOW>; + linux,gpio-keymap = <0 0 0 BTN_LEFT>; + }; }; i2c@0,7000c500 { |