blob: 4e291d5ad645a55b1e769e0e14eba6866e3179fa [file] [log] [blame]
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +01001/*
Jamie Lentin6a5b4142014-07-23 23:30:46 +01002 * HID driver for Lenovo:
3 * - ThinkPad USB Keyboard with TrackPoint (tpkbd)
Jamie Lentinf3d4ff02014-07-23 23:30:48 +01004 * - ThinkPad Compact Bluetooth Keyboard with TrackPoint (cptkbd)
5 * - ThinkPad Compact USB Keyboard with TrackPoint (cptkbd)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +01006 *
7 * Copyright (c) 2012 Bernhard Seibold
Jamie Lentinf3d4ff02014-07-23 23:30:48 +01008 * Copyright (c) 2014 Jamie Lentin <jm@lentin.co.uk>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +01009 */
10
11/*
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 */
17
18#include <linux/module.h>
19#include <linux/sysfs.h>
20#include <linux/device.h>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010021#include <linux/hid.h>
22#include <linux/input.h>
23#include <linux/leds.h>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010024
25#include "hid-ids.h"
26
Jamie Lentin94723bf2014-07-23 23:30:45 +010027struct lenovo_drvdata_tpkbd {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010028 int led_state;
29 struct led_classdev led_mute;
30 struct led_classdev led_micmute;
31 int press_to_select;
32 int dragging;
33 int release_to_select;
34 int select_right;
35 int sensitivity;
36 int press_speed;
37};
38
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010039struct lenovo_drvdata_cptkbd {
40 bool fn_lock;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +000041 int sensitivity;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010042};
43
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010044#define map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, EV_KEY, (c))
45
Benjamin Tissoires181a8b92015-05-01 16:22:45 -040046static const __u8 lenovo_pro_dock_need_fixup_collection[] = {
47 0x05, 0x88, /* Usage Page (Vendor Usage Page 0x88) */
48 0x09, 0x01, /* Usage (Vendor Usage 0x01) */
49 0xa1, 0x01, /* Collection (Application) */
50 0x85, 0x04, /* Report ID (4) */
51 0x19, 0x00, /* Usage Minimum (0) */
52 0x2a, 0xff, 0xff, /* Usage Maximum (65535) */
53};
54
55static __u8 *lenovo_report_fixup(struct hid_device *hdev, __u8 *rdesc,
56 unsigned int *rsize)
57{
58 switch (hdev->product) {
59 case USB_DEVICE_ID_LENOVO_TPPRODOCK:
60 /* the fixups that need to be done:
61 * - get a reasonable usage max for the vendor collection
62 * 0x8801 from the report ID 4
63 */
64 if (*rsize >= 153 &&
65 memcmp(&rdesc[140], lenovo_pro_dock_need_fixup_collection,
66 sizeof(lenovo_pro_dock_need_fixup_collection)) == 0) {
67 rdesc[151] = 0x01;
68 rdesc[152] = 0x00;
69 }
70 break;
71 }
72 return rdesc;
73}
74
Jamie Lentin94723bf2014-07-23 23:30:45 +010075static int lenovo_input_mapping_tpkbd(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010076 struct hid_input *hi, struct hid_field *field,
77 struct hid_usage *usage, unsigned long **bit, int *max)
78{
Benjamin Tissoires0c521832013-09-11 22:12:24 +020079 if (usage->hid == (HID_UP_BUTTON | 0x0010)) {
Jamie Lentin6a5b4142014-07-23 23:30:46 +010080 /* This sub-device contains trackpoint, mark it */
Benjamin Tissoires0c521832013-09-11 22:12:24 +020081 hid_set_drvdata(hdev, (void *)1);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010082 map_key_clear(KEY_MICMUTE);
83 return 1;
84 }
85 return 0;
86}
87
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010088static int lenovo_input_mapping_cptkbd(struct hid_device *hdev,
89 struct hid_input *hi, struct hid_field *field,
90 struct hid_usage *usage, unsigned long **bit, int *max)
91{
92 /* HID_UP_LNVENDOR = USB, HID_UP_MSVENDOR = BT */
93 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR ||
94 (usage->hid & HID_USAGE_PAGE) == HID_UP_LNVENDOR) {
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010095 switch (usage->hid & HID_USAGE) {
96 case 0x00f1: /* Fn-F4: Mic mute */
97 map_key_clear(KEY_MICMUTE);
98 return 1;
99 case 0x00f2: /* Fn-F5: Brightness down */
100 map_key_clear(KEY_BRIGHTNESSDOWN);
101 return 1;
102 case 0x00f3: /* Fn-F6: Brightness up */
103 map_key_clear(KEY_BRIGHTNESSUP);
104 return 1;
105 case 0x00f4: /* Fn-F7: External display (projector) */
106 map_key_clear(KEY_SWITCHVIDEOMODE);
107 return 1;
108 case 0x00f5: /* Fn-F8: Wireless */
109 map_key_clear(KEY_WLAN);
110 return 1;
111 case 0x00f6: /* Fn-F9: Control panel */
112 map_key_clear(KEY_CONFIG);
113 return 1;
114 case 0x00f8: /* Fn-F11: View open applications (3 boxes) */
115 map_key_clear(KEY_SCALE);
116 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000117 case 0x00f9: /* Fn-F12: Open My computer (6 boxes) USB-only */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100118 /* NB: This mapping is invented in raw_event below */
119 map_key_clear(KEY_FILE);
120 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000121 case 0x00fa: /* Fn-Esc: Fn-lock toggle */
122 map_key_clear(KEY_FN_ESC);
123 return 1;
Jamie Lentin94eefa22014-12-16 21:26:46 +0000124 case 0x00fb: /* Middle mouse button (in native mode) */
125 map_key_clear(BTN_MIDDLE);
126 return 1;
127 }
128 }
129
130 /* Compatibility middle/wheel mappings should be ignored */
131 if (usage->hid == HID_GD_WHEEL)
132 return -1;
133 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON &&
134 (usage->hid & HID_USAGE) == 0x003)
135 return -1;
136 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER &&
137 (usage->hid & HID_USAGE) == 0x238)
138 return -1;
139
140 /* Map wheel emulation reports: 0xffa1 = USB, 0xff10 = BT */
141 if ((usage->hid & HID_USAGE_PAGE) == 0xff100000 ||
142 (usage->hid & HID_USAGE_PAGE) == 0xffa10000) {
143 field->flags |= HID_MAIN_ITEM_RELATIVE | HID_MAIN_ITEM_VARIABLE;
144 field->logical_minimum = -127;
145 field->logical_maximum = 127;
146
147 switch (usage->hid & HID_USAGE) {
148 case 0x0000:
149 hid_map_usage(hi, usage, bit, max, EV_REL, 0x06);
150 return 1;
151 case 0x0001:
152 hid_map_usage(hi, usage, bit, max, EV_REL, 0x08);
153 return 1;
154 default:
155 return -1;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100156 }
157 }
158
159 return 0;
160}
161
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100162static int lenovo_input_mapping(struct hid_device *hdev,
163 struct hid_input *hi, struct hid_field *field,
164 struct hid_usage *usage, unsigned long **bit, int *max)
165{
166 switch (hdev->product) {
167 case USB_DEVICE_ID_LENOVO_TPKBD:
168 return lenovo_input_mapping_tpkbd(hdev, hi, field,
169 usage, bit, max);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100170 case USB_DEVICE_ID_LENOVO_CUSBKBD:
171 case USB_DEVICE_ID_LENOVO_CBTKBD:
172 return lenovo_input_mapping_cptkbd(hdev, hi, field,
173 usage, bit, max);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100174 default:
175 return 0;
176 }
177}
178
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100179#undef map_key_clear
180
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100181/* Send a config command to the keyboard */
182static int lenovo_send_cmd_cptkbd(struct hid_device *hdev,
183 unsigned char byte2, unsigned char byte3)
184{
185 int ret;
186 unsigned char buf[] = {0x18, byte2, byte3};
187
188 switch (hdev->product) {
189 case USB_DEVICE_ID_LENOVO_CUSBKBD:
190 ret = hid_hw_raw_request(hdev, 0x13, buf, sizeof(buf),
191 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
192 break;
193 case USB_DEVICE_ID_LENOVO_CBTKBD:
194 ret = hid_hw_output_report(hdev, buf, sizeof(buf));
195 break;
196 default:
197 ret = -EINVAL;
198 break;
199 }
200
201 return ret < 0 ? ret : 0; /* BT returns 0, USB returns sizeof(buf) */
202}
203
204static void lenovo_features_set_cptkbd(struct hid_device *hdev)
205{
206 int ret;
207 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
208
209 ret = lenovo_send_cmd_cptkbd(hdev, 0x05, cptkbd_data->fn_lock);
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000210 ret = lenovo_send_cmd_cptkbd(hdev, 0x02, cptkbd_data->sensitivity);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100211 if (ret)
212 hid_err(hdev, "Fn-lock setting failed: %d\n", ret);
213}
214
215static ssize_t attr_fn_lock_show_cptkbd(struct device *dev,
216 struct device_attribute *attr,
217 char *buf)
218{
219 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
220 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
221
222 return snprintf(buf, PAGE_SIZE, "%u\n", cptkbd_data->fn_lock);
223}
224
225static ssize_t attr_fn_lock_store_cptkbd(struct device *dev,
226 struct device_attribute *attr,
227 const char *buf,
228 size_t count)
229{
230 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
231 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
232 int value;
233
234 if (kstrtoint(buf, 10, &value))
235 return -EINVAL;
236 if (value < 0 || value > 1)
237 return -EINVAL;
238
239 cptkbd_data->fn_lock = !!value;
240 lenovo_features_set_cptkbd(hdev);
241
242 return count;
243}
244
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000245static ssize_t attr_sensitivity_show_cptkbd(struct device *dev,
246 struct device_attribute *attr,
247 char *buf)
248{
249 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
250 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
251
252 return snprintf(buf, PAGE_SIZE, "%u\n",
253 cptkbd_data->sensitivity);
254}
255
256static ssize_t attr_sensitivity_store_cptkbd(struct device *dev,
257 struct device_attribute *attr,
258 const char *buf,
259 size_t count)
260{
261 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
262 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
263 int value;
264
265 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
266 return -EINVAL;
267
268 cptkbd_data->sensitivity = value;
269 lenovo_features_set_cptkbd(hdev);
270
271 return count;
272}
273
274
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100275static struct device_attribute dev_attr_fn_lock_cptkbd =
276 __ATTR(fn_lock, S_IWUSR | S_IRUGO,
277 attr_fn_lock_show_cptkbd,
278 attr_fn_lock_store_cptkbd);
279
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000280static struct device_attribute dev_attr_sensitivity_cptkbd =
281 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
282 attr_sensitivity_show_cptkbd,
283 attr_sensitivity_store_cptkbd);
284
285
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100286static struct attribute *lenovo_attributes_cptkbd[] = {
287 &dev_attr_fn_lock_cptkbd.attr,
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000288 &dev_attr_sensitivity_cptkbd.attr,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100289 NULL
290};
291
292static const struct attribute_group lenovo_attr_group_cptkbd = {
293 .attrs = lenovo_attributes_cptkbd,
294};
295
296static int lenovo_raw_event(struct hid_device *hdev,
297 struct hid_report *report, u8 *data, int size)
298{
299 /*
300 * Compact USB keyboard's Fn-F12 report holds down many other keys, and
301 * its own key is outside the usage page range. Remove extra
302 * keypresses and remap to inside usage page.
303 */
304 if (unlikely(hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
305 && size == 3
306 && data[0] == 0x15
307 && data[1] == 0x94
308 && data[2] == 0x01)) {
Jamie Lentin5556eb12014-11-09 07:54:29 +0000309 data[1] = 0x00;
310 data[2] = 0x01;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100311 }
312
313 return 0;
314}
315
Jamie Lentin94723bf2014-07-23 23:30:45 +0100316static int lenovo_features_set_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100317{
318 struct hid_report *report;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100319 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100320
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100321 report = hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[4];
322
323 report->field[0]->value[0] = data_pointer->press_to_select ? 0x01 : 0x02;
324 report->field[0]->value[0] |= data_pointer->dragging ? 0x04 : 0x08;
325 report->field[0]->value[0] |= data_pointer->release_to_select ? 0x10 : 0x20;
326 report->field[0]->value[0] |= data_pointer->select_right ? 0x80 : 0x40;
327 report->field[1]->value[0] = 0x03; // unknown setting, imitate windows driver
328 report->field[2]->value[0] = data_pointer->sensitivity;
329 report->field[3]->value[0] = data_pointer->press_speed;
330
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100331 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100332 return 0;
333}
334
Jamie Lentin94723bf2014-07-23 23:30:45 +0100335static ssize_t attr_press_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100336 struct device_attribute *attr,
337 char *buf)
338{
Axel Lin832fbea2012-09-13 14:12:08 +0800339 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100340 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100341
342 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->press_to_select);
343}
344
Jamie Lentin94723bf2014-07-23 23:30:45 +0100345static ssize_t attr_press_to_select_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100346 struct device_attribute *attr,
347 const char *buf,
348 size_t count)
349{
Axel Lin832fbea2012-09-13 14:12:08 +0800350 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100351 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100352 int value;
353
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100354 if (kstrtoint(buf, 10, &value))
355 return -EINVAL;
356 if (value < 0 || value > 1)
357 return -EINVAL;
358
359 data_pointer->press_to_select = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100360 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100361
362 return count;
363}
364
Jamie Lentin94723bf2014-07-23 23:30:45 +0100365static ssize_t attr_dragging_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100366 struct device_attribute *attr,
367 char *buf)
368{
Axel Lin832fbea2012-09-13 14:12:08 +0800369 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100370 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100371
372 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->dragging);
373}
374
Jamie Lentin94723bf2014-07-23 23:30:45 +0100375static ssize_t attr_dragging_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100376 struct device_attribute *attr,
377 const char *buf,
378 size_t count)
379{
Axel Lin832fbea2012-09-13 14:12:08 +0800380 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100381 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100382 int value;
383
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100384 if (kstrtoint(buf, 10, &value))
385 return -EINVAL;
386 if (value < 0 || value > 1)
387 return -EINVAL;
388
389 data_pointer->dragging = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100390 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100391
392 return count;
393}
394
Jamie Lentin94723bf2014-07-23 23:30:45 +0100395static ssize_t attr_release_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100396 struct device_attribute *attr,
397 char *buf)
398{
Axel Lin832fbea2012-09-13 14:12:08 +0800399 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100400 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100401
402 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->release_to_select);
403}
404
Jamie Lentin94723bf2014-07-23 23:30:45 +0100405static ssize_t attr_release_to_select_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100406 struct device_attribute *attr,
407 const char *buf,
408 size_t count)
409{
Axel Lin832fbea2012-09-13 14:12:08 +0800410 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100411 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100412 int value;
413
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100414 if (kstrtoint(buf, 10, &value))
415 return -EINVAL;
416 if (value < 0 || value > 1)
417 return -EINVAL;
418
419 data_pointer->release_to_select = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100420 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100421
422 return count;
423}
424
Jamie Lentin94723bf2014-07-23 23:30:45 +0100425static ssize_t attr_select_right_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100426 struct device_attribute *attr,
427 char *buf)
428{
Axel Lin832fbea2012-09-13 14:12:08 +0800429 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100430 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100431
432 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->select_right);
433}
434
Jamie Lentin94723bf2014-07-23 23:30:45 +0100435static ssize_t attr_select_right_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100436 struct device_attribute *attr,
437 const char *buf,
438 size_t count)
439{
Axel Lin832fbea2012-09-13 14:12:08 +0800440 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100441 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100442 int value;
443
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100444 if (kstrtoint(buf, 10, &value))
445 return -EINVAL;
446 if (value < 0 || value > 1)
447 return -EINVAL;
448
449 data_pointer->select_right = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100450 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100451
452 return count;
453}
454
Jamie Lentin94723bf2014-07-23 23:30:45 +0100455static ssize_t attr_sensitivity_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100456 struct device_attribute *attr,
457 char *buf)
458{
Axel Lin832fbea2012-09-13 14:12:08 +0800459 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100460 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100461
462 return snprintf(buf, PAGE_SIZE, "%u\n",
463 data_pointer->sensitivity);
464}
465
Jamie Lentin94723bf2014-07-23 23:30:45 +0100466static ssize_t attr_sensitivity_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100467 struct device_attribute *attr,
468 const char *buf,
469 size_t count)
470{
Axel Lin832fbea2012-09-13 14:12:08 +0800471 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100472 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100473 int value;
474
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100475 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
476 return -EINVAL;
477
478 data_pointer->sensitivity = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100479 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100480
481 return count;
482}
483
Jamie Lentin94723bf2014-07-23 23:30:45 +0100484static ssize_t attr_press_speed_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100485 struct device_attribute *attr,
486 char *buf)
487{
Axel Lin832fbea2012-09-13 14:12:08 +0800488 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100489 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100490
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100491 return snprintf(buf, PAGE_SIZE, "%u\n",
492 data_pointer->press_speed);
493}
494
Jamie Lentin94723bf2014-07-23 23:30:45 +0100495static ssize_t attr_press_speed_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100496 struct device_attribute *attr,
497 const char *buf,
498 size_t count)
499{
Axel Lin832fbea2012-09-13 14:12:08 +0800500 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100501 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100502 int value;
503
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100504 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
505 return -EINVAL;
506
507 data_pointer->press_speed = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100508 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100509
510 return count;
511}
512
Jamie Lentin94723bf2014-07-23 23:30:45 +0100513static struct device_attribute dev_attr_press_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100514 __ATTR(press_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100515 attr_press_to_select_show_tpkbd,
516 attr_press_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100517
Jamie Lentin94723bf2014-07-23 23:30:45 +0100518static struct device_attribute dev_attr_dragging_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100519 __ATTR(dragging, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100520 attr_dragging_show_tpkbd,
521 attr_dragging_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100522
Jamie Lentin94723bf2014-07-23 23:30:45 +0100523static struct device_attribute dev_attr_release_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100524 __ATTR(release_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100525 attr_release_to_select_show_tpkbd,
526 attr_release_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100527
Jamie Lentin94723bf2014-07-23 23:30:45 +0100528static struct device_attribute dev_attr_select_right_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100529 __ATTR(select_right, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100530 attr_select_right_show_tpkbd,
531 attr_select_right_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100532
Jamie Lentin94723bf2014-07-23 23:30:45 +0100533static struct device_attribute dev_attr_sensitivity_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100534 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100535 attr_sensitivity_show_tpkbd,
536 attr_sensitivity_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100537
Jamie Lentin94723bf2014-07-23 23:30:45 +0100538static struct device_attribute dev_attr_press_speed_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100539 __ATTR(press_speed, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100540 attr_press_speed_show_tpkbd,
541 attr_press_speed_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100542
Jamie Lentin94723bf2014-07-23 23:30:45 +0100543static struct attribute *lenovo_attributes_tpkbd[] = {
544 &dev_attr_press_to_select_tpkbd.attr,
545 &dev_attr_dragging_tpkbd.attr,
546 &dev_attr_release_to_select_tpkbd.attr,
547 &dev_attr_select_right_tpkbd.attr,
548 &dev_attr_sensitivity_tpkbd.attr,
549 &dev_attr_press_speed_tpkbd.attr,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100550 NULL
551};
552
Jamie Lentin94723bf2014-07-23 23:30:45 +0100553static const struct attribute_group lenovo_attr_group_tpkbd = {
554 .attrs = lenovo_attributes_tpkbd,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100555};
556
Jamie Lentin94723bf2014-07-23 23:30:45 +0100557static enum led_brightness lenovo_led_brightness_get_tpkbd(
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100558 struct led_classdev *led_cdev)
559{
Axel Lin832fbea2012-09-13 14:12:08 +0800560 struct device *dev = led_cdev->dev->parent;
561 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100562 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100563 int led_nr = 0;
564
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100565 if (led_cdev == &data_pointer->led_micmute)
566 led_nr = 1;
567
568 return data_pointer->led_state & (1 << led_nr)
569 ? LED_FULL
570 : LED_OFF;
571}
572
Jamie Lentin94723bf2014-07-23 23:30:45 +0100573static void lenovo_led_brightness_set_tpkbd(struct led_classdev *led_cdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100574 enum led_brightness value)
575{
Axel Lin832fbea2012-09-13 14:12:08 +0800576 struct device *dev = led_cdev->dev->parent;
577 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100578 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100579 struct hid_report *report;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100580 int led_nr = 0;
581
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100582 if (led_cdev == &data_pointer->led_micmute)
583 led_nr = 1;
584
585 if (value == LED_OFF)
586 data_pointer->led_state &= ~(1 << led_nr);
587 else
588 data_pointer->led_state |= 1 << led_nr;
589
590 report = hdev->report_enum[HID_OUTPUT_REPORT].report_id_hash[3];
591 report->field[0]->value[0] = (data_pointer->led_state >> 0) & 1;
592 report->field[0]->value[1] = (data_pointer->led_state >> 1) & 1;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100593 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100594}
595
Jamie Lentin94723bf2014-07-23 23:30:45 +0100596static int lenovo_probe_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100597{
598 struct device *dev = &hdev->dev;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100599 struct lenovo_drvdata_tpkbd *data_pointer;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100600 size_t name_sz = strlen(dev_name(dev)) + 16;
601 char *name_mute, *name_micmute;
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200602 int i;
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100603 int ret;
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200604
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100605 /*
606 * Only register extra settings against subdevice where input_mapping
607 * set drvdata to 1, i.e. the trackpoint.
608 */
609 if (!hid_get_drvdata(hdev))
610 return 0;
611
612 hid_set_drvdata(hdev, NULL);
613
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200614 /* Validate required reports. */
615 for (i = 0; i < 4; i++) {
616 if (!hid_validate_values(hdev, HID_FEATURE_REPORT, 4, i, 1))
617 return -ENODEV;
618 }
619 if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, 3, 0, 2))
620 return -ENODEV;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100621
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100622 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
623 if (ret)
624 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100625
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200626 data_pointer = devm_kzalloc(&hdev->dev,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100627 sizeof(struct lenovo_drvdata_tpkbd),
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200628 GFP_KERNEL);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100629 if (data_pointer == NULL) {
630 hid_err(hdev, "Could not allocate memory for driver data\n");
631 return -ENOMEM;
632 }
633
634 // set same default values as windows driver
635 data_pointer->sensitivity = 0xa0;
636 data_pointer->press_speed = 0x38;
637
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200638 name_mute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
639 name_micmute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
640 if (name_mute == NULL || name_micmute == NULL) {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100641 hid_err(hdev, "Could not allocate memory for led data\n");
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200642 return -ENOMEM;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100643 }
644 snprintf(name_mute, name_sz, "%s:amber:mute", dev_name(dev));
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100645 snprintf(name_micmute, name_sz, "%s:amber:micmute", dev_name(dev));
646
647 hid_set_drvdata(hdev, data_pointer);
648
649 data_pointer->led_mute.name = name_mute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100650 data_pointer->led_mute.brightness_get = lenovo_led_brightness_get_tpkbd;
651 data_pointer->led_mute.brightness_set = lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100652 data_pointer->led_mute.dev = dev;
653 led_classdev_register(dev, &data_pointer->led_mute);
654
655 data_pointer->led_micmute.name = name_micmute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100656 data_pointer->led_micmute.brightness_get =
657 lenovo_led_brightness_get_tpkbd;
658 data_pointer->led_micmute.brightness_set =
659 lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100660 data_pointer->led_micmute.dev = dev;
661 led_classdev_register(dev, &data_pointer->led_micmute);
662
Jamie Lentin94723bf2014-07-23 23:30:45 +0100663 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100664
665 return 0;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100666}
667
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100668static int lenovo_probe_cptkbd(struct hid_device *hdev)
669{
670 int ret;
671 struct lenovo_drvdata_cptkbd *cptkbd_data;
672
673 /* All the custom action happens on the USBMOUSE device for USB */
674 if (hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
675 && hdev->type != HID_TYPE_USBMOUSE) {
676 hid_dbg(hdev, "Ignoring keyboard half of device\n");
677 return 0;
678 }
679
680 cptkbd_data = devm_kzalloc(&hdev->dev,
681 sizeof(*cptkbd_data),
682 GFP_KERNEL);
683 if (cptkbd_data == NULL) {
684 hid_err(hdev, "can't alloc keyboard descriptor\n");
685 return -ENOMEM;
686 }
687 hid_set_drvdata(hdev, cptkbd_data);
688
689 /*
690 * Tell the keyboard a driver understands it, and turn F7, F9, F11 into
691 * regular keys
692 */
693 ret = lenovo_send_cmd_cptkbd(hdev, 0x01, 0x03);
694 if (ret)
695 hid_warn(hdev, "Failed to switch F7/9/11 mode: %d\n", ret);
696
Jamie Lentin94eefa22014-12-16 21:26:46 +0000697 /* Switch middle button to native mode */
698 ret = lenovo_send_cmd_cptkbd(hdev, 0x09, 0x01);
699 if (ret)
700 hid_warn(hdev, "Failed to switch middle button: %d\n", ret);
701
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000702 /* Set keyboard settings to known state */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100703 cptkbd_data->fn_lock = true;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000704 cptkbd_data->sensitivity = 0x05;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100705 lenovo_features_set_cptkbd(hdev);
706
707 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_cptkbd);
708 if (ret)
709 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
710
711 return 0;
712}
713
Jamie Lentin94723bf2014-07-23 23:30:45 +0100714static int lenovo_probe(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100715 const struct hid_device_id *id)
716{
717 int ret;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100718
719 ret = hid_parse(hdev);
720 if (ret) {
721 hid_err(hdev, "hid_parse failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200722 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100723 }
724
725 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
726 if (ret) {
727 hid_err(hdev, "hid_hw_start failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200728 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100729 }
730
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100731 switch (hdev->product) {
732 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100733 ret = lenovo_probe_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100734 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100735 case USB_DEVICE_ID_LENOVO_CUSBKBD:
736 case USB_DEVICE_ID_LENOVO_CBTKBD:
737 ret = lenovo_probe_cptkbd(hdev);
738 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100739 default:
740 ret = 0;
741 break;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200742 }
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100743 if (ret)
744 goto err_hid;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100745
746 return 0;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200747err_hid:
748 hid_hw_stop(hdev);
749err:
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100750 return ret;
751}
752
Jamie Lentin94723bf2014-07-23 23:30:45 +0100753static void lenovo_remove_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100754{
Jamie Lentin94723bf2014-07-23 23:30:45 +0100755 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100756
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100757 /*
758 * Only the trackpoint half of the keyboard has drvdata and stuff that
759 * needs unregistering.
760 */
761 if (data_pointer == NULL)
762 return;
763
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100764 sysfs_remove_group(&hdev->dev.kobj,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100765 &lenovo_attr_group_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100766
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100767 led_classdev_unregister(&data_pointer->led_micmute);
768 led_classdev_unregister(&data_pointer->led_mute);
769
770 hid_set_drvdata(hdev, NULL);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100771}
772
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100773static void lenovo_remove_cptkbd(struct hid_device *hdev)
774{
775 sysfs_remove_group(&hdev->dev.kobj,
776 &lenovo_attr_group_cptkbd);
777}
778
Jamie Lentin94723bf2014-07-23 23:30:45 +0100779static void lenovo_remove(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100780{
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100781 switch (hdev->product) {
782 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100783 lenovo_remove_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100784 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100785 case USB_DEVICE_ID_LENOVO_CUSBKBD:
786 case USB_DEVICE_ID_LENOVO_CBTKBD:
787 lenovo_remove_cptkbd(hdev);
788 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100789 }
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100790
791 hid_hw_stop(hdev);
792}
793
Andreas Fleigd92189e2015-04-23 10:25:58 +0200794static void lenovo_input_configured(struct hid_device *hdev,
795 struct hid_input *hi)
796{
797 switch (hdev->product) {
798 case USB_DEVICE_ID_LENOVO_TPKBD:
799 case USB_DEVICE_ID_LENOVO_CUSBKBD:
800 case USB_DEVICE_ID_LENOVO_CBTKBD:
801 if (test_bit(EV_REL, hi->input->evbit)) {
802 /* set only for trackpoint device */
803 __set_bit(INPUT_PROP_POINTER, hi->input->propbit);
804 __set_bit(INPUT_PROP_POINTING_STICK,
805 hi->input->propbit);
806 }
807 break;
808 }
809}
810
811
Jamie Lentin94723bf2014-07-23 23:30:45 +0100812static const struct hid_device_id lenovo_devices[] = {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100813 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100814 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
815 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400816 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100817 { }
818};
819
Jamie Lentin94723bf2014-07-23 23:30:45 +0100820MODULE_DEVICE_TABLE(hid, lenovo_devices);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100821
Jamie Lentin94723bf2014-07-23 23:30:45 +0100822static struct hid_driver lenovo_driver = {
823 .name = "lenovo",
824 .id_table = lenovo_devices,
Andreas Fleigd92189e2015-04-23 10:25:58 +0200825 .input_configured = lenovo_input_configured,
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100826 .input_mapping = lenovo_input_mapping,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100827 .probe = lenovo_probe,
828 .remove = lenovo_remove,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100829 .raw_event = lenovo_raw_event,
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400830 .report_fixup = lenovo_report_fixup,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100831};
Jamie Lentin94723bf2014-07-23 23:30:45 +0100832module_hid_driver(lenovo_driver);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100833
834MODULE_LICENSE("GPL");