1 // SPDX-License-Identifier: GPL-2.0-only
3 * STMicroelectronics hts221 sensor driver
5 * Copyright 2016 STMicroelectronics Inc.
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/device.h>
12 #include <linux/interrupt.h>
13 #include <linux/irqreturn.h>
14 #include <linux/property.h>
15 #include <linux/regmap.h>
16 #include <linux/bitfield.h>
18 #include <linux/iio/iio.h>
19 #include <linux/iio/trigger.h>
20 #include <linux/iio/events.h>
21 #include <linux/iio/trigger_consumer.h>
22 #include <linux/iio/triggered_buffer.h>
23 #include <linux/iio/buffer.h>
25 #include <linux/platform_data/st_sensors_pdata.h>
29 #define HTS221_REG_DRDY_HL_ADDR 0x22
30 #define HTS221_REG_DRDY_HL_MASK BIT(7)
31 #define HTS221_REG_DRDY_PP_OD_ADDR 0x22
32 #define HTS221_REG_DRDY_PP_OD_MASK BIT(6)
33 #define HTS221_REG_DRDY_EN_ADDR 0x22
34 #define HTS221_REG_DRDY_EN_MASK BIT(2)
35 #define HTS221_REG_STATUS_ADDR 0x27
36 #define HTS221_RH_DRDY_MASK BIT(1)
37 #define HTS221_TEMP_DRDY_MASK BIT(0)
39 static int hts221_trig_set_state(struct iio_trigger *trig, bool state)
41 struct iio_dev *iio_dev = iio_trigger_get_drvdata(trig);
42 struct hts221_hw *hw = iio_priv(iio_dev);
44 return regmap_update_bits(hw->regmap, HTS221_REG_DRDY_EN_ADDR,
45 HTS221_REG_DRDY_EN_MASK,
46 FIELD_PREP(HTS221_REG_DRDY_EN_MASK, state));
49 static const struct iio_trigger_ops hts221_trigger_ops = {
50 .set_trigger_state = hts221_trig_set_state,
53 static irqreturn_t hts221_trigger_handler_thread(int irq, void *private)
55 struct hts221_hw *hw = private;
58 err = regmap_read(hw->regmap, HTS221_REG_STATUS_ADDR, &status);
63 * H_DA bit (humidity data available) is routed to DRDY line.
64 * Humidity sample is computed after temperature one.
65 * Here we can assume data channels are both available if H_DA bit
66 * is set in status register
68 if (!(status & HTS221_RH_DRDY_MASK))
71 iio_trigger_poll_nested(hw->trig);
76 int hts221_allocate_trigger(struct iio_dev *iio_dev)
78 struct hts221_hw *hw = iio_priv(iio_dev);
79 struct st_sensors_platform_data *pdata = dev_get_platdata(hw->dev);
80 bool irq_active_low = false, open_drain = false;
81 unsigned long irq_type;
84 irq_type = irq_get_trigger_type(hw->irq);
86 case IRQF_TRIGGER_HIGH:
87 case IRQF_TRIGGER_RISING:
89 case IRQF_TRIGGER_LOW:
90 case IRQF_TRIGGER_FALLING:
91 irq_active_low = true;
95 "mode %lx unsupported, using IRQF_TRIGGER_RISING\n",
97 irq_type = IRQF_TRIGGER_RISING;
101 err = regmap_update_bits(hw->regmap, HTS221_REG_DRDY_HL_ADDR,
102 HTS221_REG_DRDY_HL_MASK,
103 FIELD_PREP(HTS221_REG_DRDY_HL_MASK,
108 if (device_property_read_bool(hw->dev, "drive-open-drain") ||
109 (pdata && pdata->open_drain)) {
110 irq_type |= IRQF_SHARED;
114 err = regmap_update_bits(hw->regmap, HTS221_REG_DRDY_PP_OD_ADDR,
115 HTS221_REG_DRDY_PP_OD_MASK,
116 FIELD_PREP(HTS221_REG_DRDY_PP_OD_MASK,
121 err = devm_request_threaded_irq(hw->dev, hw->irq, NULL,
122 hts221_trigger_handler_thread,
123 irq_type | IRQF_ONESHOT,
126 dev_err(hw->dev, "failed to request trigger irq %d\n",
131 hw->trig = devm_iio_trigger_alloc(hw->dev, "%s-trigger",
136 iio_trigger_set_drvdata(hw->trig, iio_dev);
137 hw->trig->ops = &hts221_trigger_ops;
139 err = devm_iio_trigger_register(hw->dev, hw->trig);
141 iio_dev->trig = iio_trigger_get(hw->trig);
146 static int hts221_buffer_preenable(struct iio_dev *iio_dev)
148 return hts221_set_enable(iio_priv(iio_dev), true);
151 static int hts221_buffer_postdisable(struct iio_dev *iio_dev)
153 return hts221_set_enable(iio_priv(iio_dev), false);
156 static const struct iio_buffer_setup_ops hts221_buffer_ops = {
157 .preenable = hts221_buffer_preenable,
158 .postdisable = hts221_buffer_postdisable,
161 static irqreturn_t hts221_buffer_handler_thread(int irq, void *p)
163 struct iio_poll_func *pf = p;
164 struct iio_dev *iio_dev = pf->indio_dev;
165 struct hts221_hw *hw = iio_priv(iio_dev);
166 struct iio_chan_spec const *ch;
170 ch = &iio_dev->channels[HTS221_SENSOR_H];
171 err = regmap_bulk_read(hw->regmap, ch->address,
172 &hw->scan.channels[0],
173 sizeof(hw->scan.channels[0]));
177 /* temperature data */
178 ch = &iio_dev->channels[HTS221_SENSOR_T];
179 err = regmap_bulk_read(hw->regmap, ch->address,
180 &hw->scan.channels[1],
181 sizeof(hw->scan.channels[1]));
185 iio_push_to_buffers_with_timestamp(iio_dev, &hw->scan,
186 iio_get_time_ns(iio_dev));
189 iio_trigger_notify_done(hw->trig);
194 int hts221_allocate_buffers(struct iio_dev *iio_dev)
196 struct hts221_hw *hw = iio_priv(iio_dev);
197 return devm_iio_triggered_buffer_setup(hw->dev, iio_dev,
198 NULL, hts221_buffer_handler_thread,
203 MODULE_DESCRIPTION("STMicroelectronics hts221 buffer driver");
204 MODULE_LICENSE("GPL v2");