Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * HID Sensors Driver
4 * Copyright (c) 2012, Intel Corporation.
5 */
6
7#include <linux/device.h>
8#include <linux/hid.h>
9#include <linux/module.h>
10#include <linux/slab.h>
11#include <linux/mfd/core.h>
12#include <linux/list.h>
13#include <linux/hid-sensor-ids.h>
14#include <linux/hid-sensor-hub.h>
15#include "hid-ids.h"
16
17#define HID_SENSOR_HUB_ENUM_QUIRK 0x01
18
19/**
20 * struct sensor_hub_data - Hold a instance data for a HID hub device
21 * @hsdev: Stored hid instance for current hub device.
22 * @mutex: Mutex to serialize synchronous request.
23 * @lock: Spin lock to protect pending request structure.
24 * @dyn_callback_list: Holds callback function
25 * @dyn_callback_lock: spin lock to protect callback list
26 * @hid_sensor_hub_client_devs: Stores all MFD cells for a hub instance.
27 * @hid_sensor_client_cnt: Number of MFD cells, (no of sensors attached).
28 * @ref_cnt: Number of MFD clients have opened this device
29 */
30struct sensor_hub_data {
31 struct mutex mutex;
32 spinlock_t lock;
33 struct list_head dyn_callback_list;
34 spinlock_t dyn_callback_lock;
35 struct mfd_cell *hid_sensor_hub_client_devs;
36 int hid_sensor_client_cnt;
37 unsigned long quirks;
38 int ref_cnt;
39};
40
41/**
42 * struct hid_sensor_hub_callbacks_list - Stores callback list
43 * @list: list head.
44 * @usage_id: usage id for a physical device.
45 * @usage_callback: Stores registered callback functions.
46 * @priv: Private data for a physical device.
47 */
48struct hid_sensor_hub_callbacks_list {
49 struct list_head list;
50 u32 usage_id;
51 struct hid_sensor_hub_device *hsdev;
52 struct hid_sensor_hub_callbacks *usage_callback;
53 void *priv;
54};
55
56static struct hid_report *sensor_hub_report(int id, struct hid_device *hdev,
57 int dir)
58{
59 struct hid_report *report;
60
61 list_for_each_entry(report, &hdev->report_enum[dir].report_list, list) {
62 if (report->id == id)
63 return report;
64 }
65 hid_warn(hdev, "No report with id 0x%x found\n", id);
66
67 return NULL;
68}
69
70static int sensor_hub_get_physical_device_count(struct hid_device *hdev)
71{
72 int i;
73 int count = 0;
74
75 for (i = 0; i < hdev->maxcollection; ++i) {
76 struct hid_collection *collection = &hdev->collection[i];
77 if (collection->type == HID_COLLECTION_PHYSICAL ||
78 collection->type == HID_COLLECTION_APPLICATION)
79 ++count;
80 }
81
82 return count;
83}
84
85static void sensor_hub_fill_attr_info(
86 struct hid_sensor_hub_attribute_info *info,
87 s32 index, s32 report_id, struct hid_field *field)
88{
89 info->index = index;
90 info->report_id = report_id;
91 info->units = field->unit;
92 info->unit_expo = field->unit_exponent;
93 info->size = (field->report_size * field->report_count)/8;
94 info->logical_minimum = field->logical_minimum;
95 info->logical_maximum = field->logical_maximum;
96}
97
98static struct hid_sensor_hub_callbacks *sensor_hub_get_callback(
99 struct hid_device *hdev,
100 u32 usage_id,
101 int collection_index,
102 struct hid_sensor_hub_device **hsdev,
103 void **priv)
104{
105 struct hid_sensor_hub_callbacks_list *callback;
106 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
107 unsigned long flags;
108
109 spin_lock_irqsave(&pdata->dyn_callback_lock, flags);
110 list_for_each_entry(callback, &pdata->dyn_callback_list, list)
111 if ((callback->usage_id == usage_id ||
112 callback->usage_id == HID_USAGE_SENSOR_COLLECTION) &&
113 (collection_index >=
114 callback->hsdev->start_collection_index) &&
115 (collection_index <
116 callback->hsdev->end_collection_index)) {
117 *priv = callback->priv;
118 *hsdev = callback->hsdev;
119 spin_unlock_irqrestore(&pdata->dyn_callback_lock,
120 flags);
121 return callback->usage_callback;
122 }
123 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
124
125 return NULL;
126}
127
128int sensor_hub_register_callback(struct hid_sensor_hub_device *hsdev,
129 u32 usage_id,
130 struct hid_sensor_hub_callbacks *usage_callback)
131{
132 struct hid_sensor_hub_callbacks_list *callback;
133 struct sensor_hub_data *pdata = hid_get_drvdata(hsdev->hdev);
134 unsigned long flags;
135
136 spin_lock_irqsave(&pdata->dyn_callback_lock, flags);
137 list_for_each_entry(callback, &pdata->dyn_callback_list, list)
138 if (callback->usage_id == usage_id &&
139 callback->hsdev == hsdev) {
140 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
141 return -EINVAL;
142 }
143 callback = kzalloc(sizeof(*callback), GFP_ATOMIC);
144 if (!callback) {
145 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
146 return -ENOMEM;
147 }
148 callback->hsdev = hsdev;
149 callback->usage_callback = usage_callback;
150 callback->usage_id = usage_id;
151 callback->priv = NULL;
152 /*
153 * If there is a handler registered for the collection type, then
154 * it will handle all reports for sensors in this collection. If
155 * there is also an individual sensor handler registration, then
156 * we want to make sure that the reports are directed to collection
157 * handler, as this may be a fusion sensor. So add collection handlers
158 * to the beginning of the list, so that they are matched first.
159 */
160 if (usage_id == HID_USAGE_SENSOR_COLLECTION)
161 list_add(&callback->list, &pdata->dyn_callback_list);
162 else
163 list_add_tail(&callback->list, &pdata->dyn_callback_list);
164 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
165
166 return 0;
167}
168EXPORT_SYMBOL_GPL(sensor_hub_register_callback);
169
170int sensor_hub_remove_callback(struct hid_sensor_hub_device *hsdev,
171 u32 usage_id)
172{
173 struct hid_sensor_hub_callbacks_list *callback;
174 struct sensor_hub_data *pdata = hid_get_drvdata(hsdev->hdev);
175 unsigned long flags;
176
177 spin_lock_irqsave(&pdata->dyn_callback_lock, flags);
178 list_for_each_entry(callback, &pdata->dyn_callback_list, list)
179 if (callback->usage_id == usage_id &&
180 callback->hsdev == hsdev) {
181 list_del(&callback->list);
182 kfree(callback);
183 break;
184 }
185 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
186
187 return 0;
188}
189EXPORT_SYMBOL_GPL(sensor_hub_remove_callback);
190
191int sensor_hub_set_feature(struct hid_sensor_hub_device *hsdev, u32 report_id,
192 u32 field_index, int buffer_size, void *buffer)
193{
194 struct hid_report *report;
195 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
196 __s32 *buf32 = buffer;
197 int i = 0;
198 int remaining_bytes;
199 __s32 value;
200 int ret = 0;
201
202 mutex_lock(&data->mutex);
203 report = sensor_hub_report(report_id, hsdev->hdev, HID_FEATURE_REPORT);
204 if (!report || (field_index >= report->maxfield)) {
205 ret = -EINVAL;
206 goto done_proc;
207 }
208
209 remaining_bytes = buffer_size % sizeof(__s32);
210 buffer_size = buffer_size / sizeof(__s32);
211 if (buffer_size) {
212 for (i = 0; i < buffer_size; ++i) {
213 hid_set_field(report->field[field_index], i,
214 (__force __s32)cpu_to_le32(*buf32));
215 ++buf32;
216 }
217 }
218 if (remaining_bytes) {
219 value = 0;
220 memcpy(&value, (u8 *)buf32, remaining_bytes);
221 hid_set_field(report->field[field_index], i,
222 (__force __s32)cpu_to_le32(value));
223 }
224 hid_hw_request(hsdev->hdev, report, HID_REQ_SET_REPORT);
225 hid_hw_wait(hsdev->hdev);
226
227done_proc:
228 mutex_unlock(&data->mutex);
229
230 return ret;
231}
232EXPORT_SYMBOL_GPL(sensor_hub_set_feature);
233
234int sensor_hub_get_feature(struct hid_sensor_hub_device *hsdev, u32 report_id,
235 u32 field_index, int buffer_size, void *buffer)
236{
237 struct hid_report *report;
238 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
239 int report_size;
240 int ret = 0;
241 u8 *val_ptr;
242 int buffer_index = 0;
243 int i;
244
245 memset(buffer, 0, buffer_size);
246
247 mutex_lock(&data->mutex);
248 report = sensor_hub_report(report_id, hsdev->hdev, HID_FEATURE_REPORT);
249 if (!report || (field_index >= report->maxfield) ||
250 report->field[field_index]->report_count < 1) {
251 ret = -EINVAL;
252 goto done_proc;
253 }
254 hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT);
255 hid_hw_wait(hsdev->hdev);
256
257 /* calculate number of bytes required to read this field */
258 report_size = DIV_ROUND_UP(report->field[field_index]->report_size,
259 8) *
260 report->field[field_index]->report_count;
261 if (!report_size) {
262 ret = -EINVAL;
263 goto done_proc;
264 }
265 ret = min(report_size, buffer_size);
266
267 val_ptr = (u8 *)report->field[field_index]->value;
268 for (i = 0; i < report->field[field_index]->report_count; ++i) {
269 if (buffer_index >= ret)
270 break;
271
272 memcpy(&((u8 *)buffer)[buffer_index], val_ptr,
273 report->field[field_index]->report_size / 8);
274 val_ptr += sizeof(__s32);
275 buffer_index += (report->field[field_index]->report_size / 8);
276 }
277
278done_proc:
279 mutex_unlock(&data->mutex);
280
281 return ret;
282}
283EXPORT_SYMBOL_GPL(sensor_hub_get_feature);
284
285
286int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
287 u32 usage_id,
288 u32 attr_usage_id, u32 report_id,
289 enum sensor_hub_read_flags flag,
290 bool is_signed)
291{
292 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
293 unsigned long flags;
294 struct hid_report *report;
295 int ret_val = 0;
296
297 report = sensor_hub_report(report_id, hsdev->hdev,
298 HID_INPUT_REPORT);
299 if (!report)
300 return -EINVAL;
301
302 mutex_lock(hsdev->mutex_ptr);
303 if (flag == SENSOR_HUB_SYNC) {
304 memset(&hsdev->pending, 0, sizeof(hsdev->pending));
305 init_completion(&hsdev->pending.ready);
306 hsdev->pending.usage_id = usage_id;
307 hsdev->pending.attr_usage_id = attr_usage_id;
308 hsdev->pending.raw_size = 0;
309
310 spin_lock_irqsave(&data->lock, flags);
311 hsdev->pending.status = true;
312 spin_unlock_irqrestore(&data->lock, flags);
313 }
314 mutex_lock(&data->mutex);
315 hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT);
316 mutex_unlock(&data->mutex);
317 if (flag == SENSOR_HUB_SYNC) {
318 wait_for_completion_interruptible_timeout(
319 &hsdev->pending.ready, HZ*5);
320 switch (hsdev->pending.raw_size) {
321 case 1:
322 if (is_signed)
323 ret_val = *(s8 *)hsdev->pending.raw_data;
324 else
325 ret_val = *(u8 *)hsdev->pending.raw_data;
326 break;
327 case 2:
328 if (is_signed)
329 ret_val = *(s16 *)hsdev->pending.raw_data;
330 else
331 ret_val = *(u16 *)hsdev->pending.raw_data;
332 break;
333 case 4:
334 ret_val = *(u32 *)hsdev->pending.raw_data;
335 break;
336 default:
337 ret_val = 0;
338 }
339 kfree(hsdev->pending.raw_data);
340 hsdev->pending.status = false;
341 }
342 mutex_unlock(hsdev->mutex_ptr);
343
344 return ret_val;
345}
346EXPORT_SYMBOL_GPL(sensor_hub_input_attr_get_raw_value);
347
348int hid_sensor_get_usage_index(struct hid_sensor_hub_device *hsdev,
349 u32 report_id, int field_index, u32 usage_id)
350{
351 struct hid_report *report;
352 struct hid_field *field;
353 int i;
354
355 report = sensor_hub_report(report_id, hsdev->hdev, HID_FEATURE_REPORT);
356 if (!report || (field_index >= report->maxfield))
357 goto done_proc;
358
359 field = report->field[field_index];
360 for (i = 0; i < field->maxusage; ++i) {
361 if (field->usage[i].hid == usage_id)
362 return field->usage[i].usage_index;
363 }
364
365done_proc:
366 return -EINVAL;
367}
368EXPORT_SYMBOL_GPL(hid_sensor_get_usage_index);
369
370int sensor_hub_input_get_attribute_info(struct hid_sensor_hub_device *hsdev,
371 u8 type,
372 u32 usage_id,
373 u32 attr_usage_id,
374 struct hid_sensor_hub_attribute_info *info)
375{
376 int ret = -1;
377 int i;
378 struct hid_report *report;
379 struct hid_field *field;
380 struct hid_report_enum *report_enum;
381 struct hid_device *hdev = hsdev->hdev;
382
383 /* Initialize with defaults */
384 info->usage_id = usage_id;
385 info->attrib_id = attr_usage_id;
386 info->report_id = -1;
387 info->index = -1;
388 info->units = -1;
389 info->unit_expo = -1;
390
391 report_enum = &hdev->report_enum[type];
392 list_for_each_entry(report, &report_enum->report_list, list) {
393 for (i = 0; i < report->maxfield; ++i) {
394 field = report->field[i];
395 if (field->maxusage) {
396 if (field->physical == usage_id &&
397 (field->logical == attr_usage_id ||
398 field->usage[0].hid ==
399 attr_usage_id) &&
400 (field->usage[0].collection_index >=
401 hsdev->start_collection_index) &&
402 (field->usage[0].collection_index <
403 hsdev->end_collection_index)) {
404
405 sensor_hub_fill_attr_info(info, i,
406 report->id,
407 field);
408 ret = 0;
409 break;
410 }
411 }
412 }
413
414 }
415
416 return ret;
417}
418EXPORT_SYMBOL_GPL(sensor_hub_input_get_attribute_info);
419
420#ifdef CONFIG_PM
421static int sensor_hub_suspend(struct hid_device *hdev, pm_message_t message)
422{
423 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
424 struct hid_sensor_hub_callbacks_list *callback;
425 unsigned long flags;
426
427 hid_dbg(hdev, " sensor_hub_suspend\n");
428 spin_lock_irqsave(&pdata->dyn_callback_lock, flags);
429 list_for_each_entry(callback, &pdata->dyn_callback_list, list) {
430 if (callback->usage_callback->suspend)
431 callback->usage_callback->suspend(
432 callback->hsdev, callback->priv);
433 }
434 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
435
436 return 0;
437}
438
439static int sensor_hub_resume(struct hid_device *hdev)
440{
441 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
442 struct hid_sensor_hub_callbacks_list *callback;
443 unsigned long flags;
444
445 hid_dbg(hdev, " sensor_hub_resume\n");
446 spin_lock_irqsave(&pdata->dyn_callback_lock, flags);
447 list_for_each_entry(callback, &pdata->dyn_callback_list, list) {
448 if (callback->usage_callback->resume)
449 callback->usage_callback->resume(
450 callback->hsdev, callback->priv);
451 }
452 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
453
454 return 0;
455}
456
457static int sensor_hub_reset_resume(struct hid_device *hdev)
458{
459 return 0;
460}
461#endif
462
463/*
464 * Handle raw report as sent by device
465 */
466static int sensor_hub_raw_event(struct hid_device *hdev,
467 struct hid_report *report, u8 *raw_data, int size)
468{
469 int i;
470 u8 *ptr;
471 int sz;
472 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
473 unsigned long flags;
474 struct hid_sensor_hub_callbacks *callback = NULL;
475 struct hid_collection *collection = NULL;
476 void *priv = NULL;
477 struct hid_sensor_hub_device *hsdev = NULL;
478
479 hid_dbg(hdev, "sensor_hub_raw_event report id:0x%x size:%d type:%d\n",
480 report->id, size, report->type);
481 hid_dbg(hdev, "maxfield:%d\n", report->maxfield);
482 if (report->type != HID_INPUT_REPORT)
483 return 1;
484
485 ptr = raw_data;
486 ptr++; /* Skip report id */
487
488 spin_lock_irqsave(&pdata->lock, flags);
489
490 for (i = 0; i < report->maxfield; ++i) {
491 hid_dbg(hdev, "%d collection_index:%x hid:%x sz:%x\n",
492 i, report->field[i]->usage->collection_index,
493 report->field[i]->usage->hid,
494 (report->field[i]->report_size *
495 report->field[i]->report_count)/8);
496 sz = (report->field[i]->report_size *
497 report->field[i]->report_count)/8;
498 collection = &hdev->collection[
499 report->field[i]->usage->collection_index];
500 hid_dbg(hdev, "collection->usage %x\n",
501 collection->usage);
502
503 callback = sensor_hub_get_callback(hdev,
504 report->field[i]->physical,
505 report->field[i]->usage[0].collection_index,
506 &hsdev, &priv);
507 if (!callback) {
508 ptr += sz;
509 continue;
510 }
511 if (hsdev->pending.status && (hsdev->pending.attr_usage_id ==
512 report->field[i]->usage->hid ||
513 hsdev->pending.attr_usage_id ==
514 report->field[i]->logical)) {
515 hid_dbg(hdev, "data was pending ...\n");
516 hsdev->pending.raw_data = kmemdup(ptr, sz, GFP_ATOMIC);
517 if (hsdev->pending.raw_data)
518 hsdev->pending.raw_size = sz;
519 else
520 hsdev->pending.raw_size = 0;
521 complete(&hsdev->pending.ready);
522 }
523 if (callback->capture_sample) {
524 if (report->field[i]->logical)
525 callback->capture_sample(hsdev,
526 report->field[i]->logical, sz, ptr,
527 callback->pdev);
528 else
529 callback->capture_sample(hsdev,
530 report->field[i]->usage->hid, sz, ptr,
531 callback->pdev);
532 }
533 ptr += sz;
534 }
535 if (callback && collection && callback->send_event)
536 callback->send_event(hsdev, collection->usage,
537 callback->pdev);
538 spin_unlock_irqrestore(&pdata->lock, flags);
539
540 return 1;
541}
542
543int sensor_hub_device_open(struct hid_sensor_hub_device *hsdev)
544{
545 int ret = 0;
546 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
547
548 mutex_lock(&data->mutex);
549 if (!data->ref_cnt) {
550 ret = hid_hw_open(hsdev->hdev);
551 if (ret) {
552 hid_err(hsdev->hdev, "failed to open hid device\n");
553 mutex_unlock(&data->mutex);
554 return ret;
555 }
556 }
557 data->ref_cnt++;
558 mutex_unlock(&data->mutex);
559
560 return ret;
561}
562EXPORT_SYMBOL_GPL(sensor_hub_device_open);
563
564void sensor_hub_device_close(struct hid_sensor_hub_device *hsdev)
565{
566 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
567
568 mutex_lock(&data->mutex);
569 data->ref_cnt--;
570 if (!data->ref_cnt)
571 hid_hw_close(hsdev->hdev);
572 mutex_unlock(&data->mutex);
573}
574EXPORT_SYMBOL_GPL(sensor_hub_device_close);
575
576static __u8 *sensor_hub_report_fixup(struct hid_device *hdev, __u8 *rdesc,
577 unsigned int *rsize)
578{
579 /*
580 * Checks if the report descriptor of Thinkpad Helix 2 has a logical
581 * minimum for magnetic flux axis greater than the maximum.
582 */
583 if (hdev->product == USB_DEVICE_ID_TEXAS_INSTRUMENTS_LENOVO_YOGA &&
584 *rsize == 2558 && rdesc[913] == 0x17 && rdesc[914] == 0x40 &&
585 rdesc[915] == 0x81 && rdesc[916] == 0x08 &&
586 rdesc[917] == 0x00 && rdesc[918] == 0x27 &&
587 rdesc[921] == 0x07 && rdesc[922] == 0x00) {
588 /* Sets negative logical minimum for mag x, y and z */
589 rdesc[914] = rdesc[935] = rdesc[956] = 0xc0;
590 rdesc[915] = rdesc[936] = rdesc[957] = 0x7e;
591 rdesc[916] = rdesc[937] = rdesc[958] = 0xf7;
592 rdesc[917] = rdesc[938] = rdesc[959] = 0xff;
593 }
594
595 return rdesc;
596}
597
598static int sensor_hub_probe(struct hid_device *hdev,
599 const struct hid_device_id *id)
600{
601 int ret;
602 struct sensor_hub_data *sd;
603 int i;
604 char *name;
605 int dev_cnt;
606 struct hid_sensor_hub_device *hsdev;
607 struct hid_sensor_hub_device *last_hsdev = NULL;
608 struct hid_sensor_hub_device *collection_hsdev = NULL;
609
610 sd = devm_kzalloc(&hdev->dev, sizeof(*sd), GFP_KERNEL);
611 if (!sd) {
612 hid_err(hdev, "cannot allocate Sensor data\n");
613 return -ENOMEM;
614 }
615
616 hid_set_drvdata(hdev, sd);
617 sd->quirks = id->driver_data;
618
619 spin_lock_init(&sd->lock);
620 spin_lock_init(&sd->dyn_callback_lock);
621 mutex_init(&sd->mutex);
622 ret = hid_parse(hdev);
623 if (ret) {
624 hid_err(hdev, "parse failed\n");
625 return ret;
626 }
627 INIT_LIST_HEAD(&hdev->inputs);
628
629 ret = hid_hw_start(hdev, 0);
630 if (ret) {
631 hid_err(hdev, "hw start failed\n");
632 return ret;
633 }
634 INIT_LIST_HEAD(&sd->dyn_callback_list);
635 sd->hid_sensor_client_cnt = 0;
636
637 dev_cnt = sensor_hub_get_physical_device_count(hdev);
638 if (dev_cnt > HID_MAX_PHY_DEVICES) {
639 hid_err(hdev, "Invalid Physical device count\n");
640 ret = -EINVAL;
641 goto err_stop_hw;
642 }
643 sd->hid_sensor_hub_client_devs = devm_kcalloc(&hdev->dev,
644 dev_cnt,
645 sizeof(struct mfd_cell),
646 GFP_KERNEL);
647 if (sd->hid_sensor_hub_client_devs == NULL) {
648 hid_err(hdev, "Failed to allocate memory for mfd cells\n");
649 ret = -ENOMEM;
650 goto err_stop_hw;
651 }
652
653 for (i = 0; i < hdev->maxcollection; ++i) {
654 struct hid_collection *collection = &hdev->collection[i];
655
656 if (collection->type == HID_COLLECTION_PHYSICAL ||
657 collection->type == HID_COLLECTION_APPLICATION) {
658
659 hsdev = devm_kzalloc(&hdev->dev, sizeof(*hsdev),
660 GFP_KERNEL);
661 if (!hsdev) {
662 hid_err(hdev, "cannot allocate hid_sensor_hub_device\n");
663 ret = -ENOMEM;
664 goto err_stop_hw;
665 }
666 hsdev->hdev = hdev;
667 hsdev->vendor_id = hdev->vendor;
668 hsdev->product_id = hdev->product;
669 hsdev->usage = collection->usage;
670 hsdev->mutex_ptr = devm_kzalloc(&hdev->dev,
671 sizeof(struct mutex),
672 GFP_KERNEL);
673 if (!hsdev->mutex_ptr) {
674 ret = -ENOMEM;
675 goto err_stop_hw;
676 }
677 mutex_init(hsdev->mutex_ptr);
678 hsdev->start_collection_index = i;
679 if (last_hsdev)
680 last_hsdev->end_collection_index = i;
681 last_hsdev = hsdev;
682 name = devm_kasprintf(&hdev->dev, GFP_KERNEL,
683 "HID-SENSOR-%x",
684 collection->usage);
685 if (name == NULL) {
686 hid_err(hdev, "Failed MFD device name\n");
687 ret = -ENOMEM;
688 goto err_stop_hw;
689 }
690 sd->hid_sensor_hub_client_devs[
691 sd->hid_sensor_client_cnt].name = name;
692 sd->hid_sensor_hub_client_devs[
693 sd->hid_sensor_client_cnt].platform_data =
694 hsdev;
695 sd->hid_sensor_hub_client_devs[
696 sd->hid_sensor_client_cnt].pdata_size =
697 sizeof(*hsdev);
698 hid_dbg(hdev, "Adding %s:%d\n", name,
699 hsdev->start_collection_index);
700 sd->hid_sensor_client_cnt++;
701 if (collection_hsdev)
702 collection_hsdev->end_collection_index = i;
703 if (collection->type == HID_COLLECTION_APPLICATION &&
704 collection->usage == HID_USAGE_SENSOR_COLLECTION)
705 collection_hsdev = hsdev;
706 }
707 }
708 if (last_hsdev)
709 last_hsdev->end_collection_index = i;
710 if (collection_hsdev)
711 collection_hsdev->end_collection_index = i;
712
713 ret = mfd_add_hotplug_devices(&hdev->dev,
714 sd->hid_sensor_hub_client_devs,
715 sd->hid_sensor_client_cnt);
716 if (ret < 0)
717 goto err_stop_hw;
718
719 return ret;
720
721err_stop_hw:
722 hid_hw_stop(hdev);
723
724 return ret;
725}
726
727static void sensor_hub_remove(struct hid_device *hdev)
728{
729 struct sensor_hub_data *data = hid_get_drvdata(hdev);
730 unsigned long flags;
731 int i;
732
733 hid_dbg(hdev, " hardware removed\n");
734 hid_hw_close(hdev);
735 hid_hw_stop(hdev);
736 spin_lock_irqsave(&data->lock, flags);
737 for (i = 0; i < data->hid_sensor_client_cnt; ++i) {
738 struct hid_sensor_hub_device *hsdev =
739 data->hid_sensor_hub_client_devs[i].platform_data;
740 if (hsdev->pending.status)
741 complete(&hsdev->pending.ready);
742 }
743 spin_unlock_irqrestore(&data->lock, flags);
744 mfd_remove_devices(&hdev->dev);
745 mutex_destroy(&data->mutex);
746}
747
748static const struct hid_device_id sensor_hub_devices[] = {
749 { HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, HID_ANY_ID,
750 HID_ANY_ID) },
751 { }
752};
753MODULE_DEVICE_TABLE(hid, sensor_hub_devices);
754
755static struct hid_driver sensor_hub_driver = {
756 .name = "hid-sensor-hub",
757 .id_table = sensor_hub_devices,
758 .probe = sensor_hub_probe,
759 .remove = sensor_hub_remove,
760 .raw_event = sensor_hub_raw_event,
761 .report_fixup = sensor_hub_report_fixup,
762#ifdef CONFIG_PM
763 .suspend = sensor_hub_suspend,
764 .resume = sensor_hub_resume,
765 .reset_resume = sensor_hub_reset_resume,
766#endif
767};
768module_hid_driver(sensor_hub_driver);
769
770MODULE_DESCRIPTION("HID Sensor Hub driver");
771MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@intel.com>");
772MODULE_LICENSE("GPL");
1/*
2 * HID Sensors Driver
3 * Copyright (c) 2012, Intel Corporation.
4 *
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.
8 *
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
12 * more details.
13 *
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.
17 *
18 */
19
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>
28#include "hid-ids.h"
29
30#define HID_SENSOR_HUB_ENUM_QUIRK 0x01
31
32/**
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
42 */
43struct sensor_hub_data {
44 struct mutex mutex;
45 spinlock_t lock;
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;
50 unsigned long quirks;
51 int ref_cnt;
52};
53
54/**
55 * struct hid_sensor_hub_callbacks_list - Stores callback list
56 * @list: list head.
57 * @usage_id: usage id for a physical device.
58 * @usage_callback: Stores registered callback functions.
59 * @priv: Private data for a physical device.
60 */
61struct hid_sensor_hub_callbacks_list {
62 struct list_head list;
63 u32 usage_id;
64 struct hid_sensor_hub_device *hsdev;
65 struct hid_sensor_hub_callbacks *usage_callback;
66 void *priv;
67};
68
69static struct hid_report *sensor_hub_report(int id, struct hid_device *hdev,
70 int dir)
71{
72 struct hid_report *report;
73
74 list_for_each_entry(report, &hdev->report_enum[dir].report_list, list) {
75 if (report->id == id)
76 return report;
77 }
78 hid_warn(hdev, "No report with id 0x%x found\n", id);
79
80 return NULL;
81}
82
83static int sensor_hub_get_physical_device_count(struct hid_device *hdev)
84{
85 int i;
86 int count = 0;
87
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)
92 ++count;
93 }
94
95 return count;
96}
97
98static void sensor_hub_fill_attr_info(
99 struct hid_sensor_hub_attribute_info *info,
100 s32 index, s32 report_id, struct hid_field *field)
101{
102 info->index = index;
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;
109}
110
111static struct hid_sensor_hub_callbacks *sensor_hub_get_callback(
112 struct hid_device *hdev,
113 u32 usage_id,
114 int collection_index,
115 struct hid_sensor_hub_device **hsdev,
116 void **priv)
117{
118 struct hid_sensor_hub_callbacks_list *callback;
119 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
120 unsigned long flags;
121
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) &&
126 (collection_index >=
127 callback->hsdev->start_collection_index) &&
128 (collection_index <
129 callback->hsdev->end_collection_index)) {
130 *priv = callback->priv;
131 *hsdev = callback->hsdev;
132 spin_unlock_irqrestore(&pdata->dyn_callback_lock,
133 flags);
134 return callback->usage_callback;
135 }
136 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
137
138 return NULL;
139}
140
141int sensor_hub_register_callback(struct hid_sensor_hub_device *hsdev,
142 u32 usage_id,
143 struct hid_sensor_hub_callbacks *usage_callback)
144{
145 struct hid_sensor_hub_callbacks_list *callback;
146 struct sensor_hub_data *pdata = hid_get_drvdata(hsdev->hdev);
147 unsigned long flags;
148
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);
154 return -EINVAL;
155 }
156 callback = kzalloc(sizeof(*callback), GFP_ATOMIC);
157 if (!callback) {
158 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
159 return -ENOMEM;
160 }
161 callback->hsdev = hsdev;
162 callback->usage_callback = usage_callback;
163 callback->usage_id = usage_id;
164 callback->priv = NULL;
165 /*
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.
172 */
173 if (usage_id == HID_USAGE_SENSOR_COLLECTION)
174 list_add(&callback->list, &pdata->dyn_callback_list);
175 else
176 list_add_tail(&callback->list, &pdata->dyn_callback_list);
177 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
178
179 return 0;
180}
181EXPORT_SYMBOL_GPL(sensor_hub_register_callback);
182
183int sensor_hub_remove_callback(struct hid_sensor_hub_device *hsdev,
184 u32 usage_id)
185{
186 struct hid_sensor_hub_callbacks_list *callback;
187 struct sensor_hub_data *pdata = hid_get_drvdata(hsdev->hdev);
188 unsigned long flags;
189
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);
195 kfree(callback);
196 break;
197 }
198 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
199
200 return 0;
201}
202EXPORT_SYMBOL_GPL(sensor_hub_remove_callback);
203
204int sensor_hub_set_feature(struct hid_sensor_hub_device *hsdev, u32 report_id,
205 u32 field_index, int buffer_size, void *buffer)
206{
207 struct hid_report *report;
208 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
209 __s32 *buf32 = buffer;
210 int i = 0;
211 int remaining_bytes;
212 __s32 value;
213 int ret = 0;
214
215 mutex_lock(&data->mutex);
216 report = sensor_hub_report(report_id, hsdev->hdev, HID_FEATURE_REPORT);
217 if (!report || (field_index >= report->maxfield)) {
218 ret = -EINVAL;
219 goto done_proc;
220 }
221
222 remaining_bytes = buffer_size % sizeof(__s32);
223 buffer_size = buffer_size / sizeof(__s32);
224 if (buffer_size) {
225 for (i = 0; i < buffer_size; ++i) {
226 hid_set_field(report->field[field_index], i,
227 (__force __s32)cpu_to_le32(*buf32));
228 ++buf32;
229 }
230 }
231 if (remaining_bytes) {
232 value = 0;
233 memcpy(&value, (u8 *)buf32, remaining_bytes);
234 hid_set_field(report->field[field_index], i,
235 (__force __s32)cpu_to_le32(value));
236 }
237 hid_hw_request(hsdev->hdev, report, HID_REQ_SET_REPORT);
238 hid_hw_wait(hsdev->hdev);
239
240done_proc:
241 mutex_unlock(&data->mutex);
242
243 return ret;
244}
245EXPORT_SYMBOL_GPL(sensor_hub_set_feature);
246
247int sensor_hub_get_feature(struct hid_sensor_hub_device *hsdev, u32 report_id,
248 u32 field_index, int buffer_size, void *buffer)
249{
250 struct hid_report *report;
251 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
252 int report_size;
253 int ret = 0;
254 u8 *val_ptr;
255 int buffer_index = 0;
256 int i;
257
258 memset(buffer, 0, buffer_size);
259
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) {
264 ret = -EINVAL;
265 goto done_proc;
266 }
267 hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT);
268 hid_hw_wait(hsdev->hdev);
269
270 /* calculate number of bytes required to read this field */
271 report_size = DIV_ROUND_UP(report->field[field_index]->report_size,
272 8) *
273 report->field[field_index]->report_count;
274 if (!report_size) {
275 ret = -EINVAL;
276 goto done_proc;
277 }
278 ret = min(report_size, buffer_size);
279
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)
283 break;
284
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);
289 }
290
291done_proc:
292 mutex_unlock(&data->mutex);
293
294 return ret;
295}
296EXPORT_SYMBOL_GPL(sensor_hub_get_feature);
297
298
299int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
300 u32 usage_id,
301 u32 attr_usage_id, u32 report_id,
302 enum sensor_hub_read_flags flag)
303{
304 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
305 unsigned long flags;
306 struct hid_report *report;
307 int ret_val = 0;
308
309 report = sensor_hub_report(report_id, hsdev->hdev,
310 HID_INPUT_REPORT);
311 if (!report)
312 return -EINVAL;
313
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;
321
322 spin_lock_irqsave(&data->lock, flags);
323 hsdev->pending.status = true;
324 spin_unlock_irqrestore(&data->lock, flags);
325 }
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) {
333 case 1:
334 ret_val = *(u8 *)hsdev->pending.raw_data;
335 break;
336 case 2:
337 ret_val = *(u16 *)hsdev->pending.raw_data;
338 break;
339 case 4:
340 ret_val = *(u32 *)hsdev->pending.raw_data;
341 break;
342 default:
343 ret_val = 0;
344 }
345 kfree(hsdev->pending.raw_data);
346 hsdev->pending.status = false;
347 }
348 mutex_unlock(hsdev->mutex_ptr);
349
350 return ret_val;
351}
352EXPORT_SYMBOL_GPL(sensor_hub_input_attr_get_raw_value);
353
354int hid_sensor_get_usage_index(struct hid_sensor_hub_device *hsdev,
355 u32 report_id, int field_index, u32 usage_id)
356{
357 struct hid_report *report;
358 struct hid_field *field;
359 int i;
360
361 report = sensor_hub_report(report_id, hsdev->hdev, HID_FEATURE_REPORT);
362 if (!report || (field_index >= report->maxfield))
363 goto done_proc;
364
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;
369 }
370
371done_proc:
372 return -EINVAL;
373}
374EXPORT_SYMBOL_GPL(hid_sensor_get_usage_index);
375
376int sensor_hub_input_get_attribute_info(struct hid_sensor_hub_device *hsdev,
377 u8 type,
378 u32 usage_id,
379 u32 attr_usage_id,
380 struct hid_sensor_hub_attribute_info *info)
381{
382 int ret = -1;
383 int i;
384 struct hid_report *report;
385 struct hid_field *field;
386 struct hid_report_enum *report_enum;
387 struct hid_device *hdev = hsdev->hdev;
388
389 /* Initialize with defaults */
390 info->usage_id = usage_id;
391 info->attrib_id = attr_usage_id;
392 info->report_id = -1;
393 info->index = -1;
394 info->units = -1;
395 info->unit_expo = -1;
396
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 ==
405 attr_usage_id) &&
406 (field->usage[0].collection_index >=
407 hsdev->start_collection_index) &&
408 (field->usage[0].collection_index <
409 hsdev->end_collection_index)) {
410
411 sensor_hub_fill_attr_info(info, i,
412 report->id,
413 field);
414 ret = 0;
415 break;
416 }
417 }
418 }
419
420 }
421
422 return ret;
423}
424EXPORT_SYMBOL_GPL(sensor_hub_input_get_attribute_info);
425
426#ifdef CONFIG_PM
427static int sensor_hub_suspend(struct hid_device *hdev, pm_message_t message)
428{
429 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
430 struct hid_sensor_hub_callbacks_list *callback;
431 unsigned long flags;
432
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);
439 }
440 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
441
442 return 0;
443}
444
445static int sensor_hub_resume(struct hid_device *hdev)
446{
447 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
448 struct hid_sensor_hub_callbacks_list *callback;
449 unsigned long flags;
450
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);
457 }
458 spin_unlock_irqrestore(&pdata->dyn_callback_lock, flags);
459
460 return 0;
461}
462
463static int sensor_hub_reset_resume(struct hid_device *hdev)
464{
465 return 0;
466}
467#endif
468
469/*
470 * Handle raw report as sent by device
471 */
472static int sensor_hub_raw_event(struct hid_device *hdev,
473 struct hid_report *report, u8 *raw_data, int size)
474{
475 int i;
476 u8 *ptr;
477 int sz;
478 struct sensor_hub_data *pdata = hid_get_drvdata(hdev);
479 unsigned long flags;
480 struct hid_sensor_hub_callbacks *callback = NULL;
481 struct hid_collection *collection = NULL;
482 void *priv = NULL;
483 struct hid_sensor_hub_device *hsdev = NULL;
484
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)
489 return 1;
490
491 ptr = raw_data;
492 ptr++; /* Skip report id */
493
494 spin_lock_irqsave(&pdata->lock, flags);
495
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",
507 collection->usage);
508
509 callback = sensor_hub_get_callback(hdev,
510 report->field[i]->physical,
511 report->field[i]->usage[0].collection_index,
512 &hsdev, &priv);
513 if (!callback) {
514 ptr += sz;
515 continue;
516 }
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;
525 else
526 hsdev->pending.raw_size = 0;
527 complete(&hsdev->pending.ready);
528 }
529 if (callback->capture_sample) {
530 if (report->field[i]->logical)
531 callback->capture_sample(hsdev,
532 report->field[i]->logical, sz, ptr,
533 callback->pdev);
534 else
535 callback->capture_sample(hsdev,
536 report->field[i]->usage->hid, sz, ptr,
537 callback->pdev);
538 }
539 ptr += sz;
540 }
541 if (callback && collection && callback->send_event)
542 callback->send_event(hsdev, collection->usage,
543 callback->pdev);
544 spin_unlock_irqrestore(&pdata->lock, flags);
545
546 return 1;
547}
548
549int sensor_hub_device_open(struct hid_sensor_hub_device *hsdev)
550{
551 int ret = 0;
552 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
553
554 mutex_lock(&data->mutex);
555 if (!data->ref_cnt) {
556 ret = hid_hw_open(hsdev->hdev);
557 if (ret) {
558 hid_err(hsdev->hdev, "failed to open hid device\n");
559 mutex_unlock(&data->mutex);
560 return ret;
561 }
562 }
563 data->ref_cnt++;
564 mutex_unlock(&data->mutex);
565
566 return ret;
567}
568EXPORT_SYMBOL_GPL(sensor_hub_device_open);
569
570void sensor_hub_device_close(struct hid_sensor_hub_device *hsdev)
571{
572 struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
573
574 mutex_lock(&data->mutex);
575 data->ref_cnt--;
576 if (!data->ref_cnt)
577 hid_hw_close(hsdev->hdev);
578 mutex_unlock(&data->mutex);
579}
580EXPORT_SYMBOL_GPL(sensor_hub_device_close);
581
582static int sensor_hub_probe(struct hid_device *hdev,
583 const struct hid_device_id *id)
584{
585 int ret;
586 struct sensor_hub_data *sd;
587 int i;
588 char *name;
589 int dev_cnt;
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;
593
594 sd = devm_kzalloc(&hdev->dev, sizeof(*sd), GFP_KERNEL);
595 if (!sd) {
596 hid_err(hdev, "cannot allocate Sensor data\n");
597 return -ENOMEM;
598 }
599
600 hid_set_drvdata(hdev, sd);
601 sd->quirks = id->driver_data;
602
603 spin_lock_init(&sd->lock);
604 spin_lock_init(&sd->dyn_callback_lock);
605 mutex_init(&sd->mutex);
606 ret = hid_parse(hdev);
607 if (ret) {
608 hid_err(hdev, "parse failed\n");
609 return ret;
610 }
611 INIT_LIST_HEAD(&hdev->inputs);
612
613 ret = hid_hw_start(hdev, 0);
614 if (ret) {
615 hid_err(hdev, "hw start failed\n");
616 return ret;
617 }
618 INIT_LIST_HEAD(&sd->dyn_callback_list);
619 sd->hid_sensor_client_cnt = 0;
620
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");
624 ret = -EINVAL;
625 goto err_stop_hw;
626 }
627 sd->hid_sensor_hub_client_devs = devm_kzalloc(&hdev->dev, dev_cnt *
628 sizeof(struct mfd_cell),
629 GFP_KERNEL);
630 if (sd->hid_sensor_hub_client_devs == NULL) {
631 hid_err(hdev, "Failed to allocate memory for mfd cells\n");
632 ret = -ENOMEM;
633 goto err_stop_hw;
634 }
635
636 for (i = 0; i < hdev->maxcollection; ++i) {
637 struct hid_collection *collection = &hdev->collection[i];
638
639 if (collection->type == HID_COLLECTION_PHYSICAL ||
640 collection->type == HID_COLLECTION_APPLICATION) {
641
642 hsdev = devm_kzalloc(&hdev->dev, sizeof(*hsdev),
643 GFP_KERNEL);
644 if (!hsdev) {
645 hid_err(hdev, "cannot allocate hid_sensor_hub_device\n");
646 ret = -ENOMEM;
647 goto err_stop_hw;
648 }
649 hsdev->hdev = hdev;
650 hsdev->vendor_id = hdev->vendor;
651 hsdev->product_id = hdev->product;
652 hsdev->usage = collection->usage;
653 hsdev->mutex_ptr = devm_kzalloc(&hdev->dev,
654 sizeof(struct mutex),
655 GFP_KERNEL);
656 if (!hsdev->mutex_ptr) {
657 ret = -ENOMEM;
658 goto err_stop_hw;
659 }
660 mutex_init(hsdev->mutex_ptr);
661 hsdev->start_collection_index = i;
662 if (last_hsdev)
663 last_hsdev->end_collection_index = i;
664 last_hsdev = hsdev;
665 name = devm_kasprintf(&hdev->dev, GFP_KERNEL,
666 "HID-SENSOR-%x",
667 collection->usage);
668 if (name == NULL) {
669 hid_err(hdev, "Failed MFD device name\n");
670 ret = -ENOMEM;
671 goto err_stop_hw;
672 }
673 sd->hid_sensor_hub_client_devs[
674 sd->hid_sensor_client_cnt].name = name;
675 sd->hid_sensor_hub_client_devs[
676 sd->hid_sensor_client_cnt].platform_data =
677 hsdev;
678 sd->hid_sensor_hub_client_devs[
679 sd->hid_sensor_client_cnt].pdata_size =
680 sizeof(*hsdev);
681 hid_dbg(hdev, "Adding %s:%d\n", name,
682 hsdev->start_collection_index);
683 sd->hid_sensor_client_cnt++;
684 if (collection_hsdev)
685 collection_hsdev->end_collection_index = i;
686 if (collection->type == HID_COLLECTION_APPLICATION &&
687 collection->usage == HID_USAGE_SENSOR_COLLECTION)
688 collection_hsdev = hsdev;
689 }
690 }
691 if (last_hsdev)
692 last_hsdev->end_collection_index = i;
693 if (collection_hsdev)
694 collection_hsdev->end_collection_index = i;
695
696 ret = mfd_add_hotplug_devices(&hdev->dev,
697 sd->hid_sensor_hub_client_devs,
698 sd->hid_sensor_client_cnt);
699 if (ret < 0)
700 goto err_stop_hw;
701
702 return ret;
703
704err_stop_hw:
705 hid_hw_stop(hdev);
706
707 return ret;
708}
709
710static void sensor_hub_remove(struct hid_device *hdev)
711{
712 struct sensor_hub_data *data = hid_get_drvdata(hdev);
713 unsigned long flags;
714 int i;
715
716 hid_dbg(hdev, " hardware removed\n");
717 hid_hw_close(hdev);
718 hid_hw_stop(hdev);
719 spin_lock_irqsave(&data->lock, flags);
720 for (i = 0; i < data->hid_sensor_client_cnt; ++i) {
721 struct hid_sensor_hub_device *hsdev =
722 data->hid_sensor_hub_client_devs[i].platform_data;
723 if (hsdev->pending.status)
724 complete(&hsdev->pending.ready);
725 }
726 spin_unlock_irqrestore(&data->lock, flags);
727 mfd_remove_devices(&hdev->dev);
728 hid_set_drvdata(hdev, NULL);
729 mutex_destroy(&data->mutex);
730}
731
732static const struct hid_device_id sensor_hub_devices[] = {
733 { HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, HID_ANY_ID,
734 HID_ANY_ID) },
735 { }
736};
737MODULE_DEVICE_TABLE(hid, sensor_hub_devices);
738
739static struct hid_driver sensor_hub_driver = {
740 .name = "hid-sensor-hub",
741 .id_table = sensor_hub_devices,
742 .probe = sensor_hub_probe,
743 .remove = sensor_hub_remove,
744 .raw_event = sensor_hub_raw_event,
745#ifdef CONFIG_PM
746 .suspend = sensor_hub_suspend,
747 .resume = sensor_hub_resume,
748 .reset_resume = sensor_hub_reset_resume,
749#endif
750};
751module_hid_driver(sensor_hub_driver);
752
753MODULE_DESCRIPTION("HID Sensor Hub driver");
754MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@intel.com>");
755MODULE_LICENSE("GPL");