2 * Copyright (c) 2010-2012 Broadcom. All rights reserved.
3 * Copyright (c) 2013 Lubomir Rintel
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License ("GPL")
7 * version 2, as published by the Free Software Foundation.
10 #include <linux/hw_random.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/of_address.h>
15 #include <linux/of_platform.h>
16 #include <linux/platform_device.h>
17 #include <linux/printk.h>
20 #define RNG_STATUS 0x4
22 #define RNG_INT_MASK 0x10
27 /* the initial numbers generated are "less random" so will be discarded */
28 #define RNG_WARMUP_COUNT 0x40000
30 #define RNG_INT_OFF 0x1
32 static void __init nsp_rng_init(void __iomem *base)
36 /* mask the interrupt */
37 val = readl(base + RNG_INT_MASK);
39 writel(val, base + RNG_INT_MASK);
42 static int bcm2835_rng_read(struct hwrng *rng, void *buf, size_t max,
45 void __iomem *rng_base = (void __iomem *)rng->priv;
46 u32 max_words = max / sizeof(u32);
49 while ((__raw_readl(rng_base + RNG_STATUS) >> 24) == 0) {
55 num_words = readl(rng_base + RNG_STATUS) >> 24;
56 if (num_words > max_words)
57 num_words = max_words;
59 for (count = 0; count < num_words; count++)
60 ((u32 *)buf)[count] = readl(rng_base + RNG_DATA);
62 return num_words * sizeof(u32);
65 static struct hwrng bcm2835_rng_ops = {
67 .read = bcm2835_rng_read,
70 static const struct of_device_id bcm2835_rng_of_match[] = {
71 { .compatible = "brcm,bcm2835-rng"},
72 { .compatible = "brcm,bcm-nsp-rng", .data = nsp_rng_init},
73 { .compatible = "brcm,bcm5301x-rng", .data = nsp_rng_init},
77 static int bcm2835_rng_probe(struct platform_device *pdev)
79 struct device *dev = &pdev->dev;
80 struct device_node *np = dev->of_node;
81 void (*rng_setup)(void __iomem *base);
82 const struct of_device_id *rng_id;
83 void __iomem *rng_base;
87 rng_base = of_iomap(np, 0);
89 dev_err(dev, "failed to remap rng regs");
92 bcm2835_rng_ops.priv = (unsigned long)rng_base;
94 rng_id = of_match_node(bcm2835_rng_of_match, np);
99 /* Check for rng init function, execute it */
100 rng_setup = rng_id->data;
104 /* set warm-up count & enable */
105 __raw_writel(RNG_WARMUP_COUNT, rng_base + RNG_STATUS);
106 __raw_writel(RNG_RBGEN, rng_base + RNG_CTRL);
108 /* register driver */
109 err = hwrng_register(&bcm2835_rng_ops);
111 dev_err(dev, "hwrng registration failed\n");
114 dev_info(dev, "hwrng registered\n");
119 static int bcm2835_rng_remove(struct platform_device *pdev)
121 void __iomem *rng_base = (void __iomem *)bcm2835_rng_ops.priv;
123 /* disable rng hardware */
124 __raw_writel(0, rng_base + RNG_CTRL);
126 /* unregister driver */
127 hwrng_unregister(&bcm2835_rng_ops);
133 MODULE_DEVICE_TABLE(of, bcm2835_rng_of_match);
135 static struct platform_driver bcm2835_rng_driver = {
137 .name = "bcm2835-rng",
138 .of_match_table = bcm2835_rng_of_match,
140 .probe = bcm2835_rng_probe,
141 .remove = bcm2835_rng_remove,
143 module_platform_driver(bcm2835_rng_driver);
145 MODULE_AUTHOR("Lubomir Rintel <lkundrak@v3.sk>");
146 MODULE_DESCRIPTION("BCM2835 Random Number Generator (RNG) driver");
147 MODULE_LICENSE("GPL v2");