blob: d256baf5cee7f4a525c8776576d634b7632bf168 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michael Walle9acf1ca2012-06-05 11:33:14 +00002/*
3 * Simple xorshift PRNG
4 * see http://www.jstatsoft.org/v08/i14/paper
5 *
6 * Copyright (c) 2012 Michael Walle
7 * Michael Walle <michael@walle.cc>
Michael Walle9acf1ca2012-06-05 11:33:14 +00008 */
9
10#include <common.h>
Simon Glass840ef4d2019-11-14 12:57:13 -070011#include <rand.h>
Michael Walle9acf1ca2012-06-05 11:33:14 +000012
13static unsigned int y = 1U;
14
15unsigned int rand_r(unsigned int *seedp)
16{
17 *seedp ^= (*seedp << 13);
18 *seedp ^= (*seedp >> 17);
19 *seedp ^= (*seedp << 5);
20
21 return *seedp;
22}
23
24unsigned int rand(void)
25{
26 return rand_r(&y);
27}
28
29void srand(unsigned int seed)
30{
31 y = seed;
32}