mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 04:31:56 +00:00
Kconfig.rv32m1 is already 'source'd within an 'if ENTROPY_GENERATOR', so ENTROPY_RV32M1_TRNG does not need a 'depends on ENTROPY_GENERATOR'. Flagged by https://github.com/zephyrproject-rtos/ci-tools/pull/128. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
19 lines
573 B
Plaintext
19 lines
573 B
Plaintext
# RV32M1 entropy generator driver configuration
|
|
|
|
# Copyright 2019 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ENTROPY_RV32M1_TRNG
|
|
bool "RV32M1 TRNG driver"
|
|
depends on SOC_OPENISA_RV32M1_RISCV32
|
|
select ENTROPY_HAS_DRIVER
|
|
help
|
|
This option enables the true random number generator (TRNG)
|
|
driver based on the RV32M1 TRNG driver.
|
|
|
|
# Don't use use the RV32M1 TRNG as a random source since it can be quite slow.
|
|
# Instead, use the software implemented xoroshiro RNG.
|
|
choice RNG_GENERATOR_CHOICE
|
|
default XOROSHIRO_RANDOM_GENERATOR if ENTROPY_RV32M1_TRNG
|
|
endchoice
|