2 * Plantronics USB HID Driver
4 * Copyright (c) 2014 JD Cole <jd.cole@plantronics.com>
5 * Copyright (c) 2015 Terry Junge <terry.junge@plantronics.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
17 #include <linux/hid.h>
18 #include <linux/module.h>
20 #define PLT_HID_1_0_PAGE 0xffa00000
21 #define PLT_HID_2_0_PAGE 0xffa20000
23 #define PLT_BASIC_TELEPHONY 0x0003
24 #define PLT_BASIC_EXCEPTION 0x0005
26 #define PLT_VOL_UP 0x00b1
27 #define PLT_VOL_DOWN 0x00b2
29 #define PLT1_VOL_UP (PLT_HID_1_0_PAGE | PLT_VOL_UP)
30 #define PLT1_VOL_DOWN (PLT_HID_1_0_PAGE | PLT_VOL_DOWN)
31 #define PLT2_VOL_UP (PLT_HID_2_0_PAGE | PLT_VOL_UP)
32 #define PLT2_VOL_DOWN (PLT_HID_2_0_PAGE | PLT_VOL_DOWN)
34 #define PLT_DA60 0xda60
35 #define PLT_BT300_MIN 0x0413
36 #define PLT_BT300_MAX 0x0418
39 #define PLT_ALLOW_CONSUMER (field->application == HID_CP_CONSUMERCONTROL && \
40 (usage->hid & HID_USAGE_PAGE) == HID_UP_CONSUMER)
42 static int plantronics_input_mapping(struct hid_device
*hdev
,
44 struct hid_field
*field
,
45 struct hid_usage
*usage
,
46 unsigned long **bit
, int *max
)
48 unsigned short mapped_key
;
49 unsigned long plt_type
= (unsigned long)hid_get_drvdata(hdev
);
51 /* handle volume up/down mapping */
52 /* non-standard types or multi-HID interfaces - plt_type is PID */
53 if (!(plt_type
& HID_USAGE_PAGE
)) {
56 if (PLT_ALLOW_CONSUMER
)
60 if (PLT_ALLOW_CONSUMER
)
64 /* handle standard types - plt_type is 0xffa0uuuu or 0xffa2uuuu */
65 /* 'basic telephony compliant' - allow default consumer page map */
66 else if ((plt_type
& HID_USAGE
) >= PLT_BASIC_TELEPHONY
&&
67 (plt_type
& HID_USAGE
) != PLT_BASIC_EXCEPTION
) {
68 if (PLT_ALLOW_CONSUMER
)
71 /* not 'basic telephony' - apply legacy mapping */
72 /* only map if the field is in the device's primary vendor page */
73 else if (!((field
->application
^ plt_type
) & HID_USAGE_PAGE
)) {
77 mapped_key
= KEY_VOLUMEUP
;
81 mapped_key
= KEY_VOLUMEDOWN
;
87 * Future mapping of call control or other usages,
88 * if and when keys are defined would go here
89 * otherwise, ignore everything else that was not mapped
96 hid_dbg(hdev
, "usage: %08x (appl: %08x) - defaulted\n",
97 usage
->hid
, field
->application
);
101 hid_map_usage_clear(hi
, usage
, bit
, max
, EV_KEY
, mapped_key
);
102 hid_dbg(hdev
, "usage: %08x (appl: %08x) - mapped to key %d\n",
103 usage
->hid
, field
->application
, mapped_key
);
107 static unsigned long plantronics_device_type(struct hid_device
*hdev
)
109 unsigned i
, col_page
;
110 unsigned long plt_type
= hdev
->product
;
112 /* multi-HID interfaces? - plt_type is PID */
113 if (plt_type
>= PLT_BT300_MIN
&& plt_type
<= PLT_BT300_MAX
)
116 /* determine primary vendor page */
117 for (i
= 0; i
< hdev
->maxcollection
; i
++) {
118 col_page
= hdev
->collection
[i
].usage
& HID_USAGE_PAGE
;
119 if (col_page
== PLT_HID_2_0_PAGE
) {
120 plt_type
= hdev
->collection
[i
].usage
;
123 if (col_page
== PLT_HID_1_0_PAGE
)
124 plt_type
= hdev
->collection
[i
].usage
;
128 hid_dbg(hdev
, "plt_type decoded as: %08lx\n", plt_type
);
132 static int plantronics_probe(struct hid_device
*hdev
,
133 const struct hid_device_id
*id
)
137 ret
= hid_parse(hdev
);
139 hid_err(hdev
, "parse failed\n");
143 hid_set_drvdata(hdev
, (void *)plantronics_device_type(hdev
));
145 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
|
146 HID_CONNECT_HIDINPUT_FORCE
| HID_CONNECT_HIDDEV_FORCE
);
148 hid_err(hdev
, "hw start failed\n");
154 static const struct hid_device_id plantronics_devices
[] = {
155 { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS
, HID_ANY_ID
) },
158 MODULE_DEVICE_TABLE(hid
, plantronics_devices
);
160 static struct hid_driver plantronics_driver
= {
161 .name
= "plantronics",
162 .id_table
= plantronics_devices
,
163 .input_mapping
= plantronics_input_mapping
,
164 .probe
= plantronics_probe
,
166 module_hid_driver(plantronics_driver
);
168 MODULE_AUTHOR("JD Cole <jd.cole@plantronics.com>");
169 MODULE_AUTHOR("Terry Junge <terry.junge@plantronics.com>");
170 MODULE_DESCRIPTION("Plantronics USB HID Driver");
171 MODULE_LICENSE("GPL");