blob: 018df6074f7b21b1c3cfab2688d403d45c9a2d9c [file] [log] [blame]
Thomas Gleixnerfd534e92019-05-23 11:14:39 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Iain Paton27f8b132012-06-27 08:55:11 +00002/* Honeywell HIH-6130/HIH-6131 humidity and temperature sensor driver
3 *
4 * Copyright (C) 2012 Iain Paton <ipaton0@gmail.com>
5 *
6 * heavily based on the sht21 driver
7 * Copyright (C) 2010 Urs Fleisch <urs.fleisch@sensirion.com>
8 *
Iain Paton27f8b132012-06-27 08:55:11 +00009 * Data sheets available (2012-06-22) at
10 * http://sensing.honeywell.com/index.php?ci_id=3106&la_id=1&defId=44872
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/i2c.h>
17#include <linux/hwmon.h>
18#include <linux/hwmon-sysfs.h>
19#include <linux/err.h>
20#include <linux/mutex.h>
21#include <linux/device.h>
22#include <linux/delay.h>
Jean Delvaredcd8f392012-10-10 15:25:56 +020023#include <linux/jiffies.h>
Iain Paton27f8b132012-06-27 08:55:11 +000024
25/**
26 * struct hih6130 - HIH-6130 device specific data
Guenter Roecka7a9b152017-12-03 15:24:57 -080027 * @client: pointer to I2C client device
Iain Paton27f8b132012-06-27 08:55:11 +000028 * @lock: mutex to protect measurement values
29 * @valid: only false before first measurement is taken
30 * @last_update: time of last update (jiffies)
31 * @temperature: cached temperature measurement value
32 * @humidity: cached humidity measurement value
José Miguel Gonçalvesefabcc22013-12-11 11:11:13 +000033 * @write_length: length for I2C measurement request
Iain Paton27f8b132012-06-27 08:55:11 +000034 */
35struct hih6130 {
Axel Lina5afc182014-06-29 14:45:54 +080036 struct i2c_client *client;
Iain Paton27f8b132012-06-27 08:55:11 +000037 struct mutex lock;
38 bool valid;
39 unsigned long last_update;
40 int temperature;
41 int humidity;
José Miguel Gonçalvesefabcc22013-12-11 11:11:13 +000042 size_t write_length;
Iain Paton27f8b132012-06-27 08:55:11 +000043};
44
45/**
46 * hih6130_temp_ticks_to_millicelsius() - convert raw temperature ticks to
47 * milli celsius
48 * @ticks: temperature ticks value received from sensor
49 */
50static inline int hih6130_temp_ticks_to_millicelsius(int ticks)
51{
Iain Paton27f8b132012-06-27 08:55:11 +000052 ticks = ticks >> 2;
53 /*
54 * from data sheet section 5.0
55 * Formula T = ( ticks / ( 2^14 - 2 ) ) * 165 -40
56 */
57 return (DIV_ROUND_CLOSEST(ticks * 1650, 16382) - 400) * 100;
58}
59
60/**
61 * hih6130_rh_ticks_to_per_cent_mille() - convert raw humidity ticks to
62 * one-thousandths of a percent relative humidity
63 * @ticks: humidity ticks value received from sensor
64 */
65static inline int hih6130_rh_ticks_to_per_cent_mille(int ticks)
66{
Iain Paton27f8b132012-06-27 08:55:11 +000067 ticks &= ~0xC000; /* clear status bits */
68 /*
69 * from data sheet section 4.0
70 * Formula RH = ( ticks / ( 2^14 -2 ) ) * 100
71 */
72 return DIV_ROUND_CLOSEST(ticks * 1000, 16382) * 100;
73}
74
75/**
76 * hih6130_update_measurements() - get updated measurements from device
Axel Lina5afc182014-06-29 14:45:54 +080077 * @dev: device
Iain Paton27f8b132012-06-27 08:55:11 +000078 *
79 * Returns 0 on success, else negative errno.
80 */
Axel Lina5afc182014-06-29 14:45:54 +080081static int hih6130_update_measurements(struct device *dev)
Iain Paton27f8b132012-06-27 08:55:11 +000082{
Axel Lina5afc182014-06-29 14:45:54 +080083 struct hih6130 *hih6130 = dev_get_drvdata(dev);
84 struct i2c_client *client = hih6130->client;
Iain Paton27f8b132012-06-27 08:55:11 +000085 int ret = 0;
86 int t;
Iain Paton27f8b132012-06-27 08:55:11 +000087 unsigned char tmp[4];
88 struct i2c_msg msgs[1] = {
89 {
90 .addr = client->addr,
91 .flags = I2C_M_RD,
92 .len = 4,
93 .buf = tmp,
94 }
95 };
96
97 mutex_lock(&hih6130->lock);
98
99 /*
100 * While the measurement can be completed in ~40ms the sensor takes
101 * much longer to react to a change in external conditions. How quickly
102 * it reacts depends on airflow and other factors outwith our control.
103 * The datasheet specifies maximum 'Response time' for humidity at 8s
104 * and temperature at 30s under specified conditions.
105 * We therefore choose to only read the sensor at most once per second.
106 * This trades off pointless activity polling the sensor much faster
107 * than it can react against better response times in conditions more
108 * favourable than specified in the datasheet.
109 */
110 if (time_after(jiffies, hih6130->last_update + HZ) || !hih6130->valid) {
111
José Miguel Gonçalvesefabcc22013-12-11 11:11:13 +0000112 /*
113 * Write to slave address to request a measurement.
114 * According with the datasheet it should be with no data, but
115 * for systems with I2C bus drivers that do not allow zero
116 * length packets we write one dummy byte to allow sensor
117 * measurements on them.
118 */
119 tmp[0] = 0;
120 ret = i2c_master_send(client, tmp, hih6130->write_length);
Iain Paton27f8b132012-06-27 08:55:11 +0000121 if (ret < 0)
122 goto out;
123
124 /* measurement cycle time is ~36.65msec */
125 msleep(40);
126
127 ret = i2c_transfer(client->adapter, msgs, 1);
128 if (ret < 0)
129 goto out;
130
131 if ((tmp[0] & 0xC0) != 0) {
132 dev_err(&client->dev, "Error while reading measurement result\n");
133 ret = -EIO;
134 goto out;
135 }
136
137 t = (tmp[0] << 8) + tmp[1];
138 hih6130->humidity = hih6130_rh_ticks_to_per_cent_mille(t);
139
140 t = (tmp[2] << 8) + tmp[3];
141 hih6130->temperature = hih6130_temp_ticks_to_millicelsius(t);
142
143 hih6130->last_update = jiffies;
144 hih6130->valid = true;
145 }
146out:
147 mutex_unlock(&hih6130->lock);
148
149 return ret >= 0 ? 0 : ret;
150}
151
152/**
153 * hih6130_show_temperature() - show temperature measurement value in sysfs
154 * @dev: device
155 * @attr: device attribute
156 * @buf: sysfs buffer (PAGE_SIZE) where measurement values are written to
157 *
158 * Will be called on read access to temp1_input sysfs attribute.
159 * Returns number of bytes written into buffer, negative errno on error.
160 */
Guenter Roeck1640bb592018-12-10 14:02:08 -0800161static ssize_t hih6130_temperature_show(struct device *dev,
Iain Paton27f8b132012-06-27 08:55:11 +0000162 struct device_attribute *attr,
163 char *buf)
164{
Axel Lina5afc182014-06-29 14:45:54 +0800165 struct hih6130 *hih6130 = dev_get_drvdata(dev);
166 int ret;
167
168 ret = hih6130_update_measurements(dev);
Iain Paton27f8b132012-06-27 08:55:11 +0000169 if (ret < 0)
170 return ret;
171 return sprintf(buf, "%d\n", hih6130->temperature);
172}
173
174/**
175 * hih6130_show_humidity() - show humidity measurement value in sysfs
176 * @dev: device
177 * @attr: device attribute
178 * @buf: sysfs buffer (PAGE_SIZE) where measurement values are written to
179 *
180 * Will be called on read access to humidity1_input sysfs attribute.
181 * Returns number of bytes written into buffer, negative errno on error.
182 */
Guenter Roeck1640bb592018-12-10 14:02:08 -0800183static ssize_t hih6130_humidity_show(struct device *dev,
Iain Paton27f8b132012-06-27 08:55:11 +0000184 struct device_attribute *attr, char *buf)
185{
Axel Lina5afc182014-06-29 14:45:54 +0800186 struct hih6130 *hih6130 = dev_get_drvdata(dev);
187 int ret;
188
189 ret = hih6130_update_measurements(dev);
Iain Paton27f8b132012-06-27 08:55:11 +0000190 if (ret < 0)
191 return ret;
192 return sprintf(buf, "%d\n", hih6130->humidity);
193}
194
195/* sysfs attributes */
Guenter Roeck1640bb592018-12-10 14:02:08 -0800196static SENSOR_DEVICE_ATTR_RO(temp1_input, hih6130_temperature, 0);
197static SENSOR_DEVICE_ATTR_RO(humidity1_input, hih6130_humidity, 0);
Iain Paton27f8b132012-06-27 08:55:11 +0000198
Axel Lina5afc182014-06-29 14:45:54 +0800199static struct attribute *hih6130_attrs[] = {
Iain Paton27f8b132012-06-27 08:55:11 +0000200 &sensor_dev_attr_temp1_input.dev_attr.attr,
201 &sensor_dev_attr_humidity1_input.dev_attr.attr,
202 NULL
203};
204
Axel Lina5afc182014-06-29 14:45:54 +0800205ATTRIBUTE_GROUPS(hih6130);
Iain Paton27f8b132012-06-27 08:55:11 +0000206
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500207static int hih6130_probe(struct i2c_client *client,
Iain Paton27f8b132012-06-27 08:55:11 +0000208 const struct i2c_device_id *id)
209{
Axel Lina5afc182014-06-29 14:45:54 +0800210 struct device *dev = &client->dev;
Iain Paton27f8b132012-06-27 08:55:11 +0000211 struct hih6130 *hih6130;
Axel Lina5afc182014-06-29 14:45:54 +0800212 struct device *hwmon_dev;
Iain Paton27f8b132012-06-27 08:55:11 +0000213
214 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
215 dev_err(&client->dev, "adapter does not support true I2C\n");
216 return -ENODEV;
217 }
218
Axel Lina5afc182014-06-29 14:45:54 +0800219 hih6130 = devm_kzalloc(dev, sizeof(*hih6130), GFP_KERNEL);
Iain Paton27f8b132012-06-27 08:55:11 +0000220 if (!hih6130)
221 return -ENOMEM;
222
Axel Lina5afc182014-06-29 14:45:54 +0800223 hih6130->client = client;
Iain Paton27f8b132012-06-27 08:55:11 +0000224 mutex_init(&hih6130->lock);
225
Axel Lineeeafd32014-08-06 08:06:50 +0800226 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_QUICK))
227 hih6130->write_length = 1;
228
Axel Lina5afc182014-06-29 14:45:54 +0800229 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
230 hih6130,
231 hih6130_groups);
232 return PTR_ERR_OR_ZERO(hwmon_dev);
Iain Paton27f8b132012-06-27 08:55:11 +0000233}
234
235/* Device ID table */
236static const struct i2c_device_id hih6130_id[] = {
237 { "hih6130", 0 },
238 { }
239};
240MODULE_DEVICE_TABLE(i2c, hih6130_id);
241
Guenter Roecka62fe342019-04-04 06:35:28 -0700242static const struct of_device_id __maybe_unused hih6130_of_match[] = {
Andreas Kemnade89bff8c2018-12-27 16:13:48 +0100243 { .compatible = "honeywell,hih6130", },
244 { }
245};
246MODULE_DEVICE_TABLE(of, hih6130_of_match);
247
Iain Paton27f8b132012-06-27 08:55:11 +0000248static struct i2c_driver hih6130_driver = {
Andreas Kemnade89bff8c2018-12-27 16:13:48 +0100249 .driver = {
250 .name = "hih6130",
251 .of_match_table = of_match_ptr(hih6130_of_match),
252 },
Iain Paton27f8b132012-06-27 08:55:11 +0000253 .probe = hih6130_probe,
Iain Paton27f8b132012-06-27 08:55:11 +0000254 .id_table = hih6130_id,
255};
256
257module_i2c_driver(hih6130_driver);
258
259MODULE_AUTHOR("Iain Paton <ipaton0@gmail.com>");
260MODULE_DESCRIPTION("Honeywell HIH-6130 humidity and temperature sensor driver");
261MODULE_LICENSE("GPL");