xref: /linux/drivers/hid/hid-lenovo.c (revision e814f3fd16acfb7f9966773953de8f740a1e3202)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *  HID driver for Lenovo:
4  *  - ThinkPad USB Keyboard with TrackPoint (tpkbd)
5  *  - ThinkPad Compact Bluetooth Keyboard with TrackPoint (cptkbd)
6  *  - ThinkPad Compact USB Keyboard with TrackPoint (cptkbd)
7  *  - ThinkPad TrackPoint Keyboard II USB/Bluetooth (cptkbd/tpIIkbd)
8  *
9  *  Copyright (c) 2012 Bernhard Seibold
10  *  Copyright (c) 2014 Jamie Lentin <jm@lentin.co.uk>
11  *
12  * Linux IBM/Lenovo Scrollpoint mouse driver:
13  * - IBM Scrollpoint III
14  * - IBM Scrollpoint Pro
15  * - IBM Scrollpoint Optical
16  * - IBM Scrollpoint Optical 800dpi
17  * - IBM Scrollpoint Optical 800dpi Pro
18  * - Lenovo Scrollpoint Optical
19  *
20  *  Copyright (c) 2012 Peter De Wachter <pdewacht@gmail.com>
21  *  Copyright (c) 2018 Peter Ganzhorn <peter.ganzhorn@gmail.com>
22  */
23 
24 /*
25  */
26 
27 #include <linux/module.h>
28 #include <linux/sysfs.h>
29 #include <linux/device.h>
30 #include <linux/hid.h>
31 #include <linux/input.h>
32 #include <linux/leds.h>
33 #include <linux/workqueue.h>
34 
35 #if IS_ENABLED(CONFIG_ACPI_PLATFORM_PROFILE)
36 #include <linux/platform_profile.h>
37 #endif /* CONFIG_ACPI_PLATFORM_PROFILE */
38 
39 #include "hid-ids.h"
40 
41 /* Userspace expects F20 for mic-mute KEY_MICMUTE does not work */
42 #define LENOVO_KEY_MICMUTE KEY_F20
43 
44 /* HID raw events for ThinkPad X12 Tabs*/
45 #define TP_X12_RAW_HOTKEY_FN_F4		0x00020003
46 #define TP_X12_RAW_HOTKEY_FN_F8		0x38001003
47 #define TP_X12_RAW_HOTKEY_FN_F10	0x00000803
48 #define TP_X12_RAW_HOTKEY_FN_F12	0x00000403
49 #define TP_X12_RAW_HOTKEY_FN_SPACE	0x18001003
50 
51 struct lenovo_drvdata {
52 	u8 led_report[3]; /* Must be first for proper alignment */
53 	int led_state;
54 	struct mutex led_report_mutex;
55 	struct led_classdev led_mute;
56 	struct led_classdev led_micmute;
57 	struct work_struct fn_lock_sync_work;
58 	struct hid_device *hdev;
59 	int press_to_select;
60 	int dragging;
61 	int release_to_select;
62 	int select_right;
63 	int sensitivity;
64 	int press_speed;
65 	/* 0: Up
66 	 * 1: Down (undecided)
67 	 * 2: Scrolling
68 	 */
69 	u8 middlebutton_state;
70 	bool fn_lock;
71 	bool middleclick_workaround_cptkbd;
72 };
73 
74 #define map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, EV_KEY, (c))
75 
76 #define TP10UBKBD_LED_OUTPUT_REPORT	9
77 
78 #define TP10UBKBD_FN_LOCK_LED		0x54
79 #define TP10UBKBD_MUTE_LED		0x64
80 #define TP10UBKBD_MICMUTE_LED		0x74
81 
82 #define TP10UBKBD_LED_OFF		1
83 #define TP10UBKBD_LED_ON		2
84 
85 /* Function to report raw_events as key events*/
86 static inline void report_key_event(struct input_dev *input, int keycode)
87 {
88 	input_report_key(input, keycode, 1);
89 	input_report_key(input, keycode, 0);
90 	input_sync(input);
91 }
92 
93 static int lenovo_led_set_tp10ubkbd(struct hid_device *hdev, u8 led_code,
94 				    enum led_brightness value)
95 {
96 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
97 	int ret;
98 
99 	mutex_lock(&data->led_report_mutex);
100 
101 	data->led_report[0] = TP10UBKBD_LED_OUTPUT_REPORT;
102 	data->led_report[1] = led_code;
103 	data->led_report[2] = value ? TP10UBKBD_LED_ON : TP10UBKBD_LED_OFF;
104 	ret = hid_hw_raw_request(hdev, data->led_report[0], data->led_report, 3,
105 				 HID_OUTPUT_REPORT, HID_REQ_SET_REPORT);
106 	if (ret != 3) {
107 		if (ret != -ENODEV)
108 			hid_err(hdev, "Set LED output report error: %d\n", ret);
109 
110 		ret = ret < 0 ? ret : -EIO;
111 	} else {
112 		ret = 0;
113 	}
114 
115 	mutex_unlock(&data->led_report_mutex);
116 
117 	return ret;
118 }
119 
120 static void lenovo_tp10ubkbd_sync_fn_lock(struct work_struct *work)
121 {
122 	struct lenovo_drvdata *data =
123 		container_of(work, struct lenovo_drvdata, fn_lock_sync_work);
124 
125 	lenovo_led_set_tp10ubkbd(data->hdev, TP10UBKBD_FN_LOCK_LED,
126 				 data->fn_lock);
127 }
128 
129 static const __u8 lenovo_pro_dock_need_fixup_collection[] = {
130 	0x05, 0x88,		/* Usage Page (Vendor Usage Page 0x88)	*/
131 	0x09, 0x01,		/* Usage (Vendor Usage 0x01)		*/
132 	0xa1, 0x01,		/* Collection (Application)		*/
133 	0x85, 0x04,		/*  Report ID (4)			*/
134 	0x19, 0x00,		/*  Usage Minimum (0)			*/
135 	0x2a, 0xff, 0xff,	/*  Usage Maximum (65535)		*/
136 };
137 
138 /* Broken ThinkPad TrackPoint II collection (Bluetooth mode) */
139 static const __u8 lenovo_tpIIbtkbd_need_fixup_collection[] = {
140 	0x06, 0x00, 0xFF,	/* Usage Page (Vendor Defined 0xFF00) */
141 	0x09, 0x01,		/* Usage (0x01) */
142 	0xA1, 0x01,		/* Collection (Application) */
143 	0x85, 0x05,		/*   Report ID (5) */
144 	0x1A, 0xF1, 0x00,	/*   Usage Minimum (0xF1) */
145 	0x2A, 0xFC, 0x00,	/*   Usage Maximum (0xFC) */
146 	0x15, 0x00,		/*   Logical Minimum (0) */
147 	0x25, 0x01,		/*   Logical Maximum (1) */
148 	0x75, 0x01,		/*   Report Size (1) */
149 	0x95, 0x0D,		/*   Report Count (13) */
150 	0x81, 0x02,		/*   Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) */
151 	0x95, 0x03,		/*   Report Count (3) */
152 	0x81, 0x01,		/*   Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position) */
153 };
154 
155 static const __u8 *lenovo_report_fixup(struct hid_device *hdev, __u8 *rdesc,
156 		unsigned int *rsize)
157 {
158 	switch (hdev->product) {
159 	case USB_DEVICE_ID_LENOVO_TPPRODOCK:
160 		/* the fixups that need to be done:
161 		 *   - get a reasonable usage max for the vendor collection
162 		 *     0x8801 from the report ID 4
163 		 */
164 		if (*rsize >= 153 &&
165 		    memcmp(&rdesc[140], lenovo_pro_dock_need_fixup_collection,
166 			  sizeof(lenovo_pro_dock_need_fixup_collection)) == 0) {
167 			rdesc[151] = 0x01;
168 			rdesc[152] = 0x00;
169 		}
170 		break;
171 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
172 		if (*rsize >= 263 &&
173 		    memcmp(&rdesc[234], lenovo_tpIIbtkbd_need_fixup_collection,
174 			  sizeof(lenovo_tpIIbtkbd_need_fixup_collection)) == 0) {
175 			rdesc[244] = 0x00; /* usage minimum = 0x00 */
176 			rdesc[247] = 0xff; /* usage maximum = 0xff */
177 			rdesc[252] = 0xff; /* logical maximum = 0xff */
178 			rdesc[254] = 0x08; /* report size = 0x08 */
179 			rdesc[256] = 0x01; /* report count = 0x01 */
180 			rdesc[258] = 0x00; /* input = 0x00 */
181 			rdesc[260] = 0x01; /* report count (2) = 0x01 */
182 		}
183 		break;
184 	}
185 	return rdesc;
186 }
187 
188 static int lenovo_input_mapping_tpkbd(struct hid_device *hdev,
189 		struct hid_input *hi, struct hid_field *field,
190 		struct hid_usage *usage, unsigned long **bit, int *max)
191 {
192 	if (usage->hid == (HID_UP_BUTTON | 0x0010)) {
193 		/* This sub-device contains trackpoint, mark it */
194 		hid_set_drvdata(hdev, (void *)1);
195 		map_key_clear(LENOVO_KEY_MICMUTE);
196 		return 1;
197 	}
198 	return 0;
199 }
200 
201 static int lenovo_input_mapping_cptkbd(struct hid_device *hdev,
202 		struct hid_input *hi, struct hid_field *field,
203 		struct hid_usage *usage, unsigned long **bit, int *max)
204 {
205 	/* HID_UP_LNVENDOR = USB, HID_UP_MSVENDOR = BT */
206 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR ||
207 	    (usage->hid & HID_USAGE_PAGE) == HID_UP_LNVENDOR) {
208 		switch (usage->hid & HID_USAGE) {
209 		case 0x00f1: /* Fn-F4: Mic mute */
210 			map_key_clear(LENOVO_KEY_MICMUTE);
211 			return 1;
212 		case 0x00f2: /* Fn-F5: Brightness down */
213 			map_key_clear(KEY_BRIGHTNESSDOWN);
214 			return 1;
215 		case 0x00f3: /* Fn-F6: Brightness up */
216 			map_key_clear(KEY_BRIGHTNESSUP);
217 			return 1;
218 		case 0x00f4: /* Fn-F7: External display (projector) */
219 			map_key_clear(KEY_SWITCHVIDEOMODE);
220 			return 1;
221 		case 0x00f5: /* Fn-F8: Wireless */
222 			map_key_clear(KEY_WLAN);
223 			return 1;
224 		case 0x00f6: /* Fn-F9: Control panel */
225 			map_key_clear(KEY_CONFIG);
226 			return 1;
227 		case 0x00f8: /* Fn-F11: View open applications (3 boxes) */
228 			map_key_clear(KEY_SCALE);
229 			return 1;
230 		case 0x00f9: /* Fn-F12: Open My computer (6 boxes) USB-only */
231 			/* NB: This mapping is invented in raw_event below */
232 			map_key_clear(KEY_FILE);
233 			return 1;
234 		case 0x00fa: /* Fn-Esc: Fn-lock toggle */
235 			map_key_clear(KEY_FN_ESC);
236 			return 1;
237 		case 0x00fb: /* Middle mouse button (in native mode) */
238 			map_key_clear(BTN_MIDDLE);
239 			return 1;
240 		}
241 	}
242 
243 	/* Compatibility middle/wheel mappings should be ignored */
244 	if (usage->hid == HID_GD_WHEEL)
245 		return -1;
246 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON &&
247 			(usage->hid & HID_USAGE) == 0x003)
248 		return -1;
249 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER &&
250 			(usage->hid & HID_USAGE) == 0x238)
251 		return -1;
252 
253 	/* Map wheel emulation reports: 0xffa1 = USB, 0xff10 = BT */
254 	if ((usage->hid & HID_USAGE_PAGE) == 0xff100000 ||
255 	    (usage->hid & HID_USAGE_PAGE) == 0xffa10000) {
256 		field->flags |= HID_MAIN_ITEM_RELATIVE | HID_MAIN_ITEM_VARIABLE;
257 		field->logical_minimum = -127;
258 		field->logical_maximum = 127;
259 
260 		switch (usage->hid & HID_USAGE) {
261 		case 0x0000:
262 			hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
263 			return 1;
264 		case 0x0001:
265 			hid_map_usage(hi, usage, bit, max, EV_REL, REL_WHEEL);
266 			return 1;
267 		default:
268 			return -1;
269 		}
270 	}
271 
272 	return 0;
273 }
274 
275 static int lenovo_input_mapping_tpIIkbd(struct hid_device *hdev,
276 		struct hid_input *hi, struct hid_field *field,
277 		struct hid_usage *usage, unsigned long **bit, int *max)
278 {
279 	/*
280 	 * 0xff0a0000 = USB, HID_UP_MSVENDOR = BT.
281 	 *
282 	 * In BT mode, there are two HID_UP_MSVENDOR pages.
283 	 * Use only the page that contains report ID == 5.
284 	 */
285 	if (((usage->hid & HID_USAGE_PAGE) == 0xff0a0000 ||
286 	    (usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR) &&
287 	    field->report->id == 5) {
288 		switch (usage->hid & HID_USAGE) {
289 		case 0x00bb: /* Fn-F4: Mic mute */
290 			map_key_clear(LENOVO_KEY_MICMUTE);
291 			return 1;
292 		case 0x00c3: /* Fn-F5: Brightness down */
293 			map_key_clear(KEY_BRIGHTNESSDOWN);
294 			return 1;
295 		case 0x00c4: /* Fn-F6: Brightness up */
296 			map_key_clear(KEY_BRIGHTNESSUP);
297 			return 1;
298 		case 0x00c1: /* Fn-F8: Notification center */
299 			map_key_clear(KEY_NOTIFICATION_CENTER);
300 			return 1;
301 		case 0x00bc: /* Fn-F9: Control panel */
302 			map_key_clear(KEY_CONFIG);
303 			return 1;
304 		case 0x00b6: /* Fn-F10: Bluetooth */
305 			map_key_clear(KEY_BLUETOOTH);
306 			return 1;
307 		case 0x00b7: /* Fn-F11: Keyboard config */
308 			map_key_clear(KEY_KEYBOARD);
309 			return 1;
310 		case 0x00b8: /* Fn-F12: User function */
311 			map_key_clear(KEY_PROG1);
312 			return 1;
313 		case 0x00b9: /* Fn-PrtSc: Snipping tool */
314 			map_key_clear(KEY_SELECTIVE_SCREENSHOT);
315 			return 1;
316 		case 0x00b5: /* Fn-Esc: Fn-lock toggle */
317 			map_key_clear(KEY_FN_ESC);
318 			return 1;
319 		}
320 	}
321 
322 	if ((usage->hid & HID_USAGE_PAGE) == 0xffa00000) {
323 		switch (usage->hid & HID_USAGE) {
324 		case 0x00fb: /* Middle mouse (in native USB mode) */
325 			map_key_clear(BTN_MIDDLE);
326 			return 1;
327 		}
328 	}
329 
330 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_MSVENDOR &&
331 	    field->report->id == 21) {
332 		switch (usage->hid & HID_USAGE) {
333 		case 0x0004: /* Middle mouse (in native Bluetooth mode) */
334 			map_key_clear(BTN_MIDDLE);
335 			return 1;
336 		}
337 	}
338 
339 	/* Compatibility middle/wheel mappings should be ignored */
340 	if (usage->hid == HID_GD_WHEEL)
341 		return -1;
342 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON &&
343 			(usage->hid & HID_USAGE) == 0x003)
344 		return -1;
345 	if ((usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER &&
346 			(usage->hid & HID_USAGE) == 0x238)
347 		return -1;
348 
349 	/* Map wheel emulation reports: 0xff10 */
350 	if ((usage->hid & HID_USAGE_PAGE) == 0xff100000) {
351 		field->flags |= HID_MAIN_ITEM_RELATIVE | HID_MAIN_ITEM_VARIABLE;
352 		field->logical_minimum = -127;
353 		field->logical_maximum = 127;
354 
355 		switch (usage->hid & HID_USAGE) {
356 		case 0x0000:
357 			hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
358 			return 1;
359 		case 0x0001:
360 			hid_map_usage(hi, usage, bit, max, EV_REL, REL_WHEEL);
361 			return 1;
362 		default:
363 			return -1;
364 		}
365 	}
366 
367 	return 0;
368 }
369 
370 static int lenovo_input_mapping_scrollpoint(struct hid_device *hdev,
371 		struct hid_input *hi, struct hid_field *field,
372 		struct hid_usage *usage, unsigned long **bit, int *max)
373 {
374 	if (usage->hid == HID_GD_Z) {
375 		hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL);
376 		return 1;
377 	}
378 	return 0;
379 }
380 
381 static int lenovo_input_mapping_tp10_ultrabook_kbd(struct hid_device *hdev,
382 		struct hid_input *hi, struct hid_field *field,
383 		struct hid_usage *usage, unsigned long **bit, int *max)
384 {
385 	/*
386 	 * The ThinkPad 10 Ultrabook Keyboard uses 0x000c0001 usage for
387 	 * a bunch of keys which have no standard consumer page code.
388 	 */
389 	if (usage->hid == 0x000c0001) {
390 		switch (usage->usage_index) {
391 		case 8: /* Fn-Esc: Fn-lock toggle */
392 			map_key_clear(KEY_FN_ESC);
393 			return 1;
394 		case 9: /* Fn-F4: Mic mute */
395 			map_key_clear(LENOVO_KEY_MICMUTE);
396 			return 1;
397 		case 10: /* Fn-F7: Control panel */
398 			map_key_clear(KEY_CONFIG);
399 			return 1;
400 		case 11: /* Fn-F8: Search (magnifier glass) */
401 			map_key_clear(KEY_SEARCH);
402 			return 1;
403 		case 12: /* Fn-F10: Open My computer (6 boxes) */
404 			map_key_clear(KEY_FILE);
405 			return 1;
406 		}
407 	}
408 
409 	/*
410 	 * The Ultrabook Keyboard sends a spurious F23 key-press when resuming
411 	 * from suspend and it does not actually have a F23 key, ignore it.
412 	 */
413 	if (usage->hid == 0x00070072)
414 		return -1;
415 
416 	return 0;
417 }
418 
419 static int lenovo_input_mapping_x1_tab_kbd(struct hid_device *hdev,
420 		struct hid_input *hi, struct hid_field *field,
421 		struct hid_usage *usage, unsigned long **bit, int *max)
422 {
423 	/*
424 	 * The ThinkPad X1 Tablet Thin Keyboard uses 0x000c0001 usage for
425 	 * a bunch of keys which have no standard consumer page code.
426 	 */
427 	if (usage->hid == 0x000c0001) {
428 		switch (usage->usage_index) {
429 		case 0: /* Fn-F10: Enable/disable bluetooth */
430 			map_key_clear(KEY_BLUETOOTH);
431 			return 1;
432 		case 1: /* Fn-F11: Keyboard settings */
433 			map_key_clear(KEY_KEYBOARD);
434 			return 1;
435 		case 2: /* Fn-F12: User function / Cortana */
436 			map_key_clear(KEY_MACRO1);
437 			return 1;
438 		case 3: /* Fn-PrtSc: Snipping tool */
439 			map_key_clear(KEY_SELECTIVE_SCREENSHOT);
440 			return 1;
441 		case 8: /* Fn-Esc: Fn-lock toggle */
442 			map_key_clear(KEY_FN_ESC);
443 			return 1;
444 		case 9: /* Fn-F4: Mute/unmute microphone */
445 			map_key_clear(KEY_MICMUTE);
446 			return 1;
447 		case 10: /* Fn-F9: Settings */
448 			map_key_clear(KEY_CONFIG);
449 			return 1;
450 		case 13: /* Fn-F7: Manage external displays */
451 			map_key_clear(KEY_SWITCHVIDEOMODE);
452 			return 1;
453 		case 14: /* Fn-F8: Enable/disable wifi */
454 			map_key_clear(KEY_WLAN);
455 			return 1;
456 		}
457 	}
458 
459 	if (usage->hid == (HID_UP_KEYBOARD | 0x009a)) {
460 		map_key_clear(KEY_SYSRQ);
461 		return 1;
462 	}
463 
464 	return 0;
465 }
466 
467 static int lenovo_input_mapping(struct hid_device *hdev,
468 		struct hid_input *hi, struct hid_field *field,
469 		struct hid_usage *usage, unsigned long **bit, int *max)
470 {
471 	switch (hdev->product) {
472 	case USB_DEVICE_ID_LENOVO_TPKBD:
473 		return lenovo_input_mapping_tpkbd(hdev, hi, field,
474 							usage, bit, max);
475 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
476 	case USB_DEVICE_ID_LENOVO_CBTKBD:
477 		return lenovo_input_mapping_cptkbd(hdev, hi, field,
478 							usage, bit, max);
479 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
480 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
481 		return lenovo_input_mapping_tpIIkbd(hdev, hi, field,
482 							usage, bit, max);
483 	case USB_DEVICE_ID_IBM_SCROLLPOINT_III:
484 	case USB_DEVICE_ID_IBM_SCROLLPOINT_PRO:
485 	case USB_DEVICE_ID_IBM_SCROLLPOINT_OPTICAL:
486 	case USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL:
487 	case USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL_PRO:
488 	case USB_DEVICE_ID_LENOVO_SCROLLPOINT_OPTICAL:
489 		return lenovo_input_mapping_scrollpoint(hdev, hi, field,
490 							usage, bit, max);
491 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
492 		return lenovo_input_mapping_tp10_ultrabook_kbd(hdev, hi, field,
493 							       usage, bit, max);
494 	case USB_DEVICE_ID_LENOVO_X12_TAB:
495 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
496 	case USB_DEVICE_ID_LENOVO_X1_TAB:
497 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
498 		return lenovo_input_mapping_x1_tab_kbd(hdev, hi, field, usage, bit, max);
499 	default:
500 		return 0;
501 	}
502 }
503 
504 #undef map_key_clear
505 
506 /* Send a config command to the keyboard */
507 static int lenovo_send_cmd_cptkbd(struct hid_device *hdev,
508 			unsigned char byte2, unsigned char byte3)
509 {
510 	int ret;
511 	unsigned char *buf;
512 
513 	buf = kzalloc(3, GFP_KERNEL);
514 	if (!buf)
515 		return -ENOMEM;
516 
517 	/*
518 	 * Feature report 0x13 is used for USB,
519 	 * output report 0x18 is used for Bluetooth.
520 	 * buf[0] is ignored by hid_hw_raw_request.
521 	 */
522 	buf[0] = 0x18;
523 	buf[1] = byte2;
524 	buf[2] = byte3;
525 
526 	switch (hdev->product) {
527 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
528 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
529 		ret = hid_hw_raw_request(hdev, 0x13, buf, 3,
530 					HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
531 		break;
532 	case USB_DEVICE_ID_LENOVO_CBTKBD:
533 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
534 		ret = hid_hw_output_report(hdev, buf, 3);
535 		break;
536 	default:
537 		ret = -EINVAL;
538 		break;
539 	}
540 
541 	kfree(buf);
542 
543 	return ret < 0 ? ret : 0; /* BT returns 0, USB returns sizeof(buf) */
544 }
545 
546 static void lenovo_features_set_cptkbd(struct hid_device *hdev)
547 {
548 	int ret;
549 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
550 
551 	/*
552 	 * Tell the keyboard a driver understands it, and turn F7, F9, F11 into
553 	 * regular keys
554 	 */
555 	ret = lenovo_send_cmd_cptkbd(hdev, 0x01, 0x03);
556 	if (ret)
557 		hid_warn(hdev, "Failed to switch F7/9/11 mode: %d\n", ret);
558 
559 	/* Switch middle button to native mode */
560 	ret = lenovo_send_cmd_cptkbd(hdev, 0x09, 0x01);
561 	if (ret)
562 		hid_warn(hdev, "Failed to switch middle button: %d\n", ret);
563 
564 	ret = lenovo_send_cmd_cptkbd(hdev, 0x05, cptkbd_data->fn_lock);
565 	if (ret)
566 		hid_err(hdev, "Fn-lock setting failed: %d\n", ret);
567 
568 	ret = lenovo_send_cmd_cptkbd(hdev, 0x02, cptkbd_data->sensitivity);
569 	if (ret)
570 		hid_err(hdev, "Sensitivity setting failed: %d\n", ret);
571 }
572 
573 static ssize_t attr_fn_lock_show(struct device *dev,
574 		struct device_attribute *attr,
575 		char *buf)
576 {
577 	struct hid_device *hdev = to_hid_device(dev);
578 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
579 
580 	return sysfs_emit(buf, "%u\n", data->fn_lock);
581 }
582 
583 static ssize_t attr_fn_lock_store(struct device *dev,
584 		struct device_attribute *attr,
585 		const char *buf,
586 		size_t count)
587 {
588 	struct hid_device *hdev = to_hid_device(dev);
589 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
590 	int value, ret;
591 
592 	if (kstrtoint(buf, 10, &value))
593 		return -EINVAL;
594 	if (value < 0 || value > 1)
595 		return -EINVAL;
596 
597 	data->fn_lock = !!value;
598 
599 	switch (hdev->product) {
600 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
601 	case USB_DEVICE_ID_LENOVO_CBTKBD:
602 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
603 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
604 		lenovo_features_set_cptkbd(hdev);
605 		break;
606 	case USB_DEVICE_ID_LENOVO_X12_TAB:
607 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
608 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
609 	case USB_DEVICE_ID_LENOVO_X1_TAB:
610 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
611 		ret = lenovo_led_set_tp10ubkbd(hdev, TP10UBKBD_FN_LOCK_LED, value);
612 		if (ret)
613 			return ret;
614 		break;
615 	}
616 
617 	return count;
618 }
619 
620 static ssize_t attr_sensitivity_show_cptkbd(struct device *dev,
621 		struct device_attribute *attr,
622 		char *buf)
623 {
624 	struct hid_device *hdev = to_hid_device(dev);
625 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
626 
627 	return sysfs_emit(buf, "%u\n", cptkbd_data->sensitivity);
628 }
629 
630 static ssize_t attr_sensitivity_store_cptkbd(struct device *dev,
631 		struct device_attribute *attr,
632 		const char *buf,
633 		size_t count)
634 {
635 	struct hid_device *hdev = to_hid_device(dev);
636 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
637 	int value;
638 
639 	if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
640 		return -EINVAL;
641 
642 	cptkbd_data->sensitivity = value;
643 	lenovo_features_set_cptkbd(hdev);
644 
645 	return count;
646 }
647 
648 static ssize_t attr_middleclick_workaround_show_cptkbd(struct device *dev,
649 		struct device_attribute *attr,
650 		char *buf)
651 {
652 	struct hid_device *hdev = to_hid_device(dev);
653 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
654 
655 	return sysfs_emit(buf, "%u\n",
656 			  cptkbd_data->middleclick_workaround_cptkbd);
657 }
658 
659 static ssize_t attr_middleclick_workaround_store_cptkbd(struct device *dev,
660 		struct device_attribute *attr,
661 		const char *buf,
662 		size_t count)
663 {
664 	struct hid_device *hdev = to_hid_device(dev);
665 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
666 	int value;
667 
668 	if (kstrtoint(buf, 10, &value))
669 		return -EINVAL;
670 	if (value < 0 || value > 1)
671 		return -EINVAL;
672 
673 	cptkbd_data->middleclick_workaround_cptkbd = !!value;
674 
675 	return count;
676 }
677 
678 
679 static struct device_attribute dev_attr_fn_lock =
680 	__ATTR(fn_lock, S_IWUSR | S_IRUGO,
681 			attr_fn_lock_show,
682 			attr_fn_lock_store);
683 
684 static struct device_attribute dev_attr_sensitivity_cptkbd =
685 	__ATTR(sensitivity, S_IWUSR | S_IRUGO,
686 			attr_sensitivity_show_cptkbd,
687 			attr_sensitivity_store_cptkbd);
688 
689 static struct device_attribute dev_attr_middleclick_workaround_cptkbd =
690 	__ATTR(middleclick_workaround, S_IWUSR | S_IRUGO,
691 			attr_middleclick_workaround_show_cptkbd,
692 			attr_middleclick_workaround_store_cptkbd);
693 
694 
695 static struct attribute *lenovo_attributes_cptkbd[] = {
696 	&dev_attr_fn_lock.attr,
697 	&dev_attr_sensitivity_cptkbd.attr,
698 	&dev_attr_middleclick_workaround_cptkbd.attr,
699 	NULL
700 };
701 
702 static const struct attribute_group lenovo_attr_group_cptkbd = {
703 	.attrs = lenovo_attributes_cptkbd,
704 };
705 
706 /* Function to handle Lenovo Thinkpad TAB X12's HID raw inputs for fn keys*/
707 static int lenovo_raw_event_TP_X12_tab(struct hid_device *hdev, u32 raw_data)
708 {
709 	struct hid_input *hidinput;
710 	struct input_dev *input = NULL;
711 
712 	/* Iterate through all associated input devices */
713 	list_for_each_entry(hidinput, &hdev->inputs, list) {
714 		input = hidinput->input;
715 		if (!input)
716 			continue;
717 
718 		switch (raw_data) {
719 			/* fn-F20 being used here for MIC mute*/
720 		case TP_X12_RAW_HOTKEY_FN_F4:
721 			report_key_event(input, LENOVO_KEY_MICMUTE);
722 			return 1;
723 		/* Power-mode or Airplane mode will be called based on the device*/
724 		case TP_X12_RAW_HOTKEY_FN_F8:
725 			/*
726 			 * TP X12 TAB uses Fn-F8 calls Airplanemode
727 			 * Whereas TP X12 TAB2 uses Fn-F8 for toggling
728 			 * Power modes
729 			 */
730 			if (hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB) {
731 				report_key_event(input, KEY_RFKILL);
732 				return 1;
733 			}
734 #if IS_ENABLED(CONFIG_ACPI_PLATFORM_PROFILE)
735 			else {
736 				platform_profile_cycle();
737 				return 1;
738 			}
739 #endif /* CONFIG_ACPI_PLATFORM_PROFILE */
740 			return 0;
741 		case TP_X12_RAW_HOTKEY_FN_F10:
742 			/* TAB1 has PICKUP Phone and TAB2 use Snipping tool*/
743 			(hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB) ?
744 			report_key_event(input, KEY_PICKUP_PHONE) :
745 			report_key_event(input, KEY_SELECTIVE_SCREENSHOT);
746 			return 1;
747 		case TP_X12_RAW_HOTKEY_FN_F12:
748 			/* BookMarks/STAR key*/
749 			report_key_event(input, KEY_BOOKMARKS);
750 			return 1;
751 		case TP_X12_RAW_HOTKEY_FN_SPACE:
752 			/* Keyboard LED backlight toggle*/
753 			report_key_event(input, KEY_KBDILLUMTOGGLE);
754 			return 1;
755 		default:
756 			break;
757 		}
758 	}
759 	return 0;
760 }
761 
762 static int lenovo_raw_event(struct hid_device *hdev,
763 			struct hid_report *report, u8 *data, int size)
764 {
765 	/*
766 	 * Compact USB keyboard's Fn-F12 report holds down many other keys, and
767 	 * its own key is outside the usage page range. Remove extra
768 	 * keypresses and remap to inside usage page.
769 	 */
770 	if (unlikely(hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD
771 			&& size == 3
772 			&& data[0] == 0x15
773 			&& data[1] == 0x94
774 			&& data[2] == 0x01)) {
775 		data[1] = 0x00;
776 		data[2] = 0x01;
777 	}
778 
779 	/*
780 	 * Lenovo TP X12 Tab KBD's Fn+XX is HID raw data defined. Report ID is 0x03
781 	 * e.g.: Raw data received for MIC mute is 0x00020003.
782 	 */
783 	if (unlikely((hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB
784 			|| hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB2)
785 			&& size >= 3 && report->id == 0x03))
786 		return lenovo_raw_event_TP_X12_tab(hdev, le32_to_cpu(*(u32 *)data));
787 
788 	return 0;
789 }
790 
791 static int lenovo_event_tp10ubkbd(struct hid_device *hdev,
792 		struct hid_field *field, struct hid_usage *usage, __s32 value)
793 {
794 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
795 
796 	if (usage->type == EV_KEY && usage->code == KEY_FN_ESC && value == 1) {
797 		/*
798 		 * The user has toggled the Fn-lock state. Toggle our own
799 		 * cached value of it and sync our value to the keyboard to
800 		 * ensure things are in sync (the sycning should be a no-op).
801 		 */
802 		data->fn_lock = !data->fn_lock;
803 		schedule_work(&data->fn_lock_sync_work);
804 	}
805 
806 	return 0;
807 }
808 
809 static int lenovo_event_cptkbd(struct hid_device *hdev,
810 		struct hid_field *field, struct hid_usage *usage, __s32 value)
811 {
812 	struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev);
813 
814 	if (cptkbd_data->middleclick_workaround_cptkbd) {
815 		/* "wheel" scroll events */
816 		if (usage->type == EV_REL && (usage->code == REL_WHEEL ||
817 				usage->code == REL_HWHEEL)) {
818 			/* Scroll events disable middle-click event */
819 			cptkbd_data->middlebutton_state = 2;
820 			return 0;
821 		}
822 
823 		/* Middle click events */
824 		if (usage->type == EV_KEY && usage->code == BTN_MIDDLE) {
825 			if (value == 1) {
826 				cptkbd_data->middlebutton_state = 1;
827 			} else if (value == 0) {
828 				if (cptkbd_data->middlebutton_state == 1) {
829 					/* No scrolling inbetween, send middle-click */
830 					input_event(field->hidinput->input,
831 						EV_KEY, BTN_MIDDLE, 1);
832 					input_sync(field->hidinput->input);
833 					input_event(field->hidinput->input,
834 						EV_KEY, BTN_MIDDLE, 0);
835 					input_sync(field->hidinput->input);
836 				}
837 				cptkbd_data->middlebutton_state = 0;
838 			}
839 			return 1;
840 		}
841 	}
842 
843 	if (usage->type == EV_KEY && usage->code == KEY_FN_ESC && value == 1) {
844 		/*
845 		 * The user has toggled the Fn-lock state. Toggle our own
846 		 * cached value of it and sync our value to the keyboard to
847 		 * ensure things are in sync (the syncing should be a no-op).
848 		 */
849 		cptkbd_data->fn_lock = !cptkbd_data->fn_lock;
850 	}
851 
852 	return 0;
853 }
854 
855 static int lenovo_event(struct hid_device *hdev, struct hid_field *field,
856 		struct hid_usage *usage, __s32 value)
857 {
858 	if (!hid_get_drvdata(hdev))
859 		return 0;
860 
861 	switch (hdev->product) {
862 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
863 	case USB_DEVICE_ID_LENOVO_CBTKBD:
864 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
865 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
866 		return lenovo_event_cptkbd(hdev, field, usage, value);
867 	case USB_DEVICE_ID_LENOVO_X12_TAB:
868 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
869 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
870 	case USB_DEVICE_ID_LENOVO_X1_TAB:
871 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
872 		return lenovo_event_tp10ubkbd(hdev, field, usage, value);
873 	default:
874 		return 0;
875 	}
876 }
877 
878 static int lenovo_features_set_tpkbd(struct hid_device *hdev)
879 {
880 	struct hid_report *report;
881 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
882 
883 	report = hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[4];
884 
885 	report->field[0]->value[0]  = data_pointer->press_to_select   ? 0x01 : 0x02;
886 	report->field[0]->value[0] |= data_pointer->dragging          ? 0x04 : 0x08;
887 	report->field[0]->value[0] |= data_pointer->release_to_select ? 0x10 : 0x20;
888 	report->field[0]->value[0] |= data_pointer->select_right      ? 0x80 : 0x40;
889 	report->field[1]->value[0] = 0x03; // unknown setting, imitate windows driver
890 	report->field[2]->value[0] = data_pointer->sensitivity;
891 	report->field[3]->value[0] = data_pointer->press_speed;
892 
893 	hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
894 	return 0;
895 }
896 
897 static ssize_t attr_press_to_select_show_tpkbd(struct device *dev,
898 		struct device_attribute *attr,
899 		char *buf)
900 {
901 	struct hid_device *hdev = to_hid_device(dev);
902 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
903 
904 	return sysfs_emit(buf, "%u\n", data_pointer->press_to_select);
905 }
906 
907 static ssize_t attr_press_to_select_store_tpkbd(struct device *dev,
908 		struct device_attribute *attr,
909 		const char *buf,
910 		size_t count)
911 {
912 	struct hid_device *hdev = to_hid_device(dev);
913 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
914 	int value;
915 
916 	if (kstrtoint(buf, 10, &value))
917 		return -EINVAL;
918 	if (value < 0 || value > 1)
919 		return -EINVAL;
920 
921 	data_pointer->press_to_select = value;
922 	lenovo_features_set_tpkbd(hdev);
923 
924 	return count;
925 }
926 
927 static ssize_t attr_dragging_show_tpkbd(struct device *dev,
928 		struct device_attribute *attr,
929 		char *buf)
930 {
931 	struct hid_device *hdev = to_hid_device(dev);
932 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
933 
934 	return sysfs_emit(buf, "%u\n", data_pointer->dragging);
935 }
936 
937 static ssize_t attr_dragging_store_tpkbd(struct device *dev,
938 		struct device_attribute *attr,
939 		const char *buf,
940 		size_t count)
941 {
942 	struct hid_device *hdev = to_hid_device(dev);
943 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
944 	int value;
945 
946 	if (kstrtoint(buf, 10, &value))
947 		return -EINVAL;
948 	if (value < 0 || value > 1)
949 		return -EINVAL;
950 
951 	data_pointer->dragging = value;
952 	lenovo_features_set_tpkbd(hdev);
953 
954 	return count;
955 }
956 
957 static ssize_t attr_release_to_select_show_tpkbd(struct device *dev,
958 		struct device_attribute *attr,
959 		char *buf)
960 {
961 	struct hid_device *hdev = to_hid_device(dev);
962 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
963 
964 	return sysfs_emit(buf, "%u\n", data_pointer->release_to_select);
965 }
966 
967 static ssize_t attr_release_to_select_store_tpkbd(struct device *dev,
968 		struct device_attribute *attr,
969 		const char *buf,
970 		size_t count)
971 {
972 	struct hid_device *hdev = to_hid_device(dev);
973 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
974 	int value;
975 
976 	if (kstrtoint(buf, 10, &value))
977 		return -EINVAL;
978 	if (value < 0 || value > 1)
979 		return -EINVAL;
980 
981 	data_pointer->release_to_select = value;
982 	lenovo_features_set_tpkbd(hdev);
983 
984 	return count;
985 }
986 
987 static ssize_t attr_select_right_show_tpkbd(struct device *dev,
988 		struct device_attribute *attr,
989 		char *buf)
990 {
991 	struct hid_device *hdev = to_hid_device(dev);
992 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
993 
994 	return sysfs_emit(buf, "%u\n", data_pointer->select_right);
995 }
996 
997 static ssize_t attr_select_right_store_tpkbd(struct device *dev,
998 		struct device_attribute *attr,
999 		const char *buf,
1000 		size_t count)
1001 {
1002 	struct hid_device *hdev = to_hid_device(dev);
1003 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1004 	int value;
1005 
1006 	if (kstrtoint(buf, 10, &value))
1007 		return -EINVAL;
1008 	if (value < 0 || value > 1)
1009 		return -EINVAL;
1010 
1011 	data_pointer->select_right = value;
1012 	lenovo_features_set_tpkbd(hdev);
1013 
1014 	return count;
1015 }
1016 
1017 static ssize_t attr_sensitivity_show_tpkbd(struct device *dev,
1018 		struct device_attribute *attr,
1019 		char *buf)
1020 {
1021 	struct hid_device *hdev = to_hid_device(dev);
1022 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1023 
1024 	return sysfs_emit(buf, "%u\n", data_pointer->sensitivity);
1025 }
1026 
1027 static ssize_t attr_sensitivity_store_tpkbd(struct device *dev,
1028 		struct device_attribute *attr,
1029 		const char *buf,
1030 		size_t count)
1031 {
1032 	struct hid_device *hdev = to_hid_device(dev);
1033 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1034 	int value;
1035 
1036 	if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
1037 		return -EINVAL;
1038 
1039 	data_pointer->sensitivity = value;
1040 	lenovo_features_set_tpkbd(hdev);
1041 
1042 	return count;
1043 }
1044 
1045 static ssize_t attr_press_speed_show_tpkbd(struct device *dev,
1046 		struct device_attribute *attr,
1047 		char *buf)
1048 {
1049 	struct hid_device *hdev = to_hid_device(dev);
1050 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1051 
1052 	return sysfs_emit(buf, "%u\n", data_pointer->press_speed);
1053 }
1054 
1055 static ssize_t attr_press_speed_store_tpkbd(struct device *dev,
1056 		struct device_attribute *attr,
1057 		const char *buf,
1058 		size_t count)
1059 {
1060 	struct hid_device *hdev = to_hid_device(dev);
1061 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1062 	int value;
1063 
1064 	if (kstrtoint(buf, 10, &value) || value < 1 || value > 255)
1065 		return -EINVAL;
1066 
1067 	data_pointer->press_speed = value;
1068 	lenovo_features_set_tpkbd(hdev);
1069 
1070 	return count;
1071 }
1072 
1073 static struct device_attribute dev_attr_press_to_select_tpkbd =
1074 	__ATTR(press_to_select, S_IWUSR | S_IRUGO,
1075 			attr_press_to_select_show_tpkbd,
1076 			attr_press_to_select_store_tpkbd);
1077 
1078 static struct device_attribute dev_attr_dragging_tpkbd =
1079 	__ATTR(dragging, S_IWUSR | S_IRUGO,
1080 			attr_dragging_show_tpkbd,
1081 			attr_dragging_store_tpkbd);
1082 
1083 static struct device_attribute dev_attr_release_to_select_tpkbd =
1084 	__ATTR(release_to_select, S_IWUSR | S_IRUGO,
1085 			attr_release_to_select_show_tpkbd,
1086 			attr_release_to_select_store_tpkbd);
1087 
1088 static struct device_attribute dev_attr_select_right_tpkbd =
1089 	__ATTR(select_right, S_IWUSR | S_IRUGO,
1090 			attr_select_right_show_tpkbd,
1091 			attr_select_right_store_tpkbd);
1092 
1093 static struct device_attribute dev_attr_sensitivity_tpkbd =
1094 	__ATTR(sensitivity, S_IWUSR | S_IRUGO,
1095 			attr_sensitivity_show_tpkbd,
1096 			attr_sensitivity_store_tpkbd);
1097 
1098 static struct device_attribute dev_attr_press_speed_tpkbd =
1099 	__ATTR(press_speed, S_IWUSR | S_IRUGO,
1100 			attr_press_speed_show_tpkbd,
1101 			attr_press_speed_store_tpkbd);
1102 
1103 static struct attribute *lenovo_attributes_tpkbd[] = {
1104 	&dev_attr_press_to_select_tpkbd.attr,
1105 	&dev_attr_dragging_tpkbd.attr,
1106 	&dev_attr_release_to_select_tpkbd.attr,
1107 	&dev_attr_select_right_tpkbd.attr,
1108 	&dev_attr_sensitivity_tpkbd.attr,
1109 	&dev_attr_press_speed_tpkbd.attr,
1110 	NULL
1111 };
1112 
1113 static const struct attribute_group lenovo_attr_group_tpkbd = {
1114 	.attrs = lenovo_attributes_tpkbd,
1115 };
1116 
1117 static void lenovo_led_set_tpkbd(struct hid_device *hdev)
1118 {
1119 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1120 	struct hid_report *report;
1121 
1122 	report = hdev->report_enum[HID_OUTPUT_REPORT].report_id_hash[3];
1123 	report->field[0]->value[0] = (data_pointer->led_state >> 0) & 1;
1124 	report->field[0]->value[1] = (data_pointer->led_state >> 1) & 1;
1125 	hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
1126 }
1127 
1128 static int lenovo_led_brightness_set(struct led_classdev *led_cdev,
1129 			enum led_brightness value)
1130 {
1131 	struct device *dev = led_cdev->dev->parent;
1132 	struct hid_device *hdev = to_hid_device(dev);
1133 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1134 	static const u8 tp10ubkbd_led[] = { TP10UBKBD_MUTE_LED, TP10UBKBD_MICMUTE_LED };
1135 	int led_nr = 0;
1136 	int ret = 0;
1137 
1138 	if (led_cdev == &data_pointer->led_micmute)
1139 		led_nr = 1;
1140 
1141 	if (value == LED_OFF)
1142 		data_pointer->led_state &= ~(1 << led_nr);
1143 	else
1144 		data_pointer->led_state |= 1 << led_nr;
1145 
1146 	switch (hdev->product) {
1147 	case USB_DEVICE_ID_LENOVO_TPKBD:
1148 		lenovo_led_set_tpkbd(hdev);
1149 		break;
1150 	case USB_DEVICE_ID_LENOVO_X12_TAB:
1151 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
1152 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
1153 	case USB_DEVICE_ID_LENOVO_X1_TAB:
1154 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
1155 		ret = lenovo_led_set_tp10ubkbd(hdev, tp10ubkbd_led[led_nr], value);
1156 		break;
1157 	}
1158 
1159 	return ret;
1160 }
1161 
1162 static int lenovo_register_leds(struct hid_device *hdev)
1163 {
1164 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
1165 	size_t name_sz = strlen(dev_name(&hdev->dev)) + 16;
1166 	char *name_mute, *name_micm;
1167 	int ret;
1168 
1169 	name_mute = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
1170 	name_micm = devm_kzalloc(&hdev->dev, name_sz, GFP_KERNEL);
1171 	if (name_mute == NULL || name_micm == NULL) {
1172 		hid_err(hdev, "Could not allocate memory for led data\n");
1173 		return -ENOMEM;
1174 	}
1175 	snprintf(name_mute, name_sz, "%s:amber:mute", dev_name(&hdev->dev));
1176 	snprintf(name_micm, name_sz, "%s:amber:micmute", dev_name(&hdev->dev));
1177 
1178 	data->led_mute.name = name_mute;
1179 	data->led_mute.default_trigger = "audio-mute";
1180 	data->led_mute.brightness_set_blocking = lenovo_led_brightness_set;
1181 	data->led_mute.max_brightness = 1;
1182 	data->led_mute.flags = LED_HW_PLUGGABLE;
1183 	data->led_mute.dev = &hdev->dev;
1184 	ret = led_classdev_register(&hdev->dev, &data->led_mute);
1185 	if (ret < 0)
1186 		return ret;
1187 
1188 	data->led_micmute.name = name_micm;
1189 	data->led_micmute.default_trigger = "audio-micmute";
1190 	data->led_micmute.brightness_set_blocking = lenovo_led_brightness_set;
1191 	data->led_micmute.max_brightness = 1;
1192 	data->led_micmute.flags = LED_HW_PLUGGABLE;
1193 	data->led_micmute.dev = &hdev->dev;
1194 	ret = led_classdev_register(&hdev->dev, &data->led_micmute);
1195 	if (ret < 0) {
1196 		led_classdev_unregister(&data->led_mute);
1197 		return ret;
1198 	}
1199 
1200 	return 0;
1201 }
1202 
1203 static int lenovo_probe_tpkbd(struct hid_device *hdev)
1204 {
1205 	struct lenovo_drvdata *data_pointer;
1206 	int i, ret;
1207 
1208 	/*
1209 	 * Only register extra settings against subdevice where input_mapping
1210 	 * set drvdata to 1, i.e. the trackpoint.
1211 	 */
1212 	if (!hid_get_drvdata(hdev))
1213 		return 0;
1214 
1215 	hid_set_drvdata(hdev, NULL);
1216 
1217 	/* Validate required reports. */
1218 	for (i = 0; i < 4; i++) {
1219 		if (!hid_validate_values(hdev, HID_FEATURE_REPORT, 4, i, 1))
1220 			return -ENODEV;
1221 	}
1222 	if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, 3, 0, 2))
1223 		return -ENODEV;
1224 
1225 	ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
1226 	if (ret)
1227 		hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
1228 
1229 	data_pointer = devm_kzalloc(&hdev->dev,
1230 				    sizeof(struct lenovo_drvdata),
1231 				    GFP_KERNEL);
1232 	if (data_pointer == NULL) {
1233 		hid_err(hdev, "Could not allocate memory for driver data\n");
1234 		ret = -ENOMEM;
1235 		goto err;
1236 	}
1237 
1238 	// set same default values as windows driver
1239 	data_pointer->sensitivity = 0xa0;
1240 	data_pointer->press_speed = 0x38;
1241 
1242 	hid_set_drvdata(hdev, data_pointer);
1243 
1244 	ret = lenovo_register_leds(hdev);
1245 	if (ret)
1246 		goto err;
1247 
1248 	lenovo_features_set_tpkbd(hdev);
1249 
1250 	return 0;
1251 err:
1252 	sysfs_remove_group(&hdev->dev.kobj, &lenovo_attr_group_tpkbd);
1253 	return ret;
1254 }
1255 
1256 static int lenovo_probe_cptkbd(struct hid_device *hdev)
1257 {
1258 	int ret;
1259 	struct lenovo_drvdata *cptkbd_data;
1260 
1261 	/* All the custom action happens on the USBMOUSE device for USB */
1262 	if (((hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD) ||
1263 	    (hdev->product == USB_DEVICE_ID_LENOVO_TPIIUSBKBD)) &&
1264 	    hdev->type != HID_TYPE_USBMOUSE) {
1265 		hid_dbg(hdev, "Ignoring keyboard half of device\n");
1266 		return 0;
1267 	}
1268 
1269 	cptkbd_data = devm_kzalloc(&hdev->dev,
1270 					sizeof(*cptkbd_data),
1271 					GFP_KERNEL);
1272 	if (cptkbd_data == NULL) {
1273 		hid_err(hdev, "can't alloc keyboard descriptor\n");
1274 		return -ENOMEM;
1275 	}
1276 	hid_set_drvdata(hdev, cptkbd_data);
1277 
1278 	/* Set keyboard settings to known state */
1279 	cptkbd_data->middlebutton_state = 0;
1280 	cptkbd_data->fn_lock = true;
1281 	cptkbd_data->sensitivity = 0x05;
1282 	cptkbd_data->middleclick_workaround_cptkbd = true;
1283 	lenovo_features_set_cptkbd(hdev);
1284 
1285 	ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_cptkbd);
1286 	if (ret)
1287 		hid_warn(hdev, "Could not create sysfs group: %d\n", ret);
1288 
1289 	return 0;
1290 }
1291 
1292 static struct attribute *lenovo_attributes_tp10ubkbd[] = {
1293 	&dev_attr_fn_lock.attr,
1294 	NULL
1295 };
1296 
1297 static const struct attribute_group lenovo_attr_group_tp10ubkbd = {
1298 	.attrs = lenovo_attributes_tp10ubkbd,
1299 };
1300 
1301 static int lenovo_probe_tp10ubkbd(struct hid_device *hdev)
1302 {
1303 	struct hid_report_enum *rep_enum;
1304 	struct lenovo_drvdata *data;
1305 	struct hid_report *rep;
1306 	bool found;
1307 	int ret;
1308 
1309 	/*
1310 	 * The LEDs and the Fn-lock functionality use output report 9,
1311 	 * with an application of 0xffa0001, add the LEDs on the interface
1312 	 * with this output report.
1313 	 */
1314 	found = false;
1315 	rep_enum = &hdev->report_enum[HID_OUTPUT_REPORT];
1316 	list_for_each_entry(rep, &rep_enum->report_list, list) {
1317 		if (rep->application == 0xffa00001)
1318 			found = true;
1319 	}
1320 	if (!found)
1321 		return 0;
1322 
1323 	data = devm_kzalloc(&hdev->dev, sizeof(*data), GFP_KERNEL);
1324 	if (!data)
1325 		return -ENOMEM;
1326 
1327 	mutex_init(&data->led_report_mutex);
1328 	INIT_WORK(&data->fn_lock_sync_work, lenovo_tp10ubkbd_sync_fn_lock);
1329 	data->hdev = hdev;
1330 
1331 	hid_set_drvdata(hdev, data);
1332 
1333 	/*
1334 	 * The Thinkpad 10 ultrabook USB kbd dock's Fn-lock defaults to on.
1335 	 * We cannot read the state, only set it, so we force it to on here
1336 	 * (which should be a no-op) to make sure that our state matches the
1337 	 * keyboard's FN-lock state. This is the same as what Windows does.
1338 	 *
1339 	 * For X12 TAB and TAB2, the default windows behaviour Fn-lock Off.
1340 	 * Adding additional check to ensure the behaviour in case of
1341 	 * Thinkpad X12 Tabs.
1342 	 */
1343 
1344 	data->fn_lock = !(hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB ||
1345 			hdev->product == USB_DEVICE_ID_LENOVO_X12_TAB2);
1346 
1347 	lenovo_led_set_tp10ubkbd(hdev, TP10UBKBD_FN_LOCK_LED, data->fn_lock);
1348 
1349 	ret = sysfs_create_group(&hdev->dev.kobj, &lenovo_attr_group_tp10ubkbd);
1350 	if (ret)
1351 		return ret;
1352 
1353 	ret = lenovo_register_leds(hdev);
1354 	if (ret)
1355 		goto err;
1356 
1357 	return 0;
1358 err:
1359 	sysfs_remove_group(&hdev->dev.kobj, &lenovo_attr_group_tp10ubkbd);
1360 	return ret;
1361 }
1362 
1363 static int lenovo_probe(struct hid_device *hdev,
1364 		const struct hid_device_id *id)
1365 {
1366 	int ret;
1367 
1368 	ret = hid_parse(hdev);
1369 	if (ret) {
1370 		hid_err(hdev, "hid_parse failed\n");
1371 		goto err;
1372 	}
1373 
1374 	ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
1375 	if (ret) {
1376 		hid_err(hdev, "hid_hw_start failed\n");
1377 		goto err;
1378 	}
1379 
1380 	switch (hdev->product) {
1381 	case USB_DEVICE_ID_LENOVO_TPKBD:
1382 		ret = lenovo_probe_tpkbd(hdev);
1383 		break;
1384 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
1385 	case USB_DEVICE_ID_LENOVO_CBTKBD:
1386 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
1387 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
1388 		ret = lenovo_probe_cptkbd(hdev);
1389 		break;
1390 	case USB_DEVICE_ID_LENOVO_X12_TAB:
1391 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
1392 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
1393 	case USB_DEVICE_ID_LENOVO_X1_TAB:
1394 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
1395 		ret = lenovo_probe_tp10ubkbd(hdev);
1396 		break;
1397 	default:
1398 		ret = 0;
1399 		break;
1400 	}
1401 	if (ret)
1402 		goto err_hid;
1403 
1404 	return 0;
1405 err_hid:
1406 	hid_hw_stop(hdev);
1407 err:
1408 	return ret;
1409 }
1410 
1411 #ifdef CONFIG_PM
1412 static int lenovo_reset_resume(struct hid_device *hdev)
1413 {
1414 	switch (hdev->product) {
1415 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
1416 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
1417 		if (hdev->type == HID_TYPE_USBMOUSE)
1418 			lenovo_features_set_cptkbd(hdev);
1419 
1420 		break;
1421 	default:
1422 		break;
1423 	}
1424 
1425 	return 0;
1426 }
1427 #endif
1428 
1429 static void lenovo_remove_tpkbd(struct hid_device *hdev)
1430 {
1431 	struct lenovo_drvdata *data_pointer = hid_get_drvdata(hdev);
1432 
1433 	/*
1434 	 * Only the trackpoint half of the keyboard has drvdata and stuff that
1435 	 * needs unregistering.
1436 	 */
1437 	if (data_pointer == NULL)
1438 		return;
1439 
1440 	sysfs_remove_group(&hdev->dev.kobj,
1441 			&lenovo_attr_group_tpkbd);
1442 
1443 	led_classdev_unregister(&data_pointer->led_micmute);
1444 	led_classdev_unregister(&data_pointer->led_mute);
1445 }
1446 
1447 static void lenovo_remove_cptkbd(struct hid_device *hdev)
1448 {
1449 	sysfs_remove_group(&hdev->dev.kobj,
1450 			&lenovo_attr_group_cptkbd);
1451 }
1452 
1453 static void lenovo_remove_tp10ubkbd(struct hid_device *hdev)
1454 {
1455 	struct lenovo_drvdata *data = hid_get_drvdata(hdev);
1456 
1457 	if (data == NULL)
1458 		return;
1459 
1460 	led_classdev_unregister(&data->led_micmute);
1461 	led_classdev_unregister(&data->led_mute);
1462 
1463 	sysfs_remove_group(&hdev->dev.kobj, &lenovo_attr_group_tp10ubkbd);
1464 	cancel_work_sync(&data->fn_lock_sync_work);
1465 }
1466 
1467 static void lenovo_remove(struct hid_device *hdev)
1468 {
1469 	switch (hdev->product) {
1470 	case USB_DEVICE_ID_LENOVO_TPKBD:
1471 		lenovo_remove_tpkbd(hdev);
1472 		break;
1473 	case USB_DEVICE_ID_LENOVO_CUSBKBD:
1474 	case USB_DEVICE_ID_LENOVO_CBTKBD:
1475 	case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
1476 	case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
1477 		lenovo_remove_cptkbd(hdev);
1478 		break;
1479 	case USB_DEVICE_ID_LENOVO_X12_TAB:
1480 	case USB_DEVICE_ID_LENOVO_X12_TAB2:
1481 	case USB_DEVICE_ID_LENOVO_TP10UBKBD:
1482 	case USB_DEVICE_ID_LENOVO_X1_TAB:
1483 	case USB_DEVICE_ID_LENOVO_X1_TAB3:
1484 		lenovo_remove_tp10ubkbd(hdev);
1485 		break;
1486 	}
1487 
1488 	hid_hw_stop(hdev);
1489 }
1490 
1491 static int lenovo_input_configured(struct hid_device *hdev,
1492 		struct hid_input *hi)
1493 {
1494 	switch (hdev->product) {
1495 		case USB_DEVICE_ID_LENOVO_TPKBD:
1496 		case USB_DEVICE_ID_LENOVO_CUSBKBD:
1497 		case USB_DEVICE_ID_LENOVO_CBTKBD:
1498 		case USB_DEVICE_ID_LENOVO_TPIIUSBKBD:
1499 		case USB_DEVICE_ID_LENOVO_TPIIBTKBD:
1500 			if (test_bit(EV_REL, hi->input->evbit)) {
1501 				/* set only for trackpoint device */
1502 				__set_bit(INPUT_PROP_POINTER, hi->input->propbit);
1503 				__set_bit(INPUT_PROP_POINTING_STICK,
1504 						hi->input->propbit);
1505 			}
1506 			break;
1507 	}
1508 
1509 	return 0;
1510 }
1511 
1512 
1513 static const struct hid_device_id lenovo_devices[] = {
1514 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
1515 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
1516 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPIIUSBKBD) },
1517 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
1518 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPIIBTKBD) },
1519 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
1520 	{ HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_III) },
1521 	{ HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_PRO) },
1522 	{ HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_OPTICAL) },
1523 	{ HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL) },
1524 	{ HID_USB_DEVICE(USB_VENDOR_ID_IBM, USB_DEVICE_ID_IBM_SCROLLPOINT_800DPI_OPTICAL_PRO) },
1525 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_SCROLLPOINT_OPTICAL) },
1526 	{ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TP10UBKBD) },
1527 	/*
1528 	 * Note bind to the HID_GROUP_GENERIC group, so that we only bind to the keyboard
1529 	 * part, while letting hid-multitouch.c handle the touchpad and trackpoint.
1530 	 */
1531 	{ HID_DEVICE(BUS_USB, HID_GROUP_GENERIC,
1532 		     USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X1_TAB) },
1533 	{ HID_DEVICE(BUS_USB, HID_GROUP_GENERIC,
1534 		     USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X1_TAB3) },
1535 	{ HID_DEVICE(BUS_USB, HID_GROUP_GENERIC,
1536 		     USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X12_TAB) },
1537 	{ HID_DEVICE(BUS_USB, HID_GROUP_GENERIC,
1538 		     USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X12_TAB2) },
1539 	{ }
1540 };
1541 
1542 MODULE_DEVICE_TABLE(hid, lenovo_devices);
1543 
1544 static struct hid_driver lenovo_driver = {
1545 	.name = "lenovo",
1546 	.id_table = lenovo_devices,
1547 	.input_configured = lenovo_input_configured,
1548 	.input_mapping = lenovo_input_mapping,
1549 	.probe = lenovo_probe,
1550 	.remove = lenovo_remove,
1551 	.raw_event = lenovo_raw_event,
1552 	.event = lenovo_event,
1553 	.report_fixup = lenovo_report_fixup,
1554 #ifdef CONFIG_PM
1555 	.reset_resume = lenovo_reset_resume,
1556 #endif
1557 };
1558 module_hid_driver(lenovo_driver);
1559 
1560 MODULE_DESCRIPTION("HID driver for IBM/Lenovo");
1561 MODULE_LICENSE("GPL");
1562