mpsc_packet.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_MPSC_PACKET_H_
  7. #define ZEPHYR_INCLUDE_SYS_MPSC_PACKET_H_
  8. #include <string.h>
  9. #include <stdint.h>
  10. #include <stdbool.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @brief Multi producer, single consumer packet header
  16. * @defgroup mpsc_packet MPSC (Multi producer, single consumer) packet header
  17. * @ingroup mpsc_buf
  18. * @{
  19. */
  20. /** @brief Number of bits in the first word which are used by the buffer. */
  21. #define MPSC_PBUF_HDR_BITS 2
  22. /** @brief Header that must be added to the first word in each packet.
  23. *
  24. * This fields are controlled by the packet buffer and unless specified must
  25. * not be used. Fields must be added at the top of the packet header structure.
  26. */
  27. #define MPSC_PBUF_HDR \
  28. uint32_t valid: 1; \
  29. uint32_t busy: 1
  30. /** @brief Generic packet header. */
  31. struct mpsc_pbuf_hdr {
  32. MPSC_PBUF_HDR;
  33. uint32_t data: 32 - MPSC_PBUF_HDR_BITS;
  34. };
  35. /** @brief Skip packet used internally by the packet buffer. */
  36. struct mpsc_pbuf_skip {
  37. MPSC_PBUF_HDR;
  38. uint32_t len: 32 - MPSC_PBUF_HDR_BITS;
  39. };
  40. /** @brief Generic packet header. */
  41. union mpsc_pbuf_generic {
  42. struct mpsc_pbuf_hdr hdr;
  43. struct mpsc_pbuf_skip skip;
  44. uint32_t raw;
  45. };
  46. /**
  47. * @}
  48. */
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif /* ZEPHYR_INCLUDE_SYS_MPSC_PACKET_H_ */