2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Non-random number generator based on x86 CPU timestamp
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This module provides a non-random implementation of sys_rand32_get(), which
|
|
|
|
* is not meant to be used in a final product as a truly random number
|
|
|
|
* generator. It was provided to allow testing on a platform that does not (yet)
|
|
|
|
* provide a random number generator.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-12-05 04:59:37 +08:00
|
|
|
#include <kernel.h>
|
2015-05-29 01:56:47 +08:00
|
|
|
#include <arch/cpu.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <drivers/rand32.h>
|
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Get a 32 bit random number
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
|
|
|
* The non-random number generator returns values that are based off the
|
|
|
|
* CPU's timestamp counter, which means that successive calls will normally
|
|
|
|
* display ever-increasing values.
|
|
|
|
*
|
2015-07-02 05:29:04 +08:00
|
|
|
* @return a 32-bit number
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-05-26 00:22:44 +08:00
|
|
|
uint32_t sys_rand32_get(void)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
2015-04-28 01:40:11 +08:00
|
|
|
return _do_read_cpu_timestamp32();
|
2015-04-11 07:44:37 +08:00
|
|
|
}
|