This source file includes following definitions.
- steelseries_srws1_set_leds
- steelseries_srws1_led_all_set_brightness
- steelseries_srws1_led_all_get_brightness
- steelseries_srws1_led_set_brightness
- steelseries_srws1_led_get_brightness
- steelseries_srws1_probe
- steelseries_srws1_remove
- steelseries_srws1_report_fixup
1
2
3
4
5
6
7
8
9
10
11 #include <linux/device.h>
12 #include <linux/hid.h>
13 #include <linux/module.h>
14
15 #include "hid-ids.h"
16
17 #if IS_BUILTIN(CONFIG_LEDS_CLASS) || \
18 (IS_MODULE(CONFIG_LEDS_CLASS) && IS_MODULE(CONFIG_HID_STEELSERIES))
19 #define SRWS1_NUMBER_LEDS 15
20 struct steelseries_srws1_data {
21 __u16 led_state;
22
23 struct led_classdev *led[SRWS1_NUMBER_LEDS + 1];
24 };
25 #endif
26
27
28
29
30
31
32
33
34 static __u8 steelseries_srws1_rdesc_fixed[] = {
35 0x05, 0x01,
36 0x09, 0x08,
37 0xA1, 0x01,
38 0xA1, 0x02,
39 0x95, 0x01,
40 0x05, 0x01,
41 0x09, 0x30,
42 0x16, 0xF8, 0xF8,
43 0x26, 0x08, 0x07,
44 0x65, 0x14,
45 0x55, 0x0F,
46 0x75, 0x10,
47 0x81, 0x02,
48 0x09, 0x31,
49 0x15, 0x00,
50 0x26, 0xFF, 0x03,
51 0x75, 0x0C,
52 0x81, 0x02,
53 0x09, 0x32,
54 0x15, 0x00,
55 0x26, 0xFF, 0x03,
56 0x75, 0x0C,
57 0x81, 0x02,
58 0x05, 0x01,
59 0x09, 0x39,
60 0x25, 0x07,
61 0x35, 0x00,
62 0x46, 0x3B, 0x01,
63 0x65, 0x14,
64 0x75, 0x04,
65 0x95, 0x01,
66 0x81, 0x02,
67 0x25, 0x01,
68 0x45, 0x01,
69 0x65, 0x00,
70 0x75, 0x01,
71 0x95, 0x03,
72 0x81, 0x01,
73 0x05, 0x09,
74 0x19, 0x01,
75 0x29, 0x11,
76 0x95, 0x11,
77 0x81, 0x02,
78
79 0x05, 0x01,
80 0x09, 0x33,
81 0x75, 0x04,
82 0x95, 0x02,
83 0x15, 0x00,
84 0x25, 0x0b,
85 0x81, 0x02,
86 0x09, 0x35,
87 0x75, 0x04,
88 0x95, 0x01,
89 0x25, 0x03,
90 0x81, 0x02,
91
92 0x06, 0x00, 0xFF,
93 0x09, 0x01,
94 0x75, 0x04,
95 0x95, 0x0D,
96 0x81, 0x02,
97 0xC0,
98 0xA1, 0x02,
99 0x09, 0x02,
100 0x75, 0x08,
101 0x95, 0x10,
102 0x91, 0x02,
103 0xC0,
104 0xC0
105 };
106
107 #if IS_BUILTIN(CONFIG_LEDS_CLASS) || \
108 (IS_MODULE(CONFIG_LEDS_CLASS) && IS_MODULE(CONFIG_HID_STEELSERIES))
109 static void steelseries_srws1_set_leds(struct hid_device *hdev, __u16 leds)
110 {
111 struct list_head *report_list = &hdev->report_enum[HID_OUTPUT_REPORT].report_list;
112 struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
113 __s32 *value = report->field[0]->value;
114
115 value[0] = 0x40;
116 value[1] = leds & 0xFF;
117 value[2] = leds >> 8;
118 value[3] = 0x00;
119 value[4] = 0x00;
120 value[5] = 0x00;
121 value[6] = 0x00;
122 value[7] = 0x00;
123 value[8] = 0x00;
124 value[9] = 0x00;
125 value[10] = 0x00;
126 value[11] = 0x00;
127 value[12] = 0x00;
128 value[13] = 0x00;
129 value[14] = 0x00;
130 value[15] = 0x00;
131
132 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
133
134
135 }
136
137 static void steelseries_srws1_led_all_set_brightness(struct led_classdev *led_cdev,
138 enum led_brightness value)
139 {
140 struct device *dev = led_cdev->dev->parent;
141 struct hid_device *hid = to_hid_device(dev);
142 struct steelseries_srws1_data *drv_data = hid_get_drvdata(hid);
143
144 if (!drv_data) {
145 hid_err(hid, "Device data not found.");
146 return;
147 }
148
149 if (value == LED_OFF)
150 drv_data->led_state = 0;
151 else
152 drv_data->led_state = (1 << (SRWS1_NUMBER_LEDS + 1)) - 1;
153
154 steelseries_srws1_set_leds(hid, drv_data->led_state);
155 }
156
157 static enum led_brightness steelseries_srws1_led_all_get_brightness(struct led_classdev *led_cdev)
158 {
159 struct device *dev = led_cdev->dev->parent;
160 struct hid_device *hid = to_hid_device(dev);
161 struct steelseries_srws1_data *drv_data;
162
163 drv_data = hid_get_drvdata(hid);
164
165 if (!drv_data) {
166 hid_err(hid, "Device data not found.");
167 return LED_OFF;
168 }
169
170 return (drv_data->led_state >> SRWS1_NUMBER_LEDS) ? LED_FULL : LED_OFF;
171 }
172
173 static void steelseries_srws1_led_set_brightness(struct led_classdev *led_cdev,
174 enum led_brightness value)
175 {
176 struct device *dev = led_cdev->dev->parent;
177 struct hid_device *hid = to_hid_device(dev);
178 struct steelseries_srws1_data *drv_data = hid_get_drvdata(hid);
179 int i, state = 0;
180
181 if (!drv_data) {
182 hid_err(hid, "Device data not found.");
183 return;
184 }
185
186 for (i = 0; i < SRWS1_NUMBER_LEDS; i++) {
187 if (led_cdev != drv_data->led[i])
188 continue;
189
190 state = (drv_data->led_state >> i) & 1;
191 if (value == LED_OFF && state) {
192 drv_data->led_state &= ~(1 << i);
193 steelseries_srws1_set_leds(hid, drv_data->led_state);
194 } else if (value != LED_OFF && !state) {
195 drv_data->led_state |= 1 << i;
196 steelseries_srws1_set_leds(hid, drv_data->led_state);
197 }
198 break;
199 }
200 }
201
202 static enum led_brightness steelseries_srws1_led_get_brightness(struct led_classdev *led_cdev)
203 {
204 struct device *dev = led_cdev->dev->parent;
205 struct hid_device *hid = to_hid_device(dev);
206 struct steelseries_srws1_data *drv_data;
207 int i, value = 0;
208
209 drv_data = hid_get_drvdata(hid);
210
211 if (!drv_data) {
212 hid_err(hid, "Device data not found.");
213 return LED_OFF;
214 }
215
216 for (i = 0; i < SRWS1_NUMBER_LEDS; i++)
217 if (led_cdev == drv_data->led[i]) {
218 value = (drv_data->led_state >> i) & 1;
219 break;
220 }
221
222 return value ? LED_FULL : LED_OFF;
223 }
224
225 static int steelseries_srws1_probe(struct hid_device *hdev,
226 const struct hid_device_id *id)
227 {
228 int ret, i;
229 struct led_classdev *led;
230 size_t name_sz;
231 char *name;
232
233 struct steelseries_srws1_data *drv_data = kzalloc(sizeof(*drv_data), GFP_KERNEL);
234
235 if (drv_data == NULL) {
236 hid_err(hdev, "can't alloc SRW-S1 memory\n");
237 return -ENOMEM;
238 }
239
240 hid_set_drvdata(hdev, drv_data);
241
242 ret = hid_parse(hdev);
243 if (ret) {
244 hid_err(hdev, "parse failed\n");
245 goto err_free;
246 }
247
248 if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, 0, 0, 16)) {
249 ret = -ENODEV;
250 goto err_free;
251 }
252
253 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
254 if (ret) {
255 hid_err(hdev, "hw start failed\n");
256 goto err_free;
257 }
258
259
260 drv_data->led_state = 0;
261 for (i = 0; i < SRWS1_NUMBER_LEDS + 1; i++)
262 drv_data->led[i] = NULL;
263
264 steelseries_srws1_set_leds(hdev, 0);
265
266 name_sz = strlen(hdev->uniq) + 16;
267
268
269 led = kzalloc(sizeof(struct led_classdev)+name_sz, GFP_KERNEL);
270 if (!led) {
271 hid_err(hdev, "can't allocate memory for LED ALL\n");
272 goto err_led;
273 }
274
275 name = (void *)(&led[1]);
276 snprintf(name, name_sz, "SRWS1::%s::RPMALL", hdev->uniq);
277 led->name = name;
278 led->brightness = 0;
279 led->max_brightness = 1;
280 led->brightness_get = steelseries_srws1_led_all_get_brightness;
281 led->brightness_set = steelseries_srws1_led_all_set_brightness;
282
283 drv_data->led[SRWS1_NUMBER_LEDS] = led;
284 ret = led_classdev_register(&hdev->dev, led);
285 if (ret)
286 goto err_led;
287
288
289 for (i = 0; i < SRWS1_NUMBER_LEDS; i++) {
290 led = kzalloc(sizeof(struct led_classdev)+name_sz, GFP_KERNEL);
291 if (!led) {
292 hid_err(hdev, "can't allocate memory for LED %d\n", i);
293 goto err_led;
294 }
295
296 name = (void *)(&led[1]);
297 snprintf(name, name_sz, "SRWS1::%s::RPM%d", hdev->uniq, i+1);
298 led->name = name;
299 led->brightness = 0;
300 led->max_brightness = 1;
301 led->brightness_get = steelseries_srws1_led_get_brightness;
302 led->brightness_set = steelseries_srws1_led_set_brightness;
303
304 drv_data->led[i] = led;
305 ret = led_classdev_register(&hdev->dev, led);
306
307 if (ret) {
308 hid_err(hdev, "failed to register LED %d. Aborting.\n", i);
309 err_led:
310
311 for (i = 0; i < SRWS1_NUMBER_LEDS + 1; i++) {
312 led = drv_data->led[i];
313 drv_data->led[i] = NULL;
314 if (!led)
315 continue;
316 led_classdev_unregister(led);
317 kfree(led);
318 }
319 goto out;
320 }
321 }
322 out:
323 return 0;
324 err_free:
325 kfree(drv_data);
326 return ret;
327 }
328
329 static void steelseries_srws1_remove(struct hid_device *hdev)
330 {
331 int i;
332 struct led_classdev *led;
333
334 struct steelseries_srws1_data *drv_data = hid_get_drvdata(hdev);
335
336 if (drv_data) {
337
338 for (i = 0; i < SRWS1_NUMBER_LEDS + 1; i++) {
339 led = drv_data->led[i];
340 drv_data->led[i] = NULL;
341 if (!led)
342 continue;
343 led_classdev_unregister(led);
344 kfree(led);
345 }
346
347 }
348
349 hid_hw_stop(hdev);
350 kfree(drv_data);
351 return;
352 }
353 #endif
354
355 static __u8 *steelseries_srws1_report_fixup(struct hid_device *hdev, __u8 *rdesc,
356 unsigned int *rsize)
357 {
358 if (*rsize >= 115 && rdesc[11] == 0x02 && rdesc[13] == 0xc8
359 && rdesc[29] == 0xbb && rdesc[40] == 0xc5) {
360 hid_info(hdev, "Fixing up Steelseries SRW-S1 report descriptor\n");
361 rdesc = steelseries_srws1_rdesc_fixed;
362 *rsize = sizeof(steelseries_srws1_rdesc_fixed);
363 }
364 return rdesc;
365 }
366
367 static const struct hid_device_id steelseries_srws1_devices[] = {
368 { HID_USB_DEVICE(USB_VENDOR_ID_STEELSERIES, USB_DEVICE_ID_STEELSERIES_SRWS1) },
369 { }
370 };
371 MODULE_DEVICE_TABLE(hid, steelseries_srws1_devices);
372
373 static struct hid_driver steelseries_srws1_driver = {
374 .name = "steelseries_srws1",
375 .id_table = steelseries_srws1_devices,
376 #if IS_BUILTIN(CONFIG_LEDS_CLASS) || \
377 (IS_MODULE(CONFIG_LEDS_CLASS) && IS_MODULE(CONFIG_HID_STEELSERIES))
378 .probe = steelseries_srws1_probe,
379 .remove = steelseries_srws1_remove,
380 #endif
381 .report_fixup = steelseries_srws1_report_fixup
382 };
383
384 module_hid_driver(steelseries_srws1_driver);
385 MODULE_LICENSE("GPL");