mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 23:42:47 +00:00
Add dts binding and info for TRNG device and enable basic support to get the device name from DTS. We leave for now the base addresses coming from the MCUX HAL. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
24 lines
666 B
Plaintext
24 lines
666 B
Plaintext
# Kconfig.mcux - mcux entropy generator driver configuration
|
|
#
|
|
# Copyright (c) 2016 ARM Ltd.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig ENTROPY_MCUX_RNGA
|
|
bool "MCUX RNGA driver"
|
|
depends on ENTROPY_GENERATOR && HAS_MCUX_RNGA
|
|
select ENTROPY_HAS_DRIVER
|
|
select HAS_DTS_ENTROPY
|
|
help
|
|
This option enables the random number generator accelerator (RNGA)
|
|
driver based on the MCUX RNGA driver.
|
|
|
|
menuconfig ENTROPY_MCUX_TRNG
|
|
bool "MCUX TRNG driver"
|
|
depends on ENTROPY_GENERATOR && HAS_MCUX_TRNG
|
|
select ENTROPY_HAS_DRIVER
|
|
select HAS_DTS_ENTROPY
|
|
help
|
|
This option enables the true random number generator (TRNG)
|
|
driver based on the MCUX TRNG driver.
|