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