1 // SPDX-License-Identifier: GPL-2.0+
3 * hdc100x.c - Support for the TI HDC100x temperature + humidity sensors
5 * Copyright (C) 2015, 2018
9 * https://www.ti.com/product/HDC1000/datasheet
10 * https://www.ti.com/product/HDC1008/datasheet
11 * https://www.ti.com/product/HDC1010/datasheet
12 * https://www.ti.com/product/HDC1050/datasheet
13 * https://www.ti.com/product/HDC1080/datasheet
16 #include <linux/delay.h>
17 #include <linux/module.h>
18 #include <linux/mod_devicetable.h>
19 #include <linux/init.h>
20 #include <linux/i2c.h>
22 #include <linux/iio/iio.h>
23 #include <linux/iio/sysfs.h>
24 #include <linux/iio/buffer.h>
25 #include <linux/iio/trigger_consumer.h>
26 #include <linux/iio/triggered_buffer.h>
28 #include <linux/time.h>
30 #define HDC100X_REG_TEMP 0x00
31 #define HDC100X_REG_HUMIDITY 0x01
33 #define HDC100X_REG_CONFIG 0x02
34 #define HDC100X_REG_CONFIG_ACQ_MODE BIT(12)
35 #define HDC100X_REG_CONFIG_HEATER_EN BIT(13)
38 struct i2c_client *client;
42 /* integration time of the sensor */
44 /* Ensure natural alignment of timestamp */
51 /* integration time in us */
52 static const int hdc100x_int_time[][3] = {
53 { 6350, 3650, 0 }, /* IIO_TEMP channel*/
54 { 6500, 3850, 2500 }, /* IIO_HUMIDITYRELATIVE channel */
57 /* HDC100X_REG_CONFIG shift and mask values */
61 } hdc100x_resolution_shift[2] = {
62 { /* IIO_TEMP channel */
66 { /* IIO_HUMIDITYRELATIVE channel */
72 static IIO_CONST_ATTR(temp_integration_time_available,
75 static IIO_CONST_ATTR(humidityrelative_integration_time_available,
76 "0.0025 0.00385 0.0065");
78 static IIO_CONST_ATTR(out_current_heater_raw_available,
81 static struct attribute *hdc100x_attributes[] = {
82 &iio_const_attr_temp_integration_time_available.dev_attr.attr,
83 &iio_const_attr_humidityrelative_integration_time_available.dev_attr.attr,
84 &iio_const_attr_out_current_heater_raw_available.dev_attr.attr,
88 static const struct attribute_group hdc100x_attribute_group = {
89 .attrs = hdc100x_attributes,
92 static const struct iio_chan_spec hdc100x_channels[] = {
95 .address = HDC100X_REG_TEMP,
96 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
97 BIT(IIO_CHAN_INFO_SCALE) |
98 BIT(IIO_CHAN_INFO_INT_TIME) |
99 BIT(IIO_CHAN_INFO_OFFSET),
105 .endianness = IIO_BE,
109 .type = IIO_HUMIDITYRELATIVE,
110 .address = HDC100X_REG_HUMIDITY,
111 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
112 BIT(IIO_CHAN_INFO_SCALE) |
113 BIT(IIO_CHAN_INFO_INT_TIME),
119 .endianness = IIO_BE,
124 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
125 .extend_name = "heater",
129 IIO_CHAN_SOFT_TIMESTAMP(2),
132 static const unsigned long hdc100x_scan_masks[] = {0x3, 0};
134 static int hdc100x_update_config(struct hdc100x_data *data, int mask, int val)
136 int tmp = (~mask & data->config) | val;
139 ret = i2c_smbus_write_word_swapped(data->client,
140 HDC100X_REG_CONFIG, tmp);
147 static int hdc100x_set_it_time(struct hdc100x_data *data, int chan, int val2)
149 int shift = hdc100x_resolution_shift[chan].shift;
153 for (i = 0; i < ARRAY_SIZE(hdc100x_int_time[chan]); i++) {
154 if (val2 && val2 == hdc100x_int_time[chan][i]) {
155 ret = hdc100x_update_config(data,
156 hdc100x_resolution_shift[chan].mask << shift,
159 data->adc_int_us[chan] = val2;
167 static int hdc100x_get_measurement(struct hdc100x_data *data,
168 struct iio_chan_spec const *chan)
170 struct i2c_client *client = data->client;
171 int delay = data->adc_int_us[chan->address] + 1*USEC_PER_MSEC;
175 /* start measurement */
176 ret = i2c_smbus_write_byte(client, chan->address);
178 dev_err(&client->dev, "cannot start measurement");
182 /* wait for integration time to pass */
183 usleep_range(delay, delay + 1000);
185 /* read measurement */
186 ret = i2c_master_recv(data->client, (char *)&val, sizeof(val));
188 dev_err(&client->dev, "cannot read sensor data\n");
191 return be16_to_cpu(val);
194 static int hdc100x_get_heater_status(struct hdc100x_data *data)
196 return !!(data->config & HDC100X_REG_CONFIG_HEATER_EN);
199 static int hdc100x_read_raw(struct iio_dev *indio_dev,
200 struct iio_chan_spec const *chan, int *val,
201 int *val2, long mask)
203 struct hdc100x_data *data = iio_priv(indio_dev);
206 case IIO_CHAN_INFO_RAW: {
209 mutex_lock(&data->lock);
210 if (chan->type == IIO_CURRENT) {
211 *val = hdc100x_get_heater_status(data);
214 ret = iio_device_claim_direct_mode(indio_dev);
216 mutex_unlock(&data->lock);
220 ret = hdc100x_get_measurement(data, chan);
221 iio_device_release_direct_mode(indio_dev);
227 mutex_unlock(&data->lock);
230 case IIO_CHAN_INFO_INT_TIME:
232 *val2 = data->adc_int_us[chan->address];
233 return IIO_VAL_INT_PLUS_MICRO;
234 case IIO_CHAN_INFO_SCALE:
235 if (chan->type == IIO_TEMP) {
238 return IIO_VAL_FRACTIONAL;
242 return IIO_VAL_FRACTIONAL;
245 case IIO_CHAN_INFO_OFFSET:
248 return IIO_VAL_INT_PLUS_MICRO;
254 static int hdc100x_write_raw(struct iio_dev *indio_dev,
255 struct iio_chan_spec const *chan,
256 int val, int val2, long mask)
258 struct hdc100x_data *data = iio_priv(indio_dev);
262 case IIO_CHAN_INFO_INT_TIME:
266 mutex_lock(&data->lock);
267 ret = hdc100x_set_it_time(data, chan->address, val2);
268 mutex_unlock(&data->lock);
270 case IIO_CHAN_INFO_RAW:
271 if (chan->type != IIO_CURRENT || val2 != 0)
274 mutex_lock(&data->lock);
275 ret = hdc100x_update_config(data, HDC100X_REG_CONFIG_HEATER_EN,
276 val ? HDC100X_REG_CONFIG_HEATER_EN : 0);
277 mutex_unlock(&data->lock);
284 static int hdc100x_buffer_postenable(struct iio_dev *indio_dev)
286 struct hdc100x_data *data = iio_priv(indio_dev);
289 /* Buffer is enabled. First set ACQ Mode, then attach poll func */
290 mutex_lock(&data->lock);
291 ret = hdc100x_update_config(data, HDC100X_REG_CONFIG_ACQ_MODE,
292 HDC100X_REG_CONFIG_ACQ_MODE);
293 mutex_unlock(&data->lock);
298 static int hdc100x_buffer_predisable(struct iio_dev *indio_dev)
300 struct hdc100x_data *data = iio_priv(indio_dev);
303 mutex_lock(&data->lock);
304 ret = hdc100x_update_config(data, HDC100X_REG_CONFIG_ACQ_MODE, 0);
305 mutex_unlock(&data->lock);
310 static const struct iio_buffer_setup_ops hdc_buffer_setup_ops = {
311 .postenable = hdc100x_buffer_postenable,
312 .predisable = hdc100x_buffer_predisable,
315 static irqreturn_t hdc100x_trigger_handler(int irq, void *p)
317 struct iio_poll_func *pf = p;
318 struct iio_dev *indio_dev = pf->indio_dev;
319 struct hdc100x_data *data = iio_priv(indio_dev);
320 struct i2c_client *client = data->client;
321 int delay = data->adc_int_us[0] + data->adc_int_us[1] + 2*USEC_PER_MSEC;
324 /* dual read starts at temp register */
325 mutex_lock(&data->lock);
326 ret = i2c_smbus_write_byte(client, HDC100X_REG_TEMP);
328 dev_err(&client->dev, "cannot start measurement\n");
331 usleep_range(delay, delay + 1000);
333 ret = i2c_master_recv(client, (u8 *)data->scan.channels, 4);
335 dev_err(&client->dev, "cannot read sensor data\n");
339 iio_push_to_buffers_with_timestamp(indio_dev, &data->scan,
340 iio_get_time_ns(indio_dev));
342 mutex_unlock(&data->lock);
343 iio_trigger_notify_done(indio_dev->trig);
348 static const struct iio_info hdc100x_info = {
349 .read_raw = hdc100x_read_raw,
350 .write_raw = hdc100x_write_raw,
351 .attrs = &hdc100x_attribute_group,
354 static int hdc100x_probe(struct i2c_client *client)
356 struct iio_dev *indio_dev;
357 struct hdc100x_data *data;
360 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WORD_DATA |
361 I2C_FUNC_SMBUS_BYTE | I2C_FUNC_I2C))
364 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
368 data = iio_priv(indio_dev);
369 i2c_set_clientdata(client, indio_dev);
370 data->client = client;
371 mutex_init(&data->lock);
373 indio_dev->name = dev_name(&client->dev);
374 indio_dev->modes = INDIO_DIRECT_MODE;
375 indio_dev->info = &hdc100x_info;
377 indio_dev->channels = hdc100x_channels;
378 indio_dev->num_channels = ARRAY_SIZE(hdc100x_channels);
379 indio_dev->available_scan_masks = hdc100x_scan_masks;
381 /* be sure we are in a known state */
382 hdc100x_set_it_time(data, 0, hdc100x_int_time[0][0]);
383 hdc100x_set_it_time(data, 1, hdc100x_int_time[1][0]);
384 hdc100x_update_config(data, HDC100X_REG_CONFIG_ACQ_MODE, 0);
386 ret = devm_iio_triggered_buffer_setup(&client->dev,
388 hdc100x_trigger_handler,
389 &hdc_buffer_setup_ops);
391 dev_err(&client->dev, "iio triggered buffer setup failed\n");
395 return devm_iio_device_register(&client->dev, indio_dev);
398 static const struct i2c_device_id hdc100x_id[] = {
407 MODULE_DEVICE_TABLE(i2c, hdc100x_id);
409 static const struct of_device_id hdc100x_dt_ids[] = {
410 { .compatible = "ti,hdc1000" },
411 { .compatible = "ti,hdc1008" },
412 { .compatible = "ti,hdc1010" },
413 { .compatible = "ti,hdc1050" },
414 { .compatible = "ti,hdc1080" },
417 MODULE_DEVICE_TABLE(of, hdc100x_dt_ids);
419 static const struct acpi_device_id hdc100x_acpi_match[] = {
423 MODULE_DEVICE_TABLE(acpi, hdc100x_acpi_match);
425 static struct i2c_driver hdc100x_driver = {
428 .of_match_table = hdc100x_dt_ids,
429 .acpi_match_table = hdc100x_acpi_match,
431 .probe_new = hdc100x_probe,
432 .id_table = hdc100x_id,
434 module_i2c_driver(hdc100x_driver);
437 MODULE_DESCRIPTION("TI HDC100x humidity and temperature sensor driver");
438 MODULE_LICENSE("GPL");