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.
20 #include <linux/device.h>
21 #include <linux/hid.h>
22 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <linux/mfd/core.h>
25 #include <linux/list.h>
26 #include <linux/hid-sensor-ids.h>
27 #include <linux/hid-sensor-hub.h>
30 #define HID_SENSOR_HUB_ENUM_QUIRK 0x01
33 * struct sensor_hub_data - Hold a instance data for a HID hub device
34 * @hsdev: Stored hid instance for current hub device.
35 * @mutex: Mutex to serialize synchronous request.
36 * @lock: Spin lock to protect pending request structure.
37 * @dyn_callback_list: Holds callback function
38 * @dyn_callback_lock: spin lock to protect callback list
39 * @hid_sensor_hub_client_devs: Stores all MFD cells for a hub instance.
40 * @hid_sensor_client_cnt: Number of MFD cells, (no of sensors attached).
41 * @ref_cnt: Number of MFD clients have opened this device
43 struct sensor_hub_data
{
46 struct list_head dyn_callback_list
;
47 spinlock_t dyn_callback_lock
;
48 struct mfd_cell
*hid_sensor_hub_client_devs
;
49 int hid_sensor_client_cnt
;
55 * struct hid_sensor_hub_callbacks_list - Stores callback list
57 * @usage_id: usage id for a physical device.
58 * @usage_callback: Stores registered callback functions.
59 * @priv: Private data for a physical device.
61 struct hid_sensor_hub_callbacks_list
{
62 struct list_head list
;
64 struct hid_sensor_hub_device
*hsdev
;
65 struct hid_sensor_hub_callbacks
*usage_callback
;
69 static struct hid_report
*sensor_hub_report(int id
, struct hid_device
*hdev
,
72 struct hid_report
*report
;
74 list_for_each_entry(report
, &hdev
->report_enum
[dir
].report_list
, list
) {
78 hid_warn(hdev
, "No report with id 0x%x found\n", id
);
83 static int sensor_hub_get_physical_device_count(struct hid_device
*hdev
)
88 for (i
= 0; i
< hdev
->maxcollection
; ++i
) {
89 struct hid_collection
*collection
= &hdev
->collection
[i
];
90 if (collection
->type
== HID_COLLECTION_PHYSICAL
||
91 collection
->type
== HID_COLLECTION_APPLICATION
)
98 static void sensor_hub_fill_attr_info(
99 struct hid_sensor_hub_attribute_info
*info
,
100 s32 index
, s32 report_id
, struct hid_field
*field
)
103 info
->report_id
= report_id
;
104 info
->units
= field
->unit
;
105 info
->unit_expo
= field
->unit_exponent
;
106 info
->size
= (field
->report_size
* field
->report_count
)/8;
107 info
->logical_minimum
= field
->logical_minimum
;
108 info
->logical_maximum
= field
->logical_maximum
;
111 static struct hid_sensor_hub_callbacks
*sensor_hub_get_callback(
112 struct hid_device
*hdev
,
114 int collection_index
,
115 struct hid_sensor_hub_device
**hsdev
,
118 struct hid_sensor_hub_callbacks_list
*callback
;
119 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
122 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
123 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
124 if ((callback
->usage_id
== usage_id
||
125 callback
->usage_id
== HID_USAGE_SENSOR_COLLECTION
) &&
127 callback
->hsdev
->start_collection_index
) &&
129 callback
->hsdev
->end_collection_index
)) {
130 *priv
= callback
->priv
;
131 *hsdev
= callback
->hsdev
;
132 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
,
134 return callback
->usage_callback
;
136 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
141 int sensor_hub_register_callback(struct hid_sensor_hub_device
*hsdev
,
143 struct hid_sensor_hub_callbacks
*usage_callback
)
145 struct hid_sensor_hub_callbacks_list
*callback
;
146 struct sensor_hub_data
*pdata
= hid_get_drvdata(hsdev
->hdev
);
149 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
150 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
151 if (callback
->usage_id
== usage_id
&&
152 callback
->hsdev
== hsdev
) {
153 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
156 callback
= kzalloc(sizeof(*callback
), GFP_ATOMIC
);
158 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
161 callback
->hsdev
= hsdev
;
162 callback
->usage_callback
= usage_callback
;
163 callback
->usage_id
= usage_id
;
164 callback
->priv
= NULL
;
166 * If there is a handler registered for the collection type, then
167 * it will handle all reports for sensors in this collection. If
168 * there is also an individual sensor handler registration, then
169 * we want to make sure that the reports are directed to collection
170 * handler, as this may be a fusion sensor. So add collection handlers
171 * to the beginning of the list, so that they are matched first.
173 if (usage_id
== HID_USAGE_SENSOR_COLLECTION
)
174 list_add(&callback
->list
, &pdata
->dyn_callback_list
);
176 list_add_tail(&callback
->list
, &pdata
->dyn_callback_list
);
177 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
181 EXPORT_SYMBOL_GPL(sensor_hub_register_callback
);
183 int sensor_hub_remove_callback(struct hid_sensor_hub_device
*hsdev
,
186 struct hid_sensor_hub_callbacks_list
*callback
;
187 struct sensor_hub_data
*pdata
= hid_get_drvdata(hsdev
->hdev
);
190 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
191 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
)
192 if (callback
->usage_id
== usage_id
&&
193 callback
->hsdev
== hsdev
) {
194 list_del(&callback
->list
);
198 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
202 EXPORT_SYMBOL_GPL(sensor_hub_remove_callback
);
204 int sensor_hub_set_feature(struct hid_sensor_hub_device
*hsdev
, u32 report_id
,
205 u32 field_index
, int buffer_size
, void *buffer
)
207 struct hid_report
*report
;
208 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
209 __s32
*buf32
= buffer
;
215 mutex_lock(&data
->mutex
);
216 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
217 if (!report
|| (field_index
>= report
->maxfield
)) {
222 remaining_bytes
= buffer_size
% sizeof(__s32
);
223 buffer_size
= buffer_size
/ sizeof(__s32
);
225 for (i
= 0; i
< buffer_size
; ++i
) {
226 hid_set_field(report
->field
[field_index
], i
,
227 (__force __s32
)cpu_to_le32(*buf32
));
231 if (remaining_bytes
) {
233 memcpy(&value
, (u8
*)buf32
, remaining_bytes
);
234 hid_set_field(report
->field
[field_index
], i
,
235 (__force __s32
)cpu_to_le32(value
));
237 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_SET_REPORT
);
238 hid_hw_wait(hsdev
->hdev
);
241 mutex_unlock(&data
->mutex
);
245 EXPORT_SYMBOL_GPL(sensor_hub_set_feature
);
247 int sensor_hub_get_feature(struct hid_sensor_hub_device
*hsdev
, u32 report_id
,
248 u32 field_index
, int buffer_size
, void *buffer
)
250 struct hid_report
*report
;
251 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
255 int buffer_index
= 0;
258 memset(buffer
, 0, buffer_size
);
260 mutex_lock(&data
->mutex
);
261 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
262 if (!report
|| (field_index
>= report
->maxfield
) ||
263 report
->field
[field_index
]->report_count
< 1) {
267 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_GET_REPORT
);
268 hid_hw_wait(hsdev
->hdev
);
270 /* calculate number of bytes required to read this field */
271 report_size
= DIV_ROUND_UP(report
->field
[field_index
]->report_size
,
273 report
->field
[field_index
]->report_count
;
278 ret
= min(report_size
, buffer_size
);
280 val_ptr
= (u8
*)report
->field
[field_index
]->value
;
281 for (i
= 0; i
< report
->field
[field_index
]->report_count
; ++i
) {
282 if (buffer_index
>= ret
)
285 memcpy(&((u8
*)buffer
)[buffer_index
], val_ptr
,
286 report
->field
[field_index
]->report_size
/ 8);
287 val_ptr
+= sizeof(__s32
);
288 buffer_index
+= (report
->field
[field_index
]->report_size
/ 8);
292 mutex_unlock(&data
->mutex
);
296 EXPORT_SYMBOL_GPL(sensor_hub_get_feature
);
299 int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device
*hsdev
,
301 u32 attr_usage_id
, u32 report_id
,
302 enum sensor_hub_read_flags flag
)
304 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
306 struct hid_report
*report
;
309 report
= sensor_hub_report(report_id
, hsdev
->hdev
,
314 mutex_lock(hsdev
->mutex_ptr
);
315 if (flag
== SENSOR_HUB_SYNC
) {
316 memset(&hsdev
->pending
, 0, sizeof(hsdev
->pending
));
317 init_completion(&hsdev
->pending
.ready
);
318 hsdev
->pending
.usage_id
= usage_id
;
319 hsdev
->pending
.attr_usage_id
= attr_usage_id
;
320 hsdev
->pending
.raw_size
= 0;
322 spin_lock_irqsave(&data
->lock
, flags
);
323 hsdev
->pending
.status
= true;
324 spin_unlock_irqrestore(&data
->lock
, flags
);
326 mutex_lock(&data
->mutex
);
327 hid_hw_request(hsdev
->hdev
, report
, HID_REQ_GET_REPORT
);
328 mutex_unlock(&data
->mutex
);
329 if (flag
== SENSOR_HUB_SYNC
) {
330 wait_for_completion_interruptible_timeout(
331 &hsdev
->pending
.ready
, HZ
*5);
332 switch (hsdev
->pending
.raw_size
) {
334 ret_val
= *(u8
*)hsdev
->pending
.raw_data
;
337 ret_val
= *(u16
*)hsdev
->pending
.raw_data
;
340 ret_val
= *(u32
*)hsdev
->pending
.raw_data
;
345 kfree(hsdev
->pending
.raw_data
);
346 hsdev
->pending
.status
= false;
348 mutex_unlock(hsdev
->mutex_ptr
);
352 EXPORT_SYMBOL_GPL(sensor_hub_input_attr_get_raw_value
);
354 int hid_sensor_get_usage_index(struct hid_sensor_hub_device
*hsdev
,
355 u32 report_id
, int field_index
, u32 usage_id
)
357 struct hid_report
*report
;
358 struct hid_field
*field
;
361 report
= sensor_hub_report(report_id
, hsdev
->hdev
, HID_FEATURE_REPORT
);
362 if (!report
|| (field_index
>= report
->maxfield
))
365 field
= report
->field
[field_index
];
366 for (i
= 0; i
< field
->maxusage
; ++i
) {
367 if (field
->usage
[i
].hid
== usage_id
)
368 return field
->usage
[i
].usage_index
;
374 EXPORT_SYMBOL_GPL(hid_sensor_get_usage_index
);
376 int sensor_hub_input_get_attribute_info(struct hid_sensor_hub_device
*hsdev
,
380 struct hid_sensor_hub_attribute_info
*info
)
384 struct hid_report
*report
;
385 struct hid_field
*field
;
386 struct hid_report_enum
*report_enum
;
387 struct hid_device
*hdev
= hsdev
->hdev
;
389 /* Initialize with defaults */
390 info
->usage_id
= usage_id
;
391 info
->attrib_id
= attr_usage_id
;
392 info
->report_id
= -1;
395 info
->unit_expo
= -1;
397 report_enum
= &hdev
->report_enum
[type
];
398 list_for_each_entry(report
, &report_enum
->report_list
, list
) {
399 for (i
= 0; i
< report
->maxfield
; ++i
) {
400 field
= report
->field
[i
];
401 if (field
->maxusage
) {
402 if (field
->physical
== usage_id
&&
403 (field
->logical
== attr_usage_id
||
404 field
->usage
[0].hid
==
406 (field
->usage
[0].collection_index
>=
407 hsdev
->start_collection_index
) &&
408 (field
->usage
[0].collection_index
<
409 hsdev
->end_collection_index
)) {
411 sensor_hub_fill_attr_info(info
, i
,
424 EXPORT_SYMBOL_GPL(sensor_hub_input_get_attribute_info
);
427 static int sensor_hub_suspend(struct hid_device
*hdev
, pm_message_t message
)
429 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
430 struct hid_sensor_hub_callbacks_list
*callback
;
433 hid_dbg(hdev
, " sensor_hub_suspend\n");
434 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
435 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
) {
436 if (callback
->usage_callback
->suspend
)
437 callback
->usage_callback
->suspend(
438 callback
->hsdev
, callback
->priv
);
440 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
445 static int sensor_hub_resume(struct hid_device
*hdev
)
447 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
448 struct hid_sensor_hub_callbacks_list
*callback
;
451 hid_dbg(hdev
, " sensor_hub_resume\n");
452 spin_lock_irqsave(&pdata
->dyn_callback_lock
, flags
);
453 list_for_each_entry(callback
, &pdata
->dyn_callback_list
, list
) {
454 if (callback
->usage_callback
->resume
)
455 callback
->usage_callback
->resume(
456 callback
->hsdev
, callback
->priv
);
458 spin_unlock_irqrestore(&pdata
->dyn_callback_lock
, flags
);
463 static int sensor_hub_reset_resume(struct hid_device
*hdev
)
470 * Handle raw report as sent by device
472 static int sensor_hub_raw_event(struct hid_device
*hdev
,
473 struct hid_report
*report
, u8
*raw_data
, int size
)
478 struct sensor_hub_data
*pdata
= hid_get_drvdata(hdev
);
480 struct hid_sensor_hub_callbacks
*callback
= NULL
;
481 struct hid_collection
*collection
= NULL
;
483 struct hid_sensor_hub_device
*hsdev
= NULL
;
485 hid_dbg(hdev
, "sensor_hub_raw_event report id:0x%x size:%d type:%d\n",
486 report
->id
, size
, report
->type
);
487 hid_dbg(hdev
, "maxfield:%d\n", report
->maxfield
);
488 if (report
->type
!= HID_INPUT_REPORT
)
492 ptr
++; /* Skip report id */
494 spin_lock_irqsave(&pdata
->lock
, flags
);
496 for (i
= 0; i
< report
->maxfield
; ++i
) {
497 hid_dbg(hdev
, "%d collection_index:%x hid:%x sz:%x\n",
498 i
, report
->field
[i
]->usage
->collection_index
,
499 report
->field
[i
]->usage
->hid
,
500 (report
->field
[i
]->report_size
*
501 report
->field
[i
]->report_count
)/8);
502 sz
= (report
->field
[i
]->report_size
*
503 report
->field
[i
]->report_count
)/8;
504 collection
= &hdev
->collection
[
505 report
->field
[i
]->usage
->collection_index
];
506 hid_dbg(hdev
, "collection->usage %x\n",
509 callback
= sensor_hub_get_callback(hdev
,
510 report
->field
[i
]->physical
,
511 report
->field
[i
]->usage
[0].collection_index
,
517 if (hsdev
->pending
.status
&& (hsdev
->pending
.attr_usage_id
==
518 report
->field
[i
]->usage
->hid
||
519 hsdev
->pending
.attr_usage_id
==
520 report
->field
[i
]->logical
)) {
521 hid_dbg(hdev
, "data was pending ...\n");
522 hsdev
->pending
.raw_data
= kmemdup(ptr
, sz
, GFP_ATOMIC
);
523 if (hsdev
->pending
.raw_data
)
524 hsdev
->pending
.raw_size
= sz
;
526 hsdev
->pending
.raw_size
= 0;
527 complete(&hsdev
->pending
.ready
);
529 if (callback
->capture_sample
) {
530 if (report
->field
[i
]->logical
)
531 callback
->capture_sample(hsdev
,
532 report
->field
[i
]->logical
, sz
, ptr
,
535 callback
->capture_sample(hsdev
,
536 report
->field
[i
]->usage
->hid
, sz
, ptr
,
541 if (callback
&& collection
&& callback
->send_event
)
542 callback
->send_event(hsdev
, collection
->usage
,
544 spin_unlock_irqrestore(&pdata
->lock
, flags
);
549 int sensor_hub_device_open(struct hid_sensor_hub_device
*hsdev
)
552 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
554 mutex_lock(&data
->mutex
);
555 if (!data
->ref_cnt
) {
556 ret
= hid_hw_open(hsdev
->hdev
);
558 hid_err(hsdev
->hdev
, "failed to open hid device\n");
559 mutex_unlock(&data
->mutex
);
564 mutex_unlock(&data
->mutex
);
568 EXPORT_SYMBOL_GPL(sensor_hub_device_open
);
570 void sensor_hub_device_close(struct hid_sensor_hub_device
*hsdev
)
572 struct sensor_hub_data
*data
= hid_get_drvdata(hsdev
->hdev
);
574 mutex_lock(&data
->mutex
);
577 hid_hw_close(hsdev
->hdev
);
578 mutex_unlock(&data
->mutex
);
580 EXPORT_SYMBOL_GPL(sensor_hub_device_close
);
582 static int sensor_hub_probe(struct hid_device
*hdev
,
583 const struct hid_device_id
*id
)
586 struct sensor_hub_data
*sd
;
590 struct hid_sensor_hub_device
*hsdev
;
591 struct hid_sensor_hub_device
*last_hsdev
= NULL
;
592 struct hid_sensor_hub_device
*collection_hsdev
= NULL
;
594 sd
= devm_kzalloc(&hdev
->dev
, sizeof(*sd
), GFP_KERNEL
);
596 hid_err(hdev
, "cannot allocate Sensor data\n");
600 hid_set_drvdata(hdev
, sd
);
601 sd
->quirks
= id
->driver_data
;
603 spin_lock_init(&sd
->lock
);
604 spin_lock_init(&sd
->dyn_callback_lock
);
605 mutex_init(&sd
->mutex
);
606 ret
= hid_parse(hdev
);
608 hid_err(hdev
, "parse failed\n");
611 INIT_LIST_HEAD(&hdev
->inputs
);
613 ret
= hid_hw_start(hdev
, 0);
615 hid_err(hdev
, "hw start failed\n");
618 INIT_LIST_HEAD(&sd
->dyn_callback_list
);
619 sd
->hid_sensor_client_cnt
= 0;
621 dev_cnt
= sensor_hub_get_physical_device_count(hdev
);
622 if (dev_cnt
> HID_MAX_PHY_DEVICES
) {
623 hid_err(hdev
, "Invalid Physical device count\n");
627 sd
->hid_sensor_hub_client_devs
= devm_kcalloc(&hdev
->dev
,
629 sizeof(struct mfd_cell
),
631 if (sd
->hid_sensor_hub_client_devs
== NULL
) {
632 hid_err(hdev
, "Failed to allocate memory for mfd cells\n");
637 for (i
= 0; i
< hdev
->maxcollection
; ++i
) {
638 struct hid_collection
*collection
= &hdev
->collection
[i
];
640 if (collection
->type
== HID_COLLECTION_PHYSICAL
||
641 collection
->type
== HID_COLLECTION_APPLICATION
) {
643 hsdev
= devm_kzalloc(&hdev
->dev
, sizeof(*hsdev
),
646 hid_err(hdev
, "cannot allocate hid_sensor_hub_device\n");
651 hsdev
->vendor_id
= hdev
->vendor
;
652 hsdev
->product_id
= hdev
->product
;
653 hsdev
->usage
= collection
->usage
;
654 hsdev
->mutex_ptr
= devm_kzalloc(&hdev
->dev
,
655 sizeof(struct mutex
),
657 if (!hsdev
->mutex_ptr
) {
661 mutex_init(hsdev
->mutex_ptr
);
662 hsdev
->start_collection_index
= i
;
664 last_hsdev
->end_collection_index
= i
;
666 name
= devm_kasprintf(&hdev
->dev
, GFP_KERNEL
,
670 hid_err(hdev
, "Failed MFD device name\n");
674 sd
->hid_sensor_hub_client_devs
[
675 sd
->hid_sensor_client_cnt
].name
= name
;
676 sd
->hid_sensor_hub_client_devs
[
677 sd
->hid_sensor_client_cnt
].platform_data
=
679 sd
->hid_sensor_hub_client_devs
[
680 sd
->hid_sensor_client_cnt
].pdata_size
=
682 hid_dbg(hdev
, "Adding %s:%d\n", name
,
683 hsdev
->start_collection_index
);
684 sd
->hid_sensor_client_cnt
++;
685 if (collection_hsdev
)
686 collection_hsdev
->end_collection_index
= i
;
687 if (collection
->type
== HID_COLLECTION_APPLICATION
&&
688 collection
->usage
== HID_USAGE_SENSOR_COLLECTION
)
689 collection_hsdev
= hsdev
;
693 last_hsdev
->end_collection_index
= i
;
694 if (collection_hsdev
)
695 collection_hsdev
->end_collection_index
= i
;
697 ret
= mfd_add_hotplug_devices(&hdev
->dev
,
698 sd
->hid_sensor_hub_client_devs
,
699 sd
->hid_sensor_client_cnt
);
711 static void sensor_hub_remove(struct hid_device
*hdev
)
713 struct sensor_hub_data
*data
= hid_get_drvdata(hdev
);
717 hid_dbg(hdev
, " hardware removed\n");
720 spin_lock_irqsave(&data
->lock
, flags
);
721 for (i
= 0; i
< data
->hid_sensor_client_cnt
; ++i
) {
722 struct hid_sensor_hub_device
*hsdev
=
723 data
->hid_sensor_hub_client_devs
[i
].platform_data
;
724 if (hsdev
->pending
.status
)
725 complete(&hsdev
->pending
.ready
);
727 spin_unlock_irqrestore(&data
->lock
, flags
);
728 mfd_remove_devices(&hdev
->dev
);
729 hid_set_drvdata(hdev
, NULL
);
730 mutex_destroy(&data
->mutex
);
733 static const struct hid_device_id sensor_hub_devices
[] = {
734 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_SENSOR_HUB
, HID_ANY_ID
,
738 MODULE_DEVICE_TABLE(hid
, sensor_hub_devices
);
740 static struct hid_driver sensor_hub_driver
= {
741 .name
= "hid-sensor-hub",
742 .id_table
= sensor_hub_devices
,
743 .probe
= sensor_hub_probe
,
744 .remove
= sensor_hub_remove
,
745 .raw_event
= sensor_hub_raw_event
,
747 .suspend
= sensor_hub_suspend
,
748 .resume
= sensor_hub_resume
,
749 .reset_resume
= sensor_hub_reset_resume
,
752 module_hid_driver(sensor_hub_driver
);
754 MODULE_DESCRIPTION("HID Sensor Hub driver");
755 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@intel.com>");
756 MODULE_LICENSE("GPL");