Skip to content

Commit be8fc02

Browse files
David Collinsdtor
authored andcommitted
Input: pm8941-pwrkey - simulate missed key press events
The status of the keys connected to the KPDPWR_N and RESIN_N pins is identified by reading corresponding bits in the interrupt real time status register. If the status has changed by the time that the interrupt is handled then a press event will be missed. Maintain a last known status variable to find unbalanced release events and simulate press events for each accordingly. Signed-off-by: David Collins <collinsd@codeaurora.org> Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com> Link: https://lore.kernel.org/r/20220422191239.6271-6-quic_amelende@quicinc.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent 0b65118 commit be8fc02

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

drivers/input/misc/pm8941-pwrkey.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ struct pm8941_pwrkey {
7777
u32 code;
7878
u32 sw_debounce_time_us;
7979
ktime_t sw_debounce_end_time;
80+
bool last_status;
8081
const struct pm8941_data *data;
8182
};
8283

@@ -167,6 +168,16 @@ static irqreturn_t pm8941_pwrkey_irq(int irq, void *_data)
167168
pwrkey->sw_debounce_end_time = ktime_add_us(ktime_get(),
168169
pwrkey->sw_debounce_time_us);
169170

171+
/*
172+
* Simulate a press event in case a release event occurred without a
173+
* corresponding press event.
174+
*/
175+
if (!pwrkey->last_status && !sts) {
176+
input_report_key(pwrkey->input, pwrkey->code, 1);
177+
input_sync(pwrkey->input);
178+
}
179+
pwrkey->last_status = sts;
180+
170181
input_report_key(pwrkey->input, pwrkey->code, sts);
171182
input_sync(pwrkey->input);
172183

0 commit comments

Comments
 (0)