Commit 71e3a98b authored by The Nguyen's avatar The Nguyen Committed by Anas Nashif
Browse files

boards: renesas: add entropy support for Renesas RA8 boards



Enable support of entropy driver for ek_ra8d1 and mck_ra8t1 boards

Signed-off-by: default avatarThe Nguyen <the.nguyen.yf@renesas.com>
parent 2cce7ff4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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.

+5 −0
Original line number Diff line number Diff line
@@ -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";
};
+2 −0
Original line number Diff line number Diff line
@@ -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.

+5 −0
Original line number Diff line number Diff line
@@ -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";
};