2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2015 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 system timer
|
|
|
|
*
|
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
|
|
|
|
|
|
|
#include <drivers/rand32.h>
|
|
|
|
#include <drivers/system_timer.h>
|
2016-12-05 04:59:37 +08:00
|
|
|
#include <kernel.h>
|
2015-05-23 04:25:54 +08:00
|
|
|
#include <atomic.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
|
2015-05-25 23:07:09 +08:00
|
|
|
/*
|
|
|
|
* Symbols used to ensure a rapid series of calls to random number generator
|
|
|
|
* return different values.
|
|
|
|
*/
|
2015-10-15 07:12:09 +08:00
|
|
|
static atomic_val_t _rand32_counter;
|
2015-05-25 23:07:09 +08:00
|
|
|
|
|
|
|
#define _RAND32_INC 1000000013
|
|
|
|
|
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
|
2015-05-25 23:07:09 +08:00
|
|
|
* target's clock counter, which means that successive calls will return
|
|
|
|
* different values.
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
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
|
|
|
{
|
2017-01-17 19:25:15 +08:00
|
|
|
return k_cycle_get_32() + atomic_add(&_rand32_counter, _RAND32_INC);
|
2015-04-11 07:44:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __GNUC__ */
|