Merge branch 'for-6.3/hid-bpf' into for-linus
[linux-block.git] / include / linux / iio / trigger.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
1637db44
JC
2/* The industrial I/O core, trigger handling functions
3 *
4 * Copyright (c) 2008 Jonathan Cameron
1637db44 5 */
d96d1337 6#include <linux/irq.h>
99c97852 7#include <linux/module.h>
a1a8e1dc 8#include <linux/atomic.h>
d96d1337 9
1637db44
JC
10#ifndef _IIO_TRIGGER_H_
11#define _IIO_TRIGGER_H_
1637db44 12
aaa30026 13#ifdef CONFIG_IIO_TRIGGER
d96d1337
JC
14struct iio_subirq {
15 bool enabled;
16};
17
ad30bad3
PM
18struct iio_dev;
19struct iio_trigger;
20
d29f73db
JC
21/**
22 * struct iio_trigger_ops - operations structure for an iio_trigger.
d29f73db 23 * @set_trigger_state: switch on/off the trigger on demand
eca8523a 24 * @reenable: function to reenable the trigger when the
d29f73db
JC
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 {
d29f73db 33 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
eca8523a 34 void (*reenable)(struct iio_trigger *trig);
d29f73db
JC
35 int (*validate_device)(struct iio_trigger *trig,
36 struct iio_dev *indio_dev);
37};
38
39
1637db44
JC
40/**
41 * struct iio_trigger - industrial I/O trigger device
c3668a0f 42 * @ops: [DRIVER] operations structure
e7f62713 43 * @owner: [INTERN] owner of this driver module
1637db44
JC
44 * @id: [INTERN] unique id number
45 * @name: [DRIVER] unique name
46 * @dev: [DRIVER] associated device (if relevant)
1637db44
JC
47 * @list: [INTERN] used in maintenance of global trigger list
48 * @alloc_list: [DRIVER] used for driver specific trigger list
284d95c7 49 * @use_count: [INTERN] use count for the trigger.
59c85e82
JC
50 * @subirq_chip: [INTERN] associate 'virtual' irq chip.
51 * @subirq_base: [INTERN] base number for irqs provided by trigger.
52 * @subirqs: [INTERN] information about the 'child' irqs.
53 * @pool: [INTERN] bitmap of irqs currently in use.
54 * @pool_lock: [INTERN] protection of the irq pool.
702a7b8e
LW
55 * @attached_own_device:[INTERN] if we are using our own device as trigger,
56 * i.e. if we registered a poll function to the same
57 * device as the one providing the trigger.
9020ef65 58 * @reenable_work: [INTERN] work item used to ensure reenable can sleep.
1637db44
JC
59 **/
60struct iio_trigger {
d29f73db 61 const struct iio_trigger_ops *ops;
035c70ae 62 struct module *owner;
1637db44
JC
63 int id;
64 const char *name;
65 struct device dev;
66
1637db44
JC
67 struct list_head list;
68 struct list_head alloc_list;
a1a8e1dc 69 atomic_t use_count;
1637db44 70
d96d1337
JC
71 struct irq_chip subirq_chip;
72 int subirq_base;
73
74 struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
75 unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
76 struct mutex pool_lock;
702a7b8e 77 bool attached_own_device;
9020ef65 78 struct work_struct reenable_work;
1637db44
JC
79};
80
03e1672a 81
1637db44
JC
82static inline struct iio_trigger *to_iio_trigger(struct device *d)
83{
84 return container_of(d, struct iio_trigger, dev);
99698b45 85}
1637db44 86
7cbb7537 87static inline void iio_trigger_put(struct iio_trigger *trig)
1637db44 88{
035c70ae 89 module_put(trig->owner);
82db4249 90 put_device(&trig->dev);
99698b45 91}
1637db44 92
f1535665 93static inline struct iio_trigger *iio_trigger_get(struct iio_trigger *trig)
1637db44 94{
1637db44 95 get_device(&trig->dev);
4a080694
DR
96
97 WARN_ONCE(list_empty(&trig->list),
98 "Getting non-registered iio trigger %s is prohibited\n",
99 trig->name);
100
035c70ae 101 __module_get(trig->owner);
f1535665
SP
102
103 return trig;
99698b45 104}
1637db44 105
1e9663c6 106/**
3a096c2b 107 * iio_trigger_set_drvdata() - Set trigger driver data
1e9663c6
LPC
108 * @trig: IIO trigger structure
109 * @data: Driver specific data
110 *
111 * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
112 * retrieved by iio_trigger_get_drvdata().
113 */
114static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
115{
5034bfc9 116 dev_set_drvdata(&trig->dev, data);
1e9663c6
LPC
117}
118
119/**
120 * iio_trigger_get_drvdata() - Get trigger driver data
121 * @trig: IIO trigger structure
122 *
123 * Returns the data previously set with iio_trigger_set_drvdata()
124 */
125static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
126{
5034bfc9 127 return dev_get_drvdata(&trig->dev);
1e9663c6
LPC
128}
129
1637db44
JC
130/**
131 * iio_trigger_register() - register a trigger with the IIO core
132 * @trig_info: trigger to be registered
133 **/
bc72d938 134int iio_trigger_register(struct iio_trigger *trig_info);
035c70ae 135
bc72d938
DR
136int devm_iio_trigger_register(struct device *dev,
137 struct iio_trigger *trig_info);
9083325f 138
1637db44
JC
139/**
140 * iio_trigger_unregister() - unregister a trigger from the core
4c572605 141 * @trig_info: trigger to be unregistered
1637db44
JC
142 **/
143void iio_trigger_unregister(struct iio_trigger *trig_info);
144
c8cdf708
MR
145/**
146 * iio_trigger_set_immutable() - set an immutable trigger on destination
147 *
f00fd7ae
JC
148 * @indio_dev: IIO device structure containing the device
149 * @trig: trigger to assign to device
c8cdf708
MR
150 *
151 **/
152int iio_trigger_set_immutable(struct iio_dev *indio_dev, struct iio_trigger *trig);
153
1637db44 154/**
4c572605 155 * iio_trigger_poll() - called on a trigger occurring
c3668a0f 156 * @trig: trigger which occurred
4c572605 157 *
1637db44
JC
158 * Typically called in relevant hardware interrupt handler.
159 **/
398fd22b
PM
160void iio_trigger_poll(struct iio_trigger *trig);
161void iio_trigger_poll_chained(struct iio_trigger *trig);
3f72395e 162
8384d957
JC
163irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
164
bc72d938
DR
165#define iio_trigger_alloc(parent, fmt, ...) \
166 __iio_trigger_alloc((parent), THIS_MODULE, (fmt), ##__VA_ARGS__)
167
168__printf(3, 4)
169struct iio_trigger *__iio_trigger_alloc(struct device *parent,
170 struct module *this_mod,
171 const char *fmt, ...);
7cbb7537 172void iio_trigger_free(struct iio_trigger *trig);
1637db44 173
702a7b8e
LW
174/**
175 * iio_trigger_using_own() - tells us if we use our own HW trigger ourselves
176 * @indio_dev: device to check
177 */
178bool iio_trigger_using_own(struct iio_dev *indio_dev);
179
43ece27e
LPC
180int iio_trigger_validate_own_device(struct iio_trigger *trig,
181 struct iio_dev *indio_dev);
702a7b8e 182
aaa30026
JC
183#else
184struct iio_trigger;
185struct iio_trigger_ops;
186#endif
1637db44 187#endif /* _IIO_TRIGGER_H_ */