1 /* The industrial I/O core, trigger handling functions
3 * Copyright (c) 2008 Jonathan Cameron
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
10 #include <linux/kernel.h>
11 #include <linux/idr.h>
12 #include <linux/err.h>
13 #include <linux/device.h>
14 #include <linux/interrupt.h>
15 #include <linux/list.h>
16 #include <linux/slab.h>
18 #include <linux/iio/iio.h>
19 #include <linux/iio/trigger.h>
21 #include "iio_core_trigger.h"
22 #include <linux/iio/trigger_consumer.h>
24 /* RFC - Question of approach
25 * Make the common case (single sensor single trigger)
26 * simple by starting trigger capture from when first sensors
29 * Complex simultaneous start requires use of 'hold' functionality
30 * of the trigger. (not implemented)
32 * Any other suggestions?
35 static DEFINE_IDA(iio_trigger_ida
);
37 /* Single list of all available triggers */
38 static LIST_HEAD(iio_trigger_list
);
39 static DEFINE_MUTEX(iio_trigger_list_lock
);
42 * iio_trigger_read_name() - retrieve useful identifying name
44 static ssize_t
iio_trigger_read_name(struct device
*dev
,
45 struct device_attribute
*attr
,
48 struct iio_trigger
*trig
= to_iio_trigger(dev
);
49 return sprintf(buf
, "%s\n", trig
->name
);
52 static DEVICE_ATTR(name
, S_IRUGO
, iio_trigger_read_name
, NULL
);
54 static struct attribute
*iio_trig_dev_attrs
[] = {
59 static struct attribute_group iio_trig_attr_group
= {
60 .attrs
= iio_trig_dev_attrs
,
63 static const struct attribute_group
*iio_trig_attr_groups
[] = {
68 int iio_trigger_register(struct iio_trigger
*trig_info
)
72 trig_info
->id
= ida_simple_get(&iio_trigger_ida
, 0, 0, GFP_KERNEL
);
73 if (trig_info
->id
< 0) {
77 /* Set the name used for the sysfs directory etc */
78 dev_set_name(&trig_info
->dev
, "trigger%ld",
79 (unsigned long) trig_info
->id
);
81 ret
= device_add(&trig_info
->dev
);
83 goto error_unregister_id
;
85 /* Add to list of available triggers held by the IIO core */
86 mutex_lock(&iio_trigger_list_lock
);
87 list_add_tail(&trig_info
->list
, &iio_trigger_list
);
88 mutex_unlock(&iio_trigger_list_lock
);
93 ida_simple_remove(&iio_trigger_ida
, trig_info
->id
);
97 EXPORT_SYMBOL(iio_trigger_register
);
99 void iio_trigger_unregister(struct iio_trigger
*trig_info
)
101 mutex_lock(&iio_trigger_list_lock
);
102 list_del(&trig_info
->list
);
103 mutex_unlock(&iio_trigger_list_lock
);
105 ida_simple_remove(&iio_trigger_ida
, trig_info
->id
);
106 /* Possible issue in here */
107 device_del(&trig_info
->dev
);
109 EXPORT_SYMBOL(iio_trigger_unregister
);
111 static struct iio_trigger
*iio_trigger_find_by_name(const char *name
,
114 struct iio_trigger
*trig
= NULL
, *iter
;
116 mutex_lock(&iio_trigger_list_lock
);
117 list_for_each_entry(iter
, &iio_trigger_list
, list
)
118 if (sysfs_streq(iter
->name
, name
)) {
122 mutex_unlock(&iio_trigger_list_lock
);
127 void iio_trigger_poll(struct iio_trigger
*trig
, s64 time
)
130 if (!trig
->use_count
)
131 for (i
= 0; i
< CONFIG_IIO_CONSUMERS_PER_TRIGGER
; i
++)
132 if (trig
->subirqs
[i
].enabled
) {
134 generic_handle_irq(trig
->subirq_base
+ i
);
137 EXPORT_SYMBOL(iio_trigger_poll
);
139 irqreturn_t
iio_trigger_generic_data_rdy_poll(int irq
, void *private)
141 iio_trigger_poll(private, iio_get_time_ns());
144 EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll
);
146 void iio_trigger_poll_chained(struct iio_trigger
*trig
, s64 time
)
149 if (!trig
->use_count
)
150 for (i
= 0; i
< CONFIG_IIO_CONSUMERS_PER_TRIGGER
; i
++)
151 if (trig
->subirqs
[i
].enabled
) {
153 handle_nested_irq(trig
->subirq_base
+ i
);
156 EXPORT_SYMBOL(iio_trigger_poll_chained
);
158 void iio_trigger_notify_done(struct iio_trigger
*trig
)
161 if (trig
->use_count
== 0 && trig
->ops
&& trig
->ops
->try_reenable
)
162 if (trig
->ops
->try_reenable(trig
))
163 /* Missed an interrupt so launch new poll now */
164 iio_trigger_poll(trig
, 0);
166 EXPORT_SYMBOL(iio_trigger_notify_done
);
168 /* Trigger Consumer related functions */
169 static int iio_trigger_get_irq(struct iio_trigger
*trig
)
172 mutex_lock(&trig
->pool_lock
);
173 ret
= bitmap_find_free_region(trig
->pool
,
174 CONFIG_IIO_CONSUMERS_PER_TRIGGER
,
176 mutex_unlock(&trig
->pool_lock
);
178 ret
+= trig
->subirq_base
;
183 static void iio_trigger_put_irq(struct iio_trigger
*trig
, int irq
)
185 mutex_lock(&trig
->pool_lock
);
186 clear_bit(irq
- trig
->subirq_base
, trig
->pool
);
187 mutex_unlock(&trig
->pool_lock
);
190 /* Complexity in here. With certain triggers (datardy) an acknowledgement
191 * may be needed if the pollfuncs do not include the data read for the
193 * This is not currently handled. Alternative of not enabling trigger unless
194 * the relevant function is in there may be the best option.
196 /* Worth protecting against double additions? */
197 static int iio_trigger_attach_poll_func(struct iio_trigger
*trig
,
198 struct iio_poll_func
*pf
)
202 = bitmap_empty(trig
->pool
, CONFIG_IIO_CONSUMERS_PER_TRIGGER
);
204 /* Prevent the module from being removed whilst attached to a trigger */
205 __module_get(pf
->indio_dev
->info
->driver_module
);
206 pf
->irq
= iio_trigger_get_irq(trig
);
207 ret
= request_threaded_irq(pf
->irq
, pf
->h
, pf
->thread
,
211 module_put(pf
->indio_dev
->info
->driver_module
);
215 if (trig
->ops
&& trig
->ops
->set_trigger_state
&& notinuse
) {
216 ret
= trig
->ops
->set_trigger_state(trig
, true);
218 module_put(pf
->indio_dev
->info
->driver_module
);
224 static int iio_trigger_detach_poll_func(struct iio_trigger
*trig
,
225 struct iio_poll_func
*pf
)
229 = (bitmap_weight(trig
->pool
,
230 CONFIG_IIO_CONSUMERS_PER_TRIGGER
)
232 if (trig
->ops
&& trig
->ops
->set_trigger_state
&& no_other_users
) {
233 ret
= trig
->ops
->set_trigger_state(trig
, false);
237 iio_trigger_put_irq(trig
, pf
->irq
);
238 free_irq(pf
->irq
, pf
);
239 module_put(pf
->indio_dev
->info
->driver_module
);
245 irqreturn_t
iio_pollfunc_store_time(int irq
, void *p
)
247 struct iio_poll_func
*pf
= p
;
248 pf
->timestamp
= iio_get_time_ns();
249 return IRQ_WAKE_THREAD
;
251 EXPORT_SYMBOL(iio_pollfunc_store_time
);
254 *iio_alloc_pollfunc(irqreturn_t (*h
)(int irq
, void *p
),
255 irqreturn_t (*thread
)(int irq
, void *p
),
257 struct iio_dev
*indio_dev
,
262 struct iio_poll_func
*pf
;
264 pf
= kmalloc(sizeof *pf
, GFP_KERNEL
);
267 va_start(vargs
, fmt
);
268 pf
->name
= kvasprintf(GFP_KERNEL
, fmt
, vargs
);
270 if (pf
->name
== NULL
) {
277 pf
->indio_dev
= indio_dev
;
281 EXPORT_SYMBOL_GPL(iio_alloc_pollfunc
);
283 void iio_dealloc_pollfunc(struct iio_poll_func
*pf
)
288 EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc
);
291 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
293 * For trigger consumers the current_trigger interface allows the trigger
294 * used by the device to be queried.
296 static ssize_t
iio_trigger_read_current(struct device
*dev
,
297 struct device_attribute
*attr
,
300 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
303 return sprintf(buf
, "%s\n", indio_dev
->trig
->name
);
308 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
310 * For trigger consumers the current_trigger interface allows the trigger
311 * used for this device to be specified at run time based on the triggers
314 static ssize_t
iio_trigger_write_current(struct device
*dev
,
315 struct device_attribute
*attr
,
319 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
320 struct iio_trigger
*oldtrig
= indio_dev
->trig
;
321 struct iio_trigger
*trig
;
324 mutex_lock(&indio_dev
->mlock
);
325 if (indio_dev
->currentmode
== INDIO_BUFFER_TRIGGERED
) {
326 mutex_unlock(&indio_dev
->mlock
);
329 mutex_unlock(&indio_dev
->mlock
);
331 trig
= iio_trigger_find_by_name(buf
, len
);
335 if (trig
&& indio_dev
->info
->validate_trigger
) {
336 ret
= indio_dev
->info
->validate_trigger(indio_dev
, trig
);
341 if (trig
&& trig
->ops
&& trig
->ops
->validate_device
) {
342 ret
= trig
->ops
->validate_device(trig
, indio_dev
);
347 indio_dev
->trig
= trig
;
349 if (oldtrig
&& indio_dev
->trig
!= oldtrig
)
350 iio_trigger_put(oldtrig
);
352 iio_trigger_get(indio_dev
->trig
);
357 static DEVICE_ATTR(current_trigger
, S_IRUGO
| S_IWUSR
,
358 iio_trigger_read_current
,
359 iio_trigger_write_current
);
361 static struct attribute
*iio_trigger_consumer_attrs
[] = {
362 &dev_attr_current_trigger
.attr
,
366 static const struct attribute_group iio_trigger_consumer_attr_group
= {
368 .attrs
= iio_trigger_consumer_attrs
,
371 static void iio_trig_release(struct device
*device
)
373 struct iio_trigger
*trig
= to_iio_trigger(device
);
376 if (trig
->subirq_base
) {
377 for (i
= 0; i
< CONFIG_IIO_CONSUMERS_PER_TRIGGER
; i
++) {
378 irq_modify_status(trig
->subirq_base
+ i
,
380 IRQ_NOREQUEST
| IRQ_NOPROBE
);
381 irq_set_chip(trig
->subirq_base
+ i
,
383 irq_set_handler(trig
->subirq_base
+ i
,
387 irq_free_descs(trig
->subirq_base
,
388 CONFIG_IIO_CONSUMERS_PER_TRIGGER
);
394 static struct device_type iio_trig_type
= {
395 .release
= iio_trig_release
,
396 .groups
= iio_trig_attr_groups
,
399 static void iio_trig_subirqmask(struct irq_data
*d
)
401 struct irq_chip
*chip
= irq_data_get_irq_chip(d
);
402 struct iio_trigger
*trig
404 struct iio_trigger
, subirq_chip
);
405 trig
->subirqs
[d
->irq
- trig
->subirq_base
].enabled
= false;
408 static void iio_trig_subirqunmask(struct irq_data
*d
)
410 struct irq_chip
*chip
= irq_data_get_irq_chip(d
);
411 struct iio_trigger
*trig
413 struct iio_trigger
, subirq_chip
);
414 trig
->subirqs
[d
->irq
- trig
->subirq_base
].enabled
= true;
417 struct iio_trigger
*iio_trigger_alloc(const char *fmt
, ...)
420 struct iio_trigger
*trig
;
421 trig
= kzalloc(sizeof *trig
, GFP_KERNEL
);
424 trig
->dev
.type
= &iio_trig_type
;
425 trig
->dev
.bus
= &iio_bus_type
;
426 device_initialize(&trig
->dev
);
428 mutex_init(&trig
->pool_lock
);
430 = irq_alloc_descs(-1, 0,
431 CONFIG_IIO_CONSUMERS_PER_TRIGGER
,
433 if (trig
->subirq_base
< 0) {
437 va_start(vargs
, fmt
);
438 trig
->name
= kvasprintf(GFP_KERNEL
, fmt
, vargs
);
440 if (trig
->name
== NULL
) {
441 irq_free_descs(trig
->subirq_base
,
442 CONFIG_IIO_CONSUMERS_PER_TRIGGER
);
446 trig
->subirq_chip
.name
= trig
->name
;
447 trig
->subirq_chip
.irq_mask
= &iio_trig_subirqmask
;
448 trig
->subirq_chip
.irq_unmask
= &iio_trig_subirqunmask
;
449 for (i
= 0; i
< CONFIG_IIO_CONSUMERS_PER_TRIGGER
; i
++) {
450 irq_set_chip(trig
->subirq_base
+ i
,
452 irq_set_handler(trig
->subirq_base
+ i
,
454 irq_modify_status(trig
->subirq_base
+ i
,
455 IRQ_NOREQUEST
| IRQ_NOAUTOEN
,
458 get_device(&trig
->dev
);
462 EXPORT_SYMBOL(iio_trigger_alloc
);
464 void iio_trigger_free(struct iio_trigger
*trig
)
467 put_device(&trig
->dev
);
469 EXPORT_SYMBOL(iio_trigger_free
);
471 void iio_device_register_trigger_consumer(struct iio_dev
*indio_dev
)
473 indio_dev
->groups
[indio_dev
->groupcounter
++] =
474 &iio_trigger_consumer_attr_group
;
477 void iio_device_unregister_trigger_consumer(struct iio_dev
*indio_dev
)
479 /* Clean up an associated but not attached trigger reference */
481 iio_trigger_put(indio_dev
->trig
);
484 int iio_triggered_buffer_postenable(struct iio_dev
*indio_dev
)
486 return iio_trigger_attach_poll_func(indio_dev
->trig
,
487 indio_dev
->pollfunc
);
489 EXPORT_SYMBOL(iio_triggered_buffer_postenable
);
491 int iio_triggered_buffer_predisable(struct iio_dev
*indio_dev
)
493 return iio_trigger_detach_poll_func(indio_dev
->trig
,
494 indio_dev
->pollfunc
);
496 EXPORT_SYMBOL(iio_triggered_buffer_predisable
);