mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-28 06:10:06 +01:00
evdev: disable the mode button on the Cyborg RAT 5
This button sends a release N, press N+1 on each press, cycling through the three event codes supported. This causes a stuck button since the current mode is never released. Long-term this better served by a set of switches that toggle accordingly, for now disable the button codes. https://bugs.freedesktop.org/show_bug.cgi?id=92127 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
7381ea7a5c
commit
e19d5d228c
9 changed files with 156 additions and 0 deletions
36
src/evdev.c
36
src/evdev.c
|
|
@ -1677,6 +1677,7 @@ evdev_read_model_flags(struct evdev_device *device)
|
|||
{ "LIBINPUT_MODEL_JUMPING_SEMI_MT", EVDEV_MODEL_JUMPING_SEMI_MT },
|
||||
{ "LIBINPUT_MODEL_ELANTECH_TOUCHPAD", EVDEV_MODEL_ELANTECH_TOUCHPAD },
|
||||
{ "LIBINPUT_MODEL_APPLE_INTERNAL_KEYBOARD", EVDEV_MODEL_APPLE_INTERNAL_KEYBOARD },
|
||||
{ "LIBINPUT_MODEL_CYBORG_RAT", EVDEV_MODEL_CYBORG_RAT },
|
||||
{ NULL, EVDEV_MODEL_DEFAULT },
|
||||
};
|
||||
const struct model_map *m = model_map;
|
||||
|
|
@ -2249,6 +2250,39 @@ evdev_drain_fd(int fd)
|
|||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
evdev_pre_configure_model_quirks(struct evdev_device *device)
|
||||
{
|
||||
/* The Cyborg RAT has a mode button that cycles through event codes.
|
||||
* On press, we get a release for the current mode and a press for the
|
||||
* next mode:
|
||||
* E: 0.000001 0004 0004 589833 # EV_MSC / MSC_SCAN 589833
|
||||
* E: 0.000001 0001 0118 0000 # EV_KEY / (null) 0
|
||||
* E: 0.000001 0004 0004 589834 # EV_MSC / MSC_SCAN 589834
|
||||
* E: 0.000001 0001 0119 0001 # EV_KEY / (null) 1
|
||||
* E: 0.000001 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +0ms
|
||||
* E: 0.705000 0004 0004 589834 # EV_MSC / MSC_SCAN 589834
|
||||
* E: 0.705000 0001 0119 0000 # EV_KEY / (null) 0
|
||||
* E: 0.705000 0004 0004 589835 # EV_MSC / MSC_SCAN 589835
|
||||
* E: 0.705000 0001 011a 0001 # EV_KEY / (null) 1
|
||||
* E: 0.705000 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +705ms
|
||||
* E: 1.496995 0004 0004 589833 # EV_MSC / MSC_SCAN 589833
|
||||
* E: 1.496995 0001 0118 0001 # EV_KEY / (null) 1
|
||||
* E: 1.496995 0004 0004 589835 # EV_MSC / MSC_SCAN 589835
|
||||
* E: 1.496995 0001 011a 0000 # EV_KEY / (null) 0
|
||||
* E: 1.496995 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +791ms
|
||||
*
|
||||
* https://bugs.freedesktop.org/show_bug.cgi?id=92127
|
||||
*
|
||||
* Disable the event codes to avoid stuck buttons.
|
||||
*/
|
||||
if(device->model_flags & EVDEV_MODEL_CYBORG_RAT) {
|
||||
libevdev_disable_event_code(device->evdev, EV_KEY, 0x118);
|
||||
libevdev_disable_event_code(device->evdev, EV_KEY, 0x119);
|
||||
libevdev_disable_event_code(device->evdev, EV_KEY, 0x11a);
|
||||
}
|
||||
}
|
||||
|
||||
struct evdev_device *
|
||||
evdev_device_create(struct libinput_seat *seat,
|
||||
struct udev_device *udev_device)
|
||||
|
|
@ -2318,6 +2352,8 @@ evdev_device_create(struct libinput_seat *seat,
|
|||
matrix_init_identity(&device->abs.usermatrix);
|
||||
matrix_init_identity(&device->abs.default_calibration);
|
||||
|
||||
evdev_pre_configure_model_quirks(device);
|
||||
|
||||
if (evdev_configure_device(device) == -1)
|
||||
goto err;
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ enum evdev_device_model {
|
|||
EVDEV_MODEL_ELANTECH_TOUCHPAD = (1 << 11),
|
||||
EVDEV_MODEL_LENOVO_X220_TOUCHPAD_FW81 = (1 << 12),
|
||||
EVDEV_MODEL_APPLE_INTERNAL_KEYBOARD = (1 << 13),
|
||||
EVDEV_MODEL_CYBORG_RAT = (1 << 14),
|
||||
};
|
||||
|
||||
struct mt_slot {
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ liblitest_la_SOURCES = \
|
|||
litest-device-asus-rog-gladius.c \
|
||||
litest-device-atmel-hover.c \
|
||||
litest-device-bcm5974.c \
|
||||
litest-device-cyborg-rat-5.c \
|
||||
litest-device-elantech-touchpad.c \
|
||||
litest-device-generic-singletouch.c \
|
||||
litest-device-huion-pentablet.c \
|
||||
|
|
|
|||
|
|
@ -1299,6 +1299,38 @@ START_TEST(device_quirks_no_abs_mt_y)
|
|||
}
|
||||
END_TEST
|
||||
|
||||
START_TEST(device_quirks_cyborg_rat_mode_button)
|
||||
{
|
||||
struct litest_device *dev = litest_current_device();
|
||||
struct libinput_device *device = dev->libinput_device;
|
||||
struct libinput *li = dev->libinput;
|
||||
|
||||
ck_assert(!libinput_device_pointer_has_button(device, 0x118));
|
||||
ck_assert(!libinput_device_pointer_has_button(device, 0x119));
|
||||
ck_assert(!libinput_device_pointer_has_button(device, 0x11a));
|
||||
|
||||
litest_drain_events(li);
|
||||
|
||||
litest_event(dev, EV_KEY, 0x118, 0);
|
||||
litest_event(dev, EV_KEY, 0x119, 1);
|
||||
litest_event(dev, EV_SYN, SYN_REPORT, 0);
|
||||
|
||||
litest_assert_empty_queue(li);
|
||||
|
||||
litest_event(dev, EV_KEY, 0x119, 0);
|
||||
litest_event(dev, EV_KEY, 0x11a, 1);
|
||||
litest_event(dev, EV_SYN, SYN_REPORT, 0);
|
||||
|
||||
litest_assert_empty_queue(li);
|
||||
|
||||
litest_event(dev, EV_KEY, 0x11a, 0);
|
||||
litest_event(dev, EV_KEY, 0x118, 1);
|
||||
litest_event(dev, EV_SYN, SYN_REPORT, 0);
|
||||
|
||||
litest_assert_empty_queue(li);
|
||||
}
|
||||
END_TEST
|
||||
|
||||
void
|
||||
litest_setup_tests(void)
|
||||
{
|
||||
|
|
@ -1356,4 +1388,5 @@ litest_setup_tests(void)
|
|||
litest_add_no_device("device:invalid rel events", device_abs_rel);
|
||||
|
||||
litest_add_for_device("device:quirks", device_quirks_no_abs_mt_y, LITEST_ANKER_MOUSE_KBD);
|
||||
litest_add_for_device("device:quirks", device_quirks_cyborg_rat_mode_button, LITEST_CYBORG_RAT);
|
||||
}
|
||||
|
|
|
|||
71
test/litest-device-cyborg-rat-5.c
Normal file
71
test/litest-device-cyborg-rat-5.c
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* Copyright © 2013 Red Hat, Inc.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice (including the next
|
||||
* paragraph) shall be included in all copies or substantial portions of the
|
||||
* Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "litest.h"
|
||||
#include "litest-int.h"
|
||||
|
||||
static void litest_cyborg_rat_setup(void)
|
||||
{
|
||||
struct litest_device *d = litest_create_device(LITEST_CYBORG_RAT);
|
||||
litest_set_current_device(d);
|
||||
}
|
||||
|
||||
static struct input_id input_id = {
|
||||
.bustype = 0x3,
|
||||
.vendor = 0x6a3,
|
||||
.product = 0xcd5,
|
||||
};
|
||||
|
||||
static int events[] = {
|
||||
EV_KEY, BTN_LEFT,
|
||||
EV_KEY, BTN_RIGHT,
|
||||
EV_KEY, BTN_MIDDLE,
|
||||
EV_KEY, BTN_SIDE,
|
||||
EV_KEY, BTN_EXTRA,
|
||||
EV_KEY, BTN_FORWARD,
|
||||
EV_KEY, BTN_TASK,
|
||||
EV_KEY, 0x118,
|
||||
EV_KEY, 0x119,
|
||||
EV_KEY, 0x11a,
|
||||
EV_REL, REL_X,
|
||||
EV_REL, REL_Y,
|
||||
EV_REL, REL_WHEEL,
|
||||
-1 , -1,
|
||||
};
|
||||
|
||||
struct litest_test_device litest_cyborg_rat_device = {
|
||||
.type = LITEST_CYBORG_RAT,
|
||||
.features = LITEST_RELATIVE | LITEST_BUTTON | LITEST_WHEEL,
|
||||
.shortname = "cyborg_rat",
|
||||
.setup = litest_cyborg_rat_setup,
|
||||
.interface = NULL,
|
||||
|
||||
.name = "Saitek Cyborg R.A.T.5 Mouse",
|
||||
.id = &input_id,
|
||||
.absinfo = NULL,
|
||||
.events = events,
|
||||
};
|
||||
|
|
@ -375,6 +375,7 @@ extern struct litest_test_device litest_apple_keyboard_device;
|
|||
extern struct litest_test_device litest_anker_mouse_kbd_device;
|
||||
extern struct litest_test_device litest_waltop_tablet_device;
|
||||
extern struct litest_test_device litest_huion_tablet_device;
|
||||
extern struct litest_test_device litest_cyborg_rat_device;
|
||||
|
||||
struct litest_test_device* devices[] = {
|
||||
&litest_synaptics_clickpad_device,
|
||||
|
|
@ -416,6 +417,7 @@ struct litest_test_device* devices[] = {
|
|||
&litest_anker_mouse_kbd_device,
|
||||
&litest_waltop_tablet_device,
|
||||
&litest_huion_tablet_device,
|
||||
&litest_cyborg_rat_device,
|
||||
NULL,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -192,6 +192,7 @@ enum litest_device_type {
|
|||
LITEST_WACOM_ISDV4 = -38,
|
||||
LITEST_WALTOP = -39,
|
||||
LITEST_HUION_TABLET = -40,
|
||||
LITEST_CYBORG_RAT = -41,
|
||||
};
|
||||
|
||||
enum litest_device_feature {
|
||||
|
|
|
|||
|
|
@ -37,6 +37,13 @@ libinput:touchpad:input:b0005v05ACp*
|
|||
libinput:name:*Apple Inc. Apple Internal Keyboard*:dmi:*
|
||||
LIBINPUT_MODEL_APPLE_INTERNAL_KEYBOARD=1
|
||||
|
||||
##########################################
|
||||
# Cyborg
|
||||
##########################################
|
||||
# Saitek Cyborg R.A.T.5 Mouse
|
||||
libinput:mouse:input:b0003v06A3p0CD5*
|
||||
LIBINPUT_MODEL_CYBORG_RAT=1
|
||||
|
||||
##########################################
|
||||
# Elantech
|
||||
##########################################
|
||||
|
|
|
|||
|
|
@ -29,6 +29,10 @@ KERNELS=="*input*", \
|
|||
ENV{ID_INPUT_TOUCHPAD}=="1", \
|
||||
IMPORT{builtin}="hwdb --subsystem=input --lookup-prefix=libinput:touchpad:"
|
||||
|
||||
# libinput:mouse:<modalias>
|
||||
ENV{ID_INPUT_MOUSE}=="1", \
|
||||
IMPORT{builtin}="hwdb --subsystem=input --lookup-prefix=libinput:mouse:"
|
||||
|
||||
# libinput:name:<name>:dmi:<dmi string>
|
||||
KERNELS=="input*", \
|
||||
IMPORT{builtin}="hwdb 'libinput:name:$attr{name}:$attr{[dmi/id]modalias}'"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue