forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentropy_renesas_ra.c
54 lines (43 loc) · 1.39 KB
/
entropy_renesas_ra.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright (c) 2024 Renesas Electronics Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <soc.h>
#include <zephyr/drivers/entropy.h>
#include "hw_sce_trng_private.h"
#include "hw_sce_private.h"
static int entropy_renesas_ra_get_entropy(const struct device *dev, uint8_t *buf, uint16_t len)
{
ARG_UNUSED(dev);
if (buf == NULL) {
return -EINVAL;
}
while (len > 0) {
uint32_t n[4];
const uint32_t to_copy = MIN(sizeof(n), len);
if (FSP_SUCCESS != HW_SCE_RNG_Read(n)) {
return -ENODATA;
}
memcpy(buf, n, to_copy);
buf += to_copy;
len -= to_copy;
}
return 0;
}
static DEVICE_API(entropy, entropy_renesas_ra_api) = {
.get_entropy = entropy_renesas_ra_get_entropy,
};
static int entropy_renesas_ra_init(const struct device *dev)
{
HW_SCE_McuSpecificInit();
return 0;
}
#define RENESAS_RA_ENTROPY_INIT(nodeid) \
DEVICE_DT_DEFINE(nodeid, entropy_renesas_ra_init, NULL, NULL, NULL, PRE_KERNEL_1, \
CONFIG_ENTROPY_INIT_PRIORITY, &entropy_renesas_ra_api)
DT_FOREACH_STATUS_OKAY(renesas_ra_rsip_e51a_trng, RENESAS_RA_ENTROPY_INIT)
DT_FOREACH_STATUS_OKAY(renesas_ra_sce5_rng, RENESAS_RA_ENTROPY_INIT)
DT_FOREACH_STATUS_OKAY(renesas_ra_sce7_rng, RENESAS_RA_ENTROPY_INIT)
DT_FOREACH_STATUS_OKAY(renesas_ra_sce9_rng, RENESAS_RA_ENTROPY_INIT)
DT_FOREACH_STATUS_OKAY(renesas_ra_trng, RENESAS_RA_ENTROPY_INIT)