entropy.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**
  2. * @file drivers/entropy.h
  3. *
  4. * @brief Public APIs for the entropy driver.
  5. */
  6. /*
  7. * Copyright (c) 2016 ARM Ltd.
  8. * Copyright (c) 2017 Intel Corporation
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_
  13. #define ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_
  14. /**
  15. * @brief Entropy Interface
  16. * @defgroup entropy_interface Entropy Interface
  17. * @ingroup io_interfaces
  18. * @{
  19. */
  20. #include <zephyr/types.h>
  21. #include <device.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @typedef entropy_get_entropy_t
  27. * @brief Callback API to get entropy.
  28. *
  29. * See entropy_get_entropy() for argument description
  30. */
  31. typedef int (*entropy_get_entropy_t)(const struct device *dev,
  32. uint8_t *buffer,
  33. uint16_t length);
  34. /**
  35. * @typedef entropy_get_entropy_isr_t
  36. * @brief Callback API to get entropy from an ISR.
  37. *
  38. * See entropy_get_entropy_isr() for argument description
  39. */
  40. typedef int (*entropy_get_entropy_isr_t)(const struct device *dev,
  41. uint8_t *buffer,
  42. uint16_t length,
  43. uint32_t flags);
  44. __subsystem struct entropy_driver_api {
  45. entropy_get_entropy_t get_entropy;
  46. entropy_get_entropy_isr_t get_entropy_isr;
  47. };
  48. /**
  49. * @brief Fills a buffer with entropy. Blocks if required in order to
  50. * generate the necessary random data.
  51. *
  52. * @param dev Pointer to the entropy device.
  53. * @param buffer Buffer to fill with entropy.
  54. * @param length Buffer length.
  55. * @retval 0 on success.
  56. * @retval -ERRNO errno code on error.
  57. */
  58. __syscall int entropy_get_entropy(const struct device *dev,
  59. uint8_t *buffer,
  60. uint16_t length);
  61. static inline int z_impl_entropy_get_entropy(const struct device *dev,
  62. uint8_t *buffer,
  63. uint16_t length)
  64. {
  65. const struct entropy_driver_api *api =
  66. (const struct entropy_driver_api *)dev->api;
  67. __ASSERT(api->get_entropy != NULL,
  68. "Callback pointer should not be NULL");
  69. return api->get_entropy(dev, buffer, length);
  70. }
  71. /* Busy-wait for random data to be ready */
  72. #define ENTROPY_BUSYWAIT BIT(0)
  73. /**
  74. * @brief Fills a buffer with entropy in a non-blocking or busy-wait manner.
  75. * Callable from ISRs.
  76. *
  77. * @param dev Pointer to the device structure.
  78. * @param buffer Buffer to fill with entropy.
  79. * @param length Buffer length.
  80. * @param flags Flags to modify the behavior of the call.
  81. * @retval number of bytes filled with entropy or -error.
  82. */
  83. static inline int entropy_get_entropy_isr(const struct device *dev,
  84. uint8_t *buffer,
  85. uint16_t length,
  86. uint32_t flags)
  87. {
  88. const struct entropy_driver_api *api =
  89. (const struct entropy_driver_api *)dev->api;
  90. if (unlikely(!api->get_entropy_isr)) {
  91. return -ENOTSUP;
  92. }
  93. return api->get_entropy_isr(dev, buffer, length, flags);
  94. }
  95. #ifdef __cplusplus
  96. }
  97. #endif
  98. /**
  99. * @}
  100. */
  101. #include <syscalls/entropy.h>
  102. #endif /* ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_ */