All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Input: tm2-touchkey - report scan codes
@ 2021-10-13 11:23 Stephan Gerhold
  2021-10-13 11:23 ` [PATCH 2/2] Input: tm2-touchkey - allow changing keycodes from userspace Stephan Gerhold
  2021-10-16  3:27 ` [PATCH 1/2] Input: tm2-touchkey - report scan codes Dmitry Torokhov
  0 siblings, 2 replies; 4+ messages in thread
From: Stephan Gerhold @ 2021-10-13 11:23 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, ~postmarketos/upstreaming, Stephan Gerhold

Report the index of pressed touch key as MSC_SCAN code to userspace
so it is possible to identify which of the keys was pressed (not
just the function that is currently assigned to the key).

This is done similarly also in mcs_touchkey and mpr121_touchkey.

Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
---
 drivers/input/keyboard/tm2-touchkey.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/input/keyboard/tm2-touchkey.c b/drivers/input/keyboard/tm2-touchkey.c
index 6218b1c682ef..ce40ea2d940f 100644
--- a/drivers/input/keyboard/tm2-touchkey.c
+++ b/drivers/input/keyboard/tm2-touchkey.c
@@ -156,6 +156,8 @@ static irqreturn_t tm2_touchkey_irq_handler(int irq, void *devid)
 		goto out;
 	}
 
+	input_event(touchkey->input_dev, EV_MSC, MSC_SCAN, index);
+
 	if (data & TM2_TOUCHKEY_BIT_PRESS_EV) {
 		for (i = 0; i < touchkey->num_keycodes; i++)
 			input_report_key(touchkey->input_dev,
@@ -250,6 +252,7 @@ static int tm2_touchkey_probe(struct i2c_client *client,
 	touchkey->input_dev->name = TM2_TOUCHKEY_DEV_NAME;
 	touchkey->input_dev->id.bustype = BUS_I2C;
 
+	input_set_capability(touchkey->input_dev, EV_MSC, MSC_SCAN);
 	for (i = 0; i < touchkey->num_keycodes; i++)
 		input_set_capability(touchkey->input_dev, EV_KEY,
 				     touchkey->keycodes[i]);
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-16  3:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-13 11:23 [PATCH 1/2] Input: tm2-touchkey - report scan codes Stephan Gerhold
2021-10-13 11:23 ` [PATCH 2/2] Input: tm2-touchkey - allow changing keycodes from userspace Stephan Gerhold
2021-10-16  3:27   ` Dmitry Torokhov
2021-10-16  3:27 ` [PATCH 1/2] Input: tm2-touchkey - report scan codes Dmitry Torokhov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.