2019-11-01 13:45:29 +01:00
|
|
|
# Entropy generator driver configuration options
|
2017-10-14 01:30:55 +02:00
|
|
|
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig ENTROPY_GENERATOR
|
2023-03-27 14:55:23 +02:00
|
|
|
bool "Entropy drivers"
|
2017-10-14 01:30:55 +02:00
|
|
|
help
|
|
|
|
Include entropy drivers in system config.
|
|
|
|
|
|
|
|
if ENTROPY_GENERATOR
|
|
|
|
|
2021-10-19 23:14:27 +02:00
|
|
|
module = ENTROPY
|
|
|
|
module-str = entropy
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
|
|
|
config ENTROPY_INIT_PRIORITY
|
|
|
|
int "Entropy driver init priority"
|
|
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
|
|
help
|
|
|
|
Entropy driver device initialization priority.
|
|
|
|
|
2021-07-26 10:27:10 +02:00
|
|
|
source "drivers/entropy/Kconfig.b91"
|
2019-04-26 01:07:31 +02:00
|
|
|
source "drivers/entropy/Kconfig.cc13xx_cc26xx"
|
2017-10-14 01:30:55 +02:00
|
|
|
source "drivers/entropy/Kconfig.mcux"
|
|
|
|
source "drivers/entropy/Kconfig.stm32"
|
|
|
|
source "drivers/entropy/Kconfig.esp32"
|
2017-09-19 10:01:27 +02:00
|
|
|
source "drivers/entropy/Kconfig.nrf5"
|
2018-11-04 00:13:01 +01:00
|
|
|
source "drivers/entropy/Kconfig.sam"
|
2023-01-24 15:17:01 +01:00
|
|
|
source "drivers/entropy/Kconfig.smartbond"
|
2018-02-11 10:34:33 +01:00
|
|
|
source "drivers/entropy/Kconfig.native_posix"
|
2019-04-08 17:12:40 +02:00
|
|
|
source "drivers/entropy/Kconfig.rv32m1"
|
2019-07-19 15:22:22 +02:00
|
|
|
source "drivers/entropy/Kconfig.litex"
|
2020-02-21 15:22:05 +01:00
|
|
|
source "drivers/entropy/Kconfig.gecko"
|
2021-10-06 22:10:36 +02:00
|
|
|
source "drivers/entropy/Kconfig.neorv32"
|
2021-12-23 00:27:19 +01:00
|
|
|
source "drivers/entropy/Kconfig.bt_hci"
|
2022-07-01 16:09:44 +02:00
|
|
|
source "drivers/entropy/Kconfig.psa_crypto"
|
2017-10-14 01:30:55 +02:00
|
|
|
|
|
|
|
config ENTROPY_HAS_DRIVER
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
This is an option to be enabled by individual entropy driver
|
|
|
|
to signal that there is a true entropy driver.
|
|
|
|
|
|
|
|
endif
|