1 // SPDX-License-Identifier: GPL-2.0-only
3 * Aosong AM2315 relative humidity and temperature
5 * Copyright (c) 2016, Intel Corporation.
7 * 7-bit I2C address: 0x5C.
10 #include <linux/delay.h>
11 #include <linux/i2c.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/iio/buffer.h>
15 #include <linux/iio/iio.h>
16 #include <linux/iio/sysfs.h>
17 #include <linux/iio/trigger_consumer.h>
18 #include <linux/iio/triggered_buffer.h>
20 #define AM2315_REG_HUM_MSB 0x00
21 #define AM2315_REG_HUM_LSB 0x01
22 #define AM2315_REG_TEMP_MSB 0x02
23 #define AM2315_REG_TEMP_LSB 0x03
25 #define AM2315_FUNCTION_READ 0x03
26 #define AM2315_HUM_OFFSET 2
27 #define AM2315_TEMP_OFFSET 4
28 #define AM2315_ALL_CHANNEL_MASK GENMASK(1, 0)
30 #define AM2315_DRIVER_NAME "am2315"
33 struct i2c_client *client;
35 /* Ensure timestamp is naturally aligned */
38 aligned_s64 timestamp;
42 struct am2315_sensor_data {
47 static const struct iio_chan_spec am2315_channels[] = {
49 .type = IIO_HUMIDITYRELATIVE,
50 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
51 BIT(IIO_CHAN_INFO_SCALE),
57 .endianness = IIO_CPU,
62 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
63 BIT(IIO_CHAN_INFO_SCALE),
69 .endianness = IIO_CPU,
72 IIO_CHAN_SOFT_TIMESTAMP(2),
75 /* CRC calculation algorithm, as specified in the datasheet (page 13). */
76 static u16 am2315_crc(u8 *data, u8 nr_bytes)
83 for (i = 0; i < 8; i++) {
96 /* Simple function that sends a few bytes to the device to wake it up. */
97 static void am2315_ping(struct i2c_client *client)
99 i2c_smbus_read_byte_data(client, AM2315_REG_HUM_MSB);
102 static int am2315_read_data(struct am2315_data *data,
103 struct am2315_sensor_data *sensor_data)
106 /* tx_buf format: <function code> <start addr> <nr of regs to read> */
107 u8 tx_buf[3] = { AM2315_FUNCTION_READ, AM2315_REG_HUM_MSB, 4 };
110 * <function code> <number of registers read>
111 * <humidity MSB> <humidity LSB> <temp MSB> <temp LSB>
112 * <CRC LSB> <CRC MSB>
117 /* First wake up the device. */
118 am2315_ping(data->client);
120 mutex_lock(&data->lock);
121 ret = i2c_master_send(data->client, tx_buf, sizeof(tx_buf));
123 dev_err(&data->client->dev, "failed to send read request\n");
126 /* Wait 2-3 ms, then read back the data sent by the device. */
127 usleep_range(2000, 3000);
128 /* Do a bulk data read, then pick out what we need. */
129 ret = i2c_master_recv(data->client, rx_buf, sizeof(rx_buf));
131 dev_err(&data->client->dev, "failed to read sensor data\n");
134 mutex_unlock(&data->lock);
136 * Do a CRC check on the data and compare it to the value
137 * calculated by the device.
139 crc = am2315_crc(rx_buf, sizeof(rx_buf) - 2);
140 if ((crc & 0xff) != rx_buf[6] || (crc >> 8) != rx_buf[7]) {
141 dev_err(&data->client->dev, "failed to verify sensor data\n");
145 sensor_data->hum_data = (rx_buf[AM2315_HUM_OFFSET] << 8) |
146 rx_buf[AM2315_HUM_OFFSET + 1];
147 sensor_data->temp_data = (rx_buf[AM2315_TEMP_OFFSET] << 8) |
148 rx_buf[AM2315_TEMP_OFFSET + 1];
153 mutex_unlock(&data->lock);
157 static irqreturn_t am2315_trigger_handler(int irq, void *p)
162 struct iio_poll_func *pf = p;
163 struct iio_dev *indio_dev = pf->indio_dev;
164 struct am2315_data *data = iio_priv(indio_dev);
165 struct am2315_sensor_data sensor_data;
167 ret = am2315_read_data(data, &sensor_data);
171 mutex_lock(&data->lock);
172 if (*(indio_dev->active_scan_mask) == AM2315_ALL_CHANNEL_MASK) {
173 data->scan.chans[0] = sensor_data.hum_data;
174 data->scan.chans[1] = sensor_data.temp_data;
177 iio_for_each_active_channel(indio_dev, bit) {
178 data->scan.chans[i] = (bit ? sensor_data.temp_data :
179 sensor_data.hum_data);
183 mutex_unlock(&data->lock);
185 iio_push_to_buffers_with_timestamp(indio_dev, &data->scan,
188 iio_trigger_notify_done(indio_dev->trig);
192 static int am2315_read_raw(struct iio_dev *indio_dev,
193 struct iio_chan_spec const *chan,
194 int *val, int *val2, long mask)
197 struct am2315_sensor_data sensor_data;
198 struct am2315_data *data = iio_priv(indio_dev);
201 case IIO_CHAN_INFO_RAW:
202 ret = am2315_read_data(data, &sensor_data);
205 *val = (chan->type == IIO_HUMIDITYRELATIVE) ?
206 sensor_data.hum_data : sensor_data.temp_data;
208 case IIO_CHAN_INFO_SCALE:
216 static const struct iio_info am2315_info = {
217 .read_raw = am2315_read_raw,
220 static int am2315_probe(struct i2c_client *client)
223 struct iio_dev *indio_dev;
224 struct am2315_data *data;
226 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
228 dev_err(&client->dev, "iio allocation failed!\n");
232 data = iio_priv(indio_dev);
233 data->client = client;
234 i2c_set_clientdata(client, indio_dev);
235 mutex_init(&data->lock);
237 indio_dev->info = &am2315_info;
238 indio_dev->name = AM2315_DRIVER_NAME;
239 indio_dev->modes = INDIO_DIRECT_MODE;
240 indio_dev->channels = am2315_channels;
241 indio_dev->num_channels = ARRAY_SIZE(am2315_channels);
243 ret = devm_iio_triggered_buffer_setup(&client->dev,
244 indio_dev, iio_pollfunc_store_time,
245 am2315_trigger_handler, NULL);
247 dev_err(&client->dev, "iio triggered buffer setup failed\n");
251 return devm_iio_device_register(&client->dev, indio_dev);
254 static const struct i2c_device_id am2315_i2c_id[] = {
258 MODULE_DEVICE_TABLE(i2c, am2315_i2c_id);
260 static struct i2c_driver am2315_driver = {
264 .probe = am2315_probe,
265 .id_table = am2315_i2c_id,
268 module_i2c_driver(am2315_driver);
271 MODULE_DESCRIPTION("Aosong AM2315 relative humidity and temperature");
272 MODULE_LICENSE("GPL v2");