summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/archrandom.h
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2013-10-11 14:07:57 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2013-10-11 16:50:19 +1100
commita4da0d50b2a00b79390092e6248ca88b7d93c81d (patch)
tree4a481f28de594306b612938e037dd015114c2fd7 /arch/powerpc/include/asm/archrandom.h
parentf95dabef4c70e27e5114f4802fe6234ff82ce406 (diff)
downloadop-kernel-dev-a4da0d50b2a00b79390092e6248ca88b7d93c81d.zip
op-kernel-dev-a4da0d50b2a00b79390092e6248ca88b7d93c81d.tar.gz
powerpc: Implement arch_get_random_long/int() for powernv
Add the plumbing to implement arch_get_random_long/int(). It didn't seem worth adding an extra ppc_md hook for int, so we reuse the one for long. Add an implementation for powernv based on the hwrng found in power7+ systems. We whiten the output of the hwrng, and the result passes all the dieharder tests. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/archrandom.h')
-rw-r--r--arch/powerpc/include/asm/archrandom.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/archrandom.h b/arch/powerpc/include/asm/archrandom.h
new file mode 100644
index 0000000..d853d16
--- /dev/null
+++ b/arch/powerpc/include/asm/archrandom.h
@@ -0,0 +1,32 @@
+#ifndef _ASM_POWERPC_ARCHRANDOM_H
+#define _ASM_POWERPC_ARCHRANDOM_H
+
+#ifdef CONFIG_ARCH_RANDOM
+
+#include <asm/machdep.h>
+
+static inline int arch_get_random_long(unsigned long *v)
+{
+ if (ppc_md.get_random_long)
+ return ppc_md.get_random_long(v);
+
+ return 0;
+}
+
+static inline int arch_get_random_int(unsigned int *v)
+{
+ unsigned long val;
+ int rc;
+
+ rc = arch_get_random_long(&val);
+ if (rc)
+ *v = val;
+
+ return rc;
+}
+
+int powernv_get_random_long(unsigned long *v);
+
+#endif /* CONFIG_ARCH_RANDOM */
+
+#endif /* _ASM_POWERPC_ARCHRANDOM_H */
OpenPOWER on IntegriCloud