3 * Copyright (c) 2012, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <linux/device.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/mfd/core.h>
24 #include <linux/list.h>
25 #include <linux/hid-sensor-ids.h>
26 #include <linux/hid-sensor-hub.h>
29 #define HID_SENSOR_HUB_ENUM_QUIRK 0x01
32 * struct sensor_hub_data - Hold a instance data for a HID hub device
33 * @hsdev: Stored hid instance for current hub device.
34 * @mutex: Mutex to serialize synchronous request.
35 * @lock: Spin lock to protect pending request structure.
36 * @dyn_callback_list: Holds callback function
37 * @dyn_callback_lock: spin lock to protect callback list
38 * @hid_sensor_hub_client_devs: Stores all MFD cells for a hub instance.
39 * @hid_sensor_client_cnt: Number of MFD cells, (no of sensors attached).
40 * @ref_cnt: Number of MFD clients have opened this device
42 struct sensor_hub_data
{
45 struct list_head dyn_callback_list
;
46 spinlock_t dyn_callback_lock
;
47 struct mfd_cell
*hid_sensor_hub_client_devs
;
48 int hid_sensor_client_cnt
;
54 * struct hid_sensor_hub_callbacks_list - Stores callback list
56 * @usage_id: usage id for a physical device.
57 * @usage_callback: Stores registered callback functions.
58 * @priv: Private data for a physical device.
60 struct hid_sensor_hub_callbacks_list
{
61 struct list_head list
;
63 struct hid_sensor_hub_device
*hsdev
;
64 struct hid_sensor_hub_callbacks
*usage_callback
;
68 static struct hid_report
*sensor_hub_report(int id
, struct hid_device
*hdev
,
71 struct hid_report
*report
;
73 list_for_each_entry(report
, &hdev
->report_enum
[dir
].report_list
, list
) {
77 hid_warn(hdev
, "No report with id 0x%x found\n", id
);
82 static int sensor_hub_get_physical_device_count(struct hid_device
*hdev
)
87 for (i
= 0; i
< hdev
->maxcollection
; ++i
) {
88 struct hid_collection
*collection
= &hdev
->collection
[i
];
89 if (collection
->type
== HID_COLLECTION_PHYSICAL
||
90 collection
->type
== HID_COLLECTION_APPLICATION
)
97 static void sensor_hub_fill_attr_info(
98 struct hid_sensor_hub_attribute_info
*info
,
99 s32 index
, s32 report_id
, struct hid_field
*field
)
102 info
->report_id
= report_id
;
103 info
->units
= field
->unit
;
104 info
->unit_expo
= field
->unit_exponent
;
105 info
->size
= (field
->report_size
* field
->report_count
)/8;
106 info
->logical_minimum
= field
->logical_minimum
;
107 info
->logical_maximum
= field
->logical_maximum
;
110 static struct hid_sensor_hub_callbacks
*sensor_hub_get_callback(
111 struct hid_device
*hdev
,
113 int collection_index
,
114 struct hid_sensor_hub_device
**hsdev
,
117 struct hid_sensor_hub_callbacks_list
*callback
;
118 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
121 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
122 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
123 if ((callback
->usage_id
== usage_id
||
124 callback
->usage_id
== HID_USAGE_SENSOR_COLLECTION
) &&
126 callback
->hsdev
->start_collection_index
) &&
128 callback
->hsdev
->end_collection_index
)) {
129 *priv
= callback
->priv
;
130 *hsdev
= callback
->hsdev
;
131 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
,
133 return callback
->usage_callback
;
135 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
140 int sensor_hub_register_callback(struct hid_sensor_hub_device
*hsdev
,
142 struct hid_sensor_hub_callbacks
*usage_callback
)
144 struct hid_sensor_hub_callbacks_list
*callback
;
145 struct sensor_hub_data
*pdata
= hid_get_drvdata(hsdev
->hdev
);
148 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
149 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
150 if (callback
->usage_id
== usage_id
&&
151 callback
->hsdev
== hsdev
) {
152 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
155 callback
= kzalloc(sizeof(*callback
), GFP_ATOMIC
);
157 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
160 callback
->hsdev
= hsdev
;
161 callback
->usage_callback
= usage_callback
;
162 callback
->usage_id
= usage_id
;
163 callback
->priv
= NULL
;
165 * If there is a handler registered for the collection type, then
166 * it will handle all reports for sensors in this collection. If
167 * there is also an individual sensor handler registration, then
168 * we want to make sure that the reports are directed to collection
169 * handler, as this may be a fusion sensor. So add collection handlers
170 * to the beginning of the list, so that they are matched first.
172 if (usage_id
== HID_USAGE_SENSOR_COLLECTION
)
173 list_add(&callback
->list
, &pdata
->dyn_callback_list
);
175 list_add_tail(&callback
->list
, &pdata
->dyn_callback_list
);
176 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
180 EXPORT_SYMBOL_GPL(sensor_hub_register_callback
);
182 int sensor_hub_remove_callback(struct hid_sensor_hub_device
*hsdev
,
185 struct hid_sensor_hub_callbacks_list
*callback
;
186 struct sensor_hub_data
*pdata
= hid_get_drvdata(hsdev
->hdev
);
189 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
190 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
191 if (callback
->usage_id
== usage_id
&&
192 callback
->hsdev
== hsdev
) {
193 list_del(&callback
->list
);
197 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
201 EXPORT_SYMBOL_GPL(sensor_hub_remove_callback
);
203 int sensor_hub_set_feature(struct hid_sensor_hub_device
*hsdev
, u32 report_id
,
204 u32 field_index
, int buffer_size
, void *buffer
)
206 struct hid_report
*report
;
207 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
208 __s32
*buf32
= buffer
;
214 mutex_lock(&data
->mutex
);
215 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
216 if (!report
|| (field_index
>= report
->maxfield
)) {
221 remaining_bytes
= buffer_size
% sizeof(__s32
);
222 buffer_size
= buffer_size
/ sizeof(__s32
);
224 for (i
= 0; i
< buffer_size
; ++i
) {
225 hid_set_field(report
->field
[field_index
], i
,
226 (__force __s32
)cpu_to_le32(*buf32
));
230 if (remaining_bytes
) {
232 memcpy(&value
, (u8
*)buf32
, remaining_bytes
);
233 hid_set_field(report
->field
[field_index
], i
,
234 (__force __s32
)cpu_to_le32(value
));
236 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_SET_REPORT
);
237 hid_hw_wait(hsdev
->hdev
);
240 mutex_unlock(&data
->mutex
);
244 EXPORT_SYMBOL_GPL(sensor_hub_set_feature
);
246 int sensor_hub_get_feature(struct hid_sensor_hub_device
*hsdev
, u32 report_id
,
247 u32 field_index
, int buffer_size
, void *buffer
)
249 struct hid_report
*report
;
250 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
254 mutex_lock(&data
->mutex
);
255 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
256 if (!report
|| (field_index
>= report
->maxfield
) ||
257 report
->field
[field_index
]->report_count
< 1) {
261 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_GET_REPORT
);
262 hid_hw_wait(hsdev
->hdev
);
264 /* calculate number of bytes required to read this field */
265 report_size
= DIV_ROUND_UP(report
->field
[field_index
]->report_size
,
267 report
->field
[field_index
]->report_count
;
272 ret
= min(report_size
, buffer_size
);
273 memcpy(buffer
, report
->field
[field_index
]->value
, ret
);
276 mutex_unlock(&data
->mutex
);
280 EXPORT_SYMBOL_GPL(sensor_hub_get_feature
);
283 int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device
*hsdev
,
285 u32 attr_usage_id
, u32 report_id
,
286 enum sensor_hub_read_flags flag
)
288 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
290 struct hid_report
*report
;
293 report
= sensor_hub_report(report_id
, hsdev
->hdev
,
298 mutex_lock(hsdev
->mutex_ptr
);
299 if (flag
== SENSOR_HUB_SYNC
) {
300 memset(&hsdev
->pending
, 0, sizeof(hsdev
->pending
));
301 init_completion(&hsdev
->pending
.ready
);
302 hsdev
->pending
.usage_id
= usage_id
;
303 hsdev
->pending
.attr_usage_id
= attr_usage_id
;
304 hsdev
->pending
.raw_size
= 0;
306 spin_lock_irqsave(&data
->lock
, flags
);
307 hsdev
->pending
.status
= true;
308 spin_unlock_irqrestore(&data
->lock
, flags
);
310 mutex_lock(&data
->mutex
);
311 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_GET_REPORT
);
312 mutex_unlock(&data
->mutex
);
313 if (flag
== SENSOR_HUB_SYNC
) {
314 wait_for_completion_interruptible_timeout(
315 &hsdev
->pending
.ready
, HZ
*5);
316 switch (hsdev
->pending
.raw_size
) {
318 ret_val
= *(u8
*)hsdev
->pending
.raw_data
;
321 ret_val
= *(u16
*)hsdev
->pending
.raw_data
;
324 ret_val
= *(u32
*)hsdev
->pending
.raw_data
;
329 kfree(hsdev
->pending
.raw_data
);
330 hsdev
->pending
.status
= false;
332 mutex_unlock(hsdev
->mutex_ptr
);
336 EXPORT_SYMBOL_GPL(sensor_hub_input_attr_get_raw_value
);
338 int hid_sensor_get_usage_index(struct hid_sensor_hub_device
*hsdev
,
339 u32 report_id
, int field_index
, u32 usage_id
)
341 struct hid_report
*report
;
342 struct hid_field
*field
;
345 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
346 if (!report
|| (field_index
>= report
->maxfield
))
349 field
= report
->field
[field_index
];
350 for (i
= 0; i
< field
->maxusage
; ++i
) {
351 if (field
->usage
[i
].hid
== usage_id
)
352 return field
->usage
[i
].usage_index
;
358 EXPORT_SYMBOL_GPL(hid_sensor_get_usage_index
);
360 int sensor_hub_input_get_attribute_info(struct hid_sensor_hub_device
*hsdev
,
364 struct hid_sensor_hub_attribute_info
*info
)
368 struct hid_report
*report
;
369 struct hid_field
*field
;
370 struct hid_report_enum
*report_enum
;
371 struct hid_device
*hdev
= hsdev
->hdev
;
373 /* Initialize with defaults */
374 info
->usage_id
= usage_id
;
375 info
->attrib_id
= attr_usage_id
;
376 info
->report_id
= -1;
379 info
->unit_expo
= -1;
381 report_enum
= &hdev
->report_enum
[type
];
382 list_for_each_entry(report
, &report_enum
->report_list
, list
) {
383 for (i
= 0; i
< report
->maxfield
; ++i
) {
384 field
= report
->field
[i
];
385 if (field
->maxusage
) {
386 if (field
->physical
== usage_id
&&
387 (field
->logical
== attr_usage_id
||
388 field
->usage
[0].hid
==
390 (field
->usage
[0].collection_index
>=
391 hsdev
->start_collection_index
) &&
392 (field
->usage
[0].collection_index
<
393 hsdev
->end_collection_index
)) {
395 sensor_hub_fill_attr_info(info
, i
,
408 EXPORT_SYMBOL_GPL(sensor_hub_input_get_attribute_info
);
411 static int sensor_hub_suspend(struct hid_device
*hdev
, pm_message_t message
)
413 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
414 struct hid_sensor_hub_callbacks_list
*callback
;
417 hid_dbg(hdev
, " sensor_hub_suspend\n");
418 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
419 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
) {
420 if (callback
->usage_callback
->suspend
)
421 callback
->usage_callback
->suspend(
422 callback
->hsdev
, callback
->priv
);
424 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
429 static int sensor_hub_resume(struct hid_device
*hdev
)
431 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
432 struct hid_sensor_hub_callbacks_list
*callback
;
435 hid_dbg(hdev
, " sensor_hub_resume\n");
436 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
437 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
) {
438 if (callback
->usage_callback
->resume
)
439 callback
->usage_callback
->resume(
440 callback
->hsdev
, callback
->priv
);
442 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
447 static int sensor_hub_reset_resume(struct hid_device
*hdev
)
454 * Handle raw report as sent by device
456 static int sensor_hub_raw_event(struct hid_device
*hdev
,
457 struct hid_report
*report
, u8
*raw_data
, int size
)
462 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
464 struct hid_sensor_hub_callbacks
*callback
= NULL
;
465 struct hid_collection
*collection
= NULL
;
467 struct hid_sensor_hub_device
*hsdev
= NULL
;
469 hid_dbg(hdev
, "sensor_hub_raw_event report id:0x%x size:%d type:%d\n",
470 report
->id
, size
, report
->type
);
471 hid_dbg(hdev
, "maxfield:%d\n", report
->maxfield
);
472 if (report
->type
!= HID_INPUT_REPORT
)
476 ptr
++; /* Skip report id */
478 spin_lock_irqsave(&pdata
->lock
, flags
);
480 for (i
= 0; i
< report
->maxfield
; ++i
) {
481 hid_dbg(hdev
, "%d collection_index:%x hid:%x sz:%x\n",
482 i
, report
->field
[i
]->usage
->collection_index
,
483 report
->field
[i
]->usage
->hid
,
484 (report
->field
[i
]->report_size
*
485 report
->field
[i
]->report_count
)/8);
486 sz
= (report
->field
[i
]->report_size
*
487 report
->field
[i
]->report_count
)/8;
488 collection
= &hdev
->collection
[
489 report
->field
[i
]->usage
->collection_index
];
490 hid_dbg(hdev
, "collection->usage %x\n",
493 callback
= sensor_hub_get_callback(hdev
,
494 report
->field
[i
]->physical
,
495 report
->field
[i
]->usage
[0].collection_index
,
501 if (hsdev
->pending
.status
&& (hsdev
->pending
.attr_usage_id
==
502 report
->field
[i
]->usage
->hid
||
503 hsdev
->pending
.attr_usage_id
==
504 report
->field
[i
]->logical
)) {
505 hid_dbg(hdev
, "data was pending ...\n");
506 hsdev
->pending
.raw_data
= kmemdup(ptr
, sz
, GFP_ATOMIC
);
507 if (hsdev
->pending
.raw_data
)
508 hsdev
->pending
.raw_size
= sz
;
510 hsdev
->pending
.raw_size
= 0;
511 complete(&hsdev
->pending
.ready
);
513 if (callback
->capture_sample
) {
514 if (report
->field
[i
]->logical
)
515 callback
->capture_sample(hsdev
,
516 report
->field
[i
]->logical
, sz
, ptr
,
519 callback
->capture_sample(hsdev
,
520 report
->field
[i
]->usage
->hid
, sz
, ptr
,
525 if (callback
&& collection
&& callback
->send_event
)
526 callback
->send_event(hsdev
, collection
->usage
,
528 spin_unlock_irqrestore(&pdata
->lock
, flags
);
533 int sensor_hub_device_open(struct hid_sensor_hub_device
*hsdev
)
536 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
538 mutex_lock(&data
->mutex
);
539 if (!data
->ref_cnt
) {
540 ret
= hid_hw_open(hsdev
->hdev
);
542 hid_err(hsdev
->hdev
, "failed to open hid device\n");
543 mutex_unlock(&data
->mutex
);
548 mutex_unlock(&data
->mutex
);
552 EXPORT_SYMBOL_GPL(sensor_hub_device_open
);
554 void sensor_hub_device_close(struct hid_sensor_hub_device
*hsdev
)
556 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
558 mutex_lock(&data
->mutex
);
561 hid_hw_close(hsdev
->hdev
);
562 mutex_unlock(&data
->mutex
);
564 EXPORT_SYMBOL_GPL(sensor_hub_device_close
);
566 static __u8
*sensor_hub_report_fixup(struct hid_device
*hdev
, __u8
*rdesc
,
570 struct sensor_hub_data
*sd
= hid_get_drvdata(hdev
);
571 unsigned char report_block
[] = {
572 0x0a, 0x16, 0x03, 0x15, 0x00, 0x25, 0x05};
573 unsigned char power_block
[] = {
574 0x0a, 0x19, 0x03, 0x15, 0x00, 0x25, 0x05};
576 if (!(sd
->quirks
& HID_SENSOR_HUB_ENUM_QUIRK
)) {
577 hid_dbg(hdev
, "No Enum quirks\n");
581 /* Looks for power and report state usage id and force to 1 */
582 for (index
= 0; index
< *rsize
; ++index
) {
583 if (((*rsize
- index
) > sizeof(report_block
)) &&
584 !memcmp(&rdesc
[index
], report_block
,
585 sizeof(report_block
))) {
586 rdesc
[index
+ 4] = 0x01;
587 index
+= sizeof(report_block
);
589 if (((*rsize
- index
) > sizeof(power_block
)) &&
590 !memcmp(&rdesc
[index
], power_block
,
591 sizeof(power_block
))) {
592 rdesc
[index
+ 4] = 0x01;
593 index
+= sizeof(power_block
);
597 /* Checks if the report descriptor of Thinkpad Helix 2 has a logical
598 * minimum for magnetic flux axis greater than the maximum */
599 if (hdev
->product
== USB_DEVICE_ID_TEXAS_INSTRUMENTS_LENOVO_YOGA
&&
600 *rsize
== 2558 && rdesc
[913] == 0x17 && rdesc
[914] == 0x40 &&
601 rdesc
[915] == 0x81 && rdesc
[916] == 0x08 &&
602 rdesc
[917] == 0x00 && rdesc
[918] == 0x27 &&
603 rdesc
[921] == 0x07 && rdesc
[922] == 0x00) {
604 /* Sets negative logical minimum for mag x, y and z */
605 rdesc
[914] = rdesc
[935] = rdesc
[956] = 0xc0;
606 rdesc
[915] = rdesc
[936] = rdesc
[957] = 0x7e;
607 rdesc
[916] = rdesc
[937] = rdesc
[958] = 0xf7;
608 rdesc
[917] = rdesc
[938] = rdesc
[959] = 0xff;
614 static int sensor_hub_probe(struct hid_device
*hdev
,
615 const struct hid_device_id
*id
)
618 struct sensor_hub_data
*sd
;
622 struct hid_sensor_hub_device
*hsdev
;
623 struct hid_sensor_hub_device
*last_hsdev
= NULL
;
624 struct hid_sensor_hub_device
*collection_hsdev
= NULL
;
626 sd
= devm_kzalloc(&hdev
->dev
, sizeof(*sd
), GFP_KERNEL
);
628 hid_err(hdev
, "cannot allocate Sensor data\n");
632 hid_set_drvdata(hdev
, sd
);
633 sd
->quirks
= id
->driver_data
;
635 spin_lock_init(&sd
->lock
);
636 spin_lock_init(&sd
->dyn_callback_lock
);
637 mutex_init(&sd
->mutex
);
638 ret
= hid_parse(hdev
);
640 hid_err(hdev
, "parse failed\n");
643 INIT_LIST_HEAD(&hdev
->inputs
);
645 ret
= hid_hw_start(hdev
, 0);
647 hid_err(hdev
, "hw start failed\n");
650 INIT_LIST_HEAD(&sd
->dyn_callback_list
);
651 sd
->hid_sensor_client_cnt
= 0;
653 dev_cnt
= sensor_hub_get_physical_device_count(hdev
);
654 if (dev_cnt
> HID_MAX_PHY_DEVICES
) {
655 hid_err(hdev
, "Invalid Physical device count\n");
659 sd
->hid_sensor_hub_client_devs
= devm_kzalloc(&hdev
->dev
, dev_cnt
*
660 sizeof(struct mfd_cell
),
662 if (sd
->hid_sensor_hub_client_devs
== NULL
) {
663 hid_err(hdev
, "Failed to allocate memory for mfd cells\n");
668 for (i
= 0; i
< hdev
->maxcollection
; ++i
) {
669 struct hid_collection
*collection
= &hdev
->collection
[i
];
671 if (collection
->type
== HID_COLLECTION_PHYSICAL
||
672 collection
->type
== HID_COLLECTION_APPLICATION
) {
674 hsdev
= devm_kzalloc(&hdev
->dev
, sizeof(*hsdev
),
677 hid_err(hdev
, "cannot allocate hid_sensor_hub_device\n");
682 hsdev
->vendor_id
= hdev
->vendor
;
683 hsdev
->product_id
= hdev
->product
;
684 hsdev
->usage
= collection
->usage
;
685 hsdev
->mutex_ptr
= devm_kzalloc(&hdev
->dev
,
686 sizeof(struct mutex
),
688 if (!hsdev
->mutex_ptr
) {
692 mutex_init(hsdev
->mutex_ptr
);
693 hsdev
->start_collection_index
= i
;
695 last_hsdev
->end_collection_index
= i
;
697 name
= devm_kasprintf(&hdev
->dev
, GFP_KERNEL
,
701 hid_err(hdev
, "Failed MFD device name\n");
705 sd
->hid_sensor_hub_client_devs
[
706 sd
->hid_sensor_client_cnt
].name
= name
;
707 sd
->hid_sensor_hub_client_devs
[
708 sd
->hid_sensor_client_cnt
].platform_data
=
710 sd
->hid_sensor_hub_client_devs
[
711 sd
->hid_sensor_client_cnt
].pdata_size
=
713 hid_dbg(hdev
, "Adding %s:%d\n", name
,
714 hsdev
->start_collection_index
);
715 sd
->hid_sensor_client_cnt
++;
716 if (collection_hsdev
)
717 collection_hsdev
->end_collection_index
= i
;
718 if (collection
->type
== HID_COLLECTION_APPLICATION
&&
719 collection
->usage
== HID_USAGE_SENSOR_COLLECTION
)
720 collection_hsdev
= hsdev
;
724 last_hsdev
->end_collection_index
= i
;
725 if (collection_hsdev
)
726 collection_hsdev
->end_collection_index
= i
;
728 ret
= mfd_add_hotplug_devices(&hdev
->dev
,
729 sd
->hid_sensor_hub_client_devs
,
730 sd
->hid_sensor_client_cnt
);
742 static void sensor_hub_remove(struct hid_device
*hdev
)
744 struct sensor_hub_data
*data
= hid_get_drvdata(hdev
);
748 hid_dbg(hdev
, " hardware removed\n");
751 spin_lock_irqsave(&data
->lock
, flags
);
752 for (i
= 0; i
< data
->hid_sensor_client_cnt
; ++i
) {
753 struct hid_sensor_hub_device
*hsdev
=
754 data
->hid_sensor_hub_client_devs
[i
].platform_data
;
755 if (hsdev
->pending
.status
)
756 complete(&hsdev
->pending
.ready
);
758 spin_unlock_irqrestore(&data
->lock
, flags
);
759 mfd_remove_devices(&hdev
->dev
);
760 hid_set_drvdata(hdev
, NULL
);
761 mutex_destroy(&data
->mutex
);
764 static const struct hid_device_id sensor_hub_devices
[] = {
765 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_INTEL_0
,
766 USB_DEVICE_ID_INTEL_HID_SENSOR_0
),
767 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
768 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_INTEL_1
,
769 USB_DEVICE_ID_INTEL_HID_SENSOR_0
),
770 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
771 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_INTEL_1
,
772 USB_DEVICE_ID_INTEL_HID_SENSOR_1
),
773 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
774 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_MICROSOFT
,
775 USB_DEVICE_ID_MS_SURFACE_PRO_2
),
776 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
777 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_MICROSOFT
,
778 USB_DEVICE_ID_MS_TOUCH_COVER_2
),
779 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
780 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_MICROSOFT
,
781 USB_DEVICE_ID_MS_TYPE_COVER_2
),
782 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
783 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_STM_0
,
784 USB_DEVICE_ID_STM_HID_SENSOR
),
785 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
786 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_STM_0
,
787 USB_DEVICE_ID_STM_HID_SENSOR_1
),
788 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
789 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_TEXAS_INSTRUMENTS
,
790 USB_DEVICE_ID_TEXAS_INSTRUMENTS_LENOVO_YOGA
),
791 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
792 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_ITE
,
793 USB_DEVICE_ID_ITE_LENOVO_YOGA
),
794 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
795 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_ITE
,
796 USB_DEVICE_ID_ITE_LENOVO_YOGA2
),
797 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
798 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, USB_VENDOR_ID_ITE
,
799 USB_DEVICE_ID_ITE_LENOVO_YOGA900
),
800 .driver_data
= HID_SENSOR_HUB_ENUM_QUIRK
},
801 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, HID_ANY_ID
,
805 MODULE_DEVICE_TABLE(hid
, sensor_hub_devices
);
807 static struct hid_driver sensor_hub_driver
= {
808 .name
= "hid-sensor-hub",
809 .id_table
= sensor_hub_devices
,
810 .probe
= sensor_hub_probe
,
811 .remove
= sensor_hub_remove
,
812 .raw_event
= sensor_hub_raw_event
,
813 .report_fixup
= sensor_hub_report_fixup
,
815 .suspend
= sensor_hub_suspend
,
816 .resume
= sensor_hub_resume
,
817 .reset_resume
= sensor_hub_reset_resume
,
820 module_hid_driver(sensor_hub_driver
);
822 MODULE_DESCRIPTION("HID Sensor Hub driver");
823 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@intel.com>");
824 MODULE_LICENSE("GPL");