Dear Tom, The following changes since commit b182816c1fb436916661949213c543bf4d42250b:
turris_1x: Normalize Kconfig usage (2024-07-13 10:42:15 -0600) are available in the git repository at: g...@source.denx.de:u-boot/custodians/u-boot-samsung.git master for you to fetch changes up to 2269217bbddb3d729f6129dceda8da5b1c73ba05: arm: exynos: Enable TRNG on E850-96 board (2024-07-24 16:37:09 +0900) ---------------------------------------------------------------- Anand Moon (2): dm: exynos: Correct CONFIG_SYS_BOARD setting for Odroid XU3 boards odroid: Fix target platform compilation issue on Odroid-XU3 Sam Protsenko (5): board: samsung: e850-96: Add default partitions board: samsung: e850-96: Load LDFW firmware on board init clk: exynos: Add SSS clocks for Exynos850 rng: Add Exynos TRNG driver arm: exynos: Enable TRNG on E850-96 board arch/arm/dts/exynos850-e850-96-u-boot.dtsi | 11 +++ arch/arm/mach-exynos/Kconfig | 2 + board/samsung/e850-96/Makefile | 4 +- board/samsung/e850-96/e850-96.c | 6 +- board/samsung/e850-96/e850-96.env | 26 +++++++ board/samsung/e850-96/fw.c | 131 +++++++++++++++++++++++++++++++++ board/samsung/e850-96/fw.h | 12 +++ board/samsung/odroid/Makefile | 2 +- board/samsung/smdk5420/Kconfig | 2 +- configs/e850-96_defconfig | 1 + drivers/clk/exynos/clk-exynos850.c | 10 +++ drivers/rng/Kconfig | 13 ++++ drivers/rng/Makefile | 1 + drivers/rng/exynos-trng.c | 291 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 14 files changed, 506 insertions(+), 6 deletions(-) create mode 100644 board/samsung/e850-96/e850-96.env create mode 100644 board/samsung/e850-96/fw.c create mode 100644 board/samsung/e850-96/fw.h create mode 100644 drivers/rng/exynos-trng.c Thanks, Minkyu Kang.