GNU Linux-libre 4.14.332-gnu1
[releases.git] / arch / powerpc / platforms / pseries / rng.c
1 /*
2  * Copyright 2013, Michael Ellerman, IBM Corporation.
3  *
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.
8  */
9
10 #define pr_fmt(fmt)     "pseries-rng: " fmt
11
12 #include <linux/kernel.h>
13 #include <linux/of.h>
14 #include <asm/archrandom.h>
15 #include <asm/machdep.h>
16 #include <asm/plpar_wrappers.h>
17 #include "pseries.h"
18
19
20 static int pseries_get_random_long(unsigned long *v)
21 {
22         unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
23
24         if (plpar_hcall(H_RANDOM, retbuf) == H_SUCCESS) {
25                 *v = retbuf[0];
26                 return 1;
27         }
28
29         return 0;
30 }
31
32 void __init pseries_rng_init(void)
33 {
34         struct device_node *dn;
35
36         dn = of_find_compatible_node(NULL, NULL, "ibm,random");
37         if (!dn)
38                 return;
39         ppc_md.get_random_seed = pseries_get_random_long;
40         of_node_put(dn);
41 }