boards: renesas: add entropy support for Renesas RA8 boards

Enable support of entropy driver for ek_ra8d1 and mck_ra8t1 boards

Signed-off-by: The Nguyen <the.nguyen.yf@renesas.com>
This commit is contained in:
The Nguyen 2024-08-26 13:35:37 +07:00 committed by Anas Nashif
commit 71e3a98b77
4 changed files with 14 additions and 0 deletions

View file

@ -98,6 +98,8 @@ The below features are currently supported on Zephyr OS for EK-RA8D1 board:
+--------------+------------+------------------+
| CLOCK | on-chip | clock control |
+--------------+------------+------------------+
| ENTROPY | on-chip | entropy |
+--------------+------------+------------------+
Other hardware features are currently not supported by the port.

View file

@ -19,6 +19,7 @@
zephyr,flash = &flash0;
zephyr,console = &uart9;
zephyr,shell-uart = &uart9;
zephyr,entropy = &trng;
};
leds {
@ -99,3 +100,7 @@
status = "okay";
};
};
&trng {
status = "okay";
};

View file

@ -96,6 +96,8 @@ The below features are currently supported on Zephyr OS for MCB-RA8T1 board:
+--------------+------------+----------------------+
| CLOCK | on-chip | clock control |
+--------------+------------+----------------------+
| ENTROPY | on-chip | entropy |
+--------------+------------+----------------------+
Other hardware features are currently not supported by the port.

View file

@ -19,6 +19,7 @@
zephyr,flash = &flash0;
zephyr,console = &uart3;
zephyr,shell-uart = &uart3;
zephyr,entropy = &trng;
};
leds {
@ -93,3 +94,7 @@
status = "okay";
};
};
&trng {
status = "okay";
};