1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Fast, simple, yet decent quality random number generator based on
4 * a paper by David G. Carta ("Two Fast Implementations of the
5 * `Minimal Standard' Random Number Generator," Communications of the
8 * Copyright (C) 2002 Hewlett-Packard Co
9 * David Mosberger-Tang <davidm@hpl.hp.com>
12 #include <asm/asmmacro.h>
22 GLOBAL_ENTRY(carta_random32)
23 movl a = (16807 << 16) | 16807
25 pmpyshr2.u t0 = a, seed, 0
26 pmpyshr2.u t1 = a, seed, 16
34 dep t0 = 0, hi, 15, 49 // t0 = (hi & 0x7fff)
36 shl t0 = t0, 16 // t0 = (hi & 0x7fff) << 16
37 shr t1 = hi, 15 // t1 = (hi >> 15)
41 cmp.gtu p6, p0 = lo, m
49 cmp.gtu p6, p0 = lo, m