diff options
author | Tony Lindgren <tony@atomide.com> | 2020-12-30 16:07:40 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2021-01-25 09:24:26 +0100 |
commit | 177d8f1f7f47fe7c18ceb1d87893890d7e9c95a7 (patch) | |
tree | ae523f7c43878cbff136aaf1bf97600338b55377 | |
parent | drivers: bus: simple-pm-bus: Fix compatibility with simple-bus for auxdata (diff) | |
download | linux-177d8f1f7f47fe7c18ceb1d87893890d7e9c95a7.tar.xz linux-177d8f1f7f47fe7c18ceb1d87893890d7e9c95a7.zip |
ARM: dts: omap4-droid4: Fix lost keypad slide interrupts for droid4
We may lose edge interrupts for gpio banks other than the first gpio
bank as they are not always powered. Instead, we must use the padconf
interrupt as that is always powered.
Note that we still also use the gpio for reading the pin state as that
can't be done with the padconf device.
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/boot/dts/omap4-droid4-xt894.dts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap4-droid4-xt894.dts b/arch/arm/boot/dts/omap4-droid4-xt894.dts index 3ea4c5b9fd31..e833c21f1c01 100644 --- a/arch/arm/boot/dts/omap4-droid4-xt894.dts +++ b/arch/arm/boot/dts/omap4-droid4-xt894.dts @@ -16,8 +16,13 @@ debounce-interval = <10>; }; + /* + * We use pad 0x4a100116 abe_dmic_din3.gpio_122 as the irq instead + * of the gpio interrupt to avoid lost events in deeper idle states. + */ slider { label = "Keypad Slide"; + interrupts-extended = <&omap4_pmx_core 0xd6>; gpios = <&gpio4 26 GPIO_ACTIVE_HIGH>; /* gpio122 */ linux,input-type = <EV_SW>; linux,code = <SW_KEYPAD_SLIDE>; |