blob: 1cfca231db8f47de750eab5a2f5ccadd86a47a10 [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 Camerond96d1332011-05-18 14:41:18 +010015struct iio_subirq {
16 bool enabled;
17};
18
Jonathan Cameron1637db42009-08-18 18:06:26 +010019/**
Jonathan Camerond29f73d2011-08-12 17:08:38 +010020 * struct iio_trigger_ops - operations structure for an iio_trigger.
21 * @owner: used to monitor usage count of the trigger.
22 * @set_trigger_state: switch on/off the trigger on demand
23 * @try_reenable: function to reenable the trigger when the
24 * use count is zero (may be NULL)
25 * @validate_device: function to validate the device when the
26 * current trigger gets changed.
27 *
28 * This is typically static const within a driver and shared by
29 * instances of a given device.
30 **/
31struct iio_trigger_ops {
32 struct module *owner;
33 int (*set_trigger_state)(struct iio_trigger *trig, bool state);
34 int (*try_reenable)(struct iio_trigger *trig);
35 int (*validate_device)(struct iio_trigger *trig,
36 struct iio_dev *indio_dev);
37};
38
39
40/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010041 * struct iio_trigger - industrial I/O trigger device
42 *
43 * @id: [INTERN] unique id number
44 * @name: [DRIVER] unique name
45 * @dev: [DRIVER] associated device (if relevant)
Jonathan Cameron1637db42009-08-18 18:06:26 +010046 * @private_data: [DRIVER] device specific data
47 * @list: [INTERN] used in maintenance of global trigger list
48 * @alloc_list: [DRIVER] used for driver specific trigger list
Randy Dunlap4c572602009-10-04 19:34:02 -070049 * @use_count: use count for the trigger
Jonathan Cameron59c85e82011-05-18 14:42:22 +010050 * @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.
Jonathan Cameron1637db42009-08-18 18:06:26 +010055 **/
56struct iio_trigger {
Jonathan Camerond29f73d2011-08-12 17:08:38 +010057 const struct iio_trigger_ops *ops;
Jonathan Cameron1637db42009-08-18 18:06:26 +010058 int id;
59 const char *name;
60 struct device dev;
61
62 void *private_data;
63 struct list_head list;
64 struct list_head alloc_list;
Jonathan Cameron1637db42009-08-18 18:06:26 +010065 int use_count;
66
Jonathan Camerond96d1332011-05-18 14:41:18 +010067 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;
Jonathan Cameron1637db42009-08-18 18:06:26 +010073};
74
Michael Hennerich03e16722011-06-27 13:07:08 +010075
Jonathan Cameron1637db42009-08-18 18:06:26 +010076static inline struct iio_trigger *to_iio_trigger(struct device *d)
77{
78 return container_of(d, struct iio_trigger, dev);
79};
80
81static inline void iio_put_trigger(struct iio_trigger *trig)
82{
Jonathan Camerond29f73d2011-08-12 17:08:38 +010083 module_put(trig->ops->owner);
Jonathan Cameron82db4242011-08-24 17:28:34 +010084 put_device(&trig->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +010085};
86
87static inline void iio_get_trigger(struct iio_trigger *trig)
88{
Jonathan Cameron1637db42009-08-18 18:06:26 +010089 get_device(&trig->dev);
Jonathan Cameron82db4242011-08-24 17:28:34 +010090 __module_get(trig->ops->owner);
Jonathan Cameron1637db42009-08-18 18:06:26 +010091};
92
93/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010094 * iio_trigger_register() - register a trigger with the IIO core
95 * @trig_info: trigger to be registered
96 **/
97int iio_trigger_register(struct iio_trigger *trig_info);
98
99/**
100 * iio_trigger_unregister() - unregister a trigger from the core
Randy Dunlap4c572602009-10-04 19:34:02 -0700101 * @trig_info: trigger to be unregistered
Jonathan Cameron1637db42009-08-18 18:06:26 +0100102 **/
103void iio_trigger_unregister(struct iio_trigger *trig_info);
104
105/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700106 * iio_trigger_poll() - called on a trigger occurring
107 * @trig: trigger which occurred
108 *
Jonathan Cameron1637db42009-08-18 18:06:26 +0100109 * Typically called in relevant hardware interrupt handler.
110 **/
Jonathan Cameron7b2c33b2010-07-11 16:39:11 +0100111void iio_trigger_poll(struct iio_trigger *trig, s64 time);
Jonathan Cameron1f785682011-05-18 14:42:11 +0100112void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
Jonathan Cameron3f723952011-08-24 17:28:39 +0100113
Jonathan Cameron8384d952011-05-18 14:41:21 +0100114irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
115
Joe Perchesb9075fa2011-10-31 17:11:33 -0700116__printf(1, 2) struct iio_trigger *iio_allocate_trigger(const char *fmt, ...);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100117void iio_free_trigger(struct iio_trigger *trig);
118
Jonathan Cameron1637db42009-08-18 18:06:26 +0100119#endif /* _IIO_TRIGGER_H_ */