trigger.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. */
  9. #include <linux/irq.h>
  10. #include <linux/module.h>
  11. #include <linux/atomic.h>
  12. #ifndef _IIO_TRIGGER_H_
  13. #define _IIO_TRIGGER_H_
  14. #ifdef CONFIG_IIO_TRIGGER
  15. struct iio_subirq {
  16. bool enabled;
  17. };
  18. /**
  19. * struct iio_trigger_ops - operations structure for an iio_trigger.
  20. * @owner: used to monitor usage count of the trigger.
  21. * @set_trigger_state: switch on/off the trigger on demand
  22. * @try_reenable: function to reenable the trigger when the
  23. * use count is zero (may be NULL)
  24. * @validate_device: function to validate the device when the
  25. * current trigger gets changed.
  26. *
  27. * This is typically static const within a driver and shared by
  28. * instances of a given device.
  29. **/
  30. struct iio_trigger_ops {
  31. struct module *owner;
  32. int (*set_trigger_state)(struct iio_trigger *trig, bool state);
  33. int (*try_reenable)(struct iio_trigger *trig);
  34. int (*validate_device)(struct iio_trigger *trig,
  35. struct iio_dev *indio_dev);
  36. };
  37. /**
  38. * struct iio_trigger - industrial I/O trigger device
  39. * @ops: [DRIVER] operations structure
  40. * @id: [INTERN] unique id number
  41. * @name: [DRIVER] unique name
  42. * @dev: [DRIVER] associated device (if relevant)
  43. * @list: [INTERN] used in maintenance of global trigger list
  44. * @alloc_list: [DRIVER] used for driver specific trigger list
  45. * @use_count: use count for the trigger
  46. * @subirq_chip: [INTERN] associate 'virtual' irq chip.
  47. * @subirq_base: [INTERN] base number for irqs provided by trigger.
  48. * @subirqs: [INTERN] information about the 'child' irqs.
  49. * @pool: [INTERN] bitmap of irqs currently in use.
  50. * @pool_lock: [INTERN] protection of the irq pool.
  51. **/
  52. struct iio_trigger {
  53. const struct iio_trigger_ops *ops;
  54. int id;
  55. const char *name;
  56. struct device dev;
  57. struct list_head list;
  58. struct list_head alloc_list;
  59. atomic_t use_count;
  60. struct irq_chip subirq_chip;
  61. int subirq_base;
  62. struct iio_subirq subirqs[CONFIG_IIO_CONSUMERS_PER_TRIGGER];
  63. unsigned long pool[BITS_TO_LONGS(CONFIG_IIO_CONSUMERS_PER_TRIGGER)];
  64. struct mutex pool_lock;
  65. };
  66. static inline struct iio_trigger *to_iio_trigger(struct device *d)
  67. {
  68. return container_of(d, struct iio_trigger, dev);
  69. }
  70. static inline void iio_trigger_put(struct iio_trigger *trig)
  71. {
  72. module_put(trig->ops->owner);
  73. put_device(&trig->dev);
  74. }
  75. static inline void iio_trigger_get(struct iio_trigger *trig)
  76. {
  77. get_device(&trig->dev);
  78. __module_get(trig->ops->owner);
  79. }
  80. /**
  81. * iio_device_set_drvdata() - Set trigger driver data
  82. * @trig: IIO trigger structure
  83. * @data: Driver specific data
  84. *
  85. * Allows to attach an arbitrary pointer to an IIO trigger, which can later be
  86. * retrieved by iio_trigger_get_drvdata().
  87. */
  88. static inline void iio_trigger_set_drvdata(struct iio_trigger *trig, void *data)
  89. {
  90. dev_set_drvdata(&trig->dev, data);
  91. }
  92. /**
  93. * iio_trigger_get_drvdata() - Get trigger driver data
  94. * @trig: IIO trigger structure
  95. *
  96. * Returns the data previously set with iio_trigger_set_drvdata()
  97. */
  98. static inline void *iio_trigger_get_drvdata(struct iio_trigger *trig)
  99. {
  100. return dev_get_drvdata(&trig->dev);
  101. }
  102. /**
  103. * iio_trigger_register() - register a trigger with the IIO core
  104. * @trig_info: trigger to be registered
  105. **/
  106. int iio_trigger_register(struct iio_trigger *trig_info);
  107. /**
  108. * iio_trigger_unregister() - unregister a trigger from the core
  109. * @trig_info: trigger to be unregistered
  110. **/
  111. void iio_trigger_unregister(struct iio_trigger *trig_info);
  112. /**
  113. * iio_trigger_poll() - called on a trigger occurring
  114. * @trig: trigger which occurred
  115. * @time: timestamp when trigger occurred
  116. *
  117. * Typically called in relevant hardware interrupt handler.
  118. **/
  119. void iio_trigger_poll(struct iio_trigger *trig, s64 time);
  120. void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
  121. irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
  122. __printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
  123. void iio_trigger_free(struct iio_trigger *trig);
  124. #else
  125. struct iio_trigger;
  126. struct iio_trigger_ops;
  127. #endif
  128. #endif /* _IIO_TRIGGER_H_ */