buffer_impl.h 5.2 KB

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