mfd: rk8xx-core: Fix interrupt processing order for power key button
authorOndrej Jirman <megi@xff.cz>
Sat, 17 Feb 2024 19:56:13 +0000 (20:56 +0100)
committerLee Jones <lee@kernel.org>
Fri, 23 Feb 2024 16:14:45 +0000 (16:14 +0000)
Process rise event last, to avoid stuck keys when multiple interrupts
are coalesced. This can happen typically when resuming from suspend
via power key press and holding the power button for a bit too short,
so that RISE an FALL IRQ flags are set before any interrupt routine
has a chance to run.

Input subsystem will interpret it as holding down a power key for
a long time, which leads to unintended initiation of shutdown UI
on some OSes.

Signed-off-by: Ondrej Jirman <megi@xff.cz>
Link: https://lore.kernel.org/r/20240217195615.1767907-1-megi@xff.cz
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/mfd/rk8xx-core.c

index b1ffc3b9e2be70a4ccfb6928700d1c9d83309813..e2261b68b844dd012ee0f8ee963f5079d2cbda91 100644 (file)
@@ -43,8 +43,8 @@ static struct resource rk806_pwrkey_resources[] = {
 };
 
 static const struct resource rk817_pwrkey_resources[] = {
-       DEFINE_RES_IRQ(RK817_IRQ_PWRON_RISE),
        DEFINE_RES_IRQ(RK817_IRQ_PWRON_FALL),
+       DEFINE_RES_IRQ(RK817_IRQ_PWRON_RISE),
 };
 
 static const struct resource rk817_charger_resources[] = {