blob: 1c9e028e0d4a8223ace9236194c376b96a27d9d8 [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.
26 * @owner: used to monitor usage count of the trigger.
27 * @set_trigger_state: switch on/off the trigger on demand
28 * @try_reenable: function to reenable the trigger when the
29 * use count is zero (may be NULL)
30 * @validate_device: function to validate the device when the
31 * current trigger gets changed.
32 *
33 * This is typically static const within a driver and shared by
34 * instances of a given device.
35 **/
36struct iio_trigger_ops {
Peter Meerwald99698b42012-08-26 13:43:00 +010037 struct module *owner;
Jonathan Camerond29f73d2011-08-12 17:08:38 +010038 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
39 int (*try_reenable)(struct iio_trigger *trig);
40 int (*validate_device)(struct iio_trigger *trig,
41 struct iio_dev *indio_dev);
42};
43
44
45/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010046 * struct iio_trigger - industrial I/O trigger device
Peter Meerwaldc3668a02012-08-26 13:43:00 +010047 * @ops: [DRIVER] operations structure
Jonathan Cameron1637db42009-08-18 18:06:26 +010048 * @id: [INTERN] unique id number
49 * @name: [DRIVER] unique name
50 * @dev: [DRIVER] associated device (if relevant)
Jonathan Cameron1637db42009-08-18 18:06:26 +010051 * @list: [INTERN] used in maintenance of global trigger list
52 * @alloc_list: [DRIVER] used for driver specific trigger list
Randy Dunlap4c572602009-10-04 19:34:02 -070053 * @use_count: use count for the trigger
Jonathan Cameron59c85e82011-05-18 14:42:22 +010054 * @subirq_chip: [INTERN] associate 'virtual' irq chip.
55 * @subirq_base: [INTERN] base number for irqs provided by trigger.
56 * @subirqs: [INTERN] information about the 'child' irqs.
57 * @pool: [INTERN] bitmap of irqs currently in use.
58 * @pool_lock: [INTERN] protection of the irq pool.
Jonathan Cameron1637db42009-08-18 18:06:26 +010059 **/
60struct iio_trigger {
Jonathan Camerond29f73d2011-08-12 17:08:38 +010061 const struct iio_trigger_ops *ops;
Jonathan Cameron1637db42009-08-18 18:06:26 +010062 int id;
63 const char *name;
64 struct device dev;
65
Jonathan Cameron1637db42009-08-18 18:06:26 +010066 struct list_head list;
67 struct list_head alloc_list;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +010068 atomic_t use_count;
Jonathan Cameron1637db42009-08-18 18:06:26 +010069
Jonathan Camerond96d1332011-05-18 14:41:18 +010070 struct irq_chip subirq_chip;
71 int subirq_base;
72
73 struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
74 unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
75 struct mutex pool_lock;
Jonathan Cameron1637db42009-08-18 18:06:26 +010076};
77
Michael Hennerich03e16722011-06-27 13:07:08 +010078
Jonathan Cameron1637db42009-08-18 18:06:26 +010079static inline struct iio_trigger *to_iio_trigger(struct device *d)
80{
81 return container_of(d, struct iio_trigger, dev);
Peter Meerwald99698b42012-08-26 13:43:00 +010082}
Jonathan Cameron1637db42009-08-18 18:06:26 +010083
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +020084static inline void iio_trigger_put(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010085{
Jonathan Camerond29f73d2011-08-12 17:08:38 +010086 module_put(trig->ops->owner);
Jonathan Cameron82db4242011-08-24 17:28:34 +010087 put_device(&trig->dev);
Peter Meerwald99698b42012-08-26 13:43:00 +010088}
Jonathan Cameron1637db42009-08-18 18:06:26 +010089
Srinivas Pandruvadaf1535662014-08-22 21:48:00 +010090static inline struct iio_trigger *iio_trigger_get(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010091{
Jonathan Cameron1637db42009-08-18 18:06:26 +010092 get_device(&trig->dev);
Jonathan Cameron82db4242011-08-24 17:28:34 +010093 __module_get(trig->ops->owner);
Srinivas Pandruvadaf1535662014-08-22 21:48:00 +010094
95 return trig;
Peter Meerwald99698b42012-08-26 13:43:00 +010096}
Jonathan Cameron1637db42009-08-18 18:06:26 +010097
98/**
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +000099 * iio_device_set_drvdata() - Set trigger driver data
100 * @trig: IIO trigger structure
101 * @data: Driver specific data
102 *
103 * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
104 * retrieved by iio_trigger_get_drvdata().
105 */
106static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
107{
Lars-Peter Clausen5034bfc92013-03-25 08:58:00 +0000108 dev_set_drvdata(&trig->dev, data);
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +0000109}
110
111/**
112 * iio_trigger_get_drvdata() - Get trigger driver data
113 * @trig: IIO trigger structure
114 *
115 * Returns the data previously set with iio_trigger_set_drvdata()
116 */
117static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
118{
Lars-Peter Clausen5034bfc92013-03-25 08:58:00 +0000119 return dev_get_drvdata(&trig->dev);
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +0000120}
121
122/**
Jonathan Cameron1637db42009-08-18 18:06:26 +0100123 * iio_trigger_register() - register a trigger with the IIO core
124 * @trig_info: trigger to be registered
125 **/
126int iio_trigger_register(struct iio_trigger *trig_info);
127
128/**
129 * iio_trigger_unregister() - unregister a trigger from the core
Randy Dunlap4c572602009-10-04 19:34:02 -0700130 * @trig_info: trigger to be unregistered
Jonathan Cameron1637db42009-08-18 18:06:26 +0100131 **/
132void iio_trigger_unregister(struct iio_trigger *trig_info);
133
134/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700135 * iio_trigger_poll() - called on a trigger occurring
Peter Meerwaldc3668a02012-08-26 13:43:00 +0100136 * @trig: trigger which occurred
Randy Dunlap4c572602009-10-04 19:34:02 -0700137 *
Jonathan Cameron1637db42009-08-18 18:06:26 +0100138 * Typically called in relevant hardware interrupt handler.
139 **/
Peter Meerwald398fd222014-12-06 06:46:00 +0000140void iio_trigger_poll(struct iio_trigger *trig);
141void iio_trigger_poll_chained(struct iio_trigger *trig);
Jonathan Cameron3f723952011-08-24 17:28:39 +0100142
Jonathan Cameron8384d952011-05-18 14:41:21 +0100143irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
144
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200145__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
146void iio_trigger_free(struct iio_trigger *trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100147
Jonathan Cameronaaa30022013-02-09 10:49:00 +0000148#else
149struct iio_trigger;
150struct iio_trigger_ops;
151#endif
Jonathan Cameron1637db42009-08-18 18:06:26 +0100152#endif /* _IIO_TRIGGER_H_ */