summaryrefslogtreecommitdiffstats
path: root/drivers/hw_random/Kconfig
blob: 492105456821566cd6d2dd915af144d3c1246074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
menuconfig HWRNG
	bool "HWRNG Support"
	help
	  Support for HWRNG(Hardware Random Number Generator) devices.

	  If unsure, say no.

if HWRNG

config HWRNG_MXC_RNGC
	tristate "Freescale i.MX RNGC Random Number Generator"
	depends on ARCH_IMX25 || ARCH_IMX35 || ARCH_IMX53
	help
	  This driver provides kernel-side support for the Random Number
	  Generator hardware found on some Freescale i.MX processors.

config HWRNG_STM32
	tristate "STM32 Random Number Generator"
	depends on ARCH_STM32MP
	help
	  This driver provides barebox support for the Random Number
	  Generator hardware found on the STM32 family of MPUs and MCUs.

config HWRNG_DEV_RANDOM
	tristate "Linux /dev/urandom RNG"
	depends on SANDBOX
	default y
	help
	  This driver allows use of the host provided /dev/urandom
	  as barebox HWRNGs.

endif