ring_buffer.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. /* ring_buffer.h: Simple ring buffer API */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /** @file */
  8. #ifndef ZEPHYR_INCLUDE_SYS_RING_BUFFER_H_
  9. #define ZEPHYR_INCLUDE_SYS_RING_BUFFER_H_
  10. #include <kernel.h>
  11. #include <sys/util.h>
  12. #include <errno.h>
  13. #include <string.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #define SIZE32_OF(x) (sizeof((x))/sizeof(uint32_t))
  18. /* The limit is used by algorithm for distinguishing between empty and full
  19. * state.
  20. */
  21. #define RING_BUFFER_MAX_SIZE 0x80000000
  22. #define RING_BUFFER_SIZE_ASSERT_MSG \
  23. "Size too big, if it is the ring buffer test check custom max size"
  24. /**
  25. * @brief A structure to represent a ring buffer
  26. */
  27. struct ring_buf {
  28. uint32_t head; /**< Index in buf for the head element */
  29. uint32_t tail; /**< Index in buf for the tail element */
  30. union ring_buf_misc {
  31. struct ring_buf_misc_item_mode {
  32. uint32_t dropped_put_count; /**< Running tally of the
  33. * number of failed put
  34. * attempts.
  35. */
  36. } item_mode;
  37. struct ring_buf_misc_byte_mode {
  38. uint32_t tmp_tail;
  39. uint32_t tmp_head;
  40. } byte_mode;
  41. } misc;
  42. uint32_t size; /**< Size of buf in 32-bit chunks */
  43. union ring_buf_buffer {
  44. uint32_t *buf32; /**< Memory region for stored entries */
  45. uint8_t *buf8;
  46. } buf;
  47. uint32_t mask; /**< Modulo mask if size is a power of 2 */
  48. struct k_spinlock lock;
  49. };
  50. /**
  51. * @defgroup ring_buffer_apis Ring Buffer APIs
  52. * @ingroup datastructure_apis
  53. * @{
  54. */
  55. /**
  56. * @brief Define and initialize a high performance ring buffer.
  57. *
  58. * This macro establishes a ring buffer whose size must be a power of 2;
  59. * that is, the ring buffer contains 2^pow 32-bit words, where @a pow is
  60. * the specified ring buffer size exponent. A high performance ring buffer
  61. * doesn't require the use of modulo arithmetic operations to maintain itself.
  62. *
  63. * The ring buffer can be accessed outside the module where it is defined
  64. * using:
  65. *
  66. * @code extern struct ring_buf <name>; @endcode
  67. *
  68. * @param name Name of the ring buffer.
  69. * @param pow Ring buffer size exponent.
  70. */
  71. #define RING_BUF_ITEM_DECLARE_POW2(name, pow) \
  72. BUILD_ASSERT((1 << pow) < RING_BUFFER_MAX_SIZE,\
  73. RING_BUFFER_SIZE_ASSERT_MSG); \
  74. static uint32_t __noinit _ring_buffer_data_##name[BIT(pow)]; \
  75. struct ring_buf name = { \
  76. .size = (BIT(pow)), \
  77. .mask = (BIT(pow)) - 1, \
  78. .buf = { .buf32 = _ring_buffer_data_##name } \
  79. }
  80. /**
  81. * @brief Define and initialize a standard ring buffer.
  82. *
  83. * This macro establishes a ring buffer of an arbitrary size. A standard
  84. * ring buffer uses modulo arithmetic operations to maintain itself.
  85. *
  86. * The ring buffer can be accessed outside the module where it is defined
  87. * using:
  88. *
  89. * @code extern struct ring_buf <name>; @endcode
  90. *
  91. * @param name Name of the ring buffer.
  92. * @param size32 Size of ring buffer (in 32-bit words).
  93. */
  94. #define RING_BUF_ITEM_DECLARE_SIZE(name, size32) \
  95. BUILD_ASSERT(size32 < RING_BUFFER_MAX_SIZE,\
  96. RING_BUFFER_SIZE_ASSERT_MSG); \
  97. static uint32_t __noinit _ring_buffer_data_##name[size32]; \
  98. struct ring_buf name = { \
  99. .size = size32, \
  100. .buf = { .buf32 = _ring_buffer_data_##name} \
  101. }
  102. /**
  103. * @brief Define and initialize a ring buffer for byte data.
  104. *
  105. * This macro establishes a ring buffer of an arbitrary size.
  106. *
  107. * The ring buffer can be accessed outside the module where it is defined
  108. * using:
  109. *
  110. * @code extern struct ring_buf <name>; @endcode
  111. *
  112. * @param name Name of the ring buffer.
  113. * @param size8 Size of ring buffer (in bytes).
  114. */
  115. #define RING_BUF_DECLARE(name, size8) \
  116. BUILD_ASSERT(size8 < RING_BUFFER_MAX_SIZE,\
  117. RING_BUFFER_SIZE_ASSERT_MSG); \
  118. static uint8_t __noinit _ring_buffer_data_##name[size8]; \
  119. struct ring_buf name = { \
  120. .size = size8, \
  121. .buf = { .buf8 = _ring_buffer_data_##name} \
  122. }
  123. /**
  124. * @brief Initialize a ring buffer.
  125. *
  126. * This routine initializes a ring buffer, prior to its first use. It is only
  127. * used for ring buffers not defined using RING_BUF_DECLARE,
  128. * RING_BUF_ITEM_DECLARE_POW2 or RING_BUF_ITEM_DECLARE_SIZE.
  129. *
  130. * Setting @a size to a power of 2 establishes a high performance ring buffer
  131. * that doesn't require the use of modulo arithmetic operations to maintain
  132. * itself.
  133. *
  134. * @param buf Address of ring buffer.
  135. * @param size Ring buffer size (in 32-bit words or bytes).
  136. * @param data Ring buffer data area (uint32_t data[size] or uint8_t data[size]
  137. * for bytes mode).
  138. */
  139. static inline void ring_buf_init(struct ring_buf *buf,
  140. uint32_t size,
  141. void *data)
  142. {
  143. __ASSERT(size < RING_BUFFER_MAX_SIZE, RING_BUFFER_SIZE_ASSERT_MSG);
  144. memset(buf, 0, sizeof(struct ring_buf));
  145. buf->size = size;
  146. buf->buf.buf32 = (uint32_t *)data;
  147. if (is_power_of_two(size)) {
  148. buf->mask = size - 1U;
  149. } else {
  150. buf->mask = 0U;
  151. }
  152. }
  153. /**
  154. * @brief Determine if a ring buffer is empty.
  155. *
  156. * @param buf Address of ring buffer.
  157. *
  158. * @return 1 if the ring buffer is empty, or 0 if not.
  159. */
  160. int ring_buf_is_empty(struct ring_buf *buf);
  161. /**
  162. * @brief Reset ring buffer state.
  163. *
  164. * @param buf Address of ring buffer.
  165. */
  166. static inline void ring_buf_reset(struct ring_buf *buf)
  167. {
  168. buf->head = 0;
  169. buf->tail = 0;
  170. memset(&buf->misc, 0, sizeof(buf->misc));
  171. }
  172. /**
  173. * @brief Determine free space in a ring buffer.
  174. *
  175. * @param buf Address of ring buffer.
  176. *
  177. * @return Ring buffer free space (in 32-bit words or bytes).
  178. */
  179. uint32_t ring_buf_space_get(struct ring_buf *buf);
  180. /**
  181. * @brief Return ring buffer capacity.
  182. *
  183. * @param buf Address of ring buffer.
  184. *
  185. * @return Ring buffer capacity (in 32-bit words or bytes).
  186. */
  187. static inline uint32_t ring_buf_capacity_get(struct ring_buf *buf)
  188. {
  189. return buf->size;
  190. }
  191. /**
  192. * @brief Determine used space in a ring buffer.
  193. *
  194. * @param buf Address of ring buffer.
  195. *
  196. * @return Ring buffer space used (in 32-bit words or bytes).
  197. */
  198. uint32_t ring_buf_size_get(struct ring_buf *buf);
  199. /**
  200. * @brief Write a data item to a ring buffer.
  201. *
  202. * This routine writes a data item to ring buffer @a buf. The data item
  203. * is an array of 32-bit words (from zero to 1020 bytes in length),
  204. * coupled with a 16-bit type identifier and an 8-bit integer value.
  205. *
  206. * @warning
  207. * Use cases involving multiple writers to the ring buffer must prevent
  208. * concurrent write operations, either by preventing all writers from
  209. * being preempted or by using a mutex to govern writes to the ring buffer.
  210. *
  211. * @param buf Address of ring buffer.
  212. * @param type Data item's type identifier (application specific).
  213. * @param value Data item's integer value (application specific).
  214. * @param data Address of data item.
  215. * @param size32 Data item size (number of 32-bit words).
  216. *
  217. * @retval 0 Data item was written.
  218. * @retval -EMSGSIZE Ring buffer has insufficient free space.
  219. */
  220. int ring_buf_item_put(struct ring_buf *buf, uint16_t type, uint8_t value,
  221. uint32_t *data, uint8_t size32);
  222. /**
  223. * @brief Read a data item from a ring buffer.
  224. *
  225. * This routine reads a data item from ring buffer @a buf. The data item
  226. * is an array of 32-bit words (up to 1020 bytes in length),
  227. * coupled with a 16-bit type identifier and an 8-bit integer value.
  228. *
  229. * @warning
  230. * Use cases involving multiple reads of the ring buffer must prevent
  231. * concurrent read operations, either by preventing all readers from
  232. * being preempted or by using a mutex to govern reads to the ring buffer.
  233. *
  234. * @param buf Address of ring buffer.
  235. * @param type Area to store the data item's type identifier.
  236. * @param value Area to store the data item's integer value.
  237. * @param data Area to store the data item. Can be NULL to discard data.
  238. * @param size32 Size of the data item storage area (number of 32-bit chunks).
  239. *
  240. * @retval 0 Data item was fetched; @a size32 now contains the number of
  241. * 32-bit words read into data area @a data.
  242. * @retval -EAGAIN Ring buffer is empty.
  243. * @retval -EMSGSIZE Data area @a data is too small; @a size32 now contains
  244. * the number of 32-bit words needed.
  245. */
  246. int ring_buf_item_get(struct ring_buf *buf, uint16_t *type, uint8_t *value,
  247. uint32_t *data, uint8_t *size32);
  248. /**
  249. * @brief Allocate buffer for writing data to a ring buffer.
  250. *
  251. * With this routine, memory copying can be reduced since internal ring buffer
  252. * can be used directly by the user. Once data is written to allocated area
  253. * number of bytes written can be confirmed (see @ref ring_buf_put_finish).
  254. *
  255. * @warning
  256. * Use cases involving multiple writers to the ring buffer must prevent
  257. * concurrent write operations, either by preventing all writers from
  258. * being preempted or by using a mutex to govern writes to the ring buffer.
  259. *
  260. * @warning
  261. * Ring buffer instance should not mix byte access and item access
  262. * (calls prefixed with ring_buf_item_).
  263. *
  264. * @param[in] buf Address of ring buffer.
  265. * @param[out] data Pointer to the address. It is set to a location within
  266. * ring buffer.
  267. * @param[in] size Requested allocation size (in bytes).
  268. *
  269. * @return Size of allocated buffer which can be smaller than requested if
  270. * there is not enough free space or buffer wraps.
  271. */
  272. uint32_t ring_buf_put_claim(struct ring_buf *buf,
  273. uint8_t **data,
  274. uint32_t size);
  275. /**
  276. * @brief Indicate number of bytes written to allocated buffers.
  277. *
  278. * @warning
  279. * Use cases involving multiple writers to the ring buffer must prevent
  280. * concurrent write operations, either by preventing all writers from
  281. * being preempted or by using a mutex to govern writes to the ring buffer.
  282. *
  283. * @warning
  284. * Ring buffer instance should not mix byte access and item access
  285. * (calls prefixed with ring_buf_item_).
  286. *
  287. * @param buf Address of ring buffer.
  288. * @param size Number of valid bytes in the allocated buffers.
  289. *
  290. * @retval 0 Successful operation.
  291. * @retval -EINVAL Provided @a size exceeds free space in the ring buffer.
  292. */
  293. int ring_buf_put_finish(struct ring_buf *buf, uint32_t size);
  294. /**
  295. * @brief Write (copy) data to a ring buffer.
  296. *
  297. * This routine writes data to a ring buffer @a buf.
  298. *
  299. * @warning
  300. * Use cases involving multiple writers to the ring buffer must prevent
  301. * concurrent write operations, either by preventing all writers from
  302. * being preempted or by using a mutex to govern writes to the ring buffer.
  303. *
  304. * @warning
  305. * Ring buffer instance should not mix byte access and item access
  306. * (calls prefixed with ring_buf_item_).
  307. *
  308. * @param buf Address of ring buffer.
  309. * @param data Address of data.
  310. * @param size Data size (in bytes).
  311. *
  312. * @retval Number of bytes written.
  313. */
  314. uint32_t ring_buf_put(struct ring_buf *buf, const uint8_t *data, uint32_t size);
  315. /**
  316. * @brief Get address of a valid data in a ring buffer.
  317. *
  318. * With this routine, memory copying can be reduced since internal ring buffer
  319. * can be used directly by the user. Once data is processed it can be freed
  320. * using @ref ring_buf_get_finish.
  321. *
  322. * @warning
  323. * Use cases involving multiple reads of the ring buffer must prevent
  324. * concurrent read operations, either by preventing all readers from
  325. * being preempted or by using a mutex to govern reads to the ring buffer.
  326. *
  327. * @warning
  328. * Ring buffer instance should not mix byte access and item access
  329. * (calls prefixed with ring_buf_item_).
  330. *
  331. * @param[in] buf Address of ring buffer.
  332. * @param[out] data Pointer to the address. It is set to a location within
  333. * ring buffer.
  334. * @param[in] size Requested size (in bytes).
  335. *
  336. * @return Number of valid bytes in the provided buffer which can be smaller
  337. * than requested if there is not enough free space or buffer wraps.
  338. */
  339. uint32_t ring_buf_get_claim(struct ring_buf *buf,
  340. uint8_t **data,
  341. uint32_t size);
  342. /**
  343. * @brief Indicate number of bytes read from claimed buffer.
  344. *
  345. * @warning
  346. * Use cases involving multiple reads of the ring buffer must prevent
  347. * concurrent read operations, either by preventing all readers from
  348. * being preempted or by using a mutex to govern reads to the ring buffer.
  349. *
  350. * @warning
  351. * Ring buffer instance should not mix byte access and item mode
  352. * (calls prefixed with ring_buf_item_).
  353. *
  354. * @param buf Address of ring buffer.
  355. * @param size Number of bytes that can be freed.
  356. *
  357. * @retval 0 Successful operation.
  358. * @retval -EINVAL Provided @a size exceeds valid bytes in the ring buffer.
  359. */
  360. int ring_buf_get_finish(struct ring_buf *buf, uint32_t size);
  361. /**
  362. * @brief Read data from a ring buffer.
  363. *
  364. * This routine reads data from a ring buffer @a buf.
  365. *
  366. * @warning
  367. * Use cases involving multiple reads of the ring buffer must prevent
  368. * concurrent read operations, either by preventing all readers from
  369. * being preempted or by using a mutex to govern reads to the ring buffer.
  370. *
  371. * @warning
  372. * Ring buffer instance should not mix byte access and item mode
  373. * (calls prefixed with ring_buf_item_).
  374. *
  375. * @param buf Address of ring buffer.
  376. * @param data Address of the output buffer. Can be NULL to discard data.
  377. * @param size Data size (in bytes).
  378. *
  379. * @retval Number of bytes written to the output buffer.
  380. */
  381. uint32_t ring_buf_get(struct ring_buf *buf, uint8_t *data, uint32_t size);
  382. /**
  383. * @brief Peek at data from a ring buffer.
  384. *
  385. * This routine reads data from a ring buffer @a buf without removal.
  386. *
  387. * @warning
  388. * Use cases involving multiple reads of the ring buffer must prevent
  389. * concurrent read operations, either by preventing all readers from
  390. * being preempted or by using a mutex to govern reads to the ring buffer.
  391. *
  392. * @warning
  393. * Ring buffer instance should not mix byte access and item mode
  394. * (calls prefixed with ring_buf_item_).
  395. *
  396. * @warning
  397. * Multiple calls to peek will result in the same data being 'peeked'
  398. * multiple times. To remove data, use either @ref ring_buf_get or
  399. * @ref ring_buf_get_claim followed by @ref ring_buf_get_finish with a
  400. * non-zero `size`.
  401. *
  402. * @param buf Address of ring buffer.
  403. * @param data Address of the output buffer. Cannot be NULL.
  404. * @param size Data size (in bytes).
  405. *
  406. * @retval Number of bytes written to the output buffer.
  407. */
  408. uint32_t ring_buf_peek(struct ring_buf *buf, uint8_t *data, uint32_t size);
  409. /**
  410. * @}
  411. */
  412. #ifdef __cplusplus
  413. }
  414. #endif
  415. #endif /* ZEPHYR_INCLUDE_SYS_RING_BUFFER_H_ */