blob: b81948aba1d6a2bb3c7f083ac01b7afb71416108 [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>
Jonathan Camerond96d1332011-05-18 14:41:18 +010011
Jonathan Cameron1637db42009-08-18 18:06:26 +010012#ifndef _IIO_TRIGGER_H_
13#define _IIO_TRIGGER_H_
Jonathan Cameron1637db42009-08-18 18:06:26 +010014
Jonathan Cameronaaa30022013-02-09 10:49:00 +000015#ifdef CONFIG_IIO_TRIGGER
Jonathan Camerond96d1332011-05-18 14:41:18 +010016struct iio_subirq {
17 bool enabled;
18};
19
Jonathan Cameron1637db42009-08-18 18:06:26 +010020/**
Jonathan Camerond29f73d2011-08-12 17:08:38 +010021 * 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 {
Peter Meerwald99698b42012-08-26 13:43:00 +010033 struct module *owner;
Jonathan Camerond29f73d2011-08-12 17:08:38 +010034 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
41/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010042 * struct iio_trigger - industrial I/O trigger device
Peter Meerwaldc3668a02012-08-26 13:43:00 +010043 * @ops: [DRIVER] operations structure
Jonathan Cameron1637db42009-08-18 18:06:26 +010044 * @id: [INTERN] unique id number
45 * @name: [DRIVER] unique name
46 * @dev: [DRIVER] associated device (if relevant)
Jonathan Cameron1637db42009-08-18 18:06:26 +010047 * @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
Randy Dunlap4c572602009-10-04 19:34:02 -070050 * @use_count: use count for the trigger
Jonathan Cameron59c85e82011-05-18 14:42:22 +010051 * @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.
Jonathan Cameron1637db42009-08-18 18:06:26 +010056 **/
57struct iio_trigger {
Jonathan Camerond29f73d2011-08-12 17:08:38 +010058 const struct iio_trigger_ops *ops;
Jonathan Cameron1637db42009-08-18 18:06:26 +010059 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;
Jonathan Cameron1637db42009-08-18 18:06:26 +010066 int use_count;
67
Jonathan Camerond96d1332011-05-18 14:41:18 +010068 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;
Jonathan Cameron1637db42009-08-18 18:06:26 +010074};
75
Michael Hennerich03e16722011-06-27 13:07:08 +010076
Jonathan Cameron1637db42009-08-18 18:06:26 +010077static inline struct iio_trigger *to_iio_trigger(struct device *d)
78{
79 return container_of(d, struct iio_trigger, dev);
Peter Meerwald99698b42012-08-26 13:43:00 +010080}
Jonathan Cameron1637db42009-08-18 18:06:26 +010081
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +020082static inline void iio_trigger_put(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010083{
Jonathan Camerond29f73d2011-08-12 17:08:38 +010084 module_put(trig->ops->owner);
Jonathan Cameron82db4242011-08-24 17:28:34 +010085 put_device(&trig->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_get(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +010089{
Jonathan Cameron1637db42009-08-18 18:06:26 +010090 get_device(&trig->dev);
Jonathan Cameron82db4242011-08-24 17:28:34 +010091 __module_get(trig->ops->owner);
Peter Meerwald99698b42012-08-26 13:43:00 +010092}
Jonathan Cameron1637db42009-08-18 18:06:26 +010093
94/**
Lars-Peter Clausen1e9663c2013-03-25 08:58:00 +000095 * iio_device_set_drvdata() - Set trigger driver data
96 * @trig: IIO trigger structure
97 * @data: Driver specific data
98 *
99 * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
100 * retrieved by iio_trigger_get_drvdata().
101 */
102static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
103{
104 trig->private_data = data;
105}
106
107/**
108 * iio_trigger_get_drvdata() - Get trigger driver data
109 * @trig: IIO trigger structure
110 *
111 * Returns the data previously set with iio_trigger_set_drvdata()
112 */
113static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
114{
115 return trig->private_data;
116}
117
118/**
Jonathan Cameron1637db42009-08-18 18:06:26 +0100119 * iio_trigger_register() - register a trigger with the IIO core
120 * @trig_info: trigger to be registered
121 **/
122int iio_trigger_register(struct iio_trigger *trig_info);
123
124/**
125 * iio_trigger_unregister() - unregister a trigger from the core
Randy Dunlap4c572602009-10-04 19:34:02 -0700126 * @trig_info: trigger to be unregistered
Jonathan Cameron1637db42009-08-18 18:06:26 +0100127 **/
128void iio_trigger_unregister(struct iio_trigger *trig_info);
129
130/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700131 * iio_trigger_poll() - called on a trigger occurring
Peter Meerwaldc3668a02012-08-26 13:43:00 +0100132 * @trig: trigger which occurred
133 * @time: timestamp when trigger occurred
Randy Dunlap4c572602009-10-04 19:34:02 -0700134 *
Jonathan Cameron1637db42009-08-18 18:06:26 +0100135 * Typically called in relevant hardware interrupt handler.
136 **/
Jonathan Cameron7b2c33b2010-07-11 16:39:11 +0100137void iio_trigger_poll(struct iio_trigger *trig, s64 time);
Jonathan Cameron1f785682011-05-18 14:42:11 +0100138void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
Jonathan Cameron3f723952011-08-24 17:28:39 +0100139
Jonathan Cameron8384d952011-05-18 14:41:21 +0100140irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
141
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200142__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
143void iio_trigger_free(struct iio_trigger *trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100144
Jonathan Cameronaaa30022013-02-09 10:49:00 +0000145#else
146struct iio_trigger;
147struct iio_trigger_ops;
148#endif
Jonathan Cameron1637db42009-08-18 18:06:26 +0100149#endif /* _IIO_TRIGGER_H_ */