Merge remote-tracking branch 'asoc/topic/ac97' into asoc-fsl
[deliverable/linux.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>
a1a8e1dc 11#include <linux/atomic.h>
d96d1337 12
1637db44
JC
13#ifndef _IIO_TRIGGER_H_
14#define _IIO_TRIGGER_H_
1637db44 15
aaa30026 16#ifdef CONFIG_IIO_TRIGGER
d96d1337
JC
17struct iio_subirq {
18 bool enabled;
19};
20
d29f73db
JC
21/**
22 * struct iio_trigger_ops - operations structure for an iio_trigger.
23 * @owner: used to monitor usage count of the trigger.
24 * @set_trigger_state: switch on/off the trigger on demand
25 * @try_reenable: function to reenable the trigger when the
26 * use count is zero (may be NULL)
27 * @validate_device: function to validate the device when the
28 * current trigger gets changed.
29 *
30 * This is typically static const within a driver and shared by
31 * instances of a given device.
32 **/
33struct iio_trigger_ops {
99698b45 34 struct module *owner;
d29f73db
JC
35 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
36 int (*try_reenable)(struct iio_trigger *trig);
37 int (*validate_device)(struct iio_trigger *trig,
38 struct iio_dev *indio_dev);
39};
40
41
1637db44
JC
42/**
43 * struct iio_trigger - industrial I/O trigger device
c3668a0f 44 * @ops: [DRIVER] operations structure
1637db44
JC
45 * @id: [INTERN] unique id number
46 * @name: [DRIVER] unique name
47 * @dev: [DRIVER] associated device (if relevant)
1637db44
JC
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
1637db44
JC
63 struct list_head list;
64 struct list_head alloc_list;
a1a8e1dc 65 atomic_t use_count;
1637db44 66
d96d1337
JC
67 struct irq_chip subirq_chip;
68 int subirq_base;
69
70 struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
71 unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
72 struct mutex pool_lock;
1637db44
JC
73};
74
03e1672a 75
1637db44
JC
76static inline struct iio_trigger *to_iio_trigger(struct device *d)
77{
78 return container_of(d, struct iio_trigger, dev);
99698b45 79}
1637db44 80
7cbb7537 81static inline void iio_trigger_put(struct iio_trigger *trig)
1637db44 82{
d29f73db 83 module_put(trig->ops->owner);
82db4249 84 put_device(&trig->dev);
99698b45 85}
1637db44 86
7cbb7537 87static inline void iio_trigger_get(struct iio_trigger *trig)
1637db44 88{
1637db44 89 get_device(&trig->dev);
82db4249 90 __module_get(trig->ops->owner);
99698b45 91}
1637db44 92
1e9663c6
LPC
93/**
94 * iio_device_set_drvdata() - Set trigger driver data
95 * @trig: IIO trigger structure
96 * @data: Driver specific data
97 *
98 * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
99 * retrieved by iio_trigger_get_drvdata().
100 */
101static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
102{
5034bfc9 103 dev_set_drvdata(&trig->dev, data);
1e9663c6
LPC
104}
105
106/**
107 * iio_trigger_get_drvdata() - Get trigger driver data
108 * @trig: IIO trigger structure
109 *
110 * Returns the data previously set with iio_trigger_set_drvdata()
111 */
112static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
113{
5034bfc9 114 return dev_get_drvdata(&trig->dev);
1e9663c6
LPC
115}
116
1637db44
JC
117/**
118 * iio_trigger_register() - register a trigger with the IIO core
119 * @trig_info: trigger to be registered
120 **/
121int iio_trigger_register(struct iio_trigger *trig_info);
122
123/**
124 * iio_trigger_unregister() - unregister a trigger from the core
4c572605 125 * @trig_info: trigger to be unregistered
1637db44
JC
126 **/
127void iio_trigger_unregister(struct iio_trigger *trig_info);
128
1637db44 129/**
4c572605 130 * iio_trigger_poll() - called on a trigger occurring
c3668a0f
PM
131 * @trig: trigger which occurred
132 * @time: timestamp when trigger occurred
4c572605 133 *
1637db44
JC
134 * Typically called in relevant hardware interrupt handler.
135 **/
7b2c33b1 136void iio_trigger_poll(struct iio_trigger *trig, s64 time);
1f785681 137void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
3f72395e 138
8384d957
JC
139irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
140
7cbb7537
LPC
141__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
142void iio_trigger_free(struct iio_trigger *trig);
1637db44 143
aaa30026
JC
144#else
145struct iio_trigger;
146struct iio_trigger_ops;
147#endif
1637db44 148#endif /* _IIO_TRIGGER_H_ */
This page took 0.520596 seconds and 5 git commands to generate.