USB: HID: Steelseries SRW-S1 Add support for dials
[deliverable/linux.git] / drivers / hid / hid-steelseries-srws1.c
CommitLineData
75dbb953
SW
1/*
2 * HID driver for Steelseries SRW-S1
3 *
4 * Copyright (c) 2013 Simon Wood
5 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 */
13
14#include <linux/device.h>
15#include <linux/hid.h>
16#include <linux/module.h>
17
18#include "hid-ids.h"
19
5492606d
SW
20/* Fixed report descriptor for Steelseries SRW-S1 wheel controller
21 *
22 * The original descriptor hides the sensitivity and assists dials
23 * a custom vendor usage page. This inserts a patch to make them
24 * appear in the 'Generic Desktop' usage.
25 */
26
27static __u8 steelseries_srws1_rdesc_fixed[] = {
280x05, 0x01, /* Usage Page (Desktop) */
290x09, 0x08, /* Usage (MultiAxis), Changed */
300xA1, 0x01, /* Collection (Application), */
310xA1, 0x02, /* Collection (Logical), */
320x95, 0x01, /* Report Count (1), */
330x05, 0x01, /* Changed Usage Page (Desktop), */
340x09, 0x30, /* Changed Usage (X), */
350x16, 0xF8, 0xF8, /* Logical Minimum (-1800), */
360x26, 0x08, 0x07, /* Logical Maximum (1800), */
370x65, 0x14, /* Unit (Degrees), */
380x55, 0x0F, /* Unit Exponent (15), */
390x75, 0x10, /* Report Size (16), */
400x81, 0x02, /* Input (Variable), */
410x09, 0x31, /* Changed Usage (Y), */
420x15, 0x00, /* Logical Minimum (0), */
430x26, 0xFF, 0x03, /* Logical Maximum (1023), */
440x75, 0x0C, /* Report Size (12), */
450x81, 0x02, /* Input (Variable), */
460x09, 0x32, /* Changed Usage (Z), */
470x15, 0x00, /* Logical Minimum (0), */
480x26, 0xFF, 0x03, /* Logical Maximum (1023), */
490x75, 0x0C, /* Report Size (12), */
500x81, 0x02, /* Input (Variable), */
510x05, 0x01, /* Usage Page (Desktop), */
520x09, 0x39, /* Usage (Hat Switch), */
530x25, 0x07, /* Logical Maximum (7), */
540x35, 0x00, /* Physical Minimum (0), */
550x46, 0x3B, 0x01, /* Physical Maximum (315), */
560x65, 0x14, /* Unit (Degrees), */
570x75, 0x04, /* Report Size (4), */
580x95, 0x01, /* Report Count (1), */
590x81, 0x02, /* Input (Variable), */
600x25, 0x01, /* Logical Maximum (1), */
610x45, 0x01, /* Physical Maximum (1), */
620x65, 0x00, /* Unit, */
630x75, 0x01, /* Report Size (1), */
640x95, 0x03, /* Report Count (3), */
650x81, 0x01, /* Input (Constant), */
660x05, 0x09, /* Usage Page (Button), */
670x19, 0x01, /* Usage Minimum (01h), */
680x29, 0x11, /* Usage Maximum (11h), */
690x95, 0x11, /* Report Count (17), */
700x81, 0x02, /* Input (Variable), */
71 /* ---- Dial patch starts here ---- */
720x05, 0x01, /* Usage Page (Desktop), */
730x09, 0x33, /* Usage (RX), */
740x75, 0x04, /* Report Size (4), */
750x95, 0x02, /* Report Count (2), */
760x15, 0x00, /* Logical Minimum (0), */
770x25, 0x0b, /* Logical Maximum (b), */
780x81, 0x02, /* Input (Variable), */
790x09, 0x35, /* Usage (RZ), */
800x75, 0x04, /* Report Size (4), */
810x95, 0x01, /* Report Count (1), */
820x25, 0x03, /* Logical Maximum (3), */
830x81, 0x02, /* Input (Variable), */
84 /* ---- Dial patch ends here ---- */
850x06, 0x00, 0xFF, /* Usage Page (FF00h), */
860x09, 0x01, /* Usage (01h), */
870x75, 0x04, /* Changed Report Size (4), */
880x95, 0x0D, /* Changed Report Count (13), */
890x81, 0x02, /* Input (Variable), */
900xC0, /* End Collection, */
910xA1, 0x02, /* Collection (Logical), */
920x09, 0x02, /* Usage (02h), */
930x75, 0x08, /* Report Size (8), */
940x95, 0x10, /* Report Count (16), */
950x91, 0x02, /* Output (Variable), */
960xC0, /* End Collection, */
970xC0 /* End Collection */
98};
99
75dbb953
SW
100static __u8 *steelseries_srws1_report_fixup(struct hid_device *hdev, __u8 *rdesc,
101 unsigned int *rsize)
102{
103 if (*rsize >= 115 && rdesc[11] == 0x02 && rdesc[13] == 0xc8
104 && rdesc[29] == 0xbb && rdesc[40] == 0xc5) {
105 hid_info(hdev, "Fixing up Steelseries SRW-S1 report descriptor\n");
5492606d
SW
106 rdesc = steelseries_srws1_rdesc_fixed;
107 *rsize = sizeof(steelseries_srws1_rdesc_fixed);
75dbb953
SW
108 }
109 return rdesc;
110}
111
112static const struct hid_device_id steelseries_srws1_devices[] = {
113 { HID_USB_DEVICE(USB_VENDOR_ID_STEELSERIES, USB_DEVICE_ID_STEELSERIES_SRWS1) },
114 { }
115};
116MODULE_DEVICE_TABLE(hid, steelseries_srws1_devices);
117
118static struct hid_driver steelseries_srws1_driver = {
119 .name = "steelseries_srws1",
120 .id_table = steelseries_srws1_devices,
121 .report_fixup = steelseries_srws1_report_fixup
122};
123
124static int __init steelseries_srws1_init(void)
125{
126 return hid_register_driver(&steelseries_srws1_driver);
127}
128
129static void __exit steelseries_srws1_exit(void)
130{
131 hid_unregister_driver(&steelseries_srws1_driver);
132}
133
134module_init(steelseries_srws1_init);
135module_exit(steelseries_srws1_exit);
136MODULE_LICENSE("GPL");
This page took 0.062496 seconds and 5 git commands to generate.