Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
entropy.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2016 ARM Ltd.
9 * Copyright (c) 2017 Intel Corporation
10 *
11 * SPDX-License-Identifier: Apache-2.0
12 */
13#ifndef ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_
14#define ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_
15
23#include <errno.h>
24
25#include <zephyr/types.h>
26#include <zephyr/device.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
33#define ENTROPY_BUSYWAIT BIT(0)
34
44typedef int (*entropy_get_entropy_t)(const struct device *dev,
45 uint8_t *buffer,
46 uint16_t length);
53typedef int (*entropy_get_entropy_isr_t)(const struct device *dev,
54 uint8_t *buffer,
55 uint16_t length,
57
63__subsystem struct entropy_driver_api {
66};
67
78__syscall int entropy_get_entropy(const struct device *dev,
79 uint8_t *buffer,
80 uint16_t length);
81
82static inline int z_impl_entropy_get_entropy(const struct device *dev,
83 uint8_t *buffer,
84 uint16_t length)
85{
86 const struct entropy_driver_api *api =
87 (const struct entropy_driver_api *)dev->api;
88
89 __ASSERT(api->get_entropy != NULL,
90 "Callback pointer should not be NULL");
91 return api->get_entropy(dev, buffer, length);
92}
93
104static inline int entropy_get_entropy_isr(const struct device *dev,
105 uint8_t *buffer,
106 uint16_t length,
108{
109 const struct entropy_driver_api *api =
110 (const struct entropy_driver_api *)dev->api;
111
112 if (unlikely(!api->get_entropy_isr)) {
113 return -ENOTSUP;
114 }
115
116 return api->get_entropy_isr(dev, buffer, length, flags);
117}
118
119
120#ifdef __cplusplus
121}
122#endif
123
128#include <syscalls/entropy.h>
129
130#endif /* ZEPHYR_INCLUDE_DRIVERS_ENTROPY_H_ */
System error numbers.
int entropy_get_entropy(const struct device *dev, uint8_t *buffer, uint16_t length)
Fills a buffer with entropy.
int(* entropy_get_entropy_t)(const struct device *dev, uint8_t *buffer, uint16_t length)
Callback API to get entropy.
Definition: entropy.h:44
static int entropy_get_entropy_isr(const struct device *dev, uint8_t *buffer, uint16_t length, uint32_t flags)
Fills a buffer with entropy in a non-blocking or busy-wait manner.
Definition: entropy.h:104
int(* entropy_get_entropy_isr_t)(const struct device *dev, uint8_t *buffer, uint16_t length, uint32_t flags)
Callback API to get entropy from an ISR.
Definition: entropy.h:53
#define ENOTSUP
Unsupported value.
Definition: errno.h:115
flags
Definition: parser.h:96
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition: device.h:387
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:393
Entropy driver API structure.
Definition: entropy.h:63
entropy_get_entropy_t get_entropy
Definition: entropy.h:64
entropy_get_entropy_isr_t get_entropy_isr
Definition: entropy.h:65