2 * Copyright 2013, Michael Ellerman, IBM Corporation.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #define pr_fmt(fmt) "powernv-rng: " fmt
12 #include <linux/kernel.h>
14 #include <linux/of_address.h>
15 #include <linux/of_platform.h>
16 #include <linux/slab.h>
17 #include <linux/smp.h>
18 #include <asm/archrandom.h>
21 #include <asm/machdep.h>
27 void __iomem *regs_real;
31 static DEFINE_PER_CPU(struct powernv_rng *, powernv_rng);
34 int powernv_hwrng_present(void)
36 struct powernv_rng *rng;
38 rng = get_cpu_var(powernv_rng);
43 static unsigned long rng_whiten(struct powernv_rng *rng, unsigned long val)
47 /* Calculate the parity of the value */
48 asm ("popcntd %0,%1" : "=r" (parity) : "r" (val));
50 /* xor our value with the previous mask */
53 /* update the mask based on the parity of this value */
54 rng->mask = (rng->mask << 1) | (parity & 1);
59 int powernv_get_random_real_mode(unsigned long *v)
61 struct powernv_rng *rng;
63 rng = raw_cpu_read(powernv_rng);
65 *v = rng_whiten(rng, __raw_rm_readq(rng->regs_real));
70 int powernv_get_random_long(unsigned long *v)
72 struct powernv_rng *rng;
74 rng = get_cpu_var(powernv_rng);
76 *v = rng_whiten(rng, in_be64(rng->regs));
82 EXPORT_SYMBOL_GPL(powernv_get_random_long);
84 static __init void rng_init_per_cpu(struct powernv_rng *rng,
85 struct device_node *dn)
89 chip_id = of_get_ibm_chip_id(dn);
91 pr_warn("No ibm,chip-id found for %s.\n", dn->full_name);
93 for_each_possible_cpu(cpu) {
94 if (per_cpu(powernv_rng, cpu) == NULL ||
95 cpu_to_chip_id(cpu) == chip_id) {
96 per_cpu(powernv_rng, cpu) = rng;
101 static __init int rng_create(struct device_node *dn)
103 struct powernv_rng *rng;
107 rng = kzalloc(sizeof(*rng), GFP_KERNEL);
111 if (of_address_to_resource(dn, 0, &res)) {
116 rng->regs_real = (void __iomem *)res.start;
118 rng->regs = of_iomap(dn, 0);
124 val = in_be64(rng->regs);
127 rng_init_per_cpu(rng, dn);
129 pr_info_once("Registering arch random hook.\n");
131 ppc_md.get_random_seed = powernv_get_random_long;
136 static __init int rng_init(void)
138 struct device_node *dn;
141 for_each_compatible_node(dn, NULL, "ibm,power-rng") {
144 pr_err("Failed creating rng for %s (%d).\n",
149 /* Create devices for hwrng driver */
150 of_platform_device_create(dn, NULL, NULL);
155 machine_subsys_initcall(powernv, rng_init);