blob: 6767d965c36c5254e052c84d1b9577af7c0ca5e1 [file] [log] [blame]
Lubomir Rintel8c4196a2013-03-28 07:19:38 +01001/**
2 * Copyright (c) 2010-2012 Broadcom. All rights reserved.
3 * Copyright (c) 2013 Lubomir Rintel
4 *
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.
8 */
9
10#include <linux/hw_random.h>
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010011#include <linux/io.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>
Florian Fainelli791af4f2017-11-07 16:44:44 -080018#include <linux/clk.h>
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010019
20#define RNG_CTRL 0x0
21#define RNG_STATUS 0x4
22#define RNG_DATA 0x8
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -040023#define RNG_INT_MASK 0x10
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010024
25/* enable rng */
26#define RNG_RBGEN 0x1
27
28/* the initial numbers generated are "less random" so will be discarded */
29#define RNG_WARMUP_COUNT 0x40000
30
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -040031#define RNG_INT_OFF 0x1
32
Florian Fainellib7884792017-11-07 16:44:39 -080033struct bcm2835_rng_priv {
34 struct hwrng rng;
35 void __iomem *base;
Florian Fainelli04b154f2017-11-07 16:44:43 -080036 bool mask_interrupts;
Florian Fainelli791af4f2017-11-07 16:44:44 -080037 struct clk *clk;
Florian Fainellib7884792017-11-07 16:44:39 -080038};
39
Florian Fainellib7884792017-11-07 16:44:39 -080040static inline struct bcm2835_rng_priv *to_rng_priv(struct hwrng *rng)
41{
42 return container_of(rng, struct bcm2835_rng_priv, rng);
43}
44
Florian Fainelliabd42022017-11-07 16:44:45 -080045static inline u32 rng_readl(struct bcm2835_rng_priv *priv, u32 offset)
46{
Florian Fainelli6f093592017-11-07 16:44:46 -080047 /* MIPS chips strapped for BE will automagically configure the
48 * peripheral registers for CPU-native byte order.
49 */
50 if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
51 return __raw_readl(priv->base + offset);
52 else
53 return readl(priv->base + offset);
Florian Fainelliabd42022017-11-07 16:44:45 -080054}
55
56static inline void rng_writel(struct bcm2835_rng_priv *priv, u32 val,
57 u32 offset)
58{
Florian Fainelli6f093592017-11-07 16:44:46 -080059 if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
60 __raw_writel(val, priv->base + offset);
61 else
62 writel(val, priv->base + offset);
Florian Fainelliabd42022017-11-07 16:44:45 -080063}
64
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010065static int bcm2835_rng_read(struct hwrng *rng, void *buf, size_t max,
66 bool wait)
67{
Florian Fainellib7884792017-11-07 16:44:39 -080068 struct bcm2835_rng_priv *priv = to_rng_priv(rng);
Yendapally Reddy Dhananjaya Reddy4f8de652016-05-27 06:10:41 -040069 u32 max_words = max / sizeof(u32);
70 u32 num_words, count;
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010071
Florian Fainelliabd42022017-11-07 16:44:45 -080072 while ((rng_readl(priv, RNG_STATUS) >> 24) == 0) {
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010073 if (!wait)
74 return 0;
75 cpu_relax();
76 }
77
Florian Fainelliabd42022017-11-07 16:44:45 -080078 num_words = rng_readl(priv, RNG_STATUS) >> 24;
Yendapally Reddy Dhananjaya Reddy4f8de652016-05-27 06:10:41 -040079 if (num_words > max_words)
80 num_words = max_words;
81
82 for (count = 0; count < num_words; count++)
Florian Fainelliabd42022017-11-07 16:44:45 -080083 ((u32 *)buf)[count] = rng_readl(priv, RNG_DATA);
Yendapally Reddy Dhananjaya Reddy4f8de652016-05-27 06:10:41 -040084
85 return num_words * sizeof(u32);
Lubomir Rintel8c4196a2013-03-28 07:19:38 +010086}
87
Florian Fainellia8157772017-11-07 16:44:40 -080088static int bcm2835_rng_init(struct hwrng *rng)
89{
90 struct bcm2835_rng_priv *priv = to_rng_priv(rng);
Florian Fainelli791af4f2017-11-07 16:44:44 -080091 int ret = 0;
Florian Fainelli04b154f2017-11-07 16:44:43 -080092 u32 val;
93
Florian Fainelli791af4f2017-11-07 16:44:44 -080094 if (!IS_ERR(priv->clk)) {
95 ret = clk_prepare_enable(priv->clk);
96 if (ret)
97 return ret;
98 }
99
Florian Fainelli04b154f2017-11-07 16:44:43 -0800100 if (priv->mask_interrupts) {
101 /* mask the interrupt */
Florian Fainelliabd42022017-11-07 16:44:45 -0800102 val = rng_readl(priv, RNG_INT_MASK);
Florian Fainelli04b154f2017-11-07 16:44:43 -0800103 val |= RNG_INT_OFF;
Florian Fainelliabd42022017-11-07 16:44:45 -0800104 rng_writel(priv, val, RNG_INT_MASK);
Florian Fainelli04b154f2017-11-07 16:44:43 -0800105 }
Florian Fainellia8157772017-11-07 16:44:40 -0800106
107 /* set warm-up count & enable */
Florian Fainelliabd42022017-11-07 16:44:45 -0800108 rng_writel(priv, RNG_WARMUP_COUNT, RNG_STATUS);
109 rng_writel(priv, RNG_RBGEN, RNG_CTRL);
Florian Fainellia8157772017-11-07 16:44:40 -0800110
Florian Fainelli791af4f2017-11-07 16:44:44 -0800111 return ret;
Florian Fainellia8157772017-11-07 16:44:40 -0800112}
113
Florian Fainelliec94bca2017-11-07 16:44:41 -0800114static void bcm2835_rng_cleanup(struct hwrng *rng)
115{
116 struct bcm2835_rng_priv *priv = to_rng_priv(rng);
117
118 /* disable rng hardware */
Florian Fainelliabd42022017-11-07 16:44:45 -0800119 rng_writel(priv, 0, RNG_CTRL);
Florian Fainelli791af4f2017-11-07 16:44:44 -0800120
121 if (!IS_ERR(priv->clk))
122 clk_disable_unprepare(priv->clk);
Florian Fainelliec94bca2017-11-07 16:44:41 -0800123}
124
Florian Fainelli04b154f2017-11-07 16:44:43 -0800125struct bcm2835_rng_of_data {
126 bool mask_interrupts;
127};
128
129static const struct bcm2835_rng_of_data nsp_rng_of_data = {
130 .mask_interrupts = true,
131};
132
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400133static const struct of_device_id bcm2835_rng_of_match[] = {
134 { .compatible = "brcm,bcm2835-rng"},
Florian Fainelli04b154f2017-11-07 16:44:43 -0800135 { .compatible = "brcm,bcm-nsp-rng", .data = &nsp_rng_of_data },
136 { .compatible = "brcm,bcm5301x-rng", .data = &nsp_rng_of_data },
Florian Fainelli8705f242017-11-07 16:44:48 -0800137 { .compatible = "brcm,bcm6368-rng"},
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400138 {},
139};
140
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100141static int bcm2835_rng_probe(struct platform_device *pdev)
142{
Florian Fainelli04b154f2017-11-07 16:44:43 -0800143 const struct bcm2835_rng_of_data *of_data;
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100144 struct device *dev = &pdev->dev;
145 struct device_node *np = dev->of_node;
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400146 const struct of_device_id *rng_id;
Florian Fainellib7884792017-11-07 16:44:39 -0800147 struct bcm2835_rng_priv *priv;
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800148 struct resource *r;
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100149 int err;
150
Florian Fainellib7884792017-11-07 16:44:39 -0800151 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
152 if (!priv)
153 return -ENOMEM;
154
155 platform_set_drvdata(pdev, priv);
156
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800157 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
158
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100159 /* map peripheral */
Florian Fainellib7884792017-11-07 16:44:39 -0800160 priv->base = devm_ioremap_resource(dev, r);
weiyongjun \(A\)c4fc5d62018-01-17 11:40:34 +0000161 if (IS_ERR(priv->base))
Florian Fainellib7884792017-11-07 16:44:39 -0800162 return PTR_ERR(priv->base);
Florian Fainellib7884792017-11-07 16:44:39 -0800163
Florian Fainelli791af4f2017-11-07 16:44:44 -0800164 /* Clock is optional on most platforms */
165 priv->clk = devm_clk_get(dev, NULL);
Stefan Wahren7b4c5d32018-02-12 21:11:36 +0100166 if (IS_ERR(priv->clk) && PTR_ERR(priv->clk) == -EPROBE_DEFER)
167 return -EPROBE_DEFER;
Florian Fainelli791af4f2017-11-07 16:44:44 -0800168
Florian Fainelli8705f242017-11-07 16:44:48 -0800169 priv->rng.name = pdev->name;
Florian Fainellia8157772017-11-07 16:44:40 -0800170 priv->rng.init = bcm2835_rng_init;
Florian Fainellib7884792017-11-07 16:44:39 -0800171 priv->rng.read = bcm2835_rng_read;
Florian Fainelliec94bca2017-11-07 16:44:41 -0800172 priv->rng.cleanup = bcm2835_rng_cleanup;
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100173
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400174 rng_id = of_match_node(bcm2835_rng_of_match, np);
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800175 if (!rng_id)
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400176 return -EINVAL;
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800177
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400178 /* Check for rng init function, execute it */
Florian Fainelli04b154f2017-11-07 16:44:43 -0800179 of_data = rng_id->data;
180 if (of_data)
181 priv->mask_interrupts = of_data->mask_interrupts;
Yendapally Reddy Dhananjaya Reddy422a7492016-05-27 06:10:39 -0400182
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100183 /* register driver */
Florian Fainelli16a4c042017-11-07 16:44:42 -0800184 err = devm_hwrng_register(dev, &priv->rng);
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800185 if (err)
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100186 dev_err(dev, "hwrng registration failed\n");
Florian Fainelli21bb0ef2017-11-07 16:44:38 -0800187 else
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100188 dev_info(dev, "hwrng registered\n");
189
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100190 return err;
191}
192
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100193MODULE_DEVICE_TABLE(of, bcm2835_rng_of_match);
194
Florian Fainelli8705f242017-11-07 16:44:48 -0800195static struct platform_device_id bcm2835_rng_devtype[] = {
196 { .name = "bcm2835-rng" },
197 { .name = "bcm63xx-rng" },
198 { /* sentinel */ }
199};
200MODULE_DEVICE_TABLE(platform, bcm2835_rng_devtype);
201
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100202static struct platform_driver bcm2835_rng_driver = {
203 .driver = {
204 .name = "bcm2835-rng",
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100205 .of_match_table = bcm2835_rng_of_match,
206 },
207 .probe = bcm2835_rng_probe,
Florian Fainelli8705f242017-11-07 16:44:48 -0800208 .id_table = bcm2835_rng_devtype,
Lubomir Rintel8c4196a2013-03-28 07:19:38 +0100209};
210module_platform_driver(bcm2835_rng_driver);
211
212MODULE_AUTHOR("Lubomir Rintel <lkundrak@v3.sk>");
213MODULE_DESCRIPTION("BCM2835 Random Number Generator (RNG) driver");
Arnd Bergmann22e80992013-04-23 15:39:50 +0200214MODULE_LICENSE("GPL v2");