* [PATCH] HID: hid-kensington: add alternative button mapping
@ 2017-10-20 12:41 David Strobach
2017-10-20 13:15 ` David Strobach
0 siblings, 1 reply; 2+ messages in thread
From: David Strobach @ 2017-10-20 12:41 UTC (permalink / raw)
To: linux-input
The current mapping of the proprietary Kensington Slimblade buttons
is as follows:
+---+---+
| 2 | 8 |
+---X---+
| 1 | 3 |
+---+---+
This modification adds an alternative button mapping for users,
who prefer to use middle mouse button emulation (buttons 1+3) in
order to get one extra button at the top right. The alternative
button mapping is:
+---+---+
| 9 | 8 |
+---X---+
| 1 | 3 |
+---+---+
The desired behavior should ideally be achievable in userland,
but in reality only recent evdev Xorg driver since v2.10.5 is
able to handle middle mouse button remapping together with middle
button emulation.
---
drivers/hid/hid-kensington.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/drivers/hid/hid-kensington.c b/drivers/hid/hid-kensington.c
index fe9a99dd8d08..1673e461338f 100644
--- a/drivers/hid/hid-kensington.c
+++ b/drivers/hid/hid-kensington.c
@@ -20,6 +20,11 @@
#define ks_map_key(c) hid_map_usage(hi, usage, bit, max, EV_KEY, (c))
+static bool use_alt_mapping;
+module_param(use_alt_mapping, bool, S_IRUGO);
+MODULE_PARM_DESC(use_alt_mapping,
+ "Use alternative button mapping (default = false)");
+
static int ks_input_mapping(struct hid_device *hdev, struct hid_input *hi,
struct hid_field *field, struct hid_usage *usage,
unsigned long **bit, int *max)
@@ -28,8 +33,18 @@ static int ks_input_mapping(struct hid_device *hdev, struct
hid_input *hi,
return 0;
switch (usage->hid & HID_USAGE) {
- case 0x01: ks_map_key(BTN_MIDDLE); break;
- case 0x02: ks_map_key(BTN_SIDE); break;
+ case 0x01:
+ if (use_alt_mapping)
+ ks_map_key(BTN_SIDE);
+ else
+ ks_map_key(BTN_MIDDLE);
+ break;
+ case 0x02:
+ if (use_alt_mapping)
+ ks_map_key(BTN_EXTRA);
+ else
+ ks_map_key(BTN_SIDE);
+ break;
default:
return 0;
}
--
2.14.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] HID: hid-kensington: add alternative button mapping
2017-10-20 12:41 [PATCH] HID: hid-kensington: add alternative button mapping David Strobach
@ 2017-10-20 13:15 ` David Strobach
0 siblings, 0 replies; 2+ messages in thread
From: David Strobach @ 2017-10-20 13:15 UTC (permalink / raw)
To: linux-input
On 20/10/2017 14:41:33 CEST David Strobach wrote:
> The current mapping of the proprietary Kensington Slimblade buttons
> is as follows:
> +---+---+
>
> | 2 | 8 |
>
> +---X---+
>
> | 1 | 3 |
>
> +---+---+
>
> This modification adds an alternative button mapping for users,
> who prefer to use middle mouse button emulation (buttons 1+3) in
> order to get one extra button at the top right. The alternative
> button mapping is:
> +---+---+
>
> | 9 | 8 |
>
> +---X---+
>
> | 1 | 3 |
>
> +---+---+
Ouch, it's actually
+---+---+
| 8 | 9 |
+---X---+
| 1 | 3 |
+---+---+
Cheers
David
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-20 13:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-20 12:41 [PATCH] HID: hid-kensington: add alternative button mapping David Strobach
2017-10-20 13:15 ` David Strobach
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).