Merge tag 'char-misc-4.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux-2.6-block.git] / drivers / char / hw_random / bcm63xx-rng.c
1 /*
2  * Broadcom BCM63xx Random Number Generator support
3  *
4  * Copyright (C) 2011, Florian Fainelli <florian@openwrt.org>
5  * Copyright (C) 2009, Broadcom Corporation
6  *
7  */
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/io.h>
11 #include <linux/err.h>
12 #include <linux/clk.h>
13 #include <linux/platform_device.h>
14 #include <linux/hw_random.h>
15
16 #define RNG_CTRL                        0x00
17 #define RNG_EN                          (1 << 0)
18
19 #define RNG_STAT                        0x04
20 #define RNG_AVAIL_MASK                  (0xff000000)
21
22 #define RNG_DATA                        0x08
23 #define RNG_THRES                       0x0c
24 #define RNG_MASK                        0x10
25
26 struct bcm63xx_rng_priv {
27         struct hwrng rng;
28         struct clk *clk;
29         void __iomem *regs;
30 };
31
32 #define to_rng_priv(rng)        container_of(rng, struct bcm63xx_rng_priv, rng)
33
34 static int bcm63xx_rng_init(struct hwrng *rng)
35 {
36         struct bcm63xx_rng_priv *priv = to_rng_priv(rng);
37         u32 val;
38         int error;
39
40         error = clk_prepare_enable(priv->clk);
41         if (error)
42                 return error;
43
44         val = __raw_readl(priv->regs + RNG_CTRL);
45         val |= RNG_EN;
46         __raw_writel(val, priv->regs + RNG_CTRL);
47
48         return 0;
49 }
50
51 static void bcm63xx_rng_cleanup(struct hwrng *rng)
52 {
53         struct bcm63xx_rng_priv *priv = to_rng_priv(rng);
54         u32 val;
55
56         val = __raw_readl(priv->regs + RNG_CTRL);
57         val &= ~RNG_EN;
58         __raw_writel(val, priv->regs + RNG_CTRL);
59
60         clk_disable_unprepare(priv->clk);
61 }
62
63 static int bcm63xx_rng_data_present(struct hwrng *rng, int wait)
64 {
65         struct bcm63xx_rng_priv *priv = to_rng_priv(rng);
66
67         return __raw_readl(priv->regs + RNG_STAT) & RNG_AVAIL_MASK;
68 }
69
70 static int bcm63xx_rng_data_read(struct hwrng *rng, u32 *data)
71 {
72         struct bcm63xx_rng_priv *priv = to_rng_priv(rng);
73
74         *data = __raw_readl(priv->regs + RNG_DATA);
75
76         return 4;
77 }
78
79 static int bcm63xx_rng_probe(struct platform_device *pdev)
80 {
81         struct resource *r;
82         int ret;
83         struct bcm63xx_rng_priv *priv;
84
85         r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
86         if (!r) {
87                 dev_err(&pdev->dev, "no iomem resource\n");
88                 return -ENXIO;
89         }
90
91         priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
92         if (!priv)
93                 return -ENOMEM;
94
95         priv->rng.name = pdev->name;
96         priv->rng.init = bcm63xx_rng_init;
97         priv->rng.cleanup = bcm63xx_rng_cleanup;
98         priv->rng.data_present = bcm63xx_rng_data_present;
99         priv->rng.data_read = bcm63xx_rng_data_read;
100
101         priv->clk = devm_clk_get(&pdev->dev, "ipsec");
102         if (IS_ERR(priv->clk)) {
103                 ret = PTR_ERR(priv->clk);
104                 dev_err(&pdev->dev, "no clock for device: %d\n", ret);
105                 return ret;
106         }
107
108         if (!devm_request_mem_region(&pdev->dev, r->start,
109                                         resource_size(r), pdev->name)) {
110                 dev_err(&pdev->dev, "request mem failed");
111                 return -EBUSY;
112         }
113
114         priv->regs = devm_ioremap_nocache(&pdev->dev, r->start,
115                                         resource_size(r));
116         if (!priv->regs) {
117                 dev_err(&pdev->dev, "ioremap failed");
118                 return -ENOMEM;
119         }
120
121         ret = devm_hwrng_register(&pdev->dev, &priv->rng);
122         if (ret) {
123                 dev_err(&pdev->dev, "failed to register rng device: %d\n",
124                         ret);
125                 return ret;
126         }
127
128         dev_info(&pdev->dev, "registered RNG driver\n");
129
130         return 0;
131 }
132
133 #ifdef CONFIG_OF
134 static const struct of_device_id bcm63xx_rng_of_match[] = {
135         { .compatible = "brcm,bcm6368-rng", },
136         {},
137 };
138 MODULE_DEVICE_TABLE(of, bcm63xx_rng_of_match);
139 #endif
140
141 static struct platform_driver bcm63xx_rng_driver = {
142         .probe          = bcm63xx_rng_probe,
143         .driver         = {
144                 .name   = "bcm63xx-rng",
145                 .of_match_table = of_match_ptr(bcm63xx_rng_of_match),
146         },
147 };
148
149 module_platform_driver(bcm63xx_rng_driver);
150
151 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
152 MODULE_DESCRIPTION("Broadcom BCM63xx RNG driver");
153 MODULE_LICENSE("GPL");