GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / iio / temperature / hid-sensor-temperature.c
1 /*
2  * HID Sensors Driver
3  * Copyright (c) 2017, 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.
16  */
17 #include <linux/device.h>
18 #include <linux/hid-sensor-hub.h>
19 #include <linux/iio/buffer.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/triggered_buffer.h>
22 #include <linux/iio/trigger_consumer.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25
26 #include "../common/hid-sensors/hid-sensor-trigger.h"
27
28 struct temperature_state {
29         struct hid_sensor_common common_attributes;
30         struct hid_sensor_hub_attribute_info temperature_attr;
31         struct {
32                 s32 temperature_data;
33                 u64 timestamp __aligned(8);
34         } scan;
35         int scale_pre_decml;
36         int scale_post_decml;
37         int scale_precision;
38         int value_offset;
39 };
40
41 /* Channel definitions */
42 static const struct iio_chan_spec temperature_channels[] = {
43         {
44                 .type = IIO_TEMP,
45                 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
46                 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_OFFSET) |
47                         BIT(IIO_CHAN_INFO_SCALE) |
48                         BIT(IIO_CHAN_INFO_SAMP_FREQ) |
49                         BIT(IIO_CHAN_INFO_HYSTERESIS),
50         },
51         IIO_CHAN_SOFT_TIMESTAMP(1),
52 };
53
54 /* Adjust channel real bits based on report descriptor */
55 static void temperature_adjust_channel_bit_mask(struct iio_chan_spec *channels,
56                                         int channel, int size)
57 {
58         channels[channel].scan_type.sign = 's';
59         /* Real storage bits will change based on the report desc. */
60         channels[channel].scan_type.realbits = size * 8;
61         /* Maximum size of a sample to capture is s32 */
62         channels[channel].scan_type.storagebits = sizeof(s32) * 8;
63 }
64
65 static int temperature_read_raw(struct iio_dev *indio_dev,
66                                 struct iio_chan_spec const *chan,
67                                 int *val, int *val2, long mask)
68 {
69         struct temperature_state *temp_st = iio_priv(indio_dev);
70
71         switch (mask) {
72         case IIO_CHAN_INFO_RAW:
73                 if (chan->type != IIO_TEMP)
74                         return -EINVAL;
75                 hid_sensor_power_state(
76                         &temp_st->common_attributes, true);
77                 *val = sensor_hub_input_attr_get_raw_value(
78                         temp_st->common_attributes.hsdev,
79                         HID_USAGE_SENSOR_TEMPERATURE,
80                         HID_USAGE_SENSOR_DATA_ENVIRONMENTAL_TEMPERATURE,
81                         temp_st->temperature_attr.report_id,
82                         SENSOR_HUB_SYNC,
83                         temp_st->temperature_attr.logical_minimum < 0);
84                 hid_sensor_power_state(
85                                 &temp_st->common_attributes,
86                                 false);
87
88                 return IIO_VAL_INT;
89
90         case IIO_CHAN_INFO_SCALE:
91                 *val = temp_st->scale_pre_decml;
92                 *val2 = temp_st->scale_post_decml;
93                 return temp_st->scale_precision;
94
95         case IIO_CHAN_INFO_OFFSET:
96                 *val = temp_st->value_offset;
97                 return IIO_VAL_INT;
98
99         case IIO_CHAN_INFO_SAMP_FREQ:
100                 return hid_sensor_read_samp_freq_value(
101                                 &temp_st->common_attributes, val, val2);
102
103         case IIO_CHAN_INFO_HYSTERESIS:
104                 return hid_sensor_read_raw_hyst_value(
105                                 &temp_st->common_attributes, val, val2);
106         default:
107                 return -EINVAL;
108         }
109 }
110
111 static int temperature_write_raw(struct iio_dev *indio_dev,
112                                 struct iio_chan_spec const *chan,
113                                 int val, int val2, long mask)
114 {
115         struct temperature_state *temp_st = iio_priv(indio_dev);
116
117         switch (mask) {
118         case IIO_CHAN_INFO_SAMP_FREQ:
119                 return hid_sensor_write_samp_freq_value(
120                                 &temp_st->common_attributes, val, val2);
121         case IIO_CHAN_INFO_HYSTERESIS:
122                 return hid_sensor_write_raw_hyst_value(
123                                 &temp_st->common_attributes, val, val2);
124         default:
125                 return -EINVAL;
126         }
127 }
128
129 static const struct iio_info temperature_info = {
130         .read_raw = &temperature_read_raw,
131         .write_raw = &temperature_write_raw,
132 };
133
134 /* Callback handler to send event after all samples are received and captured */
135 static int temperature_proc_event(struct hid_sensor_hub_device *hsdev,
136                                 unsigned int usage_id, void *pdev)
137 {
138         struct iio_dev *indio_dev = platform_get_drvdata(pdev);
139         struct temperature_state *temp_st = iio_priv(indio_dev);
140
141         if (atomic_read(&temp_st->common_attributes.data_ready))
142                 iio_push_to_buffers_with_timestamp(indio_dev, &temp_st->scan,
143                                                    iio_get_time_ns(indio_dev));
144
145         return 0;
146 }
147
148 /* Capture samples in local storage */
149 static int temperature_capture_sample(struct hid_sensor_hub_device *hsdev,
150                                 unsigned int usage_id, size_t raw_len,
151                                 char *raw_data, void *pdev)
152 {
153         struct iio_dev *indio_dev = platform_get_drvdata(pdev);
154         struct temperature_state *temp_st = iio_priv(indio_dev);
155
156         switch (usage_id) {
157         case HID_USAGE_SENSOR_DATA_ENVIRONMENTAL_TEMPERATURE:
158                 temp_st->scan.temperature_data = *(s32 *)raw_data;
159                 return 0;
160         default:
161                 return -EINVAL;
162         }
163 }
164
165 /* Parse report which is specific to an usage id*/
166 static int temperature_parse_report(struct platform_device *pdev,
167                                 struct hid_sensor_hub_device *hsdev,
168                                 struct iio_chan_spec *channels,
169                                 unsigned int usage_id,
170                                 struct temperature_state *st)
171 {
172         int ret;
173
174         ret = sensor_hub_input_get_attribute_info(hsdev, HID_INPUT_REPORT,
175                         usage_id,
176                         HID_USAGE_SENSOR_DATA_ENVIRONMENTAL_TEMPERATURE,
177                         &st->temperature_attr);
178         if (ret < 0)
179                 return ret;
180
181         temperature_adjust_channel_bit_mask(channels, 0,
182                                         st->temperature_attr.size);
183
184         st->scale_precision = hid_sensor_format_scale(
185                                 HID_USAGE_SENSOR_TEMPERATURE,
186                                 &st->temperature_attr,
187                                 &st->scale_pre_decml, &st->scale_post_decml);
188
189         /* Set Sensitivity field ids, when there is no individual modifier */
190         if (st->common_attributes.sensitivity.index < 0)
191                 sensor_hub_input_get_attribute_info(hsdev,
192                         HID_FEATURE_REPORT, usage_id,
193                         HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS |
194                         HID_USAGE_SENSOR_DATA_ENVIRONMENTAL_TEMPERATURE,
195                         &st->common_attributes.sensitivity);
196
197         return ret;
198 }
199
200 static struct hid_sensor_hub_callbacks temperature_callbacks = {
201         .send_event = &temperature_proc_event,
202         .capture_sample = &temperature_capture_sample,
203 };
204
205 /* Function to initialize the processing for usage id */
206 static int hid_temperature_probe(struct platform_device *pdev)
207 {
208         static const char *name = "temperature";
209         struct iio_dev *indio_dev;
210         struct temperature_state *temp_st;
211         struct iio_chan_spec *temp_chans;
212         struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
213         int ret;
214
215         indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*temp_st));
216         if (!indio_dev)
217                 return -ENOMEM;
218
219         temp_st = iio_priv(indio_dev);
220         temp_st->common_attributes.hsdev = hsdev;
221         temp_st->common_attributes.pdev = pdev;
222
223         ret = hid_sensor_parse_common_attributes(hsdev,
224                                         HID_USAGE_SENSOR_TEMPERATURE,
225                                         &temp_st->common_attributes);
226         if (ret)
227                 return ret;
228
229         temp_chans = devm_kmemdup(&indio_dev->dev, temperature_channels,
230                                 sizeof(temperature_channels), GFP_KERNEL);
231         if (!temp_chans)
232                 return -ENOMEM;
233
234         ret = temperature_parse_report(pdev, hsdev, temp_chans,
235                                 HID_USAGE_SENSOR_TEMPERATURE, temp_st);
236         if (ret)
237                 return ret;
238
239         indio_dev->channels = temp_chans;
240         indio_dev->num_channels = ARRAY_SIZE(temperature_channels);
241         indio_dev->dev.parent = &pdev->dev;
242         indio_dev->info = &temperature_info;
243         indio_dev->name = name;
244         indio_dev->modes = INDIO_DIRECT_MODE;
245
246         ret = devm_iio_triggered_buffer_setup(&pdev->dev, indio_dev,
247                                         &iio_pollfunc_store_time, NULL, NULL);
248         if (ret)
249                 return ret;
250
251         atomic_set(&temp_st->common_attributes.data_ready, 0);
252         ret = hid_sensor_setup_trigger(indio_dev, name,
253                                 &temp_st->common_attributes);
254         if (ret)
255                 return ret;
256
257         platform_set_drvdata(pdev, indio_dev);
258
259         temperature_callbacks.pdev = pdev;
260         ret = sensor_hub_register_callback(hsdev, HID_USAGE_SENSOR_TEMPERATURE,
261                                         &temperature_callbacks);
262         if (ret)
263                 goto error_remove_trigger;
264
265         ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
266         if (ret)
267                 goto error_remove_callback;
268
269         return ret;
270
271 error_remove_callback:
272         sensor_hub_remove_callback(hsdev, HID_USAGE_SENSOR_TEMPERATURE);
273 error_remove_trigger:
274         hid_sensor_remove_trigger(&temp_st->common_attributes);
275         return ret;
276 }
277
278 /* Function to deinitialize the processing for usage id */
279 static int hid_temperature_remove(struct platform_device *pdev)
280 {
281         struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
282         struct iio_dev *indio_dev = platform_get_drvdata(pdev);
283         struct temperature_state *temp_st = iio_priv(indio_dev);
284
285         sensor_hub_remove_callback(hsdev, HID_USAGE_SENSOR_TEMPERATURE);
286         hid_sensor_remove_trigger(&temp_st->common_attributes);
287
288         return 0;
289 }
290
291 static const struct platform_device_id hid_temperature_ids[] = {
292         {
293                 /* Format: HID-SENSOR-usage_id_in_hex_lowercase */
294                 .name = "HID-SENSOR-200033",
295         },
296         { /* sentinel */ }
297 };
298 MODULE_DEVICE_TABLE(platform, hid_temperature_ids);
299
300 static struct platform_driver hid_temperature_platform_driver = {
301         .id_table = hid_temperature_ids,
302         .driver = {
303                 .name   = "temperature-sensor",
304                 .pm     = &hid_sensor_pm_ops,
305         },
306         .probe          = hid_temperature_probe,
307         .remove         = hid_temperature_remove,
308 };
309 module_platform_driver(hid_temperature_platform_driver);
310
311 MODULE_DESCRIPTION("HID Environmental temperature sensor");
312 MODULE_AUTHOR("Song Hongyan <hongyan.song@intel.com>");
313 MODULE_LICENSE("GPL v2");