buffer_impl.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _IIO_BUFFER_GENERIC_IMPL_H_
  3. #define _IIO_BUFFER_GENERIC_IMPL_H_
  4. #include <linux/sysfs.h>
  5. #include <linux/kref.h>
  6. #ifdef CONFIG_IIO_BUFFER
  7. #include <uapi/linux/iio/buffer.h>
  8. #include <linux/iio/buffer.h>
  9. struct iio_dev;
  10. struct iio_buffer;
  11. /**
  12. * INDIO_BUFFER_FLAG_FIXED_WATERMARK - Watermark level of the buffer can not be
  13. * configured. It has a fixed value which will be buffer specific.
  14. */
  15. #define INDIO_BUFFER_FLAG_FIXED_WATERMARK BIT(0)
  16. /**
  17. * struct iio_buffer_access_funcs - access functions for buffers.
  18. * @store_to: actually store stuff to the buffer
  19. * @read: try to get a specified number of bytes (must exist)
  20. * @data_available: indicates how much data is available for reading from
  21. * the buffer.
  22. * @remove_from: remove scan from buffer. Drivers should calls this to
  23. * remove a scan from a buffer.
  24. * @write: try to write a number of bytes
  25. * @space_available: returns the amount of bytes available in a buffer
  26. * @request_update: if a parameter change has been marked, update underlying
  27. * storage.
  28. * @set_bytes_per_datum:set number of bytes per datum
  29. * @set_length: set number of datums in buffer
  30. * @enable: called if the buffer is attached to a device and the
  31. * device starts sampling. Calls are balanced with
  32. * @disable.
  33. * @disable: called if the buffer is attached to a device and the
  34. * device stops sampling. Calles are balanced with @enable.
  35. * @release: called when the last reference to the buffer is dropped,
  36. * should free all resources allocated by the buffer.
  37. * @modes: Supported operating modes by this buffer type
  38. * @flags: A bitmask combination of INDIO_BUFFER_FLAG_*
  39. *
  40. * The purpose of this structure is to make the buffer element
  41. * modular as event for a given driver, different usecases may require
  42. * different buffer designs (space efficiency vs speed for example).
  43. *
  44. * It is worth noting that a given buffer implementation may only support a
  45. * small proportion of these functions. The core code 'should' cope fine with
  46. * any of them not existing.
  47. **/
  48. struct iio_buffer_access_funcs {
  49. int (*store_to)(struct iio_buffer *buffer, const void *data);
  50. int (*read)(struct iio_buffer *buffer, size_t n, char __user *buf);
  51. size_t (*data_available)(struct iio_buffer *buffer);
  52. int (*remove_from)(struct iio_buffer *buffer, void *data);
  53. int (*write)(struct iio_buffer *buffer, size_t n, const char __user *buf);
  54. size_t (*space_available)(struct iio_buffer *buffer);
  55. int (*request_update)(struct iio_buffer *buffer);
  56. int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
  57. int (*set_length)(struct iio_buffer *buffer, unsigned int length);
  58. int (*enable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
  59. int (*disable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
  60. void (*release)(struct iio_buffer *buffer);
  61. unsigned int modes;
  62. unsigned int flags;
  63. };
  64. /**
  65. * struct iio_buffer - general buffer structure
  66. *
  67. * Note that the internals of this structure should only be of interest to
  68. * those writing new buffer implementations.
  69. */
  70. struct iio_buffer {
  71. /** @length: Number of datums in buffer. */
  72. unsigned int length;
  73. /** @flags: File ops flags including busy flag. */
  74. unsigned long flags;
  75. /** @bytes_per_datum: Size of individual datum including timestamp. */
  76. size_t bytes_per_datum;
  77. /* @direction: Direction of the data stream (in/out). */
  78. enum iio_buffer_direction direction;
  79. /**
  80. * @access: Buffer access functions associated with the
  81. * implementation.
  82. */
  83. const struct iio_buffer_access_funcs *access;
  84. /** @scan_mask: Bitmask used in masking scan mode elements. */
  85. long *scan_mask;
  86. /** @demux_list: List of operations required to demux the scan. */
  87. struct list_head demux_list;
  88. /** @pollq: Wait queue to allow for polling on the buffer. */
  89. wait_queue_head_t pollq;
  90. /** @watermark: Number of datums to wait for poll/read. */
  91. unsigned int watermark;
  92. /* private: */
  93. /* @scan_timestamp: Does the scan mode include a timestamp. */
  94. bool scan_timestamp;
  95. /* @buffer_attr_list: List of buffer attributes. */
  96. struct list_head buffer_attr_list;
  97. /*
  98. * @buffer_group: Attributes of the new buffer group.
  99. * Includes scan elements attributes.
  100. */
  101. struct attribute_group buffer_group;
  102. /* @attrs: Standard attributes of the buffer. */
  103. const struct attribute **attrs;
  104. /* @demux_bounce: Buffer for doing gather from incoming scan. */
  105. void *demux_bounce;
  106. /* @attached_entry: Entry in the devices list of buffers attached by the driver. */
  107. struct list_head attached_entry;
  108. /* @buffer_list: Entry in the devices list of current buffers. */
  109. struct list_head buffer_list;
  110. /* @ref: Reference count of the buffer. */
  111. struct kref ref;
  112. };
  113. /**
  114. * iio_update_buffers() - add or remove buffer from active list
  115. * @indio_dev: device to add buffer to
  116. * @insert_buffer: buffer to insert
  117. * @remove_buffer: buffer_to_remove
  118. *
  119. * Note this will tear down the all buffering and build it up again
  120. */
  121. int iio_update_buffers(struct iio_dev *indio_dev,
  122. struct iio_buffer *insert_buffer,
  123. struct iio_buffer *remove_buffer);
  124. /**
  125. * iio_buffer_init() - Initialize the buffer structure
  126. * @buffer: buffer to be initialized
  127. **/
  128. void iio_buffer_init(struct iio_buffer *buffer);
  129. struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer);
  130. void iio_buffer_put(struct iio_buffer *buffer);
  131. #else /* CONFIG_IIO_BUFFER */
  132. static inline void iio_buffer_get(struct iio_buffer *buffer) {}
  133. static inline void iio_buffer_put(struct iio_buffer *buffer) {}
  134. #endif /* CONFIG_IIO_BUFFER */
  135. #endif /* _IIO_BUFFER_GENERIC_IMPL_H_ */