mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] input: usb_kbd: make polling interval configurable
@ 2024-10-14 15:32 Ahmad Fatoum via B4 Relay
  2024-10-15  7:47 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum via B4 Relay @ 2024-10-14 15:32 UTC (permalink / raw)
  To: Sascha Hauer, BAREBOX; +Cc: Ahmad Fatoum

From: Ahmad Fatoum <a.fatoum@barebox.org>

We currently use whatever polling interval the keyboard reports, but in
some keyboard it can be useful to set a lower interval, e.g. for better
control of the snake in the barebox demo[1].

Add a parameter to make this possible.

[1]: https://fosstodon.org/@barebox/112983807569839989

Signed-off-by: Ahmad Fatoum <a.fatoum@barebox.org>
---
 drivers/input/usb_kbd.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/input/usb_kbd.c b/drivers/input/usb_kbd.c
index 2e75aabf3da4..d47e760a89ee 100644
--- a/drivers/input/usb_kbd.c
+++ b/drivers/input/usb_kbd.c
@@ -169,6 +169,11 @@ static int usb_kbd_probe(struct usb_device *usbdev,
 	data->intpktsize = min(usb_maxpacket(usbdev, data->intpipe),
 			       USB_KBD_BOOT_REPORT_SIZE);
 	data->intinterval = data->ep->bInterval;
+
+	dev_add_param_uint32(&usbdev->dev, "polling_interval",
+			     NULL, NULL, &data->intinterval, "%u",
+			     NULL);
+
 	/* test polling via interrupt endpoint */
 	data->do_poll = usb_kbd_int_poll;
 	ret = data->do_poll(data);

---
base-commit: ac1be0df8dce0a220e254005e1e07a0d23299f6b
change-id: 20241014-usb_kbd-polling_interval-0e84d06d8d35

Best regards,
-- 
Ahmad Fatoum <a.fatoum@barebox.org>





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

end of thread, other threads:[~2024-10-15  7:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-14 15:32 [PATCH] input: usb_kbd: make polling interval configurable Ahmad Fatoum via B4 Relay
2024-10-15  7:47 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox