2019-11-01 20:45:29 +08:00
|
|
|
# Entropy generator driver configuration options
|
2017-10-14 07:30:55 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig ENTROPY_GENERATOR
|
2023-03-27 20:55:23 +08:00
|
|
|
bool "Entropy drivers"
|
2017-10-14 07:30:55 +08:00
|
|
|
help
|
|
|
|
Include entropy drivers in system config.
|
|
|
|
|
|
|
|
if ENTROPY_GENERATOR
|
|
|
|
|
2021-10-20 05:14:27 +08: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 16:27:10 +08:00
|
|
|
source "drivers/entropy/Kconfig.b91"
|
2019-04-26 07:07:31 +08:00
|
|
|
source "drivers/entropy/Kconfig.cc13xx_cc26xx"
|
2017-10-14 07:30:55 +08:00
|
|
|
source "drivers/entropy/Kconfig.mcux"
|
|
|
|
source "drivers/entropy/Kconfig.stm32"
|
|
|
|
source "drivers/entropy/Kconfig.esp32"
|
2017-09-19 16:01:27 +08:00
|
|
|
source "drivers/entropy/Kconfig.nrf5"
|
2018-11-04 07:13:01 +08:00
|
|
|
source "drivers/entropy/Kconfig.sam"
|
2023-01-24 22:17:01 +08:00
|
|
|
source "drivers/entropy/Kconfig.smartbond"
|
2018-02-11 17:34:33 +08:00
|
|
|
source "drivers/entropy/Kconfig.native_posix"
|
2019-04-08 23:12:40 +08:00
|
|
|
source "drivers/entropy/Kconfig.rv32m1"
|
2019-07-19 21:22:22 +08:00
|
|
|
source "drivers/entropy/Kconfig.litex"
|
2020-02-21 22:22:05 +08:00
|
|
|
source "drivers/entropy/Kconfig.gecko"
|
2021-10-07 04:10:36 +08:00
|
|
|
source "drivers/entropy/Kconfig.neorv32"
|
2021-12-23 07:27:19 +08:00
|
|
|
source "drivers/entropy/Kconfig.bt_hci"
|
2022-07-01 22:09:44 +08:00
|
|
|
source "drivers/entropy/Kconfig.psa_crypto"
|
2017-10-14 07:30:55 +08: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
|