iio: adc: checking for NULL instead of IS_ERR() in probe
[platform/kernel/linux-rpi.git] / drivers / iio / common / hid-sensors / hid-sensor-trigger.c
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 #include <linux/device.h>
20 #include <linux/platform_device.h>
21 #include <linux/module.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/slab.h>
25 #include <linux/hid-sensor-hub.h>
26 #include <linux/iio/iio.h>
27 #include <linux/iio/trigger.h>
28 #include <linux/iio/sysfs.h>
29 #include "hid-sensor-trigger.h"
30
31 static int hid_sensor_data_rdy_trigger_set_state(struct iio_trigger *trig,
32                                                 bool state)
33 {
34         struct hid_sensor_common *st = iio_trigger_get_drvdata(trig);
35         int state_val;
36         int report_val;
37
38         if (state) {
39                 if (sensor_hub_device_open(st->hsdev))
40                         return -EIO;
41                 state_val = hid_sensor_get_usage_index(st->hsdev,
42                         st->power_state.report_id,
43                         st->power_state.index,
44                         HID_USAGE_SENSOR_PROP_POWER_STATE_D0_FULL_POWER_ENUM);
45                 report_val = hid_sensor_get_usage_index(st->hsdev,
46                         st->report_state.report_id,
47                         st->report_state.index,
48                         HID_USAGE_SENSOR_PROP_REPORTING_STATE_ALL_EVENTS_ENUM);
49         } else {
50                 sensor_hub_device_close(st->hsdev);
51                 state_val = hid_sensor_get_usage_index(st->hsdev,
52                         st->power_state.report_id,
53                         st->power_state.index,
54                         HID_USAGE_SENSOR_PROP_POWER_STATE_D4_POWER_OFF_ENUM);
55                 report_val = hid_sensor_get_usage_index(st->hsdev,
56                         st->report_state.report_id,
57                         st->report_state.index,
58                         HID_USAGE_SENSOR_PROP_REPORTING_STATE_NO_EVENTS_ENUM);
59         }
60         st->data_ready = state;
61
62         if (state_val >= 0) {
63                 state_val += st->power_state.logical_minimum;
64                 sensor_hub_set_feature(st->hsdev, st->power_state.report_id,
65                                         st->power_state.index,
66                                         (s32)state_val);
67         }
68
69         if (report_val >= 0) {
70                 report_val += st->report_state.logical_minimum;
71                 sensor_hub_set_feature(st->hsdev, st->report_state.report_id,
72                                         st->report_state.index,
73                                         (s32)report_val);
74         }
75
76         sensor_hub_get_feature(st->hsdev, st->power_state.report_id,
77                                         st->power_state.index,
78                                         &state_val);
79         return 0;
80 }
81
82 void hid_sensor_remove_trigger(struct hid_sensor_common *attrb)
83 {
84         iio_trigger_unregister(attrb->trigger);
85         iio_trigger_free(attrb->trigger);
86 }
87 EXPORT_SYMBOL(hid_sensor_remove_trigger);
88
89 static const struct iio_trigger_ops hid_sensor_trigger_ops = {
90         .owner = THIS_MODULE,
91         .set_trigger_state = &hid_sensor_data_rdy_trigger_set_state,
92 };
93
94 int hid_sensor_setup_trigger(struct iio_dev *indio_dev, const char *name,
95                                 struct hid_sensor_common *attrb)
96 {
97         int ret;
98         struct iio_trigger *trig;
99
100         trig = iio_trigger_alloc("%s-dev%d", name, indio_dev->id);
101         if (trig == NULL) {
102                 dev_err(&indio_dev->dev, "Trigger Allocate Failed\n");
103                 ret = -ENOMEM;
104                 goto error_ret;
105         }
106
107         trig->dev.parent = indio_dev->dev.parent;
108         iio_trigger_set_drvdata(trig, attrb);
109         trig->ops = &hid_sensor_trigger_ops;
110         ret = iio_trigger_register(trig);
111
112         if (ret) {
113                 dev_err(&indio_dev->dev, "Trigger Register Failed\n");
114                 goto error_free_trig;
115         }
116         indio_dev->trig = attrb->trigger = trig;
117
118         return ret;
119
120 error_free_trig:
121         iio_trigger_free(trig);
122 error_ret:
123         return ret;
124 }
125 EXPORT_SYMBOL(hid_sensor_setup_trigger);
126
127 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@intel.com>");
128 MODULE_DESCRIPTION("HID Sensor trigger processing");
129 MODULE_LICENSE("GPL");