]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/linux/iio/trigger.h
staging: comedi: s626: remove MC_DISABLE macro
[thirdparty/kernel/stable.git] / include / linux / iio / trigger.h
CommitLineData
1637db44
JC
1/* The industrial I/O core, trigger handling functions
2 *
3 * Copyright (c) 2008 Jonathan Cameron
4 *
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.
8 */
d96d1337 9#include <linux/irq.h>
99c97852 10#include <linux/module.h>
d96d1337 11
1637db44
JC
12#ifndef _IIO_TRIGGER_H_
13#define _IIO_TRIGGER_H_
1637db44 14
aaa30026 15#ifdef CONFIG_IIO_TRIGGER
d96d1337
JC
16struct iio_subirq {
17 bool enabled;
18};
19
d29f73db
JC
20/**
21 * struct iio_trigger_ops - operations structure for an iio_trigger.
22 * @owner: used to monitor usage count of the trigger.
23 * @set_trigger_state: switch on/off the trigger on demand
24 * @try_reenable: function to reenable the trigger when the
25 * use count is zero (may be NULL)
26 * @validate_device: function to validate the device when the
27 * current trigger gets changed.
28 *
29 * This is typically static const within a driver and shared by
30 * instances of a given device.
31 **/
32struct iio_trigger_ops {
99698b45 33 struct module *owner;
d29f73db
JC
34 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
35 int (*try_reenable)(struct iio_trigger *trig);
36 int (*validate_device)(struct iio_trigger *trig,
37 struct iio_dev *indio_dev);
38};
39
40
1637db44
JC
41/**
42 * struct iio_trigger - industrial I/O trigger device
c3668a0f 43 * @ops: [DRIVER] operations structure
1637db44
JC
44 * @id: [INTERN] unique id number
45 * @name: [DRIVER] unique name
46 * @dev: [DRIVER] associated device (if relevant)
1637db44
JC
47 * @private_data: [DRIVER] device specific data
48 * @list: [INTERN] used in maintenance of global trigger list
49 * @alloc_list: [DRIVER] used for driver specific trigger list
4c572605 50 * @use_count: use count for the trigger
59c85e82
JC
51 * @subirq_chip: [INTERN] associate 'virtual' irq chip.
52 * @subirq_base: [INTERN] base number for irqs provided by trigger.
53 * @subirqs: [INTERN] information about the 'child' irqs.
54 * @pool: [INTERN] bitmap of irqs currently in use.
55 * @pool_lock: [INTERN] protection of the irq pool.
1637db44
JC
56 **/
57struct iio_trigger {
d29f73db 58 const struct iio_trigger_ops *ops;
1637db44
JC
59 int id;
60 const char *name;
61 struct device dev;
62
63 void *private_data;
64 struct list_head list;
65 struct list_head alloc_list;
1637db44
JC
66 int use_count;
67
d96d1337
JC
68 struct irq_chip subirq_chip;
69 int subirq_base;
70
71 struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
72 unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
73 struct mutex pool_lock;
1637db44
JC
74};
75
03e1672a 76
1637db44
JC
77static inline struct iio_trigger *to_iio_trigger(struct device *d)
78{
79 return container_of(d, struct iio_trigger, dev);
99698b45 80}
1637db44 81
7cbb7537 82static inline void iio_trigger_put(struct iio_trigger *trig)
1637db44 83{
d29f73db 84 module_put(trig->ops->owner);
82db4249 85 put_device(&trig->dev);
99698b45 86}
1637db44 87
7cbb7537 88static inline void iio_trigger_get(struct iio_trigger *trig)
1637db44 89{
1637db44 90 get_device(&trig->dev);
82db4249 91 __module_get(trig->ops->owner);
99698b45 92}
1637db44 93
1637db44
JC
94/**
95 * iio_trigger_register() - register a trigger with the IIO core
96 * @trig_info: trigger to be registered
97 **/
98int iio_trigger_register(struct iio_trigger *trig_info);
99
100/**
101 * iio_trigger_unregister() - unregister a trigger from the core
4c572605 102 * @trig_info: trigger to be unregistered
1637db44
JC
103 **/
104void iio_trigger_unregister(struct iio_trigger *trig_info);
105
1637db44 106/**
4c572605 107 * iio_trigger_poll() - called on a trigger occurring
c3668a0f
PM
108 * @trig: trigger which occurred
109 * @time: timestamp when trigger occurred
4c572605 110 *
1637db44
JC
111 * Typically called in relevant hardware interrupt handler.
112 **/
7b2c33b1 113void iio_trigger_poll(struct iio_trigger *trig, s64 time);
1f785681 114void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
3f72395e 115
8384d957
JC
116irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
117
7cbb7537
LPC
118__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
119void iio_trigger_free(struct iio_trigger *trig);
1637db44 120
aaa30026
JC
121#else
122struct iio_trigger;
123struct iio_trigger_ops;
124#endif
1637db44 125#endif /* _IIO_TRIGGER_H_ */