Change all the Intel and Wind River code license from BSD-3 to Apache 2. Change-Id: Id8be2c1c161a06ea8a0b9f38e17660e11dbb384b Signed-off-by: Javier B Perez Hernandez <javier.b.perez.hernandez@linux.intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com> Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
75 lines
1.9 KiB
C
75 lines
1.9 KiB
C
/* non-random number generator based on system timer */
|
|
|
|
/*
|
|
* Copyright (c) 2013-2015 Wind River Systems, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/*
|
|
DESCRIPTION
|
|
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.
|
|
*/
|
|
|
|
#include <drivers/rand32.h>
|
|
#include <drivers/system_timer.h>
|
|
#include <nanokernel.h>
|
|
#include <atomic.h>
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
/*
|
|
* Symbols used to ensure a rapid series of calls to random number generator
|
|
* return different values.
|
|
*/
|
|
static atomic_val_t _rand32_counter = 0;
|
|
|
|
#define _RAND32_INC 1000000013
|
|
|
|
/**
|
|
*
|
|
* @brief Initialize the random number generator
|
|
*
|
|
* The non-random number generator does not require any initialization.
|
|
* This routine is automatically invoked by the kernel during system
|
|
* initialization.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
|
|
void sys_rand32_init(void)
|
|
{
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @brief Get a 32 bit random number
|
|
*
|
|
* The non-random number generator returns values that are based off the
|
|
* target's clock counter, which means that successive calls will return
|
|
* different values.
|
|
*
|
|
* @return a 32-bit number
|
|
*/
|
|
|
|
uint32_t sys_rand32_get(void)
|
|
{
|
|
return _sys_clock_cycle_get() + atomic_add(&_rand32_counter, _RAND32_INC);
|
|
}
|
|
|
|
#endif /* __GNUC__ */
|