2 * HIDPP protocol for Logitech Unifying receivers
4 * Copyright (c) 2011 Logitech (c)
5 * Copyright (c) 2012-2013 Google (c)
6 * Copyright (c) 2013-2014 Red Hat Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; version 2 of the License.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/device.h>
18 #include <linux/input.h>
19 #include <linux/usb.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/sched.h>
24 #include <linux/kfifo.h>
25 #include <linux/input/mt.h>
26 #include <linux/workqueue.h>
27 #include <linux/atomic.h>
28 #include <linux/fixp-arith.h>
29 #include <asm/unaligned.h>
30 #include "usbhid/usbhid.h"
33 MODULE_LICENSE("GPL");
34 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
35 MODULE_AUTHOR("Nestor Lopez Casado <nlopezcasad@logitech.com>");
37 static bool disable_raw_mode;
38 module_param(disable_raw_mode, bool, 0644);
39 MODULE_PARM_DESC(disable_raw_mode,
40 "Disable Raw mode reporting for touchpads and keep firmware gestures.");
42 static bool disable_tap_to_click;
43 module_param(disable_tap_to_click, bool, 0644);
44 MODULE_PARM_DESC(disable_tap_to_click,
45 "Disable Tap-To-Click mode reporting for touchpads (only on the K400 currently).");
47 #define REPORT_ID_HIDPP_SHORT 0x10
48 #define REPORT_ID_HIDPP_LONG 0x11
49 #define REPORT_ID_HIDPP_VERY_LONG 0x12
51 #define HIDPP_REPORT_SHORT_LENGTH 7
52 #define HIDPP_REPORT_LONG_LENGTH 20
53 #define HIDPP_REPORT_VERY_LONG_LENGTH 64
55 #define HIDPP_QUIRK_CLASS_WTP BIT(0)
56 #define HIDPP_QUIRK_CLASS_M560 BIT(1)
57 #define HIDPP_QUIRK_CLASS_K400 BIT(2)
58 #define HIDPP_QUIRK_CLASS_G920 BIT(3)
60 /* bits 2..20 are reserved for classes */
61 #define HIDPP_QUIRK_CONNECT_EVENTS BIT(21)
62 #define HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS BIT(22)
63 #define HIDPP_QUIRK_NO_HIDINPUT BIT(23)
64 #define HIDPP_QUIRK_FORCE_OUTPUT_REPORTS BIT(24)
66 #define HIDPP_QUIRK_DELAYED_INIT (HIDPP_QUIRK_NO_HIDINPUT | \
67 HIDPP_QUIRK_CONNECT_EVENTS)
70 * There are two hidpp protocols in use, the first version hidpp10 is known
71 * as register access protocol or RAP, the second version hidpp20 is known as
72 * feature access protocol or FAP
74 * Most older devices (including the Unifying usb receiver) use the RAP protocol
75 * where as most newer devices use the FAP protocol. Both protocols are
76 * compatible with the underlying transport, which could be usb, Unifiying, or
77 * bluetooth. The message lengths are defined by the hid vendor specific report
78 * descriptor for the HIDPP_SHORT report type (total message lenth 7 bytes) and
79 * the HIDPP_LONG report type (total message length 20 bytes)
81 * The RAP protocol uses both report types, whereas the FAP only uses HIDPP_LONG
82 * messages. The Unifying receiver itself responds to RAP messages (device index
83 * is 0xFF for the receiver), and all messages (short or long) with a device
84 * index between 1 and 6 are passed untouched to the corresponding paired
87 * The paired device can be RAP or FAP, it will receive the message untouched
88 * from the Unifiying receiver.
93 u8 funcindex_clientid;
94 u8 params[HIDPP_REPORT_VERY_LONG_LENGTH - 4U];
100 u8 params[HIDPP_REPORT_VERY_LONG_LENGTH - 4U];
103 struct hidpp_report {
109 u8 rawbytes[sizeof(struct fap)];
113 struct hidpp_device {
114 struct hid_device *hid_dev;
115 struct mutex send_mutex;
116 void *send_receive_buf;
117 char *name; /* will never be NULL and should not be freed */
118 wait_queue_head_t wait;
119 bool answer_available;
125 struct work_struct work;
126 struct kfifo delayed_work_fifo;
128 struct input_dev *delayed_input;
130 unsigned long quirks;
134 /* HID++ 1.0 error codes */
135 #define HIDPP_ERROR 0x8f
136 #define HIDPP_ERROR_SUCCESS 0x00
137 #define HIDPP_ERROR_INVALID_SUBID 0x01
138 #define HIDPP_ERROR_INVALID_ADRESS 0x02
139 #define HIDPP_ERROR_INVALID_VALUE 0x03
140 #define HIDPP_ERROR_CONNECT_FAIL 0x04
141 #define HIDPP_ERROR_TOO_MANY_DEVICES 0x05
142 #define HIDPP_ERROR_ALREADY_EXISTS 0x06
143 #define HIDPP_ERROR_BUSY 0x07
144 #define HIDPP_ERROR_UNKNOWN_DEVICE 0x08
145 #define HIDPP_ERROR_RESOURCE_ERROR 0x09
146 #define HIDPP_ERROR_REQUEST_UNAVAILABLE 0x0a
147 #define HIDPP_ERROR_INVALID_PARAM_VALUE 0x0b
148 #define HIDPP_ERROR_WRONG_PIN_CODE 0x0c
149 /* HID++ 2.0 error codes */
150 #define HIDPP20_ERROR 0xff
152 static void hidpp_connect_event(struct hidpp_device *hidpp_dev);
154 static int __hidpp_send_report(struct hid_device *hdev,
155 struct hidpp_report *hidpp_report)
157 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
158 int fields_count, ret;
160 hidpp = hid_get_drvdata(hdev);
162 switch (hidpp_report->report_id) {
163 case REPORT_ID_HIDPP_SHORT:
164 fields_count = HIDPP_REPORT_SHORT_LENGTH;
166 case REPORT_ID_HIDPP_LONG:
167 fields_count = HIDPP_REPORT_LONG_LENGTH;
169 case REPORT_ID_HIDPP_VERY_LONG:
170 fields_count = HIDPP_REPORT_VERY_LONG_LENGTH;
177 * set the device_index as the receiver, it will be overwritten by
178 * hid_hw_request if needed
180 hidpp_report->device_index = 0xff;
182 if (hidpp->quirks & HIDPP_QUIRK_FORCE_OUTPUT_REPORTS) {
183 ret = hid_hw_output_report(hdev, (u8 *)hidpp_report, fields_count);
185 ret = hid_hw_raw_request(hdev, hidpp_report->report_id,
186 (u8 *)hidpp_report, fields_count, HID_OUTPUT_REPORT,
190 return ret == fields_count ? 0 : -1;
194 * hidpp_send_message_sync() returns 0 in case of success, and something else
195 * in case of a failure.
196 * - If ' something else' is positive, that means that an error has been raised
197 * by the protocol itself.
198 * - If ' something else' is negative, that means that we had a classic error
199 * (-ENOMEM, -EPIPE, etc...)
201 static int hidpp_send_message_sync(struct hidpp_device *hidpp,
202 struct hidpp_report *message,
203 struct hidpp_report *response)
207 mutex_lock(&hidpp->send_mutex);
209 hidpp->send_receive_buf = response;
210 hidpp->answer_available = false;
213 * So that we can later validate the answer when it arrives
216 *response = *message;
218 ret = __hidpp_send_report(hidpp->hid_dev, message);
221 dbg_hid("__hidpp_send_report returned err: %d\n", ret);
222 memset(response, 0, sizeof(struct hidpp_report));
226 if (!wait_event_timeout(hidpp->wait, hidpp->answer_available,
228 dbg_hid("%s:timeout waiting for response\n", __func__);
229 memset(response, 0, sizeof(struct hidpp_report));
233 if (response->report_id == REPORT_ID_HIDPP_SHORT &&
234 response->rap.sub_id == HIDPP_ERROR) {
235 ret = response->rap.params[1];
236 dbg_hid("%s:got hidpp error %02X\n", __func__, ret);
240 if ((response->report_id == REPORT_ID_HIDPP_LONG ||
241 response->report_id == REPORT_ID_HIDPP_VERY_LONG) &&
242 response->fap.feature_index == HIDPP20_ERROR) {
243 ret = response->fap.params[1];
244 dbg_hid("%s:got hidpp 2.0 error %02X\n", __func__, ret);
249 mutex_unlock(&hidpp->send_mutex);
254 static int hidpp_send_fap_command_sync(struct hidpp_device *hidpp,
255 u8 feat_index, u8 funcindex_clientid, u8 *params, int param_count,
256 struct hidpp_report *response)
258 struct hidpp_report *message;
261 if (param_count > sizeof(message->fap.params))
264 message = kzalloc(sizeof(struct hidpp_report), GFP_KERNEL);
268 if (param_count > (HIDPP_REPORT_LONG_LENGTH - 4))
269 message->report_id = REPORT_ID_HIDPP_VERY_LONG;
271 message->report_id = REPORT_ID_HIDPP_LONG;
272 message->fap.feature_index = feat_index;
273 message->fap.funcindex_clientid = funcindex_clientid;
274 memcpy(&message->fap.params, params, param_count);
276 ret = hidpp_send_message_sync(hidpp, message, response);
281 static int hidpp_send_rap_command_sync(struct hidpp_device *hidpp_dev,
282 u8 report_id, u8 sub_id, u8 reg_address, u8 *params, int param_count,
283 struct hidpp_report *response)
285 struct hidpp_report *message;
289 case REPORT_ID_HIDPP_SHORT:
290 max_count = HIDPP_REPORT_SHORT_LENGTH - 4;
292 case REPORT_ID_HIDPP_LONG:
293 max_count = HIDPP_REPORT_LONG_LENGTH - 4;
295 case REPORT_ID_HIDPP_VERY_LONG:
296 max_count = HIDPP_REPORT_VERY_LONG_LENGTH - 4;
302 if (param_count > max_count)
305 message = kzalloc(sizeof(struct hidpp_report), GFP_KERNEL);
308 message->report_id = report_id;
309 message->rap.sub_id = sub_id;
310 message->rap.reg_address = reg_address;
311 memcpy(&message->rap.params, params, param_count);
313 ret = hidpp_send_message_sync(hidpp_dev, message, response);
318 static void delayed_work_cb(struct work_struct *work)
320 struct hidpp_device *hidpp = container_of(work, struct hidpp_device,
322 hidpp_connect_event(hidpp);
325 static inline bool hidpp_match_answer(struct hidpp_report *question,
326 struct hidpp_report *answer)
328 return (answer->fap.feature_index == question->fap.feature_index) &&
329 (answer->fap.funcindex_clientid == question->fap.funcindex_clientid);
332 static inline bool hidpp_match_error(struct hidpp_report *question,
333 struct hidpp_report *answer)
335 return ((answer->rap.sub_id == HIDPP_ERROR) ||
336 (answer->fap.feature_index == HIDPP20_ERROR)) &&
337 (answer->fap.funcindex_clientid == question->fap.feature_index) &&
338 (answer->fap.params[0] == question->fap.funcindex_clientid);
341 static inline bool hidpp_report_is_connect_event(struct hidpp_report *report)
343 return (report->report_id == REPORT_ID_HIDPP_SHORT) &&
344 (report->rap.sub_id == 0x41);
348 * hidpp_prefix_name() prefixes the current given name with "Logitech ".
350 static void hidpp_prefix_name(char **name, int name_length)
352 #define PREFIX_LENGTH 9 /* "Logitech " */
357 if (name_length > PREFIX_LENGTH &&
358 strncmp(*name, "Logitech ", PREFIX_LENGTH) == 0)
359 /* The prefix has is already in the name */
362 new_length = PREFIX_LENGTH + name_length;
363 new_name = kzalloc(new_length, GFP_KERNEL);
367 snprintf(new_name, new_length, "Logitech %s", *name);
374 /* -------------------------------------------------------------------------- */
375 /* HIDP++ 1.0 commands */
376 /* -------------------------------------------------------------------------- */
378 #define HIDPP_SET_REGISTER 0x80
379 #define HIDPP_GET_REGISTER 0x81
380 #define HIDPP_SET_LONG_REGISTER 0x82
381 #define HIDPP_GET_LONG_REGISTER 0x83
383 #define HIDPP_REG_PAIRING_INFORMATION 0xB5
384 #define DEVICE_NAME 0x40
386 static char *hidpp_get_unifying_name(struct hidpp_device *hidpp_dev)
388 struct hidpp_report response;
390 /* hid-logitech-dj is in charge of setting the right device index */
391 u8 params[1] = { DEVICE_NAME };
395 ret = hidpp_send_rap_command_sync(hidpp_dev,
396 REPORT_ID_HIDPP_SHORT,
397 HIDPP_GET_LONG_REGISTER,
398 HIDPP_REG_PAIRING_INFORMATION,
399 params, 1, &response);
403 len = response.rap.params[1];
405 if (2 + len > sizeof(response.rap.params))
408 name = kzalloc(len + 1, GFP_KERNEL);
412 memcpy(name, &response.rap.params[2], len);
414 /* include the terminating '\0' */
415 hidpp_prefix_name(&name, len + 1);
420 /* -------------------------------------------------------------------------- */
422 /* -------------------------------------------------------------------------- */
424 #define HIDPP_PAGE_ROOT 0x0000
425 #define HIDPP_PAGE_ROOT_IDX 0x00
427 #define CMD_ROOT_GET_FEATURE 0x01
428 #define CMD_ROOT_GET_PROTOCOL_VERSION 0x11
430 static int hidpp_root_get_feature(struct hidpp_device *hidpp, u16 feature,
431 u8 *feature_index, u8 *feature_type)
433 struct hidpp_report response;
435 u8 params[2] = { feature >> 8, feature & 0x00FF };
437 ret = hidpp_send_fap_command_sync(hidpp,
439 CMD_ROOT_GET_FEATURE,
440 params, 2, &response);
444 *feature_index = response.fap.params[0];
445 *feature_type = response.fap.params[1];
450 static int hidpp_root_get_protocol_version(struct hidpp_device *hidpp)
452 struct hidpp_report response;
455 ret = hidpp_send_fap_command_sync(hidpp,
457 CMD_ROOT_GET_PROTOCOL_VERSION,
460 if (ret == HIDPP_ERROR_INVALID_SUBID) {
461 hidpp->protocol_major = 1;
462 hidpp->protocol_minor = 0;
466 /* the device might not be connected */
467 if (ret == HIDPP_ERROR_RESOURCE_ERROR)
471 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
478 hidpp->protocol_major = response.fap.params[0];
479 hidpp->protocol_minor = response.fap.params[1];
484 static bool hidpp_is_connected(struct hidpp_device *hidpp)
488 ret = hidpp_root_get_protocol_version(hidpp);
490 hid_dbg(hidpp->hid_dev, "HID++ %u.%u device connected.\n",
491 hidpp->protocol_major, hidpp->protocol_minor);
495 /* -------------------------------------------------------------------------- */
496 /* 0x0005: GetDeviceNameType */
497 /* -------------------------------------------------------------------------- */
499 #define HIDPP_PAGE_GET_DEVICE_NAME_TYPE 0x0005
501 #define CMD_GET_DEVICE_NAME_TYPE_GET_COUNT 0x01
502 #define CMD_GET_DEVICE_NAME_TYPE_GET_DEVICE_NAME 0x11
503 #define CMD_GET_DEVICE_NAME_TYPE_GET_TYPE 0x21
505 static int hidpp_devicenametype_get_count(struct hidpp_device *hidpp,
506 u8 feature_index, u8 *nameLength)
508 struct hidpp_report response;
511 ret = hidpp_send_fap_command_sync(hidpp, feature_index,
512 CMD_GET_DEVICE_NAME_TYPE_GET_COUNT, NULL, 0, &response);
515 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
522 *nameLength = response.fap.params[0];
527 static int hidpp_devicenametype_get_device_name(struct hidpp_device *hidpp,
528 u8 feature_index, u8 char_index, char *device_name, int len_buf)
530 struct hidpp_report response;
534 ret = hidpp_send_fap_command_sync(hidpp, feature_index,
535 CMD_GET_DEVICE_NAME_TYPE_GET_DEVICE_NAME, &char_index, 1,
539 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
546 switch (response.report_id) {
547 case REPORT_ID_HIDPP_VERY_LONG:
548 count = HIDPP_REPORT_VERY_LONG_LENGTH - 4;
550 case REPORT_ID_HIDPP_LONG:
551 count = HIDPP_REPORT_LONG_LENGTH - 4;
553 case REPORT_ID_HIDPP_SHORT:
554 count = HIDPP_REPORT_SHORT_LENGTH - 4;
563 for (i = 0; i < count; i++)
564 device_name[i] = response.fap.params[i];
569 static char *hidpp_get_device_name(struct hidpp_device *hidpp)
578 ret = hidpp_root_get_feature(hidpp, HIDPP_PAGE_GET_DEVICE_NAME_TYPE,
579 &feature_index, &feature_type);
583 ret = hidpp_devicenametype_get_count(hidpp, feature_index,
588 name = kzalloc(__name_length + 1, GFP_KERNEL);
592 while (index < __name_length) {
593 ret = hidpp_devicenametype_get_device_name(hidpp,
594 feature_index, index, name + index,
595 __name_length - index);
603 /* include the terminating '\0' */
604 hidpp_prefix_name(&name, __name_length + 1);
609 /* -------------------------------------------------------------------------- */
610 /* 0x6010: Touchpad FW items */
611 /* -------------------------------------------------------------------------- */
613 #define HIDPP_PAGE_TOUCHPAD_FW_ITEMS 0x6010
615 #define CMD_TOUCHPAD_FW_ITEMS_SET 0x10
617 struct hidpp_touchpad_fw_items {
619 uint8_t desired_state;
625 * send a set state command to the device by reading the current items->state
626 * field. items is then filled with the current state.
628 static int hidpp_touchpad_fw_items_set(struct hidpp_device *hidpp,
630 struct hidpp_touchpad_fw_items *items)
632 struct hidpp_report response;
634 u8 *params = (u8 *)response.fap.params;
636 ret = hidpp_send_fap_command_sync(hidpp, feature_index,
637 CMD_TOUCHPAD_FW_ITEMS_SET, &items->state, 1, &response);
640 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
647 items->presence = params[0];
648 items->desired_state = params[1];
649 items->state = params[2];
650 items->persistent = params[3];
655 /* -------------------------------------------------------------------------- */
656 /* 0x6100: TouchPadRawXY */
657 /* -------------------------------------------------------------------------- */
659 #define HIDPP_PAGE_TOUCHPAD_RAW_XY 0x6100
661 #define CMD_TOUCHPAD_GET_RAW_INFO 0x01
662 #define CMD_TOUCHPAD_SET_RAW_REPORT_STATE 0x21
664 #define EVENT_TOUCHPAD_RAW_XY 0x00
666 #define TOUCHPAD_RAW_XY_ORIGIN_LOWER_LEFT 0x01
667 #define TOUCHPAD_RAW_XY_ORIGIN_UPPER_LEFT 0x03
669 struct hidpp_touchpad_raw_info {
680 struct hidpp_touchpad_raw_xy_finger {
690 struct hidpp_touchpad_raw_xy {
692 struct hidpp_touchpad_raw_xy_finger fingers[2];
699 static int hidpp_touchpad_get_raw_info(struct hidpp_device *hidpp,
700 u8 feature_index, struct hidpp_touchpad_raw_info *raw_info)
702 struct hidpp_report response;
704 u8 *params = (u8 *)response.fap.params;
706 ret = hidpp_send_fap_command_sync(hidpp, feature_index,
707 CMD_TOUCHPAD_GET_RAW_INFO, NULL, 0, &response);
710 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
717 raw_info->x_size = get_unaligned_be16(¶ms[0]);
718 raw_info->y_size = get_unaligned_be16(¶ms[2]);
719 raw_info->z_range = params[4];
720 raw_info->area_range = params[5];
721 raw_info->maxcontacts = params[7];
722 raw_info->origin = params[8];
723 /* res is given in unit per inch */
724 raw_info->res = get_unaligned_be16(¶ms[13]) * 2 / 51;
729 static int hidpp_touchpad_set_raw_report_state(struct hidpp_device *hidpp_dev,
730 u8 feature_index, bool send_raw_reports,
731 bool sensor_enhanced_settings)
733 struct hidpp_report response;
738 * bit 1 - 16bit Z, no area
739 * bit 2 - enhanced sensitivity
740 * bit 3 - width, height (4 bits each) instead of area
741 * bit 4 - send raw + gestures (degrades smoothness)
742 * remaining bits - reserved
744 u8 params = send_raw_reports | (sensor_enhanced_settings << 2);
746 return hidpp_send_fap_command_sync(hidpp_dev, feature_index,
747 CMD_TOUCHPAD_SET_RAW_REPORT_STATE, ¶ms, 1, &response);
750 static void hidpp_touchpad_touch_event(u8 *data,
751 struct hidpp_touchpad_raw_xy_finger *finger)
753 u8 x_m = data[0] << 2;
754 u8 y_m = data[2] << 2;
756 finger->x = x_m << 6 | data[1];
757 finger->y = y_m << 6 | data[3];
759 finger->contact_type = data[0] >> 6;
760 finger->contact_status = data[2] >> 6;
763 finger->area = data[5];
764 finger->finger_id = data[6] >> 4;
767 static void hidpp_touchpad_raw_xy_event(struct hidpp_device *hidpp_dev,
768 u8 *data, struct hidpp_touchpad_raw_xy *raw_xy)
770 memset(raw_xy, 0, sizeof(struct hidpp_touchpad_raw_xy));
771 raw_xy->end_of_frame = data[8] & 0x01;
772 raw_xy->spurious_flag = (data[8] >> 1) & 0x01;
773 raw_xy->finger_count = data[15] & 0x0f;
774 raw_xy->button = (data[8] >> 2) & 0x01;
776 if (raw_xy->finger_count) {
777 hidpp_touchpad_touch_event(&data[2], &raw_xy->fingers[0]);
778 hidpp_touchpad_touch_event(&data[9], &raw_xy->fingers[1]);
782 /* -------------------------------------------------------------------------- */
783 /* 0x8123: Force feedback support */
784 /* -------------------------------------------------------------------------- */
786 #define HIDPP_FF_GET_INFO 0x01
787 #define HIDPP_FF_RESET_ALL 0x11
788 #define HIDPP_FF_DOWNLOAD_EFFECT 0x21
789 #define HIDPP_FF_SET_EFFECT_STATE 0x31
790 #define HIDPP_FF_DESTROY_EFFECT 0x41
791 #define HIDPP_FF_GET_APERTURE 0x51
792 #define HIDPP_FF_SET_APERTURE 0x61
793 #define HIDPP_FF_GET_GLOBAL_GAINS 0x71
794 #define HIDPP_FF_SET_GLOBAL_GAINS 0x81
796 #define HIDPP_FF_EFFECT_STATE_GET 0x00
797 #define HIDPP_FF_EFFECT_STATE_STOP 0x01
798 #define HIDPP_FF_EFFECT_STATE_PLAY 0x02
799 #define HIDPP_FF_EFFECT_STATE_PAUSE 0x03
801 #define HIDPP_FF_EFFECT_CONSTANT 0x00
802 #define HIDPP_FF_EFFECT_PERIODIC_SINE 0x01
803 #define HIDPP_FF_EFFECT_PERIODIC_SQUARE 0x02
804 #define HIDPP_FF_EFFECT_PERIODIC_TRIANGLE 0x03
805 #define HIDPP_FF_EFFECT_PERIODIC_SAWTOOTHUP 0x04
806 #define HIDPP_FF_EFFECT_PERIODIC_SAWTOOTHDOWN 0x05
807 #define HIDPP_FF_EFFECT_SPRING 0x06
808 #define HIDPP_FF_EFFECT_DAMPER 0x07
809 #define HIDPP_FF_EFFECT_FRICTION 0x08
810 #define HIDPP_FF_EFFECT_INERTIA 0x09
811 #define HIDPP_FF_EFFECT_RAMP 0x0A
813 #define HIDPP_FF_EFFECT_AUTOSTART 0x80
815 #define HIDPP_FF_EFFECTID_NONE -1
816 #define HIDPP_FF_EFFECTID_AUTOCENTER -2
818 #define HIDPP_FF_MAX_PARAMS 20
819 #define HIDPP_FF_RESERVED_SLOTS 1
821 struct hidpp_ff_private_data {
822 struct hidpp_device *hidpp;
830 struct workqueue_struct *wq;
831 atomic_t workqueue_size;
834 struct hidpp_ff_work_data {
835 struct work_struct work;
836 struct hidpp_ff_private_data *data;
839 u8 params[HIDPP_FF_MAX_PARAMS];
843 static const signed short hiddpp_ff_effects[] = {
858 static const signed short hiddpp_ff_effects_v2[] = {
865 static const u8 HIDPP_FF_CONDITION_CMDS[] = {
866 HIDPP_FF_EFFECT_SPRING,
867 HIDPP_FF_EFFECT_FRICTION,
868 HIDPP_FF_EFFECT_DAMPER,
869 HIDPP_FF_EFFECT_INERTIA
872 static const char *HIDPP_FF_CONDITION_NAMES[] = {
880 static u8 hidpp_ff_find_effect(struct hidpp_ff_private_data *data, int effect_id)
884 for (i = 0; i < data->num_effects; i++)
885 if (data->effect_ids[i] == effect_id)
891 static void hidpp_ff_work_handler(struct work_struct *w)
893 struct hidpp_ff_work_data *wd = container_of(w, struct hidpp_ff_work_data, work);
894 struct hidpp_ff_private_data *data = wd->data;
895 struct hidpp_report response;
899 /* add slot number if needed */
900 switch (wd->effect_id) {
901 case HIDPP_FF_EFFECTID_AUTOCENTER:
902 wd->params[0] = data->slot_autocenter;
904 case HIDPP_FF_EFFECTID_NONE:
905 /* leave slot as zero */
908 /* find current slot for effect */
909 wd->params[0] = hidpp_ff_find_effect(data, wd->effect_id);
913 /* send command and wait for reply */
914 ret = hidpp_send_fap_command_sync(data->hidpp, data->feature_index,
915 wd->command, wd->params, wd->size, &response);
918 hid_err(data->hidpp->hid_dev, "Failed to send command to device!\n");
922 /* parse return data */
923 switch (wd->command) {
924 case HIDPP_FF_DOWNLOAD_EFFECT:
925 slot = response.fap.params[0];
926 if (slot > 0 && slot <= data->num_effects) {
927 if (wd->effect_id >= 0)
928 /* regular effect uploaded */
929 data->effect_ids[slot-1] = wd->effect_id;
930 else if (wd->effect_id >= HIDPP_FF_EFFECTID_AUTOCENTER)
931 /* autocenter spring uploaded */
932 data->slot_autocenter = slot;
935 case HIDPP_FF_DESTROY_EFFECT:
936 if (wd->effect_id >= 0)
937 /* regular effect destroyed */
938 data->effect_ids[wd->params[0]-1] = -1;
939 else if (wd->effect_id >= HIDPP_FF_EFFECTID_AUTOCENTER)
940 /* autocenter spring destoyed */
941 data->slot_autocenter = 0;
943 case HIDPP_FF_SET_GLOBAL_GAINS:
944 data->gain = (wd->params[0] << 8) + wd->params[1];
946 case HIDPP_FF_SET_APERTURE:
947 data->range = (wd->params[0] << 8) + wd->params[1];
950 /* no action needed */
955 atomic_dec(&data->workqueue_size);
959 static int hidpp_ff_queue_work(struct hidpp_ff_private_data *data, int effect_id, u8 command, u8 *params, u8 size)
961 struct hidpp_ff_work_data *wd = kzalloc(sizeof(*wd), GFP_KERNEL);
967 INIT_WORK(&wd->work, hidpp_ff_work_handler);
970 wd->effect_id = effect_id;
971 wd->command = command;
973 memcpy(wd->params, params, size);
975 atomic_inc(&data->workqueue_size);
976 queue_work(data->wq, &wd->work);
978 /* warn about excessive queue size */
979 s = atomic_read(&data->workqueue_size);
980 if (s >= 20 && s % 20 == 0)
981 hid_warn(data->hidpp->hid_dev, "Force feedback command queue contains %d commands, causing substantial delays!", s);
986 static int hidpp_ff_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
988 struct hidpp_ff_private_data *data = dev->ff->private;
993 /* set common parameters */
994 params[2] = effect->replay.length >> 8;
995 params[3] = effect->replay.length & 255;
996 params[4] = effect->replay.delay >> 8;
997 params[5] = effect->replay.delay & 255;
999 switch (effect->type) {
1001 force = (effect->u.constant.level * fixp_sin16((effect->direction * 360) >> 16)) >> 15;
1002 params[1] = HIDPP_FF_EFFECT_CONSTANT;
1003 params[6] = force >> 8;
1004 params[7] = force & 255;
1005 params[8] = effect->u.constant.envelope.attack_level >> 7;
1006 params[9] = effect->u.constant.envelope.attack_length >> 8;
1007 params[10] = effect->u.constant.envelope.attack_length & 255;
1008 params[11] = effect->u.constant.envelope.fade_level >> 7;
1009 params[12] = effect->u.constant.envelope.fade_length >> 8;
1010 params[13] = effect->u.constant.envelope.fade_length & 255;
1012 dbg_hid("Uploading constant force level=%d in dir %d = %d\n",
1013 effect->u.constant.level,
1014 effect->direction, force);
1015 dbg_hid(" envelope attack=(%d, %d ms) fade=(%d, %d ms)\n",
1016 effect->u.constant.envelope.attack_level,
1017 effect->u.constant.envelope.attack_length,
1018 effect->u.constant.envelope.fade_level,
1019 effect->u.constant.envelope.fade_length);
1023 switch (effect->u.periodic.waveform) {
1025 params[1] = HIDPP_FF_EFFECT_PERIODIC_SINE;
1028 params[1] = HIDPP_FF_EFFECT_PERIODIC_SQUARE;
1031 params[1] = HIDPP_FF_EFFECT_PERIODIC_SAWTOOTHUP;
1034 params[1] = HIDPP_FF_EFFECT_PERIODIC_SAWTOOTHDOWN;
1037 params[1] = HIDPP_FF_EFFECT_PERIODIC_TRIANGLE;
1040 hid_err(data->hidpp->hid_dev, "Unexpected periodic waveform type %i!\n", effect->u.periodic.waveform);
1043 force = (effect->u.periodic.magnitude * fixp_sin16((effect->direction * 360) >> 16)) >> 15;
1044 params[6] = effect->u.periodic.magnitude >> 8;
1045 params[7] = effect->u.periodic.magnitude & 255;
1046 params[8] = effect->u.periodic.offset >> 8;
1047 params[9] = effect->u.periodic.offset & 255;
1048 params[10] = effect->u.periodic.period >> 8;
1049 params[11] = effect->u.periodic.period & 255;
1050 params[12] = effect->u.periodic.phase >> 8;
1051 params[13] = effect->u.periodic.phase & 255;
1052 params[14] = effect->u.periodic.envelope.attack_level >> 7;
1053 params[15] = effect->u.periodic.envelope.attack_length >> 8;
1054 params[16] = effect->u.periodic.envelope.attack_length & 255;
1055 params[17] = effect->u.periodic.envelope.fade_level >> 7;
1056 params[18] = effect->u.periodic.envelope.fade_length >> 8;
1057 params[19] = effect->u.periodic.envelope.fade_length & 255;
1059 dbg_hid("Uploading periodic force mag=%d/dir=%d, offset=%d, period=%d ms, phase=%d\n",
1060 effect->u.periodic.magnitude, effect->direction,
1061 effect->u.periodic.offset,
1062 effect->u.periodic.period,
1063 effect->u.periodic.phase);
1064 dbg_hid(" envelope attack=(%d, %d ms) fade=(%d, %d ms)\n",
1065 effect->u.periodic.envelope.attack_level,
1066 effect->u.periodic.envelope.attack_length,
1067 effect->u.periodic.envelope.fade_level,
1068 effect->u.periodic.envelope.fade_length);
1072 params[1] = HIDPP_FF_EFFECT_RAMP;
1073 force = (effect->u.ramp.start_level * fixp_sin16((effect->direction * 360) >> 16)) >> 15;
1074 params[6] = force >> 8;
1075 params[7] = force & 255;
1076 force = (effect->u.ramp.end_level * fixp_sin16((effect->direction * 360) >> 16)) >> 15;
1077 params[8] = force >> 8;
1078 params[9] = force & 255;
1079 params[10] = effect->u.ramp.envelope.attack_level >> 7;
1080 params[11] = effect->u.ramp.envelope.attack_length >> 8;
1081 params[12] = effect->u.ramp.envelope.attack_length & 255;
1082 params[13] = effect->u.ramp.envelope.fade_level >> 7;
1083 params[14] = effect->u.ramp.envelope.fade_length >> 8;
1084 params[15] = effect->u.ramp.envelope.fade_length & 255;
1086 dbg_hid("Uploading ramp force level=%d -> %d in dir %d = %d\n",
1087 effect->u.ramp.start_level,
1088 effect->u.ramp.end_level,
1089 effect->direction, force);
1090 dbg_hid(" envelope attack=(%d, %d ms) fade=(%d, %d ms)\n",
1091 effect->u.ramp.envelope.attack_level,
1092 effect->u.ramp.envelope.attack_length,
1093 effect->u.ramp.envelope.fade_level,
1094 effect->u.ramp.envelope.fade_length);
1100 params[1] = HIDPP_FF_CONDITION_CMDS[effect->type - FF_SPRING];
1101 params[6] = effect->u.condition[0].left_saturation >> 9;
1102 params[7] = (effect->u.condition[0].left_saturation >> 1) & 255;
1103 params[8] = effect->u.condition[0].left_coeff >> 8;
1104 params[9] = effect->u.condition[0].left_coeff & 255;
1105 params[10] = effect->u.condition[0].deadband >> 9;
1106 params[11] = (effect->u.condition[0].deadband >> 1) & 255;
1107 params[12] = effect->u.condition[0].center >> 8;
1108 params[13] = effect->u.condition[0].center & 255;
1109 params[14] = effect->u.condition[0].right_coeff >> 8;
1110 params[15] = effect->u.condition[0].right_coeff & 255;
1111 params[16] = effect->u.condition[0].right_saturation >> 9;
1112 params[17] = (effect->u.condition[0].right_saturation >> 1) & 255;
1114 dbg_hid("Uploading %s force left coeff=%d, left sat=%d, right coeff=%d, right sat=%d\n",
1115 HIDPP_FF_CONDITION_NAMES[effect->type - FF_SPRING],
1116 effect->u.condition[0].left_coeff,
1117 effect->u.condition[0].left_saturation,
1118 effect->u.condition[0].right_coeff,
1119 effect->u.condition[0].right_saturation);
1120 dbg_hid(" deadband=%d, center=%d\n",
1121 effect->u.condition[0].deadband,
1122 effect->u.condition[0].center);
1125 hid_err(data->hidpp->hid_dev, "Unexpected force type %i!\n", effect->type);
1129 return hidpp_ff_queue_work(data, effect->id, HIDPP_FF_DOWNLOAD_EFFECT, params, size);
1132 static int hidpp_ff_playback(struct input_dev *dev, int effect_id, int value)
1134 struct hidpp_ff_private_data *data = dev->ff->private;
1137 params[1] = value ? HIDPP_FF_EFFECT_STATE_PLAY : HIDPP_FF_EFFECT_STATE_STOP;
1139 dbg_hid("St%sing playback of effect %d.\n", value?"art":"opp", effect_id);
1141 return hidpp_ff_queue_work(data, effect_id, HIDPP_FF_SET_EFFECT_STATE, params, ARRAY_SIZE(params));
1144 static int hidpp_ff_erase_effect(struct input_dev *dev, int effect_id)
1146 struct hidpp_ff_private_data *data = dev->ff->private;
1149 dbg_hid("Erasing effect %d.\n", effect_id);
1151 return hidpp_ff_queue_work(data, effect_id, HIDPP_FF_DESTROY_EFFECT, &slot, 1);
1154 static void hidpp_ff_set_autocenter(struct input_dev *dev, u16 magnitude)
1156 struct hidpp_ff_private_data *data = dev->ff->private;
1159 dbg_hid("Setting autocenter to %d.\n", magnitude);
1161 /* start a standard spring effect */
1162 params[1] = HIDPP_FF_EFFECT_SPRING | HIDPP_FF_EFFECT_AUTOSTART;
1163 /* zero delay and duration */
1164 params[2] = params[3] = params[4] = params[5] = 0;
1165 /* set coeff to 25% of saturation */
1166 params[8] = params[14] = magnitude >> 11;
1167 params[9] = params[15] = (magnitude >> 3) & 255;
1168 params[6] = params[16] = magnitude >> 9;
1169 params[7] = params[17] = (magnitude >> 1) & 255;
1170 /* zero deadband and center */
1171 params[10] = params[11] = params[12] = params[13] = 0;
1173 hidpp_ff_queue_work(data, HIDPP_FF_EFFECTID_AUTOCENTER, HIDPP_FF_DOWNLOAD_EFFECT, params, ARRAY_SIZE(params));
1176 static void hidpp_ff_set_gain(struct input_dev *dev, u16 gain)
1178 struct hidpp_ff_private_data *data = dev->ff->private;
1181 dbg_hid("Setting gain to %d.\n", gain);
1183 params[0] = gain >> 8;
1184 params[1] = gain & 255;
1185 params[2] = 0; /* no boost */
1188 hidpp_ff_queue_work(data, HIDPP_FF_EFFECTID_NONE, HIDPP_FF_SET_GLOBAL_GAINS, params, ARRAY_SIZE(params));
1191 static ssize_t hidpp_ff_range_show(struct device *dev, struct device_attribute *attr, char *buf)
1193 struct hid_device *hid = to_hid_device(dev);
1194 struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
1195 struct input_dev *idev = hidinput->input;
1196 struct hidpp_ff_private_data *data = idev->ff->private;
1198 return scnprintf(buf, PAGE_SIZE, "%u\n", data->range);
1201 static ssize_t hidpp_ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1203 struct hid_device *hid = to_hid_device(dev);
1204 struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
1205 struct input_dev *idev = hidinput->input;
1206 struct hidpp_ff_private_data *data = idev->ff->private;
1208 int range = simple_strtoul(buf, NULL, 10);
1210 range = clamp(range, 180, 900);
1212 params[0] = range >> 8;
1213 params[1] = range & 0x00FF;
1215 hidpp_ff_queue_work(data, -1, HIDPP_FF_SET_APERTURE, params, ARRAY_SIZE(params));
1220 static DEVICE_ATTR(range, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH, hidpp_ff_range_show, hidpp_ff_range_store);
1222 static void hidpp_ff_destroy(struct ff_device *ff)
1224 struct hidpp_ff_private_data *data = ff->private;
1226 kfree(data->effect_ids);
1229 static int hidpp_ff_init(struct hidpp_device *hidpp, u8 feature_index)
1231 struct hid_device *hid = hidpp->hid_dev;
1232 struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
1233 struct input_dev *dev = hidinput->input;
1234 const struct usb_device_descriptor *udesc = &(hid_to_usb_dev(hid)->descriptor);
1235 const u16 bcdDevice = le16_to_cpu(udesc->bcdDevice);
1236 struct ff_device *ff;
1237 struct hidpp_report response;
1238 struct hidpp_ff_private_data *data;
1239 int error, j, num_slots;
1243 hid_err(hid, "Struct input_dev not set!\n");
1247 /* Get firmware release */
1248 version = bcdDevice & 255;
1250 /* Set supported force feedback capabilities */
1251 for (j = 0; hiddpp_ff_effects[j] >= 0; j++)
1252 set_bit(hiddpp_ff_effects[j], dev->ffbit);
1254 for (j = 0; hiddpp_ff_effects_v2[j] >= 0; j++)
1255 set_bit(hiddpp_ff_effects_v2[j], dev->ffbit);
1257 /* Read number of slots available in device */
1258 error = hidpp_send_fap_command_sync(hidpp, feature_index,
1259 HIDPP_FF_GET_INFO, NULL, 0, &response);
1263 hid_err(hidpp->hid_dev, "%s: received protocol error 0x%02x\n",
1268 num_slots = response.fap.params[0] - HIDPP_FF_RESERVED_SLOTS;
1270 error = input_ff_create(dev, num_slots);
1273 hid_err(dev, "Failed to create FF device!\n");
1277 data = kzalloc(sizeof(*data), GFP_KERNEL);
1280 data->effect_ids = kcalloc(num_slots, sizeof(int), GFP_KERNEL);
1281 if (!data->effect_ids) {
1285 data->hidpp = hidpp;
1286 data->feature_index = feature_index;
1287 data->version = version;
1288 data->slot_autocenter = 0;
1289 data->num_effects = num_slots;
1290 for (j = 0; j < num_slots; j++)
1291 data->effect_ids[j] = -1;
1296 ff->upload = hidpp_ff_upload_effect;
1297 ff->erase = hidpp_ff_erase_effect;
1298 ff->playback = hidpp_ff_playback;
1299 ff->set_gain = hidpp_ff_set_gain;
1300 ff->set_autocenter = hidpp_ff_set_autocenter;
1301 ff->destroy = hidpp_ff_destroy;
1304 /* reset all forces */
1305 error = hidpp_send_fap_command_sync(hidpp, feature_index,
1306 HIDPP_FF_RESET_ALL, NULL, 0, &response);
1308 /* Read current Range */
1309 error = hidpp_send_fap_command_sync(hidpp, feature_index,
1310 HIDPP_FF_GET_APERTURE, NULL, 0, &response);
1312 hid_warn(hidpp->hid_dev, "Failed to read range from device!\n");
1313 data->range = error ? 900 : get_unaligned_be16(&response.fap.params[0]);
1315 /* Create sysfs interface */
1316 error = device_create_file(&(hidpp->hid_dev->dev), &dev_attr_range);
1318 hid_warn(hidpp->hid_dev, "Unable to create sysfs interface for \"range\", errno %d!\n", error);
1320 /* Read the current gain values */
1321 error = hidpp_send_fap_command_sync(hidpp, feature_index,
1322 HIDPP_FF_GET_GLOBAL_GAINS, NULL, 0, &response);
1324 hid_warn(hidpp->hid_dev, "Failed to read gain values from device!\n");
1325 data->gain = error ? 0xffff : get_unaligned_be16(&response.fap.params[0]);
1326 /* ignore boost value at response.fap.params[2] */
1328 /* init the hardware command queue */
1329 data->wq = create_singlethread_workqueue("hidpp-ff-sendqueue");
1330 atomic_set(&data->workqueue_size, 0);
1332 /* initialize with zero autocenter to get wheel in usable state */
1333 hidpp_ff_set_autocenter(dev, 0);
1335 hid_info(hid, "Force feeback support loaded (firmware release %d).\n", version);
1340 static int hidpp_ff_deinit(struct hid_device *hid)
1342 struct hid_input *hidinput = list_entry(hid->inputs.next, struct hid_input, list);
1343 struct input_dev *dev = hidinput->input;
1344 struct hidpp_ff_private_data *data;
1347 hid_err(hid, "Struct input_dev not found!\n");
1351 hid_info(hid, "Unloading HID++ force feedback.\n");
1352 data = dev->ff->private;
1354 hid_err(hid, "Private data not found!\n");
1358 destroy_workqueue(data->wq);
1359 device_remove_file(&hid->dev, &dev_attr_range);
1365 /* ************************************************************************** */
1367 /* Device Support */
1369 /* ************************************************************************** */
1371 /* -------------------------------------------------------------------------- */
1372 /* Touchpad HID++ devices */
1373 /* -------------------------------------------------------------------------- */
1375 #define WTP_MANUAL_RESOLUTION 39
1378 struct input_dev *input;
1381 u8 mt_feature_index;
1382 u8 button_feature_index;
1385 unsigned int resolution;
1388 static int wtp_input_mapping(struct hid_device *hdev, struct hid_input *hi,
1389 struct hid_field *field, struct hid_usage *usage,
1390 unsigned long **bit, int *max)
1395 static void wtp_populate_input(struct hidpp_device *hidpp,
1396 struct input_dev *input_dev, bool origin_is_hid_core)
1398 struct wtp_data *wd = hidpp->private_data;
1400 __set_bit(EV_ABS, input_dev->evbit);
1401 __set_bit(EV_KEY, input_dev->evbit);
1402 __clear_bit(EV_REL, input_dev->evbit);
1403 __clear_bit(EV_LED, input_dev->evbit);
1405 input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0, wd->x_size, 0, 0);
1406 input_abs_set_res(input_dev, ABS_MT_POSITION_X, wd->resolution);
1407 input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0, wd->y_size, 0, 0);
1408 input_abs_set_res(input_dev, ABS_MT_POSITION_Y, wd->resolution);
1410 /* Max pressure is not given by the devices, pick one */
1411 input_set_abs_params(input_dev, ABS_MT_PRESSURE, 0, 50, 0, 0);
1413 input_set_capability(input_dev, EV_KEY, BTN_LEFT);
1415 if (hidpp->quirks & HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS)
1416 input_set_capability(input_dev, EV_KEY, BTN_RIGHT);
1418 __set_bit(INPUT_PROP_BUTTONPAD, input_dev->propbit);
1420 input_mt_init_slots(input_dev, wd->maxcontacts, INPUT_MT_POINTER |
1421 INPUT_MT_DROP_UNUSED);
1423 wd->input = input_dev;
1426 static void wtp_touch_event(struct wtp_data *wd,
1427 struct hidpp_touchpad_raw_xy_finger *touch_report)
1431 if (!touch_report->finger_id || touch_report->contact_type)
1432 /* no actual data */
1435 slot = input_mt_get_slot_by_key(wd->input, touch_report->finger_id);
1437 input_mt_slot(wd->input, slot);
1438 input_mt_report_slot_state(wd->input, MT_TOOL_FINGER,
1439 touch_report->contact_status);
1440 if (touch_report->contact_status) {
1441 input_event(wd->input, EV_ABS, ABS_MT_POSITION_X,
1443 input_event(wd->input, EV_ABS, ABS_MT_POSITION_Y,
1444 wd->flip_y ? wd->y_size - touch_report->y :
1446 input_event(wd->input, EV_ABS, ABS_MT_PRESSURE,
1447 touch_report->area);
1451 static void wtp_send_raw_xy_event(struct hidpp_device *hidpp,
1452 struct hidpp_touchpad_raw_xy *raw)
1454 struct wtp_data *wd = hidpp->private_data;
1457 for (i = 0; i < 2; i++)
1458 wtp_touch_event(wd, &(raw->fingers[i]));
1460 if (raw->end_of_frame &&
1461 !(hidpp->quirks & HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS))
1462 input_event(wd->input, EV_KEY, BTN_LEFT, raw->button);
1464 if (raw->end_of_frame || raw->finger_count <= 2) {
1465 input_mt_sync_frame(wd->input);
1466 input_sync(wd->input);
1470 static int wtp_mouse_raw_xy_event(struct hidpp_device *hidpp, u8 *data)
1472 struct wtp_data *wd = hidpp->private_data;
1473 u8 c1_area = ((data[7] & 0xf) * (data[7] & 0xf) +
1474 (data[7] >> 4) * (data[7] >> 4)) / 2;
1475 u8 c2_area = ((data[13] & 0xf) * (data[13] & 0xf) +
1476 (data[13] >> 4) * (data[13] >> 4)) / 2;
1477 struct hidpp_touchpad_raw_xy raw = {
1478 .timestamp = data[1],
1482 .contact_status = !!data[7],
1483 .x = get_unaligned_le16(&data[3]),
1484 .y = get_unaligned_le16(&data[5]),
1487 .finger_id = data[2],
1490 .contact_status = !!data[13],
1491 .x = get_unaligned_le16(&data[9]),
1492 .y = get_unaligned_le16(&data[11]),
1495 .finger_id = data[8],
1498 .finger_count = wd->maxcontacts,
1500 .end_of_frame = (data[0] >> 7) == 0,
1501 .button = data[0] & 0x01,
1504 wtp_send_raw_xy_event(hidpp, &raw);
1509 static int wtp_raw_event(struct hid_device *hdev, u8 *data, int size)
1511 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1512 struct wtp_data *wd = hidpp->private_data;
1513 struct hidpp_report *report = (struct hidpp_report *)data;
1514 struct hidpp_touchpad_raw_xy raw;
1516 if (!wd || !wd->input)
1522 hid_err(hdev, "Received HID report of bad size (%d)",
1526 if (hidpp->quirks & HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS) {
1527 input_event(wd->input, EV_KEY, BTN_LEFT,
1528 !!(data[1] & 0x01));
1529 input_event(wd->input, EV_KEY, BTN_RIGHT,
1530 !!(data[1] & 0x02));
1531 input_sync(wd->input);
1536 return wtp_mouse_raw_xy_event(hidpp, &data[7]);
1538 case REPORT_ID_HIDPP_LONG:
1539 /* size is already checked in hidpp_raw_event. */
1540 if ((report->fap.feature_index != wd->mt_feature_index) ||
1541 (report->fap.funcindex_clientid != EVENT_TOUCHPAD_RAW_XY))
1543 hidpp_touchpad_raw_xy_event(hidpp, data + 4, &raw);
1545 wtp_send_raw_xy_event(hidpp, &raw);
1552 static int wtp_get_config(struct hidpp_device *hidpp)
1554 struct wtp_data *wd = hidpp->private_data;
1555 struct hidpp_touchpad_raw_info raw_info = {0};
1559 ret = hidpp_root_get_feature(hidpp, HIDPP_PAGE_TOUCHPAD_RAW_XY,
1560 &wd->mt_feature_index, &feature_type);
1562 /* means that the device is not powered up */
1565 ret = hidpp_touchpad_get_raw_info(hidpp, wd->mt_feature_index,
1570 wd->x_size = raw_info.x_size;
1571 wd->y_size = raw_info.y_size;
1572 wd->maxcontacts = raw_info.maxcontacts;
1573 wd->flip_y = raw_info.origin == TOUCHPAD_RAW_XY_ORIGIN_LOWER_LEFT;
1574 wd->resolution = raw_info.res;
1575 if (!wd->resolution)
1576 wd->resolution = WTP_MANUAL_RESOLUTION;
1581 static int wtp_allocate(struct hid_device *hdev, const struct hid_device_id *id)
1583 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1584 struct wtp_data *wd;
1586 wd = devm_kzalloc(&hdev->dev, sizeof(struct wtp_data),
1591 hidpp->private_data = wd;
1596 static int wtp_connect(struct hid_device *hdev, bool connected)
1598 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1599 struct wtp_data *wd = hidpp->private_data;
1606 ret = wtp_get_config(hidpp);
1608 hid_err(hdev, "Can not get wtp config: %d\n", ret);
1613 return hidpp_touchpad_set_raw_report_state(hidpp, wd->mt_feature_index,
1617 /* ------------------------------------------------------------------------- */
1618 /* Logitech M560 devices */
1619 /* ------------------------------------------------------------------------- */
1622 * Logitech M560 protocol overview
1624 * The Logitech M560 mouse, is designed for windows 8. When the middle and/or
1625 * the sides buttons are pressed, it sends some keyboard keys events
1626 * instead of buttons ones.
1627 * To complicate things further, the middle button keys sequence
1628 * is different from the odd press and the even press.
1630 * forward button -> Super_R
1631 * backward button -> Super_L+'d' (press only)
1632 * middle button -> 1st time: Alt_L+SuperL+XF86TouchpadOff (press only)
1633 * 2nd time: left-click (press only)
1634 * NB: press-only means that when the button is pressed, the
1635 * KeyPress/ButtonPress and KeyRelease/ButtonRelease events are generated
1636 * together sequentially; instead when the button is released, no event is
1640 * 10<xx>0a 3500af03 (where <xx> is the mouse id),
1641 * the mouse reacts differently:
1642 * - it never sends a keyboard key event
1643 * - for the three mouse button it sends:
1644 * middle button press 11<xx>0a 3500af00...
1645 * side 1 button (forward) press 11<xx>0a 3500b000...
1646 * side 2 button (backward) press 11<xx>0a 3500ae00...
1647 * middle/side1/side2 button release 11<xx>0a 35000000...
1650 static const u8 m560_config_parameter[] = {0x00, 0xaf, 0x03};
1652 struct m560_private_data {
1653 struct input_dev *input;
1656 /* how buttons are mapped in the report */
1657 #define M560_MOUSE_BTN_LEFT 0x01
1658 #define M560_MOUSE_BTN_RIGHT 0x02
1659 #define M560_MOUSE_BTN_WHEEL_LEFT 0x08
1660 #define M560_MOUSE_BTN_WHEEL_RIGHT 0x10
1662 #define M560_SUB_ID 0x0a
1663 #define M560_BUTTON_MODE_REGISTER 0x35
1665 static int m560_send_config_command(struct hid_device *hdev, bool connected)
1667 struct hidpp_report response;
1668 struct hidpp_device *hidpp_dev;
1670 hidpp_dev = hid_get_drvdata(hdev);
1675 return hidpp_send_rap_command_sync(
1677 REPORT_ID_HIDPP_SHORT,
1679 M560_BUTTON_MODE_REGISTER,
1680 (u8 *)m560_config_parameter,
1681 sizeof(m560_config_parameter),
1686 static int m560_allocate(struct hid_device *hdev)
1688 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1689 struct m560_private_data *d;
1691 d = devm_kzalloc(&hdev->dev, sizeof(struct m560_private_data),
1696 hidpp->private_data = d;
1701 static int m560_raw_event(struct hid_device *hdev, u8 *data, int size)
1703 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1704 struct m560_private_data *mydata = hidpp->private_data;
1707 if (!mydata || !mydata->input) {
1708 hid_err(hdev, "error in parameter\n");
1713 hid_err(hdev, "error in report\n");
1717 if (data[0] == REPORT_ID_HIDPP_LONG &&
1718 data[2] == M560_SUB_ID && data[6] == 0x00) {
1720 * m560 mouse report for middle, forward and backward button
1723 * data[1] = device-id
1725 * data[5] = 0xaf -> middle
1728 * 0x00 -> release all
1734 input_report_key(mydata->input, BTN_MIDDLE, 1);
1737 input_report_key(mydata->input, BTN_FORWARD, 1);
1740 input_report_key(mydata->input, BTN_BACK, 1);
1743 input_report_key(mydata->input, BTN_BACK, 0);
1744 input_report_key(mydata->input, BTN_FORWARD, 0);
1745 input_report_key(mydata->input, BTN_MIDDLE, 0);
1748 hid_err(hdev, "error in report\n");
1751 input_sync(mydata->input);
1753 } else if (data[0] == 0x02) {
1755 * Logitech M560 mouse report
1757 * data[0] = type (0x02)
1758 * data[1..2] = buttons
1765 input_report_key(mydata->input, BTN_LEFT,
1766 !!(data[1] & M560_MOUSE_BTN_LEFT));
1767 input_report_key(mydata->input, BTN_RIGHT,
1768 !!(data[1] & M560_MOUSE_BTN_RIGHT));
1770 if (data[1] & M560_MOUSE_BTN_WHEEL_LEFT)
1771 input_report_rel(mydata->input, REL_HWHEEL, -1);
1772 else if (data[1] & M560_MOUSE_BTN_WHEEL_RIGHT)
1773 input_report_rel(mydata->input, REL_HWHEEL, 1);
1775 v = hid_snto32(hid_field_extract(hdev, data+3, 0, 12), 12);
1776 input_report_rel(mydata->input, REL_X, v);
1778 v = hid_snto32(hid_field_extract(hdev, data+3, 12, 12), 12);
1779 input_report_rel(mydata->input, REL_Y, v);
1781 v = hid_snto32(data[6], 8);
1782 input_report_rel(mydata->input, REL_WHEEL, v);
1784 input_sync(mydata->input);
1790 static void m560_populate_input(struct hidpp_device *hidpp,
1791 struct input_dev *input_dev, bool origin_is_hid_core)
1793 struct m560_private_data *mydata = hidpp->private_data;
1795 mydata->input = input_dev;
1797 __set_bit(EV_KEY, mydata->input->evbit);
1798 __set_bit(BTN_MIDDLE, mydata->input->keybit);
1799 __set_bit(BTN_RIGHT, mydata->input->keybit);
1800 __set_bit(BTN_LEFT, mydata->input->keybit);
1801 __set_bit(BTN_BACK, mydata->input->keybit);
1802 __set_bit(BTN_FORWARD, mydata->input->keybit);
1804 __set_bit(EV_REL, mydata->input->evbit);
1805 __set_bit(REL_X, mydata->input->relbit);
1806 __set_bit(REL_Y, mydata->input->relbit);
1807 __set_bit(REL_WHEEL, mydata->input->relbit);
1808 __set_bit(REL_HWHEEL, mydata->input->relbit);
1811 static int m560_input_mapping(struct hid_device *hdev, struct hid_input *hi,
1812 struct hid_field *field, struct hid_usage *usage,
1813 unsigned long **bit, int *max)
1818 /* ------------------------------------------------------------------------- */
1819 /* Logitech K400 devices */
1820 /* ------------------------------------------------------------------------- */
1823 * The Logitech K400 keyboard has an embedded touchpad which is seen
1824 * as a mouse from the OS point of view. There is a hardware shortcut to disable
1825 * tap-to-click but the setting is not remembered accross reset, annoying some
1828 * We can toggle this feature from the host by using the feature 0x6010:
1832 struct k400_private_data {
1836 static int k400_disable_tap_to_click(struct hidpp_device *hidpp)
1838 struct k400_private_data *k400 = hidpp->private_data;
1839 struct hidpp_touchpad_fw_items items = {};
1843 if (!k400->feature_index) {
1844 ret = hidpp_root_get_feature(hidpp,
1845 HIDPP_PAGE_TOUCHPAD_FW_ITEMS,
1846 &k400->feature_index, &feature_type);
1848 /* means that the device is not powered up */
1852 ret = hidpp_touchpad_fw_items_set(hidpp, k400->feature_index, &items);
1859 static int k400_allocate(struct hid_device *hdev)
1861 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1862 struct k400_private_data *k400;
1864 k400 = devm_kzalloc(&hdev->dev, sizeof(struct k400_private_data),
1869 hidpp->private_data = k400;
1874 static int k400_connect(struct hid_device *hdev, bool connected)
1876 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1881 if (!disable_tap_to_click)
1884 return k400_disable_tap_to_click(hidpp);
1887 /* ------------------------------------------------------------------------- */
1888 /* Logitech G920 Driving Force Racing Wheel for Xbox One */
1889 /* ------------------------------------------------------------------------- */
1891 #define HIDPP_PAGE_G920_FORCE_FEEDBACK 0x8123
1893 static int g920_get_config(struct hidpp_device *hidpp)
1899 /* Find feature and store for later use */
1900 ret = hidpp_root_get_feature(hidpp, HIDPP_PAGE_G920_FORCE_FEEDBACK,
1901 &feature_index, &feature_type);
1905 ret = hidpp_ff_init(hidpp, feature_index);
1907 hid_warn(hidpp->hid_dev, "Unable to initialize force feedback support, errno %d\n",
1913 /* -------------------------------------------------------------------------- */
1914 /* Generic HID++ devices */
1915 /* -------------------------------------------------------------------------- */
1917 static int hidpp_input_mapping(struct hid_device *hdev, struct hid_input *hi,
1918 struct hid_field *field, struct hid_usage *usage,
1919 unsigned long **bit, int *max)
1921 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1923 if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP)
1924 return wtp_input_mapping(hdev, hi, field, usage, bit, max);
1925 else if (hidpp->quirks & HIDPP_QUIRK_CLASS_M560 &&
1926 field->application != HID_GD_MOUSE)
1927 return m560_input_mapping(hdev, hi, field, usage, bit, max);
1932 static int hidpp_input_mapped(struct hid_device *hdev, struct hid_input *hi,
1933 struct hid_field *field, struct hid_usage *usage,
1934 unsigned long **bit, int *max)
1936 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1938 /* Ensure that Logitech G920 is not given a default fuzz/flat value */
1939 if (hidpp->quirks & HIDPP_QUIRK_CLASS_G920) {
1940 if (usage->type == EV_ABS && (usage->code == ABS_X ||
1941 usage->code == ABS_Y || usage->code == ABS_Z ||
1942 usage->code == ABS_RZ)) {
1943 field->application = HID_GD_MULTIAXIS;
1951 static void hidpp_populate_input(struct hidpp_device *hidpp,
1952 struct input_dev *input, bool origin_is_hid_core)
1954 if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP)
1955 wtp_populate_input(hidpp, input, origin_is_hid_core);
1956 else if (hidpp->quirks & HIDPP_QUIRK_CLASS_M560)
1957 m560_populate_input(hidpp, input, origin_is_hid_core);
1960 static int hidpp_input_configured(struct hid_device *hdev,
1961 struct hid_input *hidinput)
1963 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
1964 struct input_dev *input = hidinput->input;
1966 hidpp_populate_input(hidpp, input, true);
1971 static int hidpp_raw_hidpp_event(struct hidpp_device *hidpp, u8 *data,
1974 struct hidpp_report *question = hidpp->send_receive_buf;
1975 struct hidpp_report *answer = hidpp->send_receive_buf;
1976 struct hidpp_report *report = (struct hidpp_report *)data;
1979 * If the mutex is locked then we have a pending answer from a
1980 * previously sent command.
1982 if (unlikely(mutex_is_locked(&hidpp->send_mutex))) {
1984 * Check for a correct hidpp20 answer or the corresponding
1987 if (hidpp_match_answer(question, report) ||
1988 hidpp_match_error(question, report)) {
1990 hidpp->answer_available = true;
1991 wake_up(&hidpp->wait);
1993 * This was an answer to a command that this driver sent
1994 * We return 1 to hid-core to avoid forwarding the
1995 * command upstream as it has been treated by the driver
2002 if (unlikely(hidpp_report_is_connect_event(report))) {
2003 atomic_set(&hidpp->connected,
2004 !(report->rap.params[0] & (1 << 6)));
2005 if ((hidpp->quirks & HIDPP_QUIRK_CONNECT_EVENTS) &&
2006 (schedule_work(&hidpp->work) == 0))
2007 dbg_hid("%s: connect event already queued\n", __func__);
2014 static int hidpp_raw_event(struct hid_device *hdev, struct hid_report *report,
2017 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
2020 /* Generic HID++ processing. */
2022 case REPORT_ID_HIDPP_VERY_LONG:
2023 if (size != HIDPP_REPORT_VERY_LONG_LENGTH) {
2024 hid_err(hdev, "received hid++ report of bad size (%d)",
2028 ret = hidpp_raw_hidpp_event(hidpp, data, size);
2030 case REPORT_ID_HIDPP_LONG:
2031 if (size != HIDPP_REPORT_LONG_LENGTH) {
2032 hid_err(hdev, "received hid++ report of bad size (%d)",
2036 ret = hidpp_raw_hidpp_event(hidpp, data, size);
2038 case REPORT_ID_HIDPP_SHORT:
2039 if (size != HIDPP_REPORT_SHORT_LENGTH) {
2040 hid_err(hdev, "received hid++ report of bad size (%d)",
2044 ret = hidpp_raw_hidpp_event(hidpp, data, size);
2048 /* If no report is available for further processing, skip calling
2049 * raw_event of subclasses. */
2053 if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP)
2054 return wtp_raw_event(hdev, data, size);
2055 else if (hidpp->quirks & HIDPP_QUIRK_CLASS_M560)
2056 return m560_raw_event(hdev, data, size);
2061 static void hidpp_overwrite_name(struct hid_device *hdev, bool use_unifying)
2063 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
2068 * the device is connected through an Unifying receiver, and
2069 * might not be already connected.
2070 * Ask the receiver for its name.
2072 name = hidpp_get_unifying_name(hidpp);
2074 name = hidpp_get_device_name(hidpp);
2077 hid_err(hdev, "unable to retrieve the name of the device");
2079 dbg_hid("HID++: Got name: %s\n", name);
2080 snprintf(hdev->name, sizeof(hdev->name), "%s", name);
2086 static int hidpp_input_open(struct input_dev *dev)
2088 struct hid_device *hid = input_get_drvdata(dev);
2090 return hid_hw_open(hid);
2093 static void hidpp_input_close(struct input_dev *dev)
2095 struct hid_device *hid = input_get_drvdata(dev);
2100 static struct input_dev *hidpp_allocate_input(struct hid_device *hdev)
2102 struct input_dev *input_dev = devm_input_allocate_device(&hdev->dev);
2103 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
2108 input_set_drvdata(input_dev, hdev);
2109 input_dev->open = hidpp_input_open;
2110 input_dev->close = hidpp_input_close;
2112 input_dev->name = hidpp->name;
2113 input_dev->phys = hdev->phys;
2114 input_dev->uniq = hdev->uniq;
2115 input_dev->id.bustype = hdev->bus;
2116 input_dev->id.vendor = hdev->vendor;
2117 input_dev->id.product = hdev->product;
2118 input_dev->id.version = hdev->version;
2119 input_dev->dev.parent = &hdev->dev;
2124 static void hidpp_connect_event(struct hidpp_device *hidpp)
2126 struct hid_device *hdev = hidpp->hid_dev;
2128 bool connected = atomic_read(&hidpp->connected);
2129 struct input_dev *input;
2130 char *name, *devm_name;
2132 if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP) {
2133 ret = wtp_connect(hdev, connected);
2136 } else if (hidpp->quirks & HIDPP_QUIRK_CLASS_M560) {
2137 ret = m560_send_config_command(hdev, connected);
2140 } else if (hidpp->quirks & HIDPP_QUIRK_CLASS_K400) {
2141 ret = k400_connect(hdev, connected);
2146 if (!connected || hidpp->delayed_input)
2149 /* the device is already connected, we can ask for its name and
2151 if (!hidpp->protocol_major) {
2152 ret = !hidpp_is_connected(hidpp);
2154 hid_err(hdev, "Can not get the protocol version.\n");
2157 hid_info(hdev, "HID++ %u.%u device connected.\n",
2158 hidpp->protocol_major, hidpp->protocol_minor);
2161 if (!(hidpp->quirks & HIDPP_QUIRK_NO_HIDINPUT))
2162 /* if HID created the input nodes for us, we can stop now */
2165 if (!hidpp->name || hidpp->name == hdev->name) {
2166 name = hidpp_get_device_name(hidpp);
2169 "unable to retrieve the name of the device");
2173 devm_name = devm_kasprintf(&hdev->dev, GFP_KERNEL, "%s", name);
2178 hidpp->name = devm_name;
2181 input = hidpp_allocate_input(hdev);
2183 hid_err(hdev, "cannot allocate new input device: %d\n", ret);
2187 hidpp_populate_input(hidpp, input, false);
2189 ret = input_register_device(input);
2191 input_free_device(input);
2193 hidpp->delayed_input = input;
2196 static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id)
2198 struct hidpp_device *hidpp;
2201 unsigned int connect_mask = HID_CONNECT_DEFAULT;
2203 hidpp = devm_kzalloc(&hdev->dev, sizeof(struct hidpp_device),
2208 hidpp->hid_dev = hdev;
2209 hidpp->name = hdev->name;
2210 hid_set_drvdata(hdev, hidpp);
2212 hidpp->quirks = id->driver_data;
2214 if (disable_raw_mode) {
2215 hidpp->quirks &= ~HIDPP_QUIRK_CLASS_WTP;
2216 hidpp->quirks &= ~HIDPP_QUIRK_CONNECT_EVENTS;
2217 hidpp->quirks &= ~HIDPP_QUIRK_NO_HIDINPUT;
2220 if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP) {
2221 ret = wtp_allocate(hdev, id);
2224 } else if (hidpp->quirks & HIDPP_QUIRK_CLASS_M560) {
2225 ret = m560_allocate(hdev);
2228 } else if (hidpp->quirks & HIDPP_QUIRK_CLASS_K400) {
2229 ret = k400_allocate(hdev);
2234 INIT_WORK(&hidpp->work, delayed_work_cb);
2235 mutex_init(&hidpp->send_mutex);
2236 init_waitqueue_head(&hidpp->wait);
2238 ret = hid_parse(hdev);
2240 hid_err(hdev, "%s:parse failed\n", __func__);
2241 goto hid_parse_fail;
2244 if (hidpp->quirks & HIDPP_QUIRK_NO_HIDINPUT)
2245 connect_mask &= ~HID_CONNECT_HIDINPUT;
2247 if (hidpp->quirks & HIDPP_QUIRK_CLASS_G920) {
2248 ret = hid_hw_start(hdev, connect_mask);
2250 hid_err(hdev, "hw start failed\n");
2251 goto hid_hw_start_fail;
2253 ret = hid_hw_open(hdev);
2255 dev_err(&hdev->dev, "%s:hid_hw_open returned error:%d\n",
2258 goto hid_hw_start_fail;
2263 /* Allow incoming packets */
2264 hid_device_io_start(hdev);
2266 connected = hidpp_is_connected(hidpp);
2267 if (id->group != HID_GROUP_LOGITECH_DJ_DEVICE) {
2270 hid_err(hdev, "Device not connected");
2271 goto hid_hw_open_failed;
2274 hid_info(hdev, "HID++ %u.%u device connected.\n",
2275 hidpp->protocol_major, hidpp->protocol_minor);
2278 hidpp_overwrite_name(hdev, id->group == HID_GROUP_LOGITECH_DJ_DEVICE);
2279 atomic_set(&hidpp->connected, connected);
2281 if (connected && (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP)) {
2282 ret = wtp_get_config(hidpp);
2284 goto hid_hw_open_failed;
2285 } else if (connected && (hidpp->quirks & HIDPP_QUIRK_CLASS_G920)) {
2286 ret = g920_get_config(hidpp);
2288 goto hid_hw_open_failed;
2291 /* Block incoming packets */
2292 hid_device_io_stop(hdev);
2294 if (!(hidpp->quirks & HIDPP_QUIRK_CLASS_G920)) {
2295 ret = hid_hw_start(hdev, connect_mask);
2297 hid_err(hdev, "%s:hid_hw_start returned error\n", __func__);
2298 goto hid_hw_start_fail;
2302 if (hidpp->quirks & HIDPP_QUIRK_CONNECT_EVENTS) {
2303 /* Allow incoming packets */
2304 hid_device_io_start(hdev);
2306 hidpp_connect_event(hidpp);
2312 hid_device_io_stop(hdev);
2313 if (hidpp->quirks & HIDPP_QUIRK_CLASS_G920) {
2319 cancel_work_sync(&hidpp->work);
2320 mutex_destroy(&hidpp->send_mutex);
2322 hid_set_drvdata(hdev, NULL);
2326 static void hidpp_remove(struct hid_device *hdev)
2328 struct hidpp_device *hidpp = hid_get_drvdata(hdev);
2330 if (hidpp->quirks & HIDPP_QUIRK_CLASS_G920) {
2331 hidpp_ff_deinit(hdev);
2335 cancel_work_sync(&hidpp->work);
2336 mutex_destroy(&hidpp->send_mutex);
2339 static const struct hid_device_id hidpp_devices[] = {
2340 { /* wireless touchpad */
2341 HID_DEVICE(BUS_USB, HID_GROUP_LOGITECH_DJ_DEVICE,
2342 USB_VENDOR_ID_LOGITECH, 0x4011),
2343 .driver_data = HIDPP_QUIRK_CLASS_WTP | HIDPP_QUIRK_DELAYED_INIT |
2344 HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS },
2345 { /* wireless touchpad T650 */
2346 HID_DEVICE(BUS_USB, HID_GROUP_LOGITECH_DJ_DEVICE,
2347 USB_VENDOR_ID_LOGITECH, 0x4101),
2348 .driver_data = HIDPP_QUIRK_CLASS_WTP | HIDPP_QUIRK_DELAYED_INIT },
2349 { /* wireless touchpad T651 */
2350 HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH,
2351 USB_DEVICE_ID_LOGITECH_T651),
2352 .driver_data = HIDPP_QUIRK_CLASS_WTP },
2353 { /* Mouse logitech M560 */
2354 HID_DEVICE(BUS_USB, HID_GROUP_LOGITECH_DJ_DEVICE,
2355 USB_VENDOR_ID_LOGITECH, 0x402d),
2356 .driver_data = HIDPP_QUIRK_DELAYED_INIT | HIDPP_QUIRK_CLASS_M560 },
2357 { /* Keyboard logitech K400 */
2358 HID_DEVICE(BUS_USB, HID_GROUP_LOGITECH_DJ_DEVICE,
2359 USB_VENDOR_ID_LOGITECH, 0x4024),
2360 .driver_data = HIDPP_QUIRK_CONNECT_EVENTS | HIDPP_QUIRK_CLASS_K400 },
2362 { HID_DEVICE(BUS_USB, HID_GROUP_LOGITECH_DJ_DEVICE,
2363 USB_VENDOR_ID_LOGITECH, HID_ANY_ID)},
2365 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL),
2366 .driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS},
2370 MODULE_DEVICE_TABLE(hid, hidpp_devices);
2372 static struct hid_driver hidpp_driver = {
2373 .name = "logitech-hidpp-device",
2374 .id_table = hidpp_devices,
2375 .probe = hidpp_probe,
2376 .remove = hidpp_remove,
2377 .raw_event = hidpp_raw_event,
2378 .input_configured = hidpp_input_configured,
2379 .input_mapping = hidpp_input_mapping,
2380 .input_mapped = hidpp_input_mapped,
2383 module_hid_driver(hidpp_driver);