OSDN Git Service

Merge tag 'for-4.15-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[uclinux-h8/linux.git] / drivers / iio / temperature / tsys02d.c
1 /*
2  * tsys02d.c - Support for Measurement-Specialties tsys02d temperature sensor
3  *
4  * Copyright (c) 2015 Measurement-Specialties
5  *
6  * Licensed under the GPL-2.
7  *
8  * (7-bit I2C slave address 0x40)
9  *
10  * Datasheet:
11  *  http://www.meas-spec.com/downloads/Digital_Sensor_TSYS02D.pdf
12  */
13
14 #include <linux/init.h>
15 #include <linux/device.h>
16 #include <linux/kernel.h>
17 #include <linux/stat.h>
18 #include <linux/module.h>
19 #include <linux/iio/iio.h>
20 #include <linux/iio/sysfs.h>
21
22 #include "../common/ms_sensors/ms_sensors_i2c.h"
23
24 #define TSYS02D_RESET                           0xFE
25
26 static const int tsys02d_samp_freq[4] = { 20, 40, 70, 140 };
27 /* String copy of the above const for readability purpose */
28 static const char tsys02d_show_samp_freq[] = "20 40 70 140";
29
30 static int tsys02d_read_raw(struct iio_dev *indio_dev,
31                             struct iio_chan_spec const *channel, int *val,
32                             int *val2, long mask)
33 {
34         int ret;
35         s32 temperature;
36         struct ms_ht_dev *dev_data = iio_priv(indio_dev);
37
38         switch (mask) {
39         case IIO_CHAN_INFO_PROCESSED:
40                 switch (channel->type) {
41                 case IIO_TEMP:  /* in milli °C */
42                         ret = ms_sensors_ht_read_temperature(dev_data,
43                                                              &temperature);
44                         if (ret)
45                                 return ret;
46                         *val = temperature;
47
48                         return IIO_VAL_INT;
49                 default:
50                         return -EINVAL;
51                 }
52         case IIO_CHAN_INFO_SAMP_FREQ:
53                 *val = tsys02d_samp_freq[dev_data->res_index];
54
55                 return IIO_VAL_INT;
56         default:
57                 return -EINVAL;
58         }
59 }
60
61 static int tsys02d_write_raw(struct iio_dev *indio_dev,
62                              struct iio_chan_spec const *chan,
63                              int val, int val2, long mask)
64 {
65         struct ms_ht_dev *dev_data = iio_priv(indio_dev);
66         int i, ret;
67
68         switch (mask) {
69         case IIO_CHAN_INFO_SAMP_FREQ:
70                 i = ARRAY_SIZE(tsys02d_samp_freq);
71                 while (i-- > 0)
72                         if (val == tsys02d_samp_freq[i])
73                                 break;
74                 if (i < 0)
75                         return -EINVAL;
76                 mutex_lock(&dev_data->lock);
77                 dev_data->res_index = i;
78                 ret = ms_sensors_write_resolution(dev_data, i);
79                 mutex_unlock(&dev_data->lock);
80
81                 return ret;
82         default:
83                 return -EINVAL;
84         }
85 }
86
87 static const struct iio_chan_spec tsys02d_channels[] = {
88         {
89                 .type = IIO_TEMP,
90                 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_PROCESSED),
91                 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),
92         }
93 };
94
95 static ssize_t tsys02_read_battery_low(struct device *dev,
96                                        struct device_attribute *attr,
97                                        char *buf)
98 {
99         struct iio_dev *indio_dev = dev_to_iio_dev(dev);
100         struct ms_ht_dev *dev_data = iio_priv(indio_dev);
101
102         return ms_sensors_show_battery_low(dev_data, buf);
103 }
104
105 static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(tsys02d_show_samp_freq);
106 static IIO_DEVICE_ATTR(battery_low, S_IRUGO,
107                        tsys02_read_battery_low, NULL, 0);
108
109 static struct attribute *tsys02d_attributes[] = {
110         &iio_const_attr_sampling_frequency_available.dev_attr.attr,
111         &iio_dev_attr_battery_low.dev_attr.attr,
112         NULL,
113 };
114
115 static const struct attribute_group tsys02d_attribute_group = {
116         .attrs = tsys02d_attributes,
117 };
118
119 static const struct iio_info tsys02d_info = {
120         .read_raw = tsys02d_read_raw,
121         .write_raw = tsys02d_write_raw,
122         .attrs = &tsys02d_attribute_group,
123 };
124
125 static int tsys02d_probe(struct i2c_client *client,
126                          const struct i2c_device_id *id)
127 {
128         struct ms_ht_dev *dev_data;
129         struct iio_dev *indio_dev;
130         int ret;
131         u64 serial_number;
132
133         if (!i2c_check_functionality(client->adapter,
134                                      I2C_FUNC_SMBUS_WRITE_BYTE_DATA |
135                                      I2C_FUNC_SMBUS_WRITE_BYTE |
136                                      I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
137                 dev_err(&client->dev,
138                         "Adapter does not support some i2c transaction\n");
139                 return -EOPNOTSUPP;
140         }
141
142         indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*dev_data));
143         if (!indio_dev)
144                 return -ENOMEM;
145
146         dev_data = iio_priv(indio_dev);
147         dev_data->client = client;
148         dev_data->res_index = 0;
149         mutex_init(&dev_data->lock);
150
151         indio_dev->info = &tsys02d_info;
152         indio_dev->name = id->name;
153         indio_dev->dev.parent = &client->dev;
154         indio_dev->modes = INDIO_DIRECT_MODE;
155         indio_dev->channels = tsys02d_channels;
156         indio_dev->num_channels = ARRAY_SIZE(tsys02d_channels);
157
158         i2c_set_clientdata(client, indio_dev);
159
160         ret = ms_sensors_reset(client, TSYS02D_RESET, 15000);
161         if (ret)
162                 return ret;
163
164         ret = ms_sensors_read_serial(client, &serial_number);
165         if (ret)
166                 return ret;
167         dev_info(&client->dev, "Serial number : %llx", serial_number);
168
169         return devm_iio_device_register(&client->dev, indio_dev);
170 }
171
172 static const struct i2c_device_id tsys02d_id[] = {
173         {"tsys02d", 0},
174         {}
175 };
176 MODULE_DEVICE_TABLE(i2c, tsys02d_id);
177
178 static struct i2c_driver tsys02d_driver = {
179         .probe = tsys02d_probe,
180         .id_table = tsys02d_id,
181         .driver = {
182                    .name = "tsys02d",
183                    },
184 };
185
186 module_i2c_driver(tsys02d_driver);
187
188 MODULE_DESCRIPTION("Measurement-Specialties tsys02d temperature driver");
189 MODULE_AUTHOR("William Markezana <william.markezana@meas-spec.com>");
190 MODULE_AUTHOR("Ludovic Tancerel <ludovic.tancerel@maplehightech.com>");
191 MODULE_LICENSE("GPL v2");