mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
fd52e7f9c7
Add driver for OP-TEE based Random Number Generator on ARM SoCs where hardware entropy sources are not accessible to normal world and the RNG service is provided by a HWRNG Trusted Application (TA). This driver is based on the linux driver: char/hw_random/optee-rng.c Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
13 lines
406 B
Makefile
13 lines
406 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2019, Linaro Limited
|
|
#
|
|
|
|
obj-$(CONFIG_DM_RNG) += rng-uclass.o
|
|
obj-$(CONFIG_RNG_MESON) += meson-rng.o
|
|
obj-$(CONFIG_RNG_SANDBOX) += sandbox_rng.o
|
|
obj-$(CONFIG_RNG_MSM) += msm_rng.o
|
|
obj-$(CONFIG_RNG_OPTEE) += optee_rng.o
|
|
obj-$(CONFIG_RNG_STM32MP1) += stm32mp1_rng.o
|
|
obj-$(CONFIG_RNG_ROCKCHIP) += rockchip_rng.o
|
|
obj-$(CONFIG_RNG_IPROC200) += iproc_rng200.o
|