Loading...
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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | // SPDX-License-Identifier: GPL-2.0 /* * HID driver for WinWing Orion 2 throttle * * Copyright (c) 2023 Ivan Gorinov */ #include <linux/device.h> #include <linux/hid.h> #include <linux/hidraw.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/mutex.h> #define MAX_REPORT 16 struct winwing_led { struct led_classdev cdev; struct hid_device *hdev; int number; }; struct winwing_led_info { int number; int max_brightness; const char *led_name; }; static struct winwing_led_info led_info[3] = { { 0, 255, "backlight" }, { 1, 1, "a-a" }, { 2, 1, "a-g" }, }; struct winwing_drv_data { struct hid_device *hdev; __u8 *report_buf; struct mutex lock; unsigned int num_leds; struct winwing_led leds[]; }; static int winwing_led_write(struct led_classdev *cdev, enum led_brightness br) { struct winwing_led *led = (struct winwing_led *) cdev; struct winwing_drv_data *data = hid_get_drvdata(led->hdev); __u8 *buf = data->report_buf; int ret; mutex_lock(&data->lock); buf[0] = 0x02; buf[1] = 0x60; buf[2] = 0xbe; buf[3] = 0x00; buf[4] = 0x00; buf[5] = 0x03; buf[6] = 0x49; buf[7] = led->number; buf[8] = br; buf[9] = 0x00; buf[10] = 0; buf[11] = 0; buf[12] = 0; buf[13] = 0; ret = hid_hw_output_report(led->hdev, buf, 14); mutex_unlock(&data->lock); return ret; } static int winwing_init_led(struct hid_device *hdev, struct input_dev *input) { struct winwing_drv_data *data; struct winwing_led *led; int ret; int i; size_t data_size = struct_size(data, leds, 3); data = devm_kzalloc(&hdev->dev, data_size, GFP_KERNEL); if (!data) return -ENOMEM; data->report_buf = devm_kmalloc(&hdev->dev, MAX_REPORT, GFP_KERNEL); if (!data->report_buf) return -ENOMEM; for (i = 0; i < 3; i += 1) { struct winwing_led_info *info = &led_info[i]; led = &data->leds[i]; led->hdev = hdev; led->number = info->number; led->cdev.max_brightness = info->max_brightness; led->cdev.brightness_set_blocking = winwing_led_write; led->cdev.flags = LED_HW_PLUGGABLE; led->cdev.name = devm_kasprintf(&hdev->dev, GFP_KERNEL, "%s::%s", dev_name(&input->dev), info->led_name); ret = devm_led_classdev_register(&hdev->dev, &led->cdev); if (ret) return ret; } hid_set_drvdata(hdev, data); return ret; } static int winwing_probe(struct hid_device *hdev, const struct hid_device_id *id) { int ret; ret = hid_parse(hdev); if (ret) { hid_err(hdev, "parse failed\n"); return ret; } ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); if (ret) { hid_err(hdev, "hw start failed\n"); return ret; } return 0; } static int winwing_input_configured(struct hid_device *hdev, struct hid_input *hidinput) { int ret; ret = winwing_init_led(hdev, hidinput->input); if (ret) hid_err(hdev, "led init failed\n"); return ret; } static __u8 original_rdesc_buttons[] = { 0x05, 0x09, 0x19, 0x01, 0x29, 0x6F, 0x15, 0x00, 0x25, 0x01, 0x35, 0x00, 0x45, 0x01, 0x75, 0x01, 0x95, 0x6F, 0x81, 0x02, 0x75, 0x01, 0x95, 0x01, 0x81, 0x01 }; /* * HID report descriptor shows 111 buttons, which exceeds maximum * number of buttons (80) supported by Linux kernel HID subsystem. * * This module skips numbers 32-63, unused on some throttle grips. */ static __u8 *winwing_report_fixup(struct hid_device *hdev, __u8 *rdesc, unsigned int *rsize) { int sig_length = sizeof(original_rdesc_buttons); int unused_button_numbers = 32; if (*rsize < 34) return rdesc; if (memcmp(rdesc + 8, original_rdesc_buttons, sig_length) == 0) { /* Usage Maximum */ rdesc[13] -= unused_button_numbers; /* Report Count for buttons */ rdesc[25] -= unused_button_numbers; /* Report Count for padding [HID1_11, 6.2.2.9] */ rdesc[31] += unused_button_numbers; hid_info(hdev, "winwing descriptor fixed\n"); } return rdesc; } static int winwing_raw_event(struct hid_device *hdev, struct hid_report *report, u8 *raw_data, int size) { if (size >= 15) { /* Skip buttons 32 .. 63 */ memmove(raw_data + 5, raw_data + 9, 6); /* Clear the padding */ memset(raw_data + 11, 0, 4); } return 0; } static const struct hid_device_id winwing_devices[] = { { HID_USB_DEVICE(0x4098, 0xbe62) }, /* TGRIP-18 */ { HID_USB_DEVICE(0x4098, 0xbe68) }, /* TGRIP-16EX */ {} }; MODULE_DEVICE_TABLE(hid, winwing_devices); static struct hid_driver winwing_driver = { .name = "winwing", .id_table = winwing_devices, .probe = winwing_probe, .input_configured = winwing_input_configured, .report_fixup = winwing_report_fixup, .raw_event = winwing_raw_event, }; module_hid_driver(winwing_driver); MODULE_DESCRIPTION("HID driver for WinWing Orion 2 throttle"); MODULE_LICENSE("GPL"); |