zephyr/drivers/random/Kconfig
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

80 lines
2.1 KiB
Plaintext

# Kconfig - random generator driver configuration options
#
# Copyright (c) 2014-2015 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig RANDOM_GENERATOR
bool
prompt "Random Drivers"
default n
help
Include RANDOM drivers in system config.
if RANDOM_GENERATOR
source "drivers/random/Kconfig.mcux"
config RANDOM_HAS_DRIVER
bool
default n
help
This is an option to be enabled by individual random driver
to signal that there is a true random driver.
config RANDOM_NAME
string "Random Device Name"
depends on RANDOM_GENERATOR
default "RANDOM_0"
help
Specify the device name to be used for the RANDOM driver.
config SYS_LOG_RANDOM_LEVEL
int "Random Log level"
depends on SYS_LOG && RANDOM_GENERATOR
default 0
range 0 4
help
Sets log level for random driver.
Levels are:
- 0 OFF: do not write
- 1 ERROR: only write SYS_LOG_ERR
- 2 WARNING: write SYS_LOG_WRN in addition to previous level
- 3 INFO: write SYS_LOG_INF in addition to previous levels
- 4 DEBUG: write SYS_LOG_DBG in addition to previous levels
config TEST_RANDOM_GENERATOR
bool
prompt "Non-random number generator"
depends on RANDOM_GENERATOR && ! RANDOM_HAS_DRIVER
default n
help
This option signifies that the kernel's random number APIs are
permitted to return values that are not truly random.
This capability is provided for testing purposes, when a truly random
number generator is not available. The non-random number generator
should not be used in a production environment.
config X86_TSC_RANDOM_GENERATOR
bool
prompt "x86 timestamp counter based number generator"
depends on TEST_RANDOM_GENERATOR && X86
default y
help
This options enables number generator based on timestamp counter
of x86 boards, obtained with rdtsc instruction.
config TIMER_RANDOM_GENERATOR
bool
prompt "System timer clock based number generator"
depends on TEST_RANDOM_GENERATOR && !X86_TSC_RANDOM_GENERATOR
default y
help
This options enables number generator based on system timer
clock. This number generator is not random and used for
testing only.
endif