1# Entropy generator driver configuration options
2
3# Copyright (c) 2014-2015 Wind River Systems, Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig ENTROPY_GENERATOR
7	bool "Entropy drivers"
8	help
9	  Include entropy drivers in system config.
10
11if ENTROPY_GENERATOR
12
13module = ENTROPY
14module-str = entropy
15source "subsys/logging/Kconfig.template.log_config"
16
17config ENTROPY_INIT_PRIORITY
18	int "Entropy driver init priority"
19	default KERNEL_INIT_PRIORITY_DEVICE
20	help
21	  Entropy driver device initialization priority.
22
23# zephyr-keep-sorted-start
24source "drivers/entropy/Kconfig.ambiq"
25source "drivers/entropy/Kconfig.b91"
26source "drivers/entropy/Kconfig.bt_hci"
27source "drivers/entropy/Kconfig.cc13xx_cc26xx"
28source "drivers/entropy/Kconfig.esp32"
29source "drivers/entropy/Kconfig.gecko"
30source "drivers/entropy/Kconfig.iproc"
31source "drivers/entropy/Kconfig.litex"
32source "drivers/entropy/Kconfig.max32"
33source "drivers/entropy/Kconfig.maxq10xx"
34source "drivers/entropy/Kconfig.mchp"
35source "drivers/entropy/Kconfig.mcux"
36source "drivers/entropy/Kconfig.mspm0_trng"
37source "drivers/entropy/Kconfig.native_sim"
38source "drivers/entropy/Kconfig.neorv32"
39source "drivers/entropy/Kconfig.npcx"
40source "drivers/entropy/Kconfig.nrf5"
41source "drivers/entropy/Kconfig.nrf_cracen"
42source "drivers/entropy/Kconfig.nxp"
43source "drivers/entropy/Kconfig.psa_crypto"
44source "drivers/entropy/Kconfig.renesas_ra"
45source "drivers/entropy/Kconfig.rv32m1"
46source "drivers/entropy/Kconfig.sam"
47source "drivers/entropy/Kconfig.sf32lb"
48source "drivers/entropy/Kconfig.siwx91x"
49source "drivers/entropy/Kconfig.smartbond"
50source "drivers/entropy/Kconfig.stm32"
51source "drivers/entropy/Kconfig.sy1xx"
52source "drivers/entropy/Kconfig.virtio"
53# zephyr-keep-sorted-stop
54
55config ENTROPY_HAS_DRIVER
56	bool
57	help
58	  This is an option to be enabled by individual entropy driver
59	  to signal that there is a true entropy driver.
60
61endif
62