blob: 96fa2a2c2cd3a65f91a2031be36aac59c53452c6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +01002/*
Jamie Lentin6a5b4142014-07-23 23:30:46 +01003 * HID driver for Lenovo:
4 * - ThinkPad USB Keyboard with TrackPoint (tpkbd)
Jamie Lentinf3d4ff02014-07-23 23:30:48 +01005 * - ThinkPad Compact Bluetooth Keyboard with TrackPoint (cptkbd)
6 * - ThinkPad Compact USB Keyboard with TrackPoint (cptkbd)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +01007 *
8 * Copyright (c) 2012 Bernhard Seibold
Jamie Lentinf3d4ff02014-07-23 23:30:48 +01009 * Copyright (c) 2014 Jamie Lentin <jm@lentin.co.uk>
pgzha230cd52018-04-12 19:36:47 +020010 *
11 * Linux IBM/Lenovo Scrollpoint mouse driver:
12 * - IBM Scrollpoint III
13 * - IBM Scrollpoint Pro
14 * - IBM Scrollpoint Optical
15 * - IBM Scrollpoint Optical 800dpi
16 * - IBM Scrollpoint Optical 800dpi Pro
17 * - Lenovo Scrollpoint Optical
18 *
19 * Copyright (c) 2012 Peter De Wachter <pdewacht@gmail.com>
20 * Copyright (c) 2018 Peter Ganzhorn <peter.ganzhorn@gmail.com>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010021 */
22
23/*
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010024 */
25
26#include <linux/module.h>
27#include <linux/sysfs.h>
28#include <linux/device.h>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010029#include <linux/hid.h>
30#include <linux/input.h>
31#include <linux/leds.h>
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010032
33#include "hid-ids.h"
34
Jamie Lentin94723bf2014-07-23 23:30:45 +010035struct lenovo_drvdata_tpkbd {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010036 int led_state;
37 struct led_classdev led_mute;
38 struct led_classdev led_micmute;
39 int press_to_select;
40 int dragging;
41 int release_to_select;
42 int select_right;
43 int sensitivity;
44 int press_speed;
45};
46
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010047struct lenovo_drvdata_cptkbd {
Jamie Lentin3cb5ff02015-08-11 22:40:52 +010048 u8 middlebutton_state; /* 0:Up, 1:Down (undecided), 2:Scrolling */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010049 bool fn_lock;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +000050 int sensitivity;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010051};
52
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010053#define map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, EV_KEY, (c))
54
Benjamin Tissoires181a8b92015-05-01 16:22:45 -040055static const __u8 lenovo_pro_dock_need_fixup_collection[] = {
56 0x05, 0x88, /* Usage Page (Vendor Usage Page 0x88) */
57 0x09, 0x01, /* Usage (Vendor Usage 0x01) */
58 0xa1, 0x01, /* Collection (Application) */
59 0x85, 0x04, /* Report ID (4) */
60 0x19, 0x00, /* Usage Minimum (0) */
61 0x2a, 0xff, 0xff, /* Usage Maximum (65535) */
62};
63
64static __u8 *lenovo_report_fixup(struct hid_device *hdev, __u8 *rdesc,
65 unsigned int *rsize)
66{
67 switch (hdev->product) {
68 case USB_DEVICE_ID_LENOVO_TPPRODOCK:
69 /* the fixups that need to be done:
70 * - get a reasonable usage max for the vendor collection
71 * 0x8801 from the report ID 4
72 */
73 if (*rsize >= 153 &&
74 memcmp(&rdesc[140], lenovo_pro_dock_need_fixup_collection,
75 sizeof(lenovo_pro_dock_need_fixup_collection)) == 0) {
76 rdesc[151] = 0x01;
77 rdesc[152] = 0x00;
78 }
79 break;
80 }
81 return rdesc;
82}
83
Jamie Lentin94723bf2014-07-23 23:30:45 +010084static int lenovo_input_mapping_tpkbd(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010085 struct hid_input *hi, struct hid_field *field,
86 struct hid_usage *usage, unsigned long **bit, int *max)
87{
Benjamin Tissoires0c521832013-09-11 22:12:24 +020088 if (usage->hid == (HID_UP_BUTTON | 0x0010)) {
Jamie Lentin6a5b4142014-07-23 23:30:46 +010089 /* This sub-device contains trackpoint, mark it */
Benjamin Tissoires0c521832013-09-11 22:12:24 +020090 hid_set_drvdata(hdev, (void *)1);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +010091 map_key_clear(KEY_MICMUTE);
92 return 1;
93 }
94 return 0;
95}
96
Jamie Lentinf3d4ff02014-07-23 23:30:48 +010097static int lenovo_input_mapping_cptkbd(struct hid_device *hdev,
98 struct hid_input *hi, struct hid_field *field,
99 struct hid_usage *usage, unsigned long **bit, int *max)
100{
101 /* HID_UP_LNVENDOR = USB, HID_UP_MSVENDOR = BT */
102 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR ||
103 (usage->hid & HID_USAGE_PAGE) == HID_UP_LNVENDOR) {
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100104 switch (usage->hid & HID_USAGE) {
105 case 0x00f1: /* Fn-F4: Mic mute */
106 map_key_clear(KEY_MICMUTE);
107 return 1;
108 case 0x00f2: /* Fn-F5: Brightness down */
109 map_key_clear(KEY_BRIGHTNESSDOWN);
110 return 1;
111 case 0x00f3: /* Fn-F6: Brightness up */
112 map_key_clear(KEY_BRIGHTNESSUP);
113 return 1;
114 case 0x00f4: /* Fn-F7: External display (projector) */
115 map_key_clear(KEY_SWITCHVIDEOMODE);
116 return 1;
117 case 0x00f5: /* Fn-F8: Wireless */
118 map_key_clear(KEY_WLAN);
119 return 1;
120 case 0x00f6: /* Fn-F9: Control panel */
121 map_key_clear(KEY_CONFIG);
122 return 1;
123 case 0x00f8: /* Fn-F11: View open applications (3 boxes) */
124 map_key_clear(KEY_SCALE);
125 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000126 case 0x00f9: /* Fn-F12: Open My computer (6 boxes) USB-only */
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100127 /* NB: This mapping is invented in raw_event below */
128 map_key_clear(KEY_FILE);
129 return 1;
Jamie Lentin5556eb12014-11-09 07:54:29 +0000130 case 0x00fa: /* Fn-Esc: Fn-lock toggle */
131 map_key_clear(KEY_FN_ESC);
132 return 1;
Jamie Lentin94eefa22014-12-16 21:26:46 +0000133 case 0x00fb: /* Middle mouse button (in native mode) */
134 map_key_clear(BTN_MIDDLE);
135 return 1;
136 }
137 }
138
139 /* Compatibility middle/wheel mappings should be ignored */
140 if (usage->hid == HID_GD_WHEEL)
141 return -1;
142 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON &&
143 (usage->hid & HID_USAGE) == 0x003)
144 return -1;
145 if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER &&
146 (usage->hid & HID_USAGE) == 0x238)
147 return -1;
148
149 /* Map wheel emulation reports: 0xffa1 = USB, 0xff10 = BT */
150 if ((usage->hid & HID_USAGE_PAGE) == 0xff100000 ||
151 (usage->hid & HID_USAGE_PAGE) == 0xffa10000) {
152 field->flags |= HID_MAIN_ITEM_RELATIVE | HID_MAIN_ITEM_VARIABLE;
153 field->logical_minimum = -127;
154 field->logical_maximum = 127;
155
156 switch (usage->hid & HID_USAGE) {
157 case 0x0000:
Jamie Lentin7f650682015-08-11 22:40:50 +0100158 hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
Jamie Lentin94eefa22014-12-16 21:26:46 +0000159 return 1;
160 case 0x0001:
Jamie Lentin7f650682015-08-11 22:40:50 +0100161 hid_map_usage(hi, usage, bit, max, EV_REL, REL_WHEEL);
Jamie Lentin94eefa22014-12-16 21:26:46 +0000162 return 1;
163 default:
164 return -1;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100165 }
166 }
167
168 return 0;
169}
170
pgzha230cd52018-04-12 19:36:47 +0200171static int lenovo_input_mapping_scrollpoint(struct hid_device *hdev,
172 struct hid_input *hi, struct hid_field *field,
173 struct hid_usage *usage, unsigned long **bit, int *max)
174{
175 if (usage->hid == HID_GD_Z) {
176 hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
177 return 1;
178 }
179 return 0;
180}
181
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100182static int lenovo_input_mapping(struct hid_device *hdev,
183 struct hid_input *hi, struct hid_field *field,
184 struct hid_usage *usage, unsigned long **bit, int *max)
185{
186 switch (hdev->product) {
187 case USB_DEVICE_ID_LENOVO_TPKBD:
188 return lenovo_input_mapping_tpkbd(hdev, hi, field,
189 usage, bit, max);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100190 case USB_DEVICE_ID_LENOVO_CUSBKBD:
191 case USB_DEVICE_ID_LENOVO_CBTKBD:
192 return lenovo_input_mapping_cptkbd(hdev, hi, field,
193 usage, bit, max);
pgzha230cd52018-04-12 19:36:47 +0200194 case USB_DEVICE_ID_IBM_SCROLLPOINT_III:
195 case USB_DEVICE_ID_IBM_SCROLLPOINT_PRO:
196 case USB_DEVICE_ID_IBM_SCROLLPOINT_OPTICAL:
197 case USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL:
198 case USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL_PRO:
199 case USB_DEVICE_ID_LENOVO_SCROLLPOINT_OPTICAL:
200 return lenovo_input_mapping_scrollpoint(hdev, hi, field,
201 usage, bit, max);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100202 default:
203 return 0;
204 }
205}
206
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100207#undef map_key_clear
208
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100209/* Send a config command to the keyboard */
210static int lenovo_send_cmd_cptkbd(struct hid_device *hdev,
211 unsigned char byte2, unsigned char byte3)
212{
213 int ret;
Josh Boyerea36ae02016-03-28 09:22:14 -0400214 unsigned char *buf;
215
216 buf = kzalloc(3, GFP_KERNEL);
217 if (!buf)
218 return -ENOMEM;
219
220 buf[0] = 0x18;
221 buf[1] = byte2;
222 buf[2] = byte3;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100223
224 switch (hdev->product) {
225 case USB_DEVICE_ID_LENOVO_CUSBKBD:
Josh Boyerea36ae02016-03-28 09:22:14 -0400226 ret = hid_hw_raw_request(hdev, 0x13, buf, 3,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100227 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
228 break;
229 case USB_DEVICE_ID_LENOVO_CBTKBD:
Josh Boyerea36ae02016-03-28 09:22:14 -0400230 ret = hid_hw_output_report(hdev, buf, 3);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100231 break;
232 default:
233 ret = -EINVAL;
234 break;
235 }
236
Josh Boyerea36ae02016-03-28 09:22:14 -0400237 kfree(buf);
238
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100239 return ret < 0 ? ret : 0; /* BT returns 0, USB returns sizeof(buf) */
240}
241
242static void lenovo_features_set_cptkbd(struct hid_device *hdev)
243{
244 int ret;
245 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
246
247 ret = lenovo_send_cmd_cptkbd(hdev, 0x05, cptkbd_data->fn_lock);
248 if (ret)
249 hid_err(hdev, "Fn-lock setting failed: %d\n", ret);
Jamie Lentindbfebb42015-08-11 22:40:51 +0100250
251 ret = lenovo_send_cmd_cptkbd(hdev, 0x02, cptkbd_data->sensitivity);
252 if (ret)
253 hid_err(hdev, "Sensitivity setting failed: %d\n", ret);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100254}
255
256static ssize_t attr_fn_lock_show_cptkbd(struct device *dev,
257 struct device_attribute *attr,
258 char *buf)
259{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800260 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100261 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
262
263 return snprintf(buf, PAGE_SIZE, "%u\n", cptkbd_data->fn_lock);
264}
265
266static ssize_t attr_fn_lock_store_cptkbd(struct device *dev,
267 struct device_attribute *attr,
268 const char *buf,
269 size_t count)
270{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800271 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100272 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
273 int value;
274
275 if (kstrtoint(buf, 10, &value))
276 return -EINVAL;
277 if (value < 0 || value > 1)
278 return -EINVAL;
279
280 cptkbd_data->fn_lock = !!value;
281 lenovo_features_set_cptkbd(hdev);
282
283 return count;
284}
285
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000286static ssize_t attr_sensitivity_show_cptkbd(struct device *dev,
287 struct device_attribute *attr,
288 char *buf)
289{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800290 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000291 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
292
293 return snprintf(buf, PAGE_SIZE, "%u\n",
294 cptkbd_data->sensitivity);
295}
296
297static ssize_t attr_sensitivity_store_cptkbd(struct device *dev,
298 struct device_attribute *attr,
299 const char *buf,
300 size_t count)
301{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800302 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000303 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
304 int value;
305
306 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
307 return -EINVAL;
308
309 cptkbd_data->sensitivity = value;
310 lenovo_features_set_cptkbd(hdev);
311
312 return count;
313}
314
315
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100316static struct device_attribute dev_attr_fn_lock_cptkbd =
317 __ATTR(fn_lock, S_IWUSR | S_IRUGO,
318 attr_fn_lock_show_cptkbd,
319 attr_fn_lock_store_cptkbd);
320
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000321static struct device_attribute dev_attr_sensitivity_cptkbd =
322 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
323 attr_sensitivity_show_cptkbd,
324 attr_sensitivity_store_cptkbd);
325
326
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100327static struct attribute *lenovo_attributes_cptkbd[] = {
328 &dev_attr_fn_lock_cptkbd.attr,
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000329 &dev_attr_sensitivity_cptkbd.attr,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100330 NULL
331};
332
333static const struct attribute_group lenovo_attr_group_cptkbd = {
334 .attrs = lenovo_attributes_cptkbd,
335};
336
337static int lenovo_raw_event(struct hid_device *hdev,
338 struct hid_report *report, u8 *data, int size)
339{
340 /*
341 * Compact USB keyboard's Fn-F12 report holds down many other keys, and
342 * its own key is outside the usage page range. Remove extra
343 * keypresses and remap to inside usage page.
344 */
345 if (unlikely(hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
346 && size == 3
347 && data[0] == 0x15
348 && data[1] == 0x94
349 && data[2] == 0x01)) {
Jamie Lentin5556eb12014-11-09 07:54:29 +0000350 data[1] = 0x00;
351 data[2] = 0x01;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100352 }
353
354 return 0;
355}
356
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100357static int lenovo_event_cptkbd(struct hid_device *hdev,
358 struct hid_field *field, struct hid_usage *usage, __s32 value)
359{
360 struct lenovo_drvdata_cptkbd *cptkbd_data = hid_get_drvdata(hdev);
361
362 /* "wheel" scroll events */
363 if (usage->type == EV_REL && (usage->code == REL_WHEEL ||
364 usage->code == REL_HWHEEL)) {
365 /* Scroll events disable middle-click event */
366 cptkbd_data->middlebutton_state = 2;
367 return 0;
368 }
369
370 /* Middle click events */
371 if (usage->type == EV_KEY && usage->code == BTN_MIDDLE) {
372 if (value == 1) {
373 cptkbd_data->middlebutton_state = 1;
374 } else if (value == 0) {
375 if (cptkbd_data->middlebutton_state == 1) {
376 /* No scrolling inbetween, send middle-click */
377 input_event(field->hidinput->input,
378 EV_KEY, BTN_MIDDLE, 1);
379 input_sync(field->hidinput->input);
380 input_event(field->hidinput->input,
381 EV_KEY, BTN_MIDDLE, 0);
382 input_sync(field->hidinput->input);
383 }
384 cptkbd_data->middlebutton_state = 0;
385 }
386 return 1;
387 }
388
389 return 0;
390}
391
392static int lenovo_event(struct hid_device *hdev, struct hid_field *field,
393 struct hid_usage *usage, __s32 value)
394{
395 switch (hdev->product) {
396 case USB_DEVICE_ID_LENOVO_CUSBKBD:
397 case USB_DEVICE_ID_LENOVO_CBTKBD:
398 return lenovo_event_cptkbd(hdev, field, usage, value);
399 default:
400 return 0;
401 }
402}
403
Jamie Lentin94723bf2014-07-23 23:30:45 +0100404static int lenovo_features_set_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100405{
406 struct hid_report *report;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100407 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100408
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100409 report = hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[4];
410
411 report->field[0]->value[0] = data_pointer->press_to_select ? 0x01 : 0x02;
412 report->field[0]->value[0] |= data_pointer->dragging ? 0x04 : 0x08;
413 report->field[0]->value[0] |= data_pointer->release_to_select ? 0x10 : 0x20;
414 report->field[0]->value[0] |= data_pointer->select_right ? 0x80 : 0x40;
415 report->field[1]->value[0] = 0x03; // unknown setting, imitate windows driver
416 report->field[2]->value[0] = data_pointer->sensitivity;
417 report->field[3]->value[0] = data_pointer->press_speed;
418
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100419 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100420 return 0;
421}
422
Jamie Lentin94723bf2014-07-23 23:30:45 +0100423static ssize_t attr_press_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100424 struct device_attribute *attr,
425 char *buf)
426{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800427 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100428 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100429
430 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->press_to_select);
431}
432
Jamie Lentin94723bf2014-07-23 23:30:45 +0100433static ssize_t attr_press_to_select_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100434 struct device_attribute *attr,
435 const char *buf,
436 size_t count)
437{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800438 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100439 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100440 int value;
441
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100442 if (kstrtoint(buf, 10, &value))
443 return -EINVAL;
444 if (value < 0 || value > 1)
445 return -EINVAL;
446
447 data_pointer->press_to_select = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100448 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100449
450 return count;
451}
452
Jamie Lentin94723bf2014-07-23 23:30:45 +0100453static ssize_t attr_dragging_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100454 struct device_attribute *attr,
455 char *buf)
456{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800457 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100458 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100459
460 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->dragging);
461}
462
Jamie Lentin94723bf2014-07-23 23:30:45 +0100463static ssize_t attr_dragging_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100464 struct device_attribute *attr,
465 const char *buf,
466 size_t count)
467{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800468 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100469 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100470 int value;
471
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100472 if (kstrtoint(buf, 10, &value))
473 return -EINVAL;
474 if (value < 0 || value > 1)
475 return -EINVAL;
476
477 data_pointer->dragging = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100478 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100479
480 return count;
481}
482
Jamie Lentin94723bf2014-07-23 23:30:45 +0100483static ssize_t attr_release_to_select_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100484 struct device_attribute *attr,
485 char *buf)
486{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800487 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100488 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100489
490 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->release_to_select);
491}
492
Jamie Lentin94723bf2014-07-23 23:30:45 +0100493static ssize_t attr_release_to_select_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100494 struct device_attribute *attr,
495 const char *buf,
496 size_t count)
497{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800498 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100499 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100500 int value;
501
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100502 if (kstrtoint(buf, 10, &value))
503 return -EINVAL;
504 if (value < 0 || value > 1)
505 return -EINVAL;
506
507 data_pointer->release_to_select = 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 ssize_t attr_select_right_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100514 struct device_attribute *attr,
515 char *buf)
516{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800517 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100518 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100519
520 return snprintf(buf, PAGE_SIZE, "%u\n", data_pointer->select_right);
521}
522
Jamie Lentin94723bf2014-07-23 23:30:45 +0100523static ssize_t attr_select_right_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100524 struct device_attribute *attr,
525 const char *buf,
526 size_t count)
527{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800528 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100529 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100530 int value;
531
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100532 if (kstrtoint(buf, 10, &value))
533 return -EINVAL;
534 if (value < 0 || value > 1)
535 return -EINVAL;
536
537 data_pointer->select_right = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100538 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100539
540 return count;
541}
542
Jamie Lentin94723bf2014-07-23 23:30:45 +0100543static ssize_t attr_sensitivity_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100544 struct device_attribute *attr,
545 char *buf)
546{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800547 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100548 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100549
550 return snprintf(buf, PAGE_SIZE, "%u\n",
551 data_pointer->sensitivity);
552}
553
Jamie Lentin94723bf2014-07-23 23:30:45 +0100554static ssize_t attr_sensitivity_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100555 struct device_attribute *attr,
556 const char *buf,
557 size_t count)
558{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800559 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100560 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100561 int value;
562
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100563 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
564 return -EINVAL;
565
566 data_pointer->sensitivity = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100567 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100568
569 return count;
570}
571
Jamie Lentin94723bf2014-07-23 23:30:45 +0100572static ssize_t attr_press_speed_show_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100573 struct device_attribute *attr,
574 char *buf)
575{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800576 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100577 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100578
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100579 return snprintf(buf, PAGE_SIZE, "%u\n",
580 data_pointer->press_speed);
581}
582
Jamie Lentin94723bf2014-07-23 23:30:45 +0100583static ssize_t attr_press_speed_store_tpkbd(struct device *dev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100584 struct device_attribute *attr,
585 const char *buf,
586 size_t count)
587{
Geliang Tangee79a8f2015-12-27 17:25:21 +0800588 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100589 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100590 int value;
591
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100592 if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
593 return -EINVAL;
594
595 data_pointer->press_speed = value;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100596 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100597
598 return count;
599}
600
Jamie Lentin94723bf2014-07-23 23:30:45 +0100601static struct device_attribute dev_attr_press_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100602 __ATTR(press_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100603 attr_press_to_select_show_tpkbd,
604 attr_press_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100605
Jamie Lentin94723bf2014-07-23 23:30:45 +0100606static struct device_attribute dev_attr_dragging_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100607 __ATTR(dragging, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100608 attr_dragging_show_tpkbd,
609 attr_dragging_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100610
Jamie Lentin94723bf2014-07-23 23:30:45 +0100611static struct device_attribute dev_attr_release_to_select_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100612 __ATTR(release_to_select, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100613 attr_release_to_select_show_tpkbd,
614 attr_release_to_select_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100615
Jamie Lentin94723bf2014-07-23 23:30:45 +0100616static struct device_attribute dev_attr_select_right_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100617 __ATTR(select_right, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100618 attr_select_right_show_tpkbd,
619 attr_select_right_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100620
Jamie Lentin94723bf2014-07-23 23:30:45 +0100621static struct device_attribute dev_attr_sensitivity_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100622 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100623 attr_sensitivity_show_tpkbd,
624 attr_sensitivity_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100625
Jamie Lentin94723bf2014-07-23 23:30:45 +0100626static struct device_attribute dev_attr_press_speed_tpkbd =
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100627 __ATTR(press_speed, S_IWUSR | S_IRUGO,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100628 attr_press_speed_show_tpkbd,
629 attr_press_speed_store_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100630
Jamie Lentin94723bf2014-07-23 23:30:45 +0100631static struct attribute *lenovo_attributes_tpkbd[] = {
632 &dev_attr_press_to_select_tpkbd.attr,
633 &dev_attr_dragging_tpkbd.attr,
634 &dev_attr_release_to_select_tpkbd.attr,
635 &dev_attr_select_right_tpkbd.attr,
636 &dev_attr_sensitivity_tpkbd.attr,
637 &dev_attr_press_speed_tpkbd.attr,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100638 NULL
639};
640
Jamie Lentin94723bf2014-07-23 23:30:45 +0100641static const struct attribute_group lenovo_attr_group_tpkbd = {
642 .attrs = lenovo_attributes_tpkbd,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100643};
644
Jamie Lentin94723bf2014-07-23 23:30:45 +0100645static enum led_brightness lenovo_led_brightness_get_tpkbd(
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100646 struct led_classdev *led_cdev)
647{
Axel Lin832fbea2012-09-13 14:12:08 +0800648 struct device *dev = led_cdev->dev->parent;
Geliang Tangee79a8f2015-12-27 17:25:21 +0800649 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100650 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100651 int led_nr = 0;
652
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100653 if (led_cdev == &data_pointer->led_micmute)
654 led_nr = 1;
655
656 return data_pointer->led_state & (1 << led_nr)
657 ? LED_FULL
658 : LED_OFF;
659}
660
Jamie Lentin94723bf2014-07-23 23:30:45 +0100661static void lenovo_led_brightness_set_tpkbd(struct led_classdev *led_cdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100662 enum led_brightness value)
663{
Axel Lin832fbea2012-09-13 14:12:08 +0800664 struct device *dev = led_cdev->dev->parent;
Geliang Tangee79a8f2015-12-27 17:25:21 +0800665 struct hid_device *hdev = to_hid_device(dev);
Jamie Lentin94723bf2014-07-23 23:30:45 +0100666 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100667 struct hid_report *report;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100668 int led_nr = 0;
669
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100670 if (led_cdev == &data_pointer->led_micmute)
671 led_nr = 1;
672
673 if (value == LED_OFF)
674 data_pointer->led_state &= ~(1 << led_nr);
675 else
676 data_pointer->led_state |= 1 << led_nr;
677
678 report = hdev->report_enum[HID_OUTPUT_REPORT].report_id_hash[3];
679 report->field[0]->value[0] = (data_pointer->led_state >> 0) & 1;
680 report->field[0]->value[1] = (data_pointer->led_state >> 1) & 1;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100681 hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100682}
683
Jamie Lentin94723bf2014-07-23 23:30:45 +0100684static int lenovo_probe_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100685{
686 struct device *dev = &hdev->dev;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100687 struct lenovo_drvdata_tpkbd *data_pointer;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100688 size_t name_sz = strlen(dev_name(dev)) + 16;
689 char *name_mute, *name_micmute;
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200690 int i;
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100691 int ret;
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200692
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100693 /*
694 * Only register extra settings against subdevice where input_mapping
695 * set drvdata to 1, i.e. the trackpoint.
696 */
697 if (!hid_get_drvdata(hdev))
698 return 0;
699
700 hid_set_drvdata(hdev, NULL);
701
Kees Cook0a9cd0a2013-09-11 21:56:55 +0200702 /* Validate required reports. */
703 for (i = 0; i < 4; i++) {
704 if (!hid_validate_values(hdev, HID_FEATURE_REPORT, 4, i, 1))
705 return -ENODEV;
706 }
707 if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, 3, 0, 2))
708 return -ENODEV;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100709
Jamie Lentine0a6aad2014-07-26 15:42:27 +0100710 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
711 if (ret)
712 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100713
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200714 data_pointer = devm_kzalloc(&hdev->dev,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100715 sizeof(struct lenovo_drvdata_tpkbd),
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200716 GFP_KERNEL);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100717 if (data_pointer == NULL) {
718 hid_err(hdev, "Could not allocate memory for driver data\n");
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300719 ret = -ENOMEM;
720 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100721 }
722
723 // set same default values as windows driver
724 data_pointer->sensitivity = 0xa0;
725 data_pointer->press_speed = 0x38;
726
Benjamin Tissoires01ab35f2013-09-11 22:12:23 +0200727 name_mute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
728 name_micmute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
729 if (name_mute == NULL || name_micmute == NULL) {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100730 hid_err(hdev, "Could not allocate memory for led data\n");
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300731 ret = -ENOMEM;
732 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100733 }
734 snprintf(name_mute, name_sz, "%s:amber:mute", dev_name(dev));
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100735 snprintf(name_micmute, name_sz, "%s:amber:micmute", dev_name(dev));
736
737 hid_set_drvdata(hdev, data_pointer);
738
739 data_pointer->led_mute.name = name_mute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100740 data_pointer->led_mute.brightness_get = lenovo_led_brightness_get_tpkbd;
741 data_pointer->led_mute.brightness_set = lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100742 data_pointer->led_mute.dev = dev;
Aditya Pakki6ae16df2018-12-24 15:39:14 -0600743 ret = led_classdev_register(dev, &data_pointer->led_mute);
744 if (ret < 0)
745 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100746
747 data_pointer->led_micmute.name = name_micmute;
Jamie Lentin94723bf2014-07-23 23:30:45 +0100748 data_pointer->led_micmute.brightness_get =
749 lenovo_led_brightness_get_tpkbd;
750 data_pointer->led_micmute.brightness_set =
751 lenovo_led_brightness_set_tpkbd;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100752 data_pointer->led_micmute.dev = dev;
Aditya Pakki6ae16df2018-12-24 15:39:14 -0600753 ret = led_classdev_register(dev, &data_pointer->led_micmute);
754 if (ret < 0) {
755 led_classdev_unregister(&data_pointer->led_mute);
756 goto err;
757 }
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100758
Jamie Lentin94723bf2014-07-23 23:30:45 +0100759 lenovo_features_set_tpkbd(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100760
761 return 0;
Alexey Khoroshilovb7212602015-05-29 03:39:31 +0300762err:
763 sysfs_remove_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
764 return ret;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100765}
766
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100767static int lenovo_probe_cptkbd(struct hid_device *hdev)
768{
769 int ret;
770 struct lenovo_drvdata_cptkbd *cptkbd_data;
771
772 /* All the custom action happens on the USBMOUSE device for USB */
773 if (hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
774 && hdev->type != HID_TYPE_USBMOUSE) {
775 hid_dbg(hdev, "Ignoring keyboard half of device\n");
776 return 0;
777 }
778
779 cptkbd_data = devm_kzalloc(&hdev->dev,
780 sizeof(*cptkbd_data),
781 GFP_KERNEL);
782 if (cptkbd_data == NULL) {
783 hid_err(hdev, "can't alloc keyboard descriptor\n");
784 return -ENOMEM;
785 }
786 hid_set_drvdata(hdev, cptkbd_data);
787
788 /*
789 * Tell the keyboard a driver understands it, and turn F7, F9, F11 into
790 * regular keys
791 */
792 ret = lenovo_send_cmd_cptkbd(hdev, 0x01, 0x03);
793 if (ret)
794 hid_warn(hdev, "Failed to switch F7/9/11 mode: %d\n", ret);
795
Jamie Lentin94eefa22014-12-16 21:26:46 +0000796 /* Switch middle button to native mode */
797 ret = lenovo_send_cmd_cptkbd(hdev, 0x09, 0x01);
798 if (ret)
799 hid_warn(hdev, "Failed to switch middle button: %d\n", ret);
800
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000801 /* Set keyboard settings to known state */
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100802 cptkbd_data->middlebutton_state = 0;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100803 cptkbd_data->fn_lock = true;
Jamie Lentine3cb0ac2014-12-16 21:26:45 +0000804 cptkbd_data->sensitivity = 0x05;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100805 lenovo_features_set_cptkbd(hdev);
806
807 ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_cptkbd);
808 if (ret)
809 hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
810
811 return 0;
812}
813
Jamie Lentin94723bf2014-07-23 23:30:45 +0100814static int lenovo_probe(struct hid_device *hdev,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100815 const struct hid_device_id *id)
816{
817 int ret;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100818
819 ret = hid_parse(hdev);
820 if (ret) {
821 hid_err(hdev, "hid_parse failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200822 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100823 }
824
825 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
826 if (ret) {
827 hid_err(hdev, "hid_hw_start failed\n");
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200828 goto err;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100829 }
830
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100831 switch (hdev->product) {
832 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100833 ret = lenovo_probe_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100834 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100835 case USB_DEVICE_ID_LENOVO_CUSBKBD:
836 case USB_DEVICE_ID_LENOVO_CBTKBD:
837 ret = lenovo_probe_cptkbd(hdev);
838 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100839 default:
840 ret = 0;
841 break;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200842 }
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100843 if (ret)
844 goto err_hid;
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100845
846 return 0;
Benjamin Tissoires0ccdd9e2013-09-11 21:56:59 +0200847err_hid:
848 hid_hw_stop(hdev);
849err:
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100850 return ret;
851}
852
Jamie Lentin94723bf2014-07-23 23:30:45 +0100853static void lenovo_remove_tpkbd(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100854{
Jamie Lentin94723bf2014-07-23 23:30:45 +0100855 struct lenovo_drvdata_tpkbd *data_pointer = hid_get_drvdata(hdev);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100856
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100857 /*
858 * Only the trackpoint half of the keyboard has drvdata and stuff that
859 * needs unregistering.
860 */
861 if (data_pointer == NULL)
862 return;
863
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100864 sysfs_remove_group(&hdev->dev.kobj,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100865 &lenovo_attr_group_tpkbd);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100866
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100867 led_classdev_unregister(&data_pointer->led_micmute);
868 led_classdev_unregister(&data_pointer->led_mute);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100869}
870
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100871static void lenovo_remove_cptkbd(struct hid_device *hdev)
872{
873 sysfs_remove_group(&hdev->dev.kobj,
874 &lenovo_attr_group_cptkbd);
875}
876
Jamie Lentin94723bf2014-07-23 23:30:45 +0100877static void lenovo_remove(struct hid_device *hdev)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100878{
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100879 switch (hdev->product) {
880 case USB_DEVICE_ID_LENOVO_TPKBD:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100881 lenovo_remove_tpkbd(hdev);
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100882 break;
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100883 case USB_DEVICE_ID_LENOVO_CUSBKBD:
884 case USB_DEVICE_ID_LENOVO_CBTKBD:
885 lenovo_remove_cptkbd(hdev);
886 break;
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100887 }
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100888
889 hid_hw_stop(hdev);
890}
891
Dmitry Torokhov91543012015-09-29 15:52:59 -0700892static int lenovo_input_configured(struct hid_device *hdev,
Andreas Fleigd92189e2015-04-23 10:25:58 +0200893 struct hid_input *hi)
894{
895 switch (hdev->product) {
896 case USB_DEVICE_ID_LENOVO_TPKBD:
897 case USB_DEVICE_ID_LENOVO_CUSBKBD:
898 case USB_DEVICE_ID_LENOVO_CBTKBD:
899 if (test_bit(EV_REL, hi->input->evbit)) {
900 /* set only for trackpoint device */
901 __set_bit(INPUT_PROP_POINTER, hi->input->propbit);
902 __set_bit(INPUT_PROP_POINTING_STICK,
903 hi->input->propbit);
904 }
905 break;
906 }
Dmitry Torokhov91543012015-09-29 15:52:59 -0700907
908 return 0;
Andreas Fleigd92189e2015-04-23 10:25:58 +0200909}
910
911
Jamie Lentin94723bf2014-07-23 23:30:45 +0100912static const struct hid_device_id lenovo_devices[] = {
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100913 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100914 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
915 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400916 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
pgzha230cd52018-04-12 19:36:47 +0200917 { HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_III) },
918 { HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_PRO) },
919 { HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_OPTICAL) },
920 { HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL) },
921 { HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL_PRO) },
922 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_SCROLLPOINT_OPTICAL) },
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100923 { }
924};
925
Jamie Lentin94723bf2014-07-23 23:30:45 +0100926MODULE_DEVICE_TABLE(hid, lenovo_devices);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100927
Jamie Lentin94723bf2014-07-23 23:30:45 +0100928static struct hid_driver lenovo_driver = {
929 .name = "lenovo",
930 .id_table = lenovo_devices,
Andreas Fleigd92189e2015-04-23 10:25:58 +0200931 .input_configured = lenovo_input_configured,
Jamie Lentin6a5b4142014-07-23 23:30:46 +0100932 .input_mapping = lenovo_input_mapping,
Jamie Lentin94723bf2014-07-23 23:30:45 +0100933 .probe = lenovo_probe,
934 .remove = lenovo_remove,
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100935 .raw_event = lenovo_raw_event,
Jamie Lentin3cb5ff02015-08-11 22:40:52 +0100936 .event = lenovo_event,
Benjamin Tissoires181a8b92015-05-01 16:22:45 -0400937 .report_fixup = lenovo_report_fixup,
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100938};
Jamie Lentin94723bf2014-07-23 23:30:45 +0100939module_hid_driver(lenovo_driver);
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100940
941MODULE_LICENSE("GPL");