mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / char / hw_random / octeon-rng.c
blobf2885dbe1849e03d0691a7cc51a6e85e646a7c0f
1 /*
2 * Hardware Random Number Generator support for Cavium Networks
3 * Octeon processor family.
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
9 * Copyright (C) 2009 Cavium Networks
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
15 #include <linux/device.h>
16 #include <linux/hw_random.h>
17 #include <linux/io.h>
18 #include <linux/gfp.h>
20 #include <asm/octeon/octeon.h>
21 #include <asm/octeon/cvmx-rnm-defs.h>
23 struct octeon_rng {
24 struct hwrng ops;
25 void __iomem *control_status;
26 void __iomem *result;
29 static int octeon_rng_init(struct hwrng *rng)
31 union cvmx_rnm_ctl_status ctl;
32 struct octeon_rng *p = container_of(rng, struct octeon_rng, ops);
34 ctl.u64 = 0;
35 ctl.s.ent_en = 1; /* Enable the entropy source. */
36 ctl.s.rng_en = 1; /* Enable the RNG hardware. */
37 cvmx_write_csr((u64)p->control_status, ctl.u64);
38 return 0;
41 static void octeon_rng_cleanup(struct hwrng *rng)
43 union cvmx_rnm_ctl_status ctl;
44 struct octeon_rng *p = container_of(rng, struct octeon_rng, ops);
46 ctl.u64 = 0;
47 /* Disable everything. */
48 cvmx_write_csr((u64)p->control_status, ctl.u64);
51 static int octeon_rng_data_read(struct hwrng *rng, u32 *data)
53 struct octeon_rng *p = container_of(rng, struct octeon_rng, ops);
55 *data = cvmx_read64_uint32((u64)p->result);
56 return sizeof(u32);
59 static int octeon_rng_probe(struct platform_device *pdev)
61 struct resource *res_ports;
62 struct resource *res_result;
63 struct octeon_rng *rng;
64 int ret;
65 struct hwrng ops = {
66 .name = "octeon",
67 .init = octeon_rng_init,
68 .cleanup = octeon_rng_cleanup,
69 .data_read = octeon_rng_data_read
72 rng = devm_kzalloc(&pdev->dev, sizeof(*rng), GFP_KERNEL);
73 if (!rng)
74 return -ENOMEM;
76 res_ports = platform_get_resource(pdev, IORESOURCE_MEM, 0);
77 if (!res_ports)
78 return -ENOENT;
80 res_result = platform_get_resource(pdev, IORESOURCE_MEM, 1);
81 if (!res_result)
82 return -ENOENT;
85 rng->control_status = devm_ioremap_nocache(&pdev->dev,
86 res_ports->start,
87 sizeof(u64));
88 if (!rng->control_status)
89 return -ENOENT;
91 rng->result = devm_ioremap_nocache(&pdev->dev,
92 res_result->start,
93 sizeof(u64));
94 if (!rng->result)
95 return -ENOENT;
97 rng->ops = ops;
99 platform_set_drvdata(pdev, &rng->ops);
100 ret = hwrng_register(&rng->ops);
101 if (ret)
102 return -ENOENT;
104 dev_info(&pdev->dev, "Octeon Random Number Generator\n");
106 return 0;
109 static int __exit octeon_rng_remove(struct platform_device *pdev)
111 struct hwrng *rng = platform_get_drvdata(pdev);
113 hwrng_unregister(rng);
115 return 0;
118 static struct platform_driver octeon_rng_driver = {
119 .driver = {
120 .name = "octeon_rng",
121 .owner = THIS_MODULE,
123 .probe = octeon_rng_probe,
124 .remove = __exit_p(octeon_rng_remove),
127 module_platform_driver(octeon_rng_driver);
129 MODULE_AUTHOR("David Daney");
130 MODULE_LICENSE("GPL");