3 * Copyright (c) 2015, 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
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/miscdevice.h>
19 #include <linux/kfifo.h>
20 #include <linux/sched.h>
21 #include <linux/wait.h>
22 #include <linux/poll.h>
23 #include <linux/bsearch.h>
24 #include <linux/platform_device.h>
25 #include <linux/hid-sensor-hub.h>
27 #define HID_CUSTOM_NAME_LENGTH 64
28 #define HID_CUSTOM_MAX_CORE_ATTRS 10
29 #define HID_CUSTOM_TOTAL_ATTRS (HID_CUSTOM_MAX_CORE_ATTRS + 1)
30 #define HID_CUSTOM_FIFO_SIZE 4096
31 #define HID_CUSTOM_MAX_FEATURE_BYTES 64
33 struct hid_sensor_custom_field
{
35 char group_name
[HID_CUSTOM_NAME_LENGTH
];
36 struct hid_sensor_hub_attribute_info attribute
;
37 struct device_attribute sd_attrs
[HID_CUSTOM_MAX_CORE_ATTRS
];
38 char attr_name
[HID_CUSTOM_TOTAL_ATTRS
][HID_CUSTOM_NAME_LENGTH
];
39 struct attribute
*attrs
[HID_CUSTOM_TOTAL_ATTRS
];
40 struct attribute_group hid_custom_attribute_group
;
43 struct hid_sensor_custom
{
45 struct platform_device
*pdev
;
46 struct hid_sensor_hub_device
*hsdev
;
47 struct hid_sensor_hub_callbacks callbacks
;
48 int sensor_field_count
;
49 struct hid_sensor_custom_field
*fields
;
50 int input_field_count
;
51 int input_report_size
;
52 int input_report_recd_size
;
53 bool input_skip_sample
;
55 struct hid_sensor_custom_field
*power_state
;
56 struct hid_sensor_custom_field
*report_state
;
57 struct miscdevice custom_dev
;
58 struct kfifo data_fifo
;
59 unsigned long misc_opened
;
60 wait_queue_head_t wait
;
63 /* Header for each sample to user space via dev interface */
64 struct hid_sensor_sample
{
70 static struct attribute hid_custom_attrs
[] = {
71 {.name
= "name", .mode
= S_IRUGO
},
72 {.name
= "units", .mode
= S_IRUGO
},
73 {.name
= "unit-expo", .mode
= S_IRUGO
},
74 {.name
= "minimum", .mode
= S_IRUGO
},
75 {.name
= "maximum", .mode
= S_IRUGO
},
76 {.name
= "size", .mode
= S_IRUGO
},
77 {.name
= "value", .mode
= S_IWUSR
| S_IRUGO
},
81 static const struct hid_custom_usage_desc
{
84 } hid_custom_usage_desc_table
[] = {
85 {0x200201, "event-sensor-state"},
86 {0x200202, "event-sensor-event"},
87 {0x200301, "property-friendly-name"},
88 {0x200302, "property-persistent-unique-id"},
89 {0x200303, "property-sensor-status"},
90 {0x200304, "property-min-report-interval"},
91 {0x200305, "property-sensor-manufacturer"},
92 {0x200306, "property-sensor-model"},
93 {0x200307, "property-sensor-serial-number"},
94 {0x200308, "property-sensor-description"},
95 {0x200309, "property-sensor-connection-type"},
96 {0x20030A, "property-sensor-device-path"},
97 {0x20030B, "property-hardware-revision"},
98 {0x20030C, "property-firmware-version"},
99 {0x20030D, "property-release-date"},
100 {0x20030E, "property-report-interval"},
101 {0x20030F, "property-change-sensitivity-absolute"},
102 {0x200310, "property-change-sensitivity-percent-range"},
103 {0x200311, "property-change-sensitivity-percent-relative"},
104 {0x200312, "property-accuracy"},
105 {0x200313, "property-resolution"},
106 {0x200314, "property-maximum"},
107 {0x200315, "property-minimum"},
108 {0x200316, "property-reporting-state"},
109 {0x200317, "property-sampling-rate"},
110 {0x200318, "property-response-curve"},
111 {0x200319, "property-power-state"},
112 {0x200540, "data-field-custom"},
113 {0x200541, "data-field-custom-usage"},
114 {0x200542, "data-field-custom-boolean-array"},
115 {0x200543, "data-field-custom-value"},
116 {0x200544, "data-field-custom-value_1"},
117 {0x200545, "data-field-custom-value_2"},
118 {0x200546, "data-field-custom-value_3"},
119 {0x200547, "data-field-custom-value_4"},
120 {0x200548, "data-field-custom-value_5"},
121 {0x200549, "data-field-custom-value_6"},
122 {0x20054A, "data-field-custom-value_7"},
123 {0x20054B, "data-field-custom-value_8"},
124 {0x20054C, "data-field-custom-value_9"},
125 {0x20054D, "data-field-custom-value_10"},
126 {0x20054E, "data-field-custom-value_11"},
127 {0x20054F, "data-field-custom-value_12"},
128 {0x200550, "data-field-custom-value_13"},
129 {0x200551, "data-field-custom-value_14"},
130 {0x200552, "data-field-custom-value_15"},
131 {0x200553, "data-field-custom-value_16"},
132 {0x200554, "data-field-custom-value_17"},
133 {0x200555, "data-field-custom-value_18"},
134 {0x200556, "data-field-custom-value_19"},
135 {0x200557, "data-field-custom-value_20"},
136 {0x200558, "data-field-custom-value_21"},
137 {0x200559, "data-field-custom-value_22"},
138 {0x20055A, "data-field-custom-value_23"},
139 {0x20055B, "data-field-custom-value_24"},
140 {0x20055C, "data-field-custom-value_25"},
141 {0x20055D, "data-field-custom-value_26"},
142 {0x20055E, "data-field-custom-value_27"},
143 {0x20055F, "data-field-custom-value_28"},
146 static int usage_id_cmp(const void *p1
, const void *p2
)
148 if (*(int *)p1
< *(int *)p2
)
151 if (*(int *)p1
> *(int *)p2
)
157 static ssize_t
enable_sensor_show(struct device
*dev
,
158 struct device_attribute
*attr
, char *buf
)
160 struct platform_device
*pdev
= to_platform_device(dev
);
161 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(pdev
);
163 return sprintf(buf
, "%d\n", sensor_inst
->enable
);
166 static int set_power_report_state(struct hid_sensor_custom
*sensor_inst
,
171 u32 power_state_usage_id
;
172 u32 report_state_usage_id
;
176 * It is possible that the power/report state ids are not present.
177 * In this case this function will return success. But if the
178 * ids are present, then it will return error if set fails.
181 power_state_usage_id
=
182 HID_USAGE_SENSOR_PROP_POWER_STATE_D0_FULL_POWER_ENUM
;
183 report_state_usage_id
=
184 HID_USAGE_SENSOR_PROP_REPORTING_STATE_ALL_EVENTS_ENUM
;
186 power_state_usage_id
=
187 HID_USAGE_SENSOR_PROP_POWER_STATE_D4_POWER_OFF_ENUM
;
188 report_state_usage_id
=
189 HID_USAGE_SENSOR_PROP_REPORTING_STATE_NO_EVENTS_ENUM
;
192 if (sensor_inst
->power_state
)
193 power_val
= hid_sensor_get_usage_index(sensor_inst
->hsdev
,
194 sensor_inst
->power_state
->attribute
.report_id
,
195 sensor_inst
->power_state
->attribute
.index
,
196 power_state_usage_id
);
197 if (sensor_inst
->report_state
)
198 report_val
= hid_sensor_get_usage_index(sensor_inst
->hsdev
,
199 sensor_inst
->report_state
->attribute
.report_id
,
200 sensor_inst
->report_state
->attribute
.index
,
201 report_state_usage_id
);
203 if (power_val
>= 0) {
205 sensor_inst
->power_state
->attribute
.logical_minimum
;
206 ret
= sensor_hub_set_feature(sensor_inst
->hsdev
,
207 sensor_inst
->power_state
->attribute
.report_id
,
208 sensor_inst
->power_state
->attribute
.index
,
212 hid_err(sensor_inst
->hsdev
->hdev
,
213 "Set power state failed\n");
218 if (report_val
>= 0) {
220 sensor_inst
->report_state
->attribute
.logical_minimum
;
221 ret
= sensor_hub_set_feature(sensor_inst
->hsdev
,
222 sensor_inst
->report_state
->attribute
.report_id
,
223 sensor_inst
->report_state
->attribute
.index
,
227 hid_err(sensor_inst
->hsdev
->hdev
,
228 "Set report state failed\n");
236 static ssize_t
enable_sensor_store(struct device
*dev
,
237 struct device_attribute
*attr
,
238 const char *buf
, size_t count
)
240 struct platform_device
*pdev
= to_platform_device(dev
);
241 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(pdev
);
245 if (kstrtoint(buf
, 0, &value
) != 0)
248 mutex_lock(&sensor_inst
->mutex
);
249 if (value
&& !sensor_inst
->enable
) {
250 ret
= sensor_hub_device_open(sensor_inst
->hsdev
);
254 ret
= set_power_report_state(sensor_inst
, true);
256 sensor_hub_device_close(sensor_inst
->hsdev
);
259 sensor_inst
->enable
= true;
260 } else if (!value
&& sensor_inst
->enable
) {
261 ret
= set_power_report_state(sensor_inst
, false);
262 sensor_hub_device_close(sensor_inst
->hsdev
);
263 sensor_inst
->enable
= false;
266 mutex_unlock(&sensor_inst
->mutex
);
272 static DEVICE_ATTR_RW(enable_sensor
);
274 static struct attribute
*enable_sensor_attrs
[] = {
275 &dev_attr_enable_sensor
.attr
,
279 static struct attribute_group enable_sensor_attr_group
= {
280 .attrs
= enable_sensor_attrs
,
283 static ssize_t
show_value(struct device
*dev
, struct device_attribute
*attr
,
286 struct platform_device
*pdev
= to_platform_device(dev
);
287 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(pdev
);
288 struct hid_sensor_hub_attribute_info
*attribute
;
289 int index
, usage
, field_index
;
290 char name
[HID_CUSTOM_NAME_LENGTH
];
291 bool feature
= false;
295 if (sscanf(attr
->attr
.name
, "feature-%x-%x-%s", &index
, &usage
,
298 field_index
= index
+ sensor_inst
->input_field_count
;
299 } else if (sscanf(attr
->attr
.name
, "input-%x-%x-%s", &index
, &usage
,
306 if (!strncmp(name
, "value", strlen("value"))) {
310 attribute
= &sensor_inst
->fields
[field_index
].attribute
;
311 report_id
= attribute
->report_id
;
313 u8 values
[HID_CUSTOM_MAX_FEATURE_BYTES
];
318 ret
= sensor_hub_get_feature(sensor_inst
->hsdev
,
321 sizeof(values
), values
);
326 if (i
+ attribute
->size
> ret
) {
327 len
+= snprintf(&buf
[len
],
332 switch (attribute
->size
) {
334 value
= (u64
) *(u16
*)&values
[i
];
335 i
+= attribute
->size
;
338 value
= (u64
) *(u32
*)&values
[i
];
339 i
+= attribute
->size
;
342 value
= *(u64
*)&values
[i
];
343 i
+= attribute
->size
;
346 value
= (u64
) values
[i
];
350 len
+= snprintf(&buf
[len
], PAGE_SIZE
- len
,
353 len
+= snprintf(&buf
[len
], PAGE_SIZE
- len
, "\n");
357 value
= sensor_hub_input_attr_get_raw_value(
359 sensor_inst
->hsdev
->usage
,
362 } else if (!strncmp(name
, "units", strlen("units")))
363 value
= sensor_inst
->fields
[field_index
].attribute
.units
;
364 else if (!strncmp(name
, "unit-expo", strlen("unit-expo")))
365 value
= sensor_inst
->fields
[field_index
].attribute
.unit_expo
;
366 else if (!strncmp(name
, "size", strlen("size")))
367 value
= sensor_inst
->fields
[field_index
].attribute
.size
;
368 else if (!strncmp(name
, "minimum", strlen("minimum")))
369 value
= sensor_inst
->fields
[field_index
].attribute
.
371 else if (!strncmp(name
, "maximum", strlen("maximum")))
372 value
= sensor_inst
->fields
[field_index
].attribute
.
374 else if (!strncmp(name
, "name", strlen("name"))) {
375 struct hid_custom_usage_desc
*usage_desc
;
377 usage_desc
= bsearch(&usage
, hid_custom_usage_desc_table
,
378 ARRAY_SIZE(hid_custom_usage_desc_table
),
379 sizeof(struct hid_custom_usage_desc
),
382 return snprintf(buf
, PAGE_SIZE
, "%s\n",
385 return sprintf(buf
, "not-specified\n");
389 return sprintf(buf
, "%d\n", value
);
392 static ssize_t
store_value(struct device
*dev
, struct device_attribute
*attr
,
393 const char *buf
, size_t count
)
395 struct platform_device
*pdev
= to_platform_device(dev
);
396 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(pdev
);
397 int index
, field_index
, usage
;
398 char name
[HID_CUSTOM_NAME_LENGTH
];
401 if (sscanf(attr
->attr
.name
, "feature-%x-%x-%s", &index
, &usage
,
403 field_index
= index
+ sensor_inst
->input_field_count
;
407 if (!strncmp(name
, "value", strlen("value"))) {
411 if (kstrtoint(buf
, 0, &value
) != 0)
414 report_id
= sensor_inst
->fields
[field_index
].attribute
.
416 ret
= sensor_hub_set_feature(sensor_inst
->hsdev
, report_id
,
417 index
, sizeof(value
), &value
);
424 static int hid_sensor_capture_sample(struct hid_sensor_hub_device
*hsdev
,
425 unsigned usage_id
, size_t raw_len
,
426 char *raw_data
, void *priv
)
428 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(priv
);
429 struct hid_sensor_sample header
;
431 /* If any error occurs in a sample, rest of the fields are ignored */
432 if (sensor_inst
->input_skip_sample
) {
433 hid_err(sensor_inst
->hsdev
->hdev
, "Skipped remaining data\n");
437 hid_dbg(sensor_inst
->hsdev
->hdev
, "%s received %d of %d\n", __func__
,
438 (int) (sensor_inst
->input_report_recd_size
+ raw_len
),
439 sensor_inst
->input_report_size
);
441 if (!test_bit(0, &sensor_inst
->misc_opened
))
444 if (!sensor_inst
->input_report_recd_size
) {
445 int required_size
= sizeof(struct hid_sensor_sample
) +
446 sensor_inst
->input_report_size
;
447 header
.usage_id
= hsdev
->usage
;
448 header
.raw_len
= sensor_inst
->input_report_size
;
449 header
.timestamp
= ktime_get_real_ns();
450 if (kfifo_avail(&sensor_inst
->data_fifo
) >= required_size
) {
451 kfifo_in(&sensor_inst
->data_fifo
,
452 (unsigned char *)&header
,
455 sensor_inst
->input_skip_sample
= true;
457 if (kfifo_avail(&sensor_inst
->data_fifo
) >= raw_len
)
458 kfifo_in(&sensor_inst
->data_fifo
, (unsigned char *)raw_data
,
461 sensor_inst
->input_report_recd_size
+= raw_len
;
466 static int hid_sensor_send_event(struct hid_sensor_hub_device
*hsdev
,
467 unsigned usage_id
, void *priv
)
469 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(priv
);
471 if (!test_bit(0, &sensor_inst
->misc_opened
))
474 sensor_inst
->input_report_recd_size
= 0;
475 sensor_inst
->input_skip_sample
= false;
477 wake_up(&sensor_inst
->wait
);
482 static int hid_sensor_custom_add_field(struct hid_sensor_custom
*sensor_inst
,
483 int index
, int report_type
,
484 struct hid_report
*report
,
485 struct hid_field
*field
)
487 struct hid_sensor_custom_field
*sensor_field
;
490 fields
= krealloc(sensor_inst
->fields
,
491 (sensor_inst
->sensor_field_count
+ 1) *
492 sizeof(struct hid_sensor_custom_field
), GFP_KERNEL
);
494 kfree(sensor_inst
->fields
);
497 sensor_inst
->fields
= fields
;
498 sensor_field
= &sensor_inst
->fields
[sensor_inst
->sensor_field_count
];
499 sensor_field
->attribute
.usage_id
= sensor_inst
->hsdev
->usage
;
501 sensor_field
->attribute
.attrib_id
= field
->logical
;
503 sensor_field
->attribute
.attrib_id
= field
->usage
[0].hid
;
505 sensor_field
->attribute
.index
= index
;
506 sensor_field
->attribute
.report_id
= report
->id
;
507 sensor_field
->attribute
.units
= field
->unit
;
508 sensor_field
->attribute
.unit_expo
= field
->unit_exponent
;
509 sensor_field
->attribute
.size
= (field
->report_size
/ 8);
510 sensor_field
->attribute
.logical_minimum
= field
->logical_minimum
;
511 sensor_field
->attribute
.logical_maximum
= field
->logical_maximum
;
513 if (report_type
== HID_FEATURE_REPORT
)
514 snprintf(sensor_field
->group_name
,
515 sizeof(sensor_field
->group_name
), "feature-%x-%x",
516 sensor_field
->attribute
.index
,
517 sensor_field
->attribute
.attrib_id
);
518 else if (report_type
== HID_INPUT_REPORT
) {
519 snprintf(sensor_field
->group_name
,
520 sizeof(sensor_field
->group_name
),
521 "input-%x-%x", sensor_field
->attribute
.index
,
522 sensor_field
->attribute
.attrib_id
);
523 sensor_inst
->input_field_count
++;
524 sensor_inst
->input_report_size
+= (field
->report_size
*
525 field
->report_count
) / 8;
528 memset(&sensor_field
->hid_custom_attribute_group
, 0,
529 sizeof(struct attribute_group
));
530 sensor_inst
->sensor_field_count
++;
535 static int hid_sensor_custom_add_fields(struct hid_sensor_custom
*sensor_inst
,
536 struct hid_report_enum
*report_enum
,
541 struct hid_report
*report
;
542 struct hid_field
*field
;
543 struct hid_sensor_hub_device
*hsdev
= sensor_inst
->hsdev
;
545 list_for_each_entry(report
, &report_enum
->report_list
, list
) {
546 for (i
= 0; i
< report
->maxfield
; ++i
) {
547 field
= report
->field
[i
];
548 if (field
->maxusage
&&
549 ((field
->usage
[0].collection_index
>=
550 hsdev
->start_collection_index
) &&
551 (field
->usage
[0].collection_index
<
552 hsdev
->end_collection_index
))) {
554 ret
= hid_sensor_custom_add_field(sensor_inst
,
569 static int hid_sensor_custom_add_attributes(struct hid_sensor_custom
572 struct hid_sensor_hub_device
*hsdev
= sensor_inst
->hsdev
;
573 struct hid_device
*hdev
= hsdev
->hdev
;
577 for (j
= 0; j
< HID_REPORT_TYPES
; ++j
) {
578 if (j
== HID_OUTPUT_REPORT
)
581 ret
= hid_sensor_custom_add_fields(sensor_inst
,
582 &hdev
->report_enum
[j
], j
);
588 /* Create sysfs attributes */
589 for (i
= 0; i
< sensor_inst
->sensor_field_count
; ++i
) {
591 while (j
< HID_CUSTOM_TOTAL_ATTRS
&&
592 hid_custom_attrs
[j
].name
) {
593 struct device_attribute
*device_attr
;
595 device_attr
= &sensor_inst
->fields
[i
].sd_attrs
[j
];
597 snprintf((char *)&sensor_inst
->fields
[i
].attr_name
[j
],
598 HID_CUSTOM_NAME_LENGTH
, "%s-%s",
599 sensor_inst
->fields
[i
].group_name
,
600 hid_custom_attrs
[j
].name
);
601 sysfs_attr_init(&device_attr
->attr
);
602 device_attr
->attr
.name
=
603 (char *)&sensor_inst
->fields
[i
].attr_name
[j
];
604 device_attr
->attr
.mode
= hid_custom_attrs
[j
].mode
;
605 device_attr
->show
= show_value
;
606 if (hid_custom_attrs
[j
].mode
& S_IWUSR
)
607 device_attr
->store
= store_value
;
608 sensor_inst
->fields
[i
].attrs
[j
] = &device_attr
->attr
;
611 sensor_inst
->fields
[i
].attrs
[j
] = NULL
;
612 sensor_inst
->fields
[i
].hid_custom_attribute_group
.attrs
=
613 sensor_inst
->fields
[i
].attrs
;
614 sensor_inst
->fields
[i
].hid_custom_attribute_group
.name
=
615 sensor_inst
->fields
[i
].group_name
;
616 ret
= sysfs_create_group(&sensor_inst
->pdev
->dev
.kobj
,
617 &sensor_inst
->fields
[i
].
618 hid_custom_attribute_group
);
622 /* For power or report field store indexes */
623 if (sensor_inst
->fields
[i
].attribute
.attrib_id
==
624 HID_USAGE_SENSOR_PROY_POWER_STATE
)
625 sensor_inst
->power_state
= &sensor_inst
->fields
[i
];
626 else if (sensor_inst
->fields
[i
].attribute
.attrib_id
==
627 HID_USAGE_SENSOR_PROP_REPORT_STATE
)
628 sensor_inst
->report_state
= &sensor_inst
->fields
[i
];
634 static void hid_sensor_custom_remove_attributes(struct hid_sensor_custom
*
639 for (i
= 0; i
< sensor_inst
->sensor_field_count
; ++i
)
640 sysfs_remove_group(&sensor_inst
->pdev
->dev
.kobj
,
641 &sensor_inst
->fields
[i
].
642 hid_custom_attribute_group
);
644 kfree(sensor_inst
->fields
);
647 static ssize_t
hid_sensor_custom_read(struct file
*file
, char __user
*buf
,
648 size_t count
, loff_t
*f_ps
)
650 struct hid_sensor_custom
*sensor_inst
;
654 sensor_inst
= container_of(file
->private_data
,
655 struct hid_sensor_custom
, custom_dev
);
657 if (count
< sizeof(struct hid_sensor_sample
))
661 if (kfifo_is_empty(&sensor_inst
->data_fifo
)) {
662 if (file
->f_flags
& O_NONBLOCK
)
665 ret
= wait_event_interruptible(sensor_inst
->wait
,
666 !kfifo_is_empty(&sensor_inst
->data_fifo
));
670 ret
= kfifo_to_user(&sensor_inst
->data_fifo
, buf
, count
,
675 } while (copied
== 0);
680 static int hid_sensor_custom_release(struct inode
*inode
, struct file
*file
)
682 struct hid_sensor_custom
*sensor_inst
;
684 sensor_inst
= container_of(file
->private_data
,
685 struct hid_sensor_custom
, custom_dev
);
687 clear_bit(0, &sensor_inst
->misc_opened
);
692 static int hid_sensor_custom_open(struct inode
*inode
, struct file
*file
)
694 struct hid_sensor_custom
*sensor_inst
;
696 sensor_inst
= container_of(file
->private_data
,
697 struct hid_sensor_custom
, custom_dev
);
698 /* We essentially have single reader and writer */
699 if (test_and_set_bit(0, &sensor_inst
->misc_opened
))
702 return nonseekable_open(inode
, file
);
705 static unsigned int hid_sensor_custom_poll(struct file
*file
,
706 struct poll_table_struct
*wait
)
708 struct hid_sensor_custom
*sensor_inst
;
709 unsigned int mask
= 0;
711 sensor_inst
= container_of(file
->private_data
,
712 struct hid_sensor_custom
, custom_dev
);
714 poll_wait(file
, &sensor_inst
->wait
, wait
);
716 if (!kfifo_is_empty(&sensor_inst
->data_fifo
))
717 mask
= POLLIN
| POLLRDNORM
;
722 static const struct file_operations hid_sensor_custom_fops
= {
723 .open
= hid_sensor_custom_open
,
724 .read
= hid_sensor_custom_read
,
725 .release
= hid_sensor_custom_release
,
726 .poll
= hid_sensor_custom_poll
,
727 .llseek
= noop_llseek
,
730 static int hid_sensor_custom_dev_if_add(struct hid_sensor_custom
*sensor_inst
)
734 ret
= kfifo_alloc(&sensor_inst
->data_fifo
, HID_CUSTOM_FIFO_SIZE
,
739 init_waitqueue_head(&sensor_inst
->wait
);
741 sensor_inst
->custom_dev
.minor
= MISC_DYNAMIC_MINOR
;
742 sensor_inst
->custom_dev
.name
= dev_name(&sensor_inst
->pdev
->dev
);
743 sensor_inst
->custom_dev
.fops
= &hid_sensor_custom_fops
,
744 ret
= misc_register(&sensor_inst
->custom_dev
);
746 kfifo_free(&sensor_inst
->data_fifo
);
752 static void hid_sensor_custom_dev_if_remove(struct hid_sensor_custom
755 wake_up(&sensor_inst
->wait
);
756 misc_deregister(&sensor_inst
->custom_dev
);
757 kfifo_free(&sensor_inst
->data_fifo
);
761 static int hid_sensor_custom_probe(struct platform_device
*pdev
)
763 struct hid_sensor_custom
*sensor_inst
;
764 struct hid_sensor_hub_device
*hsdev
= pdev
->dev
.platform_data
;
767 sensor_inst
= devm_kzalloc(&pdev
->dev
, sizeof(*sensor_inst
),
772 sensor_inst
->callbacks
.capture_sample
= hid_sensor_capture_sample
;
773 sensor_inst
->callbacks
.send_event
= hid_sensor_send_event
;
774 sensor_inst
->callbacks
.pdev
= pdev
;
775 sensor_inst
->hsdev
= hsdev
;
776 sensor_inst
->pdev
= pdev
;
777 mutex_init(&sensor_inst
->mutex
);
778 platform_set_drvdata(pdev
, sensor_inst
);
779 ret
= sensor_hub_register_callback(hsdev
, hsdev
->usage
,
780 &sensor_inst
->callbacks
);
782 dev_err(&pdev
->dev
, "callback reg failed\n");
786 ret
= sysfs_create_group(&sensor_inst
->pdev
->dev
.kobj
,
787 &enable_sensor_attr_group
);
789 goto err_remove_callback
;
791 ret
= hid_sensor_custom_add_attributes(sensor_inst
);
793 goto err_remove_group
;
795 ret
= hid_sensor_custom_dev_if_add(sensor_inst
);
797 goto err_remove_attributes
;
801 err_remove_attributes
:
802 hid_sensor_custom_remove_attributes(sensor_inst
);
804 sysfs_remove_group(&sensor_inst
->pdev
->dev
.kobj
,
805 &enable_sensor_attr_group
);
807 sensor_hub_remove_callback(hsdev
, hsdev
->usage
);
812 static int hid_sensor_custom_remove(struct platform_device
*pdev
)
814 struct hid_sensor_custom
*sensor_inst
= platform_get_drvdata(pdev
);
815 struct hid_sensor_hub_device
*hsdev
= pdev
->dev
.platform_data
;
817 hid_sensor_custom_dev_if_remove(sensor_inst
);
818 hid_sensor_custom_remove_attributes(sensor_inst
);
819 sysfs_remove_group(&sensor_inst
->pdev
->dev
.kobj
,
820 &enable_sensor_attr_group
);
821 sensor_hub_remove_callback(hsdev
, hsdev
->usage
);
826 static struct platform_device_id hid_sensor_custom_ids
[] = {
828 .name
= "HID-SENSOR-2000e1",
831 .name
= "HID-SENSOR-2000e2",
835 MODULE_DEVICE_TABLE(platform
, hid_sensor_custom_ids
);
837 static struct platform_driver hid_sensor_custom_platform_driver
= {
838 .id_table
= hid_sensor_custom_ids
,
840 .name
= KBUILD_MODNAME
,
842 .probe
= hid_sensor_custom_probe
,
843 .remove
= hid_sensor_custom_remove
,
845 module_platform_driver(hid_sensor_custom_platform_driver
);
847 MODULE_DESCRIPTION("HID Sensor Custom and Generic sensor Driver");
848 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
849 MODULE_LICENSE("GPL");