2 * STMicroelectronics sensors trigger library driver
4 * Copyright 2012-2013 STMicroelectronics Inc.
6 * Denis Ciocca <denis.ciocca@st.com>
8 * Licensed under the GPL-2.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/iio/iio.h>
15 #include <linux/iio/trigger.h>
16 #include <linux/interrupt.h>
17 #include <linux/iio/common/st_sensors.h>
18 #include "st_sensors_core.h"
21 * st_sensors_new_samples_available() - check if more samples came in
23 * 0 - no new samples available
24 * 1 - new samples available
25 * negative - error or unknown
27 static int st_sensors_new_samples_available(struct iio_dev
*indio_dev
,
28 struct st_sensor_data
*sdata
)
33 /* How would I know if I can't check it? */
34 if (!sdata
->sensor_settings
->drdy_irq
.addr_stat_drdy
)
37 /* No scan mask, no interrupt */
38 if (!indio_dev
->active_scan_mask
)
41 ret
= sdata
->tf
->read_byte(&sdata
->tb
, sdata
->dev
,
42 sdata
->sensor_settings
->drdy_irq
.addr_stat_drdy
,
46 "error checking samples available\n");
50 * the lower bits of .active_scan_mask[0] is directly mapped
51 * to the channels on the sensor: either bit 0 for
52 * one-dimensional sensors, or e.g. x,y,z for accelerometers,
53 * gyroscopes or magnetometers. No sensor use more than 3
54 * channels, so cut the other status bits here.
58 if (status
& (u8
)indio_dev
->active_scan_mask
[0])
65 * st_sensors_irq_handler() - top half of the IRQ-based triggers
67 * @p: private handler data
69 static irqreturn_t
st_sensors_irq_handler(int irq
, void *p
)
71 struct iio_trigger
*trig
= p
;
72 struct iio_dev
*indio_dev
= iio_trigger_get_drvdata(trig
);
73 struct st_sensor_data
*sdata
= iio_priv(indio_dev
);
75 /* Get the time stamp as close in time as possible */
76 sdata
->hw_timestamp
= iio_get_time_ns(indio_dev
);
77 return IRQ_WAKE_THREAD
;
81 * st_sensors_irq_thread() - bottom half of the IRQ-based triggers
83 * @p: private handler data
85 static irqreturn_t
st_sensors_irq_thread(int irq
, void *p
)
87 struct iio_trigger
*trig
= p
;
88 struct iio_dev
*indio_dev
= iio_trigger_get_drvdata(trig
);
89 struct st_sensor_data
*sdata
= iio_priv(indio_dev
);
92 * If this trigger is backed by a hardware interrupt and we have a
93 * status register, check if this IRQ came from us. Notice that
94 * we will process also if st_sensors_new_samples_available()
95 * returns negative: if we can't check status, then poll
98 if (sdata
->hw_irq_trigger
&&
99 st_sensors_new_samples_available(indio_dev
, sdata
)) {
100 iio_trigger_poll_chained(p
);
102 dev_dbg(sdata
->dev
, "spurious IRQ\n");
107 * If we have proper level IRQs the handler will be re-entered if
108 * the line is still active, so return here and come back in through
109 * the top half if need be.
111 if (!sdata
->edge_irq
)
115 * If we are using egde IRQs, new samples arrived while processing
116 * the IRQ and those may be missed unless we pick them here, so poll
117 * again. If the sensor delivery frequency is very high, this thread
118 * turns into a polled loop handler.
120 while (sdata
->hw_irq_trigger
&&
121 st_sensors_new_samples_available(indio_dev
, sdata
)) {
122 dev_dbg(sdata
->dev
, "more samples came in during polling\n");
123 sdata
->hw_timestamp
= iio_get_time_ns(indio_dev
);
124 iio_trigger_poll_chained(p
);
130 int st_sensors_allocate_trigger(struct iio_dev
*indio_dev
,
131 const struct iio_trigger_ops
*trigger_ops
)
134 struct st_sensor_data
*sdata
= iio_priv(indio_dev
);
135 unsigned long irq_trig
;
137 sdata
->trig
= iio_trigger_alloc("%s-trigger", indio_dev
->name
);
138 if (sdata
->trig
== NULL
) {
139 dev_err(&indio_dev
->dev
, "failed to allocate iio trigger.\n");
143 iio_trigger_set_drvdata(sdata
->trig
, indio_dev
);
144 sdata
->trig
->ops
= trigger_ops
;
145 sdata
->trig
->dev
.parent
= sdata
->dev
;
147 irq
= sdata
->get_irq_data_ready(indio_dev
);
148 irq_trig
= irqd_get_trigger_type(irq_get_irq_data(irq
));
150 * If the IRQ is triggered on falling edge, we need to mark the
151 * interrupt as active low, if the hardware supports this.
154 case IRQF_TRIGGER_FALLING
:
155 case IRQF_TRIGGER_LOW
:
156 if (!sdata
->sensor_settings
->drdy_irq
.addr_ihl
) {
157 dev_err(&indio_dev
->dev
,
158 "falling/low specified for IRQ "
159 "but hardware only support rising/high: "
160 "will request rising/high\n");
161 if (irq_trig
== IRQF_TRIGGER_FALLING
)
162 irq_trig
= IRQF_TRIGGER_RISING
;
163 if (irq_trig
== IRQF_TRIGGER_LOW
)
164 irq_trig
= IRQF_TRIGGER_HIGH
;
166 /* Set up INT active low i.e. falling edge */
167 err
= st_sensors_write_data_with_mask(indio_dev
,
168 sdata
->sensor_settings
->drdy_irq
.addr_ihl
,
169 sdata
->sensor_settings
->drdy_irq
.mask_ihl
, 1);
171 goto iio_trigger_free
;
172 dev_info(&indio_dev
->dev
,
173 "interrupts on the falling edge or "
174 "active low level\n");
177 case IRQF_TRIGGER_RISING
:
178 dev_info(&indio_dev
->dev
,
179 "interrupts on the rising edge\n");
181 case IRQF_TRIGGER_HIGH
:
182 dev_info(&indio_dev
->dev
,
183 "interrupts active high level\n");
186 /* This is the most preferred mode, if possible */
187 dev_err(&indio_dev
->dev
,
188 "unsupported IRQ trigger specified (%lx), enforce "
189 "rising edge\n", irq_trig
);
190 irq_trig
= IRQF_TRIGGER_RISING
;
193 /* Tell the interrupt handler that we're dealing with edges */
194 if (irq_trig
== IRQF_TRIGGER_FALLING
||
195 irq_trig
== IRQF_TRIGGER_RISING
)
196 sdata
->edge_irq
= true;
199 * If we're not using edges (i.e. level interrupts) we
200 * just mask off the IRQ, handle one interrupt, then
201 * if the line is still low, we return to the
202 * interrupt handler top half again and start over.
204 irq_trig
|= IRQF_ONESHOT
;
207 * If the interrupt pin is Open Drain, by definition this
208 * means that the interrupt line may be shared with other
209 * peripherals. But to do this we also need to have a status
210 * register and mask to figure out if this sensor was firing
211 * the IRQ or not, so we can tell the interrupt handle that
212 * it was "our" interrupt.
214 if (sdata
->int_pin_open_drain
&&
215 sdata
->sensor_settings
->drdy_irq
.addr_stat_drdy
)
216 irq_trig
|= IRQF_SHARED
;
218 err
= request_threaded_irq(sdata
->get_irq_data_ready(indio_dev
),
219 st_sensors_irq_handler
,
220 st_sensors_irq_thread
,
225 dev_err(&indio_dev
->dev
, "failed to request trigger IRQ.\n");
226 goto iio_trigger_free
;
229 err
= iio_trigger_register(sdata
->trig
);
231 dev_err(&indio_dev
->dev
, "failed to register iio trigger.\n");
232 goto iio_trigger_register_error
;
234 indio_dev
->trig
= iio_trigger_get(sdata
->trig
);
238 iio_trigger_register_error
:
239 free_irq(sdata
->get_irq_data_ready(indio_dev
), sdata
->trig
);
241 iio_trigger_free(sdata
->trig
);
244 EXPORT_SYMBOL(st_sensors_allocate_trigger
);
246 void st_sensors_deallocate_trigger(struct iio_dev
*indio_dev
)
248 struct st_sensor_data
*sdata
= iio_priv(indio_dev
);
250 iio_trigger_unregister(sdata
->trig
);
251 free_irq(sdata
->get_irq_data_ready(indio_dev
), sdata
->trig
);
252 iio_trigger_free(sdata
->trig
);
254 EXPORT_SYMBOL(st_sensors_deallocate_trigger
);
256 int st_sensors_validate_device(struct iio_trigger
*trig
,
257 struct iio_dev
*indio_dev
)
259 struct iio_dev
*indio
= iio_trigger_get_drvdata(trig
);
261 if (indio
!= indio_dev
)
266 EXPORT_SYMBOL(st_sensors_validate_device
);
268 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
269 MODULE_DESCRIPTION("STMicroelectronics ST-sensors trigger");
270 MODULE_LICENSE("GPL v2");