Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plat-k3: set TRNG as enabled unconditionally #7052

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions core/arch/arm/plat-k3/conf.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CFG_WITH_STATS ?= y
CFG_CRYPTO_WITH_CE ?= y
CFG_CONSOLE_UART ?= 0
CFG_WITH_SOFTWARE_PRNG ?= n

CFG_TZDRAM_START ?= 0x9e800000
CFG_TZDRAM_SIZE ?= 0x01400000 # 20MB
Expand All @@ -22,12 +23,6 @@ ifneq (,$(filter ${PLATFORM_FLAVOR},am65x))
$(call force,CFG_CORE_CLUSTER_SHIFT,1)
endif

ifneq (,$(filter ${PLATFORM_FLAVOR},am65x j721e j784s4 am64x am62x))
CFG_WITH_SOFTWARE_PRNG ?= n
else
$(call force,CFG_WITH_SOFTWARE_PRNG,y)
endif

ifneq ($(CFG_WITH_SOFTWARE_PRNG),y)
$(call force,CFG_SA2UL,y)
CFG_HWRNG_QUALITY ?= 1024
Expand Down