This is a copy of rand32_timer.c that uses z_do_read_cpu_timestamp32() instead of k_cycle_get_32(), with some logic to ensure different values when called in rapid succession missing. Like the other driver, its reported values are not random, it's a testing generator only. This appears to have no advantages over rand32_timer.c, just remove it. In QEMU emulation, the reported TSC values tend to have the lowest five bits zeroed. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
20 lines
692 B
CMake
20 lines
692 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if (CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR OR
|
|
CONFIG_TIMER_RANDOM_GENERATOR OR
|
|
CONFIG_XOROSHIRO_RANDOM_GENERATOR)
|
|
zephyr_library()
|
|
endif()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_TIMER_RANDOM_GENERATOR rand32_timer.c)
|
|
zephyr_library_sources_ifdef(CONFIG_XOROSHIRO_RANDOM_GENERATOR rand32_xoroshiro128.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CTR_DRBG_CSPRNG_GENERATOR rand32_ctr_drbg.c)
|
|
|
|
if (CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR OR CONFIG_HARDWARE_DEVICE_CS_GENERATOR)
|
|
zephyr_library_sources(rand32_entropy_device.c)
|
|
endif()
|
|
|
|
if (CONFIG_CTR_DRBG_CSPRNG_GENERATOR)
|
|
zephyr_library_link_libraries_ifdef(CONFIG_MBEDTLS mbedTLS)
|
|
endif()
|