blob: 1ac4ff4d57a659fc89c6a2bf36b83ba2d679fdcc [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 {
Jamie Lentin3cb5ff02015-08-11 22:40:52 +010040 u8 middlebutton_state; /* 0:Up, 1:Down (undecided), 2:Scrolling */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010041 bool fn_lock;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +000042 int sensitivity;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010043};
44
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010045#define map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, EV_KEY, (c))
46
Benjamin Tissoires181a8b92015-05-01 16:22:45 -040047static const __u8 lenovo_pro_dock_need_fixup_collection[] = {
48 0x05, 0x88, /* Usage Page (Vendor Usage Page 0x88) */
49 0x09, 0x01, /* Usage (Vendor Usage 0x01) */
50 0xa1, 0x01, /* Collection (Application) */
51 0x85, 0x04, /* Report ID (4) */
52 0x19, 0x00, /* Usage Minimum (0) */
53 0x2a, 0xff, 0xff, /* Usage Maximum (65535) */
54};
55
56static __u8 *lenovo_report_fixup(struct hid_device *hdev, __u8 *rdesc,
57 unsigned int *rsize)
58{
59 switch (hdev->product) {
60 case USB_DEVICE_ID_LENOVO_TPPRODOCK:
61 /* the fixups that need to be done:
62 * - get a reasonable usage max for the vendor collection
63 * 0x8801 from the report ID 4
64 */
65 if (*rsize >= 153 &&
66 memcmp(&rdesc[140], lenovo_pro_dock_need_fixup_collection,
67 sizeof(lenovo_pro_dock_need_fixup_collection)) == 0) {
68 rdesc[151] = 0x01;
69 rdesc[152] = 0x00;
70 }
71 break;
72 }
73 return rdesc;
74}
75
Jamie Lentin94723bf2014-07-23 23:30:45 +010076static int lenovo_input_mapping_tpkbd(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010077 struct hid_input *hi, struct hid_field *field,
78 struct hid_usage *usage, unsigned long **bit, int *max)
79{
Benjamin Tissoires0c521832013-09-11 22:12:24 +020080 if (usage->hid == (HID_UP_BUTTON | 0x0010)) {
Jamie Lentin6a5b4142014-07-23 23:30:46 +010081 /* This sub-device contains trackpoint, mark it */
Benjamin Tissoires0c521832013-09-11 22:12:24 +020082 hid_set_drvdata(hdev, (void *)1);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010083 map_key_clear(KEY_MICMUTE);
84 return 1;
85 }
86 return 0;
87}
88
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010089static int lenovo_input_mapping_cptkbd(struct hid_device *hdev,
90 struct hid_input *hi, struct hid_field *field,
91 struct hid_usage *usage, unsigned long **bit, int *max)
92{
93 /* HID_UP_LNVENDOR = USB, HID_UP_MSVENDOR = BT */
94 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR ||
95 (usage->hid & HID_USAGE_PAGE) == HID_UP_LNVENDOR) {
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010096 switch (usage->hid & HID_USAGE) {
97 case 0x00f1: /* Fn-F4: Mic mute */
98 map_key_clear(KEY_MICMUTE);
99 return 1;
100 case 0x00f2: /* Fn-F5: Brightness down */
101 map_key_clear(KEY_BRIGHTNESSDOWN);
102 return 1;
103 case 0x00f3: /* Fn-F6: Brightness up */
104 map_key_clear(KEY_BRIGHTNESSUP);
105 return 1;
106 case 0x00f4: /* Fn-F7: External display (projector) */
107 map_key_clear(KEY_SWITCHVIDEOMODE);
108 return 1;
109 case 0x00f5: /* Fn-F8: Wireless */
110 map_key_clear(KEY_WLAN);
111 return 1;
112 case 0x00f6: /* Fn-F9: Control panel */
113 map_key_clear(KEY_CONFIG);
114 return 1;
115 case 0x00f8: /* Fn-F11: View open applications (3 boxes) */
116 map_key_clear(KEY_SCALE);
117 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000118 case 0x00f9: /* Fn-F12: Open My computer (6 boxes) USB-only */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100119 /* NB: This mapping is invented in raw_event below */
120 map_key_clear(KEY_FILE);
121 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000122 case 0x00fa: /* Fn-Esc: Fn-lock toggle */
123 map_key_clear(KEY_FN_ESC);
124 return 1;
Jamie Lentin94eefa22014-12-16 21:26:46 +0000125 case 0x00fb: /* Middle mouse button (in native mode) */
126 map_key_clear(BTN_MIDDLE);
127 return 1;
128 }
129 }
130
131 /* Compatibility middle/wheel mappings should be ignored */
132 if (usage->hid == HID_GD_WHEEL)
133 return -1;
134 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON &&
135 (usage->hid & HID_USAGE) == 0x003)
136 return -1;
137 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER &&
138 (usage->hid & HID_USAGE) == 0x238)
139 return -1;
140
141 /* Map wheel emulation reports: 0xffa1 = USB, 0xff10 = BT */
142 if ((usage->hid & HID_USAGE_PAGE) == 0xff100000 ||
143 (usage->hid & HID_USAGE_PAGE) == 0xffa10000) {
144 field->flags |= HID_MAIN_ITEM_RELATIVE | HID_MAIN_ITEM_VARIABLE;
145 field->logical_minimum = -127;
146 field->logical_maximum = 127;
147
148 switch (usage->hid & HID_USAGE) {
149 case 0x0000:
Jamie Lentin7f650682015-08-11 22:40:50 +0100150 hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
Jamie Lentin94eefa22014-12-16 21:26:46 +0000151 return 1;
152 case 0x0001:
Jamie Lentin7f650682015-08-11 22:40:50 +0100153 hid_map_usage(hi, usage, bit, max, EV_REL, REL_WHEEL);
Jamie Lentin94eefa22014-12-16 21:26:46 +0000154 return 1;
155 default:
156 return -1;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100157 }
158 }
159
160 return 0;
161}
162
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100163static int lenovo_input_mapping(struct hid_device *hdev,
164 struct hid_input *hi, struct hid_field *field,
165 struct hid_usage *usage, unsigned long **bit, int *max)
166{
167 switch (hdev->product) {
168 case USB_DEVICE_ID_LENOVO_TPKBD:
169 return lenovo_input_mapping_tpkbd(hdev, hi, field,
170 usage, bit, max);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100171 case USB_DEVICE_ID_LENOVO_CUSBKBD:
172 case USB_DEVICE_ID_LENOVO_CBTKBD:
173 return lenovo_input_mapping_cptkbd(hdev, hi, field,
174 usage, bit, max);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100175 default:
176 return 0;
177 }
178}
179
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100180#undef map_key_clear
181
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100182/* Send a config command to the keyboard */
183static int lenovo_send_cmd_cptkbd(struct hid_device *hdev,
184 unsigned char byte2, unsigned char byte3)
185{
186 int ret;
Josh Boyerea36ae02016-03-28 09:22:14 -0400187 unsigned char *buf;
188
189 buf = kzalloc(3, GFP_KERNEL);
190 if (!buf)
191 return -ENOMEM;
192
193 buf[0] = 0x18;
194 buf[1] = byte2;
195 buf[2] = byte3;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100196
197 switch (hdev->product) {
198 case USB_DEVICE_ID_LENOVO_CUSBKBD:
Josh Boyerea36ae02016-03-28 09:22:14 -0400199 ret = hid_hw_raw_request(hdev, 0x13, buf, 3,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100200 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
201 break;
202 case USB_DEVICE_ID_LENOVO_CBTKBD:
Josh Boyerea36ae02016-03-28 09:22:14 -0400203 ret = hid_hw_output_report(hdev, buf, 3);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100204 break;
205 default:
206 ret = -EINVAL;
207 break;
208 }
209
Josh Boyerea36ae02016-03-28 09:22:14 -0400210 kfree(buf);
211
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100212 return ret < 0 ? ret : 0; /* BT returns 0, USB returns sizeof(buf) */
213}
214
215static void lenovo_features_set_cptkbd(struct hid_device *hdev)
216{
217 int ret;
218 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
219
220 ret = lenovo_send_cmd_cptkbd(hdev, 0x05, cptkbd_data->fn_lock);
221 if (ret)
222 hid_err(hdev, "Fn-lock setting failed: %d\n", ret);
Jamie Lentindbfebb42015-08-11 22:40:51 +0100223
224 ret = lenovo_send_cmd_cptkbd(hdev, 0x02, cptkbd_data->sensitivity);
225 if (ret)
226 hid_err(hdev, "Sensitivity setting failed: %d\n", ret);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100227}
228
229static ssize_t attr_fn_lock_show_cptkbd(struct device *dev,
230 struct device_attribute *attr,
231 char *buf)
232{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800233 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100234 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
235
236 return snprintf(buf, PAGE_SIZE, "%u\n", cptkbd_data->fn_lock);
237}
238
239static ssize_t attr_fn_lock_store_cptkbd(struct device *dev,
240 struct device_attribute *attr,
241 const char *buf,
242 size_t count)
243{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800244 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100245 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
246 int value;
247
248 if (kstrtoint(buf, 10, &value))
249 return -EINVAL;
250 if (value < 0 || value > 1)
251 return -EINVAL;
252
253 cptkbd_data->fn_lock = !!value;
254 lenovo_features_set_cptkbd(hdev);
255
256 return count;
257}
258
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000259static ssize_t attr_sensitivity_show_cptkbd(struct device *dev,
260 struct device_attribute *attr,
261 char *buf)
262{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800263 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000264 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
265
266 return snprintf(buf, PAGE_SIZE, "%u\n",
267 cptkbd_data->sensitivity);
268}
269
270static ssize_t attr_sensitivity_store_cptkbd(struct device *dev,
271 struct device_attribute *attr,
272 const char *buf,
273 size_t count)
274{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800275 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000276 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
277 int value;
278
279 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
280 return -EINVAL;
281
282 cptkbd_data->sensitivity = value;
283 lenovo_features_set_cptkbd(hdev);
284
285 return count;
286}
287
288
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100289static struct device_attribute dev_attr_fn_lock_cptkbd =
290 __ATTR(fn_lock, S_IWUSR | S_IRUGO,
291 attr_fn_lock_show_cptkbd,
292 attr_fn_lock_store_cptkbd);
293
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000294static struct device_attribute dev_attr_sensitivity_cptkbd =
295 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
296 attr_sensitivity_show_cptkbd,
297 attr_sensitivity_store_cptkbd);
298
299
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100300static struct attribute *lenovo_attributes_cptkbd[] = {
301 &dev_attr_fn_lock_cptkbd.attr,
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000302 &dev_attr_sensitivity_cptkbd.attr,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100303 NULL
304};
305
306static const struct attribute_group lenovo_attr_group_cptkbd = {
307 .attrs = lenovo_attributes_cptkbd,
308};
309
310static int lenovo_raw_event(struct hid_device *hdev,
311 struct hid_report *report, u8 *data, int size)
312{
313 /*
314 * Compact USB keyboard's Fn-F12 report holds down many other keys, and
315 * its own key is outside the usage page range. Remove extra
316 * keypresses and remap to inside usage page.
317 */
318 if (unlikely(hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
319 && size == 3
320 && data[0] == 0x15
321 && data[1] == 0x94
322 && data[2] == 0x01)) {
Jamie Lentin5556eb12014-11-09 07:54:29 +0000323 data[1] = 0x00;
324 data[2] = 0x01;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100325 }
326
327 return 0;
328}
329
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100330static int lenovo_event_cptkbd(struct hid_device *hdev,
331 struct hid_field *field, struct hid_usage *usage, __s32 value)
332{
333 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
334
335 /* "wheel" scroll events */
336 if (usage->type == EV_REL && (usage->code == REL_WHEEL ||
337 usage->code == REL_HWHEEL)) {
338 /* Scroll events disable middle-click event */
339 cptkbd_data->middlebutton_state = 2;
340 return 0;
341 }
342
343 /* Middle click events */
344 if (usage->type == EV_KEY && usage->code == BTN_MIDDLE) {
345 if (value == 1) {
346 cptkbd_data->middlebutton_state = 1;
347 } else if (value == 0) {
348 if (cptkbd_data->middlebutton_state == 1) {
349 /* No scrolling inbetween, send middle-click */
350 input_event(field->hidinput->input,
351 EV_KEY, BTN_MIDDLE, 1);
352 input_sync(field->hidinput->input);
353 input_event(field->hidinput->input,
354 EV_KEY, BTN_MIDDLE, 0);
355 input_sync(field->hidinput->input);
356 }
357 cptkbd_data->middlebutton_state = 0;
358 }
359 return 1;
360 }
361
362 return 0;
363}
364
365static int lenovo_event(struct hid_device *hdev, struct hid_field *field,
366 struct hid_usage *usage, __s32 value)
367{
368 switch (hdev->product) {
369 case USB_DEVICE_ID_LENOVO_CUSBKBD:
370 case USB_DEVICE_ID_LENOVO_CBTKBD:
371 return lenovo_event_cptkbd(hdev, field, usage, value);
372 default:
373 return 0;
374 }
375}
376
Jamie Lentin94723bf2014-07-23 23:30:45 +0100377static int lenovo_features_set_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100378{
379 struct hid_report *report;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100380 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100381
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100382 report = hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[4];
383
384 report->field[0]->value[0] = data_pointer->press_to_select ? 0x01 : 0x02;
385 report->field[0]->value[0] |= data_pointer->dragging ? 0x04 : 0x08;
386 report->field[0]->value[0] |= data_pointer->release_to_select ? 0x10 : 0x20;
387 report->field[0]->value[0] |= data_pointer->select_right ? 0x80 : 0x40;
388 report->field[1]->value[0] = 0x03; // unknown setting, imitate windows driver
389 report->field[2]->value[0] = data_pointer->sensitivity;
390 report->field[3]->value[0] = data_pointer->press_speed;
391
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100392 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100393 return 0;
394}
395
Jamie Lentin94723bf2014-07-23 23:30:45 +0100396static ssize_t attr_press_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100397 struct device_attribute *attr,
398 char *buf)
399{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800400 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100401 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100402
403 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->press_to_select);
404}
405
Jamie Lentin94723bf2014-07-23 23:30:45 +0100406static ssize_t attr_press_to_select_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100407 struct device_attribute *attr,
408 const char *buf,
409 size_t count)
410{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800411 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100412 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100413 int value;
414
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100415 if (kstrtoint(buf, 10, &value))
416 return -EINVAL;
417 if (value < 0 || value > 1)
418 return -EINVAL;
419
420 data_pointer->press_to_select = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100421 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100422
423 return count;
424}
425
Jamie Lentin94723bf2014-07-23 23:30:45 +0100426static ssize_t attr_dragging_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100427 struct device_attribute *attr,
428 char *buf)
429{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800430 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100431 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100432
433 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->dragging);
434}
435
Jamie Lentin94723bf2014-07-23 23:30:45 +0100436static ssize_t attr_dragging_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100437 struct device_attribute *attr,
438 const char *buf,
439 size_t count)
440{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800441 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100442 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100443 int value;
444
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100445 if (kstrtoint(buf, 10, &value))
446 return -EINVAL;
447 if (value < 0 || value > 1)
448 return -EINVAL;
449
450 data_pointer->dragging = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100451 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100452
453 return count;
454}
455
Jamie Lentin94723bf2014-07-23 23:30:45 +0100456static ssize_t attr_release_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100457 struct device_attribute *attr,
458 char *buf)
459{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800460 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100461 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100462
463 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->release_to_select);
464}
465
Jamie Lentin94723bf2014-07-23 23:30:45 +0100466static ssize_t attr_release_to_select_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{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800471 struct hid_device *hdev = to_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))
476 return -EINVAL;
477 if (value < 0 || value > 1)
478 return -EINVAL;
479
480 data_pointer->release_to_select = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100481 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100482
483 return count;
484}
485
Jamie Lentin94723bf2014-07-23 23:30:45 +0100486static ssize_t attr_select_right_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100487 struct device_attribute *attr,
488 char *buf)
489{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800490 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100491 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100492
493 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->select_right);
494}
495
Jamie Lentin94723bf2014-07-23 23:30:45 +0100496static ssize_t attr_select_right_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100497 struct device_attribute *attr,
498 const char *buf,
499 size_t count)
500{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800501 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100502 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100503 int value;
504
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100505 if (kstrtoint(buf, 10, &value))
506 return -EINVAL;
507 if (value < 0 || value > 1)
508 return -EINVAL;
509
510 data_pointer->select_right = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100511 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100512
513 return count;
514}
515
Jamie Lentin94723bf2014-07-23 23:30:45 +0100516static ssize_t attr_sensitivity_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100517 struct device_attribute *attr,
518 char *buf)
519{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800520 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100521 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100522
523 return snprintf(buf, PAGE_SIZE, "%u\n",
524 data_pointer->sensitivity);
525}
526
Jamie Lentin94723bf2014-07-23 23:30:45 +0100527static ssize_t attr_sensitivity_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100528 struct device_attribute *attr,
529 const char *buf,
530 size_t count)
531{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800532 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100533 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100534 int value;
535
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100536 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
537 return -EINVAL;
538
539 data_pointer->sensitivity = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100540 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100541
542 return count;
543}
544
Jamie Lentin94723bf2014-07-23 23:30:45 +0100545static ssize_t attr_press_speed_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100546 struct device_attribute *attr,
547 char *buf)
548{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800549 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100550 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100551
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100552 return snprintf(buf, PAGE_SIZE, "%u\n",
553 data_pointer->press_speed);
554}
555
Jamie Lentin94723bf2014-07-23 23:30:45 +0100556static ssize_t attr_press_speed_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100557 struct device_attribute *attr,
558 const char *buf,
559 size_t count)
560{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800561 struct hid_device *hdev = to_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 value;
564
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100565 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
566 return -EINVAL;
567
568 data_pointer->press_speed = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100569 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100570
571 return count;
572}
573
Jamie Lentin94723bf2014-07-23 23:30:45 +0100574static struct device_attribute dev_attr_press_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100575 __ATTR(press_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100576 attr_press_to_select_show_tpkbd,
577 attr_press_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100578
Jamie Lentin94723bf2014-07-23 23:30:45 +0100579static struct device_attribute dev_attr_dragging_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100580 __ATTR(dragging, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100581 attr_dragging_show_tpkbd,
582 attr_dragging_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100583
Jamie Lentin94723bf2014-07-23 23:30:45 +0100584static struct device_attribute dev_attr_release_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100585 __ATTR(release_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100586 attr_release_to_select_show_tpkbd,
587 attr_release_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100588
Jamie Lentin94723bf2014-07-23 23:30:45 +0100589static struct device_attribute dev_attr_select_right_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100590 __ATTR(select_right, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100591 attr_select_right_show_tpkbd,
592 attr_select_right_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100593
Jamie Lentin94723bf2014-07-23 23:30:45 +0100594static struct device_attribute dev_attr_sensitivity_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100595 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100596 attr_sensitivity_show_tpkbd,
597 attr_sensitivity_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100598
Jamie Lentin94723bf2014-07-23 23:30:45 +0100599static struct device_attribute dev_attr_press_speed_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100600 __ATTR(press_speed, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100601 attr_press_speed_show_tpkbd,
602 attr_press_speed_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100603
Jamie Lentin94723bf2014-07-23 23:30:45 +0100604static struct attribute *lenovo_attributes_tpkbd[] = {
605 &dev_attr_press_to_select_tpkbd.attr,
606 &dev_attr_dragging_tpkbd.attr,
607 &dev_attr_release_to_select_tpkbd.attr,
608 &dev_attr_select_right_tpkbd.attr,
609 &dev_attr_sensitivity_tpkbd.attr,
610 &dev_attr_press_speed_tpkbd.attr,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100611 NULL
612};
613
Jamie Lentin94723bf2014-07-23 23:30:45 +0100614static const struct attribute_group lenovo_attr_group_tpkbd = {
615 .attrs = lenovo_attributes_tpkbd,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100616};
617
Jamie Lentin94723bf2014-07-23 23:30:45 +0100618static enum led_brightness lenovo_led_brightness_get_tpkbd(
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100619 struct led_classdev *led_cdev)
620{
Axel Lin832fbea2012-09-13 14:12:08 +0800621 struct device *dev = led_cdev->dev->parent;
Geliang Tangee79a8f2015-12-27 17:25:21 +0800622 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100623 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100624 int led_nr = 0;
625
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100626 if (led_cdev == &data_pointer->led_micmute)
627 led_nr = 1;
628
629 return data_pointer->led_state & (1 << led_nr)
630 ? LED_FULL
631 : LED_OFF;
632}
633
Jamie Lentin94723bf2014-07-23 23:30:45 +0100634static void lenovo_led_brightness_set_tpkbd(struct led_classdev *led_cdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100635 enum led_brightness value)
636{
Axel Lin832fbea2012-09-13 14:12:08 +0800637 struct device *dev = led_cdev->dev->parent;
Geliang Tangee79a8f2015-12-27 17:25:21 +0800638 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100639 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100640 struct hid_report *report;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100641 int led_nr = 0;
642
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100643 if (led_cdev == &data_pointer->led_micmute)
644 led_nr = 1;
645
646 if (value == LED_OFF)
647 data_pointer->led_state &= ~(1 << led_nr);
648 else
649 data_pointer->led_state |= 1 << led_nr;
650
651 report = hdev->report_enum[HID_OUTPUT_REPORT].report_id_hash[3];
652 report->field[0]->value[0] = (data_pointer->led_state >> 0) & 1;
653 report->field[0]->value[1] = (data_pointer->led_state >> 1) & 1;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100654 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100655}
656
Jamie Lentin94723bf2014-07-23 23:30:45 +0100657static int lenovo_probe_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100658{
659 struct device *dev = &hdev->dev;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100660 struct lenovo_drvdata_tpkbd *data_pointer;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100661 size_t name_sz = strlen(dev_name(dev)) + 16;
662 char *name_mute, *name_micmute;
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200663 int i;
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100664 int ret;
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200665
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100666 /*
667 * Only register extra settings against subdevice where input_mapping
668 * set drvdata to 1, i.e. the trackpoint.
669 */
670 if (!hid_get_drvdata(hdev))
671 return 0;
672
673 hid_set_drvdata(hdev, NULL);
674
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200675 /* Validate required reports. */
676 for (i = 0; i < 4; i++) {
677 if (!hid_validate_values(hdev, HID_FEATURE_REPORT, 4, i, 1))
678 return -ENODEV;
679 }
680 if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, 3, 0, 2))
681 return -ENODEV;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100682
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100683 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
684 if (ret)
685 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100686
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200687 data_pointer = devm_kzalloc(&hdev->dev,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100688 sizeof(struct lenovo_drvdata_tpkbd),
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200689 GFP_KERNEL);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100690 if (data_pointer == NULL) {
691 hid_err(hdev, "Could not allocate memory for driver data\n");
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300692 ret = -ENOMEM;
693 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100694 }
695
696 // set same default values as windows driver
697 data_pointer->sensitivity = 0xa0;
698 data_pointer->press_speed = 0x38;
699
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200700 name_mute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
701 name_micmute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
702 if (name_mute == NULL || name_micmute == NULL) {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100703 hid_err(hdev, "Could not allocate memory for led data\n");
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300704 ret = -ENOMEM;
705 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100706 }
707 snprintf(name_mute, name_sz, "%s:amber:mute", dev_name(dev));
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100708 snprintf(name_micmute, name_sz, "%s:amber:micmute", dev_name(dev));
709
710 hid_set_drvdata(hdev, data_pointer);
711
712 data_pointer->led_mute.name = name_mute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100713 data_pointer->led_mute.brightness_get = lenovo_led_brightness_get_tpkbd;
714 data_pointer->led_mute.brightness_set = lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100715 data_pointer->led_mute.dev = dev;
716 led_classdev_register(dev, &data_pointer->led_mute);
717
718 data_pointer->led_micmute.name = name_micmute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100719 data_pointer->led_micmute.brightness_get =
720 lenovo_led_brightness_get_tpkbd;
721 data_pointer->led_micmute.brightness_set =
722 lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100723 data_pointer->led_micmute.dev = dev;
724 led_classdev_register(dev, &data_pointer->led_micmute);
725
Jamie Lentin94723bf2014-07-23 23:30:45 +0100726 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100727
728 return 0;
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300729err:
730 sysfs_remove_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
731 return ret;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100732}
733
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100734static int lenovo_probe_cptkbd(struct hid_device *hdev)
735{
736 int ret;
737 struct lenovo_drvdata_cptkbd *cptkbd_data;
738
739 /* All the custom action happens on the USBMOUSE device for USB */
740 if (hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
741 && hdev->type != HID_TYPE_USBMOUSE) {
742 hid_dbg(hdev, "Ignoring keyboard half of device\n");
743 return 0;
744 }
745
746 cptkbd_data = devm_kzalloc(&hdev->dev,
747 sizeof(*cptkbd_data),
748 GFP_KERNEL);
749 if (cptkbd_data == NULL) {
750 hid_err(hdev, "can't alloc keyboard descriptor\n");
751 return -ENOMEM;
752 }
753 hid_set_drvdata(hdev, cptkbd_data);
754
755 /*
756 * Tell the keyboard a driver understands it, and turn F7, F9, F11 into
757 * regular keys
758 */
759 ret = lenovo_send_cmd_cptkbd(hdev, 0x01, 0x03);
760 if (ret)
761 hid_warn(hdev, "Failed to switch F7/9/11 mode: %d\n", ret);
762
Jamie Lentin94eefa22014-12-16 21:26:46 +0000763 /* Switch middle button to native mode */
764 ret = lenovo_send_cmd_cptkbd(hdev, 0x09, 0x01);
765 if (ret)
766 hid_warn(hdev, "Failed to switch middle button: %d\n", ret);
767
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000768 /* Set keyboard settings to known state */
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100769 cptkbd_data->middlebutton_state = 0;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100770 cptkbd_data->fn_lock = true;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000771 cptkbd_data->sensitivity = 0x05;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100772 lenovo_features_set_cptkbd(hdev);
773
774 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_cptkbd);
775 if (ret)
776 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
777
778 return 0;
779}
780
Jamie Lentin94723bf2014-07-23 23:30:45 +0100781static int lenovo_probe(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100782 const struct hid_device_id *id)
783{
784 int ret;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100785
786 ret = hid_parse(hdev);
787 if (ret) {
788 hid_err(hdev, "hid_parse failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200789 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100790 }
791
792 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
793 if (ret) {
794 hid_err(hdev, "hid_hw_start failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200795 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100796 }
797
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100798 switch (hdev->product) {
799 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100800 ret = lenovo_probe_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100801 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100802 case USB_DEVICE_ID_LENOVO_CUSBKBD:
803 case USB_DEVICE_ID_LENOVO_CBTKBD:
804 ret = lenovo_probe_cptkbd(hdev);
805 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100806 default:
807 ret = 0;
808 break;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200809 }
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100810 if (ret)
811 goto err_hid;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100812
813 return 0;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200814err_hid:
815 hid_hw_stop(hdev);
816err:
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100817 return ret;
818}
819
Jamie Lentin94723bf2014-07-23 23:30:45 +0100820static void lenovo_remove_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100821{
Jamie Lentin94723bf2014-07-23 23:30:45 +0100822 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100823
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100824 /*
825 * Only the trackpoint half of the keyboard has drvdata and stuff that
826 * needs unregistering.
827 */
828 if (data_pointer == NULL)
829 return;
830
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100831 sysfs_remove_group(&hdev->dev.kobj,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100832 &lenovo_attr_group_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100833
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100834 led_classdev_unregister(&data_pointer->led_micmute);
835 led_classdev_unregister(&data_pointer->led_mute);
836
837 hid_set_drvdata(hdev, NULL);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100838}
839
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100840static void lenovo_remove_cptkbd(struct hid_device *hdev)
841{
842 sysfs_remove_group(&hdev->dev.kobj,
843 &lenovo_attr_group_cptkbd);
844}
845
Jamie Lentin94723bf2014-07-23 23:30:45 +0100846static void lenovo_remove(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100847{
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100848 switch (hdev->product) {
849 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100850 lenovo_remove_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100851 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100852 case USB_DEVICE_ID_LENOVO_CUSBKBD:
853 case USB_DEVICE_ID_LENOVO_CBTKBD:
854 lenovo_remove_cptkbd(hdev);
855 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100856 }
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100857
858 hid_hw_stop(hdev);
859}
860
Dmitry Torokhov91543012015-09-29 15:52:59 -0700861static int lenovo_input_configured(struct hid_device *hdev,
Andreas Fleigd92189e2015-04-23 10:25:58 +0200862 struct hid_input *hi)
863{
864 switch (hdev->product) {
865 case USB_DEVICE_ID_LENOVO_TPKBD:
866 case USB_DEVICE_ID_LENOVO_CUSBKBD:
867 case USB_DEVICE_ID_LENOVO_CBTKBD:
868 if (test_bit(EV_REL, hi->input->evbit)) {
869 /* set only for trackpoint device */
870 __set_bit(INPUT_PROP_POINTER, hi->input->propbit);
871 __set_bit(INPUT_PROP_POINTING_STICK,
872 hi->input->propbit);
873 }
874 break;
875 }
Dmitry Torokhov91543012015-09-29 15:52:59 -0700876
877 return 0;
Andreas Fleigd92189e2015-04-23 10:25:58 +0200878}
879
880
Jamie Lentin94723bf2014-07-23 23:30:45 +0100881static const struct hid_device_id lenovo_devices[] = {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100882 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100883 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
884 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400885 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100886 { }
887};
888
Jamie Lentin94723bf2014-07-23 23:30:45 +0100889MODULE_DEVICE_TABLE(hid, lenovo_devices);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100890
Jamie Lentin94723bf2014-07-23 23:30:45 +0100891static struct hid_driver lenovo_driver = {
892 .name = "lenovo",
893 .id_table = lenovo_devices,
Andreas Fleigd92189e2015-04-23 10:25:58 +0200894 .input_configured = lenovo_input_configured,
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100895 .input_mapping = lenovo_input_mapping,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100896 .probe = lenovo_probe,
897 .remove = lenovo_remove,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100898 .raw_event = lenovo_raw_event,
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100899 .event = lenovo_event,
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400900 .report_fixup = lenovo_report_fixup,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100901};
Jamie Lentin94723bf2014-07-23 23:30:45 +0100902module_hid_driver(lenovo_driver);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100903
904MODULE_LICENSE("GPL");