blob: b19b7204ef8408d74889e339a18c753291e7bd82 [file] [log] [blame]
Jonathan Cameron1637db42009-08-18 18:06:26 +01001/* 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 */
Jonathan Camerond96d1332011-05-18 14:41:18 +01009#include <linux/irq.h>
Paul Gortmaker99c97852011-07-03 15:49:50 -040010#include <linux/module.h>
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +010011#include <linux/atomic.h>
Jonathan Camerond96d1332011-05-18 14:41:18 +010012
Jonathan Cameron1637db42009-08-18 18:06:26 +010013#ifndef _IIO_TRIGGER_H_
14#define _IIO_TRIGGER_H_
Jonathan Cameron1637db42009-08-18 18:06:26 +010015
Jonathan Cameronaaa30022013-02-09 10:49:00 +000016#ifdef CONFIG_IIO_TRIGGER
Jonathan Camerond96d1332011-05-18 14:41:18 +010017struct iio_subirq {
18 bool enabled;
19};
20
Pengyu Maad30bad2015-08-04 16:32:18 +080021struct iio_dev;
22struct iio_trigger;
23
Jonathan Cameron1637db42009-08-18 18:06:26 +010024/**
Jonathan Camerond29f73d2011-08-12 17:08:38 +010025 * struct iio_trigger_ops - operations structure for an iio_trigger.
Jonathan Camerond29f73d2011-08-12 17:08:38 +010026 * @set_trigger_state: switch on/off the trigger on demand
27 * @try_reenable: function to reenable the trigger when the
28 * use count is zero (may be NULL)
29 * @validate_device: function to validate the device when the
30 * current trigger gets changed.
31 *
32 * This is typically static const within a driver and shared by
33 * instances of a given device.
34 **/
35struct iio_trigger_ops {
Jonathan Camerond29f73d2011-08-12 17:08:38 +010036 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
37 int (*try_reenable)(struct iio_trigger *trig);
38 int (*validate_device)(struct iio_trigger *trig,
39 struct iio_dev *indio_dev);
40};
41
42
43/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010044 * struct iio_trigger - industrial I/O trigger device
Peter Meerwaldc3668a02012-08-26 13:43:00 +010045 * @ops: [DRIVER] operations structure
Tobin C. Hardinge7f62712018-01-07 08:56:05 +110046 * @owner: [INTERN] owner of this driver module
Jonathan Cameron1637db42009-08-18 18:06:26 +010047 * @id: [INTERN] unique id number
48 * @name: [DRIVER] unique name
49 * @dev: [DRIVER] associated device (if relevant)
Jonathan Cameron1637db42009-08-18 18:06:26 +010050 * @list: [INTERN] used in maintenance of global trigger list
51 * @alloc_list: [DRIVER] used for driver specific trigger list
Tobin C. Harding284d95c2018-01-07 08:56:06 +110052 * @use_count: [INTERN] use count for the trigger.
Jonathan Cameron59c85e82011-05-18 14:42:22 +010053 * @subirq_chip: [INTERN] associate 'virtual' irq chip.
54 * @subirq_base: [INTERN] base number for irqs provided by trigger.
55 * @subirqs: [INTERN] information about the 'child' irqs.
56 * @pool: [INTERN] bitmap of irqs currently in use.
57 * @pool_lock: [INTERN] protection of the irq pool.
Linus Walleij702a7b82016-09-01 10:27:17 +020058 * @attached_own_device:[INTERN] if we are using our own device as trigger,
59 * i.e. if we registered a poll function to the same
60 * device as the one providing the trigger.
Jonathan Cameron1637db42009-08-18 18:06:26 +010061 **/
62struct iio_trigger {
Jonathan Camerond29f73d2011-08-12 17:08:38 +010063 const struct iio_trigger_ops *ops;
Jonathan Cameron035c70a2017-07-23 17:25:44 +010064 struct module *owner;
Jonathan Cameron1637db42009-08-18 18:06:26 +010065 int id;
66 const char *name;
67 struct device dev;
68
Jonathan Cameron1637db42009-08-18 18:06:26 +010069 struct list_head list;
70 struct list_head alloc_list;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +010071 atomic_t use_count;
Jonathan Cameron1637db42009-08-18 18:06:26 +010072
Jonathan Camerond96d1332011-05-18 14:41:18 +010073 struct irq_chip subirq_chip;
74 int subirq_base;
75
76 struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
77 unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
78 struct mutex pool_lock;
Linus Walleij702a7b82016-09-01 10:27:17 +020079 bool attached_own_device;
Jonathan Cameron1637db42009-08-18 18:06:26 +010080};
81
Michael Hennerich03e16722011-06-27 13:07:08 +010082
Jonathan Cameron1637db42009-08-18 18:06:26 +010083static inline struct iio_trigger *to_iio_trigger(struct device *d)
84{
85 return container_of(d, struct iio_trigger, dev);
Peter Meerwald99698b42012-08-26 13:43:00 +010086}
Jonathan Cameron1637db42009-08-18 18:06:26 +010087
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +020088static inline void iio_trigger_put(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010089{
Jonathan Cameron035c70a2017-07-23 17:25:44 +010090 module_put(trig->owner);
Jonathan Cameron82db4242011-08-24 17:28:34 +010091 put_device(&trig->dev);
Peter Meerwald99698b42012-08-26 13:43:00 +010092}
Jonathan Cameron1637db42009-08-18 18:06:26 +010093
Srinivas Pandruvadaf1535662014-08-22 21:48:00 +010094static inline struct iio_trigger *iio_trigger_get(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010095{
Jonathan Cameron1637db42009-08-18 18:06:26 +010096 get_device(&trig->dev);
Jonathan Cameron035c70a2017-07-23 17:25:44 +010097 __module_get(trig->owner);
Srinivas Pandruvadaf1535662014-08-22 21:48:00 +010098
99 return trig;
Peter Meerwald99698b42012-08-26 13:43:00 +0100100}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100101
102/**
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +0000103 * iio_device_set_drvdata() - Set trigger driver data
104 * @trig: IIO trigger structure
105 * @data: Driver specific data
106 *
107 * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
108 * retrieved by iio_trigger_get_drvdata().
109 */
110static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
111{
Lars-Peter Clausen5034bfc92013-03-25 08:58:00 +0000112 dev_set_drvdata(&trig->dev, data);
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +0000113}
114
115/**
116 * iio_trigger_get_drvdata() - Get trigger driver data
117 * @trig: IIO trigger structure
118 *
119 * Returns the data previously set with iio_trigger_set_drvdata()
120 */
121static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
122{
Lars-Peter Clausen5034bfc92013-03-25 08:58:00 +0000123 return dev_get_drvdata(&trig->dev);
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +0000124}
125
126/**
Jonathan Cameron1637db42009-08-18 18:06:26 +0100127 * iio_trigger_register() - register a trigger with the IIO core
128 * @trig_info: trigger to be registered
129 **/
Jonathan Cameron035c70a2017-07-23 17:25:44 +0100130#define iio_trigger_register(trig_info) \
131 __iio_trigger_register((trig_info), THIS_MODULE)
132int __iio_trigger_register(struct iio_trigger *trig_info,
133 struct module *this_mod);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100134
Jonathan Cameron035c70a2017-07-23 17:25:44 +0100135#define devm_iio_trigger_register(dev, trig_info) \
136 __devm_iio_trigger_register((dev), (trig_info), THIS_MODULE)
137int __devm_iio_trigger_register(struct device *dev,
138 struct iio_trigger *trig_info,
139 struct module *this_mod);
Gregor Boirie90833252016-09-02 20:47:54 +0200140
Jonathan Cameron1637db42009-08-18 18:06:26 +0100141/**
142 * iio_trigger_unregister() - unregister a trigger from the core
Randy Dunlap4c572602009-10-04 19:34:02 -0700143 * @trig_info: trigger to be unregistered
Jonathan Cameron1637db42009-08-18 18:06:26 +0100144 **/
145void iio_trigger_unregister(struct iio_trigger *trig_info);
146
Gregor Boirie90833252016-09-02 20:47:54 +0200147void devm_iio_trigger_unregister(struct device *dev,
148 struct iio_trigger *trig_info);
149
Jonathan Cameron1637db42009-08-18 18:06:26 +0100150/**
Matt Ranostayc8cdf702016-09-02 23:36:15 -0700151 * iio_trigger_set_immutable() - set an immutable trigger on destination
152 *
Jonathan Corbetf00fd7a2017-07-30 16:14:42 -0600153 * @indio_dev: IIO device structure containing the device
154 * @trig: trigger to assign to device
Matt Ranostayc8cdf702016-09-02 23:36:15 -0700155 *
156 **/
157int iio_trigger_set_immutable(struct iio_dev *indio_dev, struct iio_trigger *trig);
158
159/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700160 * iio_trigger_poll() - called on a trigger occurring
Peter Meerwaldc3668a02012-08-26 13:43:00 +0100161 * @trig: trigger which occurred
Randy Dunlap4c572602009-10-04 19:34:02 -0700162 *
Jonathan Cameron1637db42009-08-18 18:06:26 +0100163 * Typically called in relevant hardware interrupt handler.
164 **/
Peter Meerwald398fd222014-12-06 06:46:00 +0000165void iio_trigger_poll(struct iio_trigger *trig);
166void iio_trigger_poll_chained(struct iio_trigger *trig);
Jonathan Cameron3f723952011-08-24 17:28:39 +0100167
Jonathan Cameron8384d952011-05-18 14:41:21 +0100168irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
169
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200170__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
171void iio_trigger_free(struct iio_trigger *trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100172
Linus Walleij702a7b82016-09-01 10:27:17 +0200173/**
174 * iio_trigger_using_own() - tells us if we use our own HW trigger ourselves
175 * @indio_dev: device to check
176 */
177bool iio_trigger_using_own(struct iio_dev *indio_dev);
178
Lars-Peter Clausen43ece272016-09-23 17:19:41 +0200179int iio_trigger_validate_own_device(struct iio_trigger *trig,
180 struct iio_dev *indio_dev);
Linus Walleij702a7b82016-09-01 10:27:17 +0200181
Jonathan Cameronaaa30022013-02-09 10:49:00 +0000182#else
183struct iio_trigger;
184struct iio_trigger_ops;
185#endif
Jonathan Cameron1637db42009-08-18 18:06:26 +0100186#endif /* _IIO_TRIGGER_H_ */