forked from hannesmann/gcadapter-oc-kmod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wmo_oc.c
153 lines (120 loc) · 4.77 KB
/
wmo_oc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/usb.h>
#define WMO_VID 0x045e
#define WMO_PID 0x0040
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Sebastián Zambrano");
MODULE_DESCRIPTION("Filter kernel module to set the polling rate of the WMO to a custom value on XHCI.");
MODULE_VERSION("1.0");
static struct usb_device* adapter_device = NULL;
static unsigned short restore_interval = 8;
static unsigned short configured_interval = 1;
/* Patches all applicable endpoints. Returns the bInterval value used before patching. */
static unsigned short patch_endpoints(unsigned short interval) {
static unsigned short old_interval = 8;
if(adapter_device != NULL && adapter_device->actconfig != NULL) {
struct usb_interface* interface = adapter_device->actconfig->interface[0];
if(interface != NULL) {
for(unsigned int altsetting = 0; altsetting < interface->num_altsetting; altsetting++) {
struct usb_host_interface* altsettingptr = &interface->altsetting[altsetting];
for(__u8 endpoint = 0; endpoint < altsettingptr->desc.bNumEndpoints; endpoint++) {
if(altsettingptr->endpoint[endpoint].desc.bEndpointAddress == 0x81 || altsettingptr->endpoint[endpoint].desc.bEndpointAddress == 0x02) {
old_interval = altsettingptr->endpoint[endpoint].desc.bInterval;
altsettingptr->endpoint[endpoint].desc.bInterval = interval;
printk(KERN_INFO "wmo_oc: bInterval value of endpoint 0x%.2x set to %u.\n", altsettingptr->endpoint[endpoint].desc.bEndpointAddress, interval);
}
}
}
/*
* Attempt to lock the device.
* This is required by the kernel documentation but it seems that some systems won't let you lock the USB device.
* Older versions before 1.2 never called this function and still worked so we proceed even if locking fails.
*/
int ret = usb_lock_device_for_reset(adapter_device, NULL);
if(ret) {
printk(KERN_ERR "wmo_oc: Warning! Failed to acquire lock for USB device (error: %d). Resetting device anyway...\n", ret);
}
/* TODO: It might be possible to make the new bInterval value take effect without calling usb_reset_device? */
if(usb_reset_device(adapter_device)) {
printk(KERN_ERR "wmo_oc: Could not reset device (error: %d). bInterval value was NOT changed.\n", ret);
}
/* Only unlock the device if usb_lock_device_for_reset succeeded. */
if(!ret) {
usb_unlock_device(adapter_device);
}
}
}
return old_interval;
}
static int on_usb_notify(struct notifier_block* self, unsigned long action, void* _device) {
struct usb_device* device = _device;
switch(action) {
case USB_DEVICE_ADD:
if(device->descriptor.idVendor == WMO_VID && device->descriptor.idProduct == WMO_PID && adapter_device == NULL) {
adapter_device = device;
printk(KERN_INFO "wmo_oc: Overclockable mouse connected\n");
restore_interval = patch_endpoints(configured_interval);
}
break;
case USB_DEVICE_REMOVE:
if(adapter_device == device) {
adapter_device = NULL;
printk(KERN_INFO "wmo_oc: Overclockable mouse disconnected\n");
}
break;
}
return NOTIFY_OK;
}
static struct notifier_block usb_nb = { .notifier_call = on_usb_notify };
static int usb_device_cb(struct usb_device* device, void* data) {
if(device->descriptor.idVendor == WMO_VID && device->descriptor.idProduct == WMO_PID && adapter_device == NULL) {
adapter_device = device;
printk(KERN_INFO "wmo_oc: wheel mouse optical connected\n");
restore_interval = patch_endpoints(configured_interval);
}
return 0;
}
static int __init on_module_init(void) {
if(configured_interval > 255) {
printk(KERN_WARNING "wmo_oc: Invalid interval parameter specified.\n");
configured_interval = 255;
}
if(configured_interval == 0) {
printk(KERN_WARNING "wmo_oc: Invalid interval parameter specified.\n");
configured_interval = 1;
}
usb_for_each_dev(NULL, &usb_device_cb);
usb_register_notify(&usb_nb);
return 0;
}
static void __exit on_module_exit(void) {
if(adapter_device != NULL) {
patch_endpoints(restore_interval);
}
usb_unregister_notify(&usb_nb);
}
module_init(on_module_init);
module_exit(on_module_exit);
static int on_interval_changed(const char* value, const struct kernel_param* kp) {
int ret = param_set_ushort(value, kp);
if(!ret) {
if(configured_interval > 255) {
printk(KERN_WARNING "wmo_oc: Invalid interval parameter specified.\n");
configured_interval = 255;
}
else if(configured_interval == 0) {
printk(KERN_WARNING "wmo_oc: Invalid interval parameter specified.\n");
configured_interval = 1;
}
patch_endpoints(configured_interval);
}
return ret;
}
static struct kernel_param_ops interval_ops = {
.set = &on_interval_changed,
.get = ¶m_get_ushort
};
module_param_cb(rate, &interval_ops, &configured_interval, 0644);
MODULE_PARM_DESC(rate, "Polling rate (default: 1)");