blob: 23d358553b21f1af0835eaf4ca067e0997b20f74 [file] [log] [blame]
Jonghwa Leeb3296692012-06-29 09:43:26 +09001/*
2 * exynos-rng.c - Random Number Generator driver for the exynos
3 *
4 * Copyright (C) 2012 Samsung Electronics
Krzysztof Kozlowski043809d2016-04-05 11:04:28 +09005 * Jonghwa Lee <jonghwa3.lee@samsung.com>
Jonghwa Leeb3296692012-06-29 09:43:26 +09006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation;
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <linux/hw_random.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
Jonghwa Leeb3296692012-06-29 09:43:26 +090025#include <linux/io.h>
26#include <linux/platform_device.h>
27#include <linux/clk.h>
28#include <linux/pm_runtime.h>
29#include <linux/err.h>
30
31#define EXYNOS_PRNG_STATUS_OFFSET 0x10
32#define EXYNOS_PRNG_SEED_OFFSET 0x140
33#define EXYNOS_PRNG_OUT1_OFFSET 0x160
34#define SEED_SETTING_DONE BIT(1)
35#define PRNG_START 0x18
36#define PRNG_DONE BIT(5)
37#define EXYNOS_AUTOSUSPEND_DELAY 100
38
39struct exynos_rng {
40 struct device *dev;
41 struct hwrng rng;
42 void __iomem *mem;
43 struct clk *clk;
44};
45
46static u32 exynos_rng_readl(struct exynos_rng *rng, u32 offset)
47{
Ben Dooks5ad67c12016-06-08 19:31:09 +010048 return readl_relaxed(rng->mem + offset);
Jonghwa Leeb3296692012-06-29 09:43:26 +090049}
50
51static void exynos_rng_writel(struct exynos_rng *rng, u32 val, u32 offset)
52{
Ben Dooks5ad67c12016-06-08 19:31:09 +010053 writel_relaxed(val, rng->mem + offset);
Jonghwa Leeb3296692012-06-29 09:43:26 +090054}
55
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +090056static int exynos_rng_configure(struct exynos_rng *exynos_rng)
Jonghwa Leeb3296692012-06-29 09:43:26 +090057{
Jonghwa Leeb3296692012-06-29 09:43:26 +090058 int i;
59 int ret = 0;
60
Jonghwa Leeb3296692012-06-29 09:43:26 +090061 for (i = 0 ; i < 5 ; i++)
62 exynos_rng_writel(exynos_rng, jiffies,
63 EXYNOS_PRNG_SEED_OFFSET + 4*i);
64
65 if (!(exynos_rng_readl(exynos_rng, EXYNOS_PRNG_STATUS_OFFSET)
66 & SEED_SETTING_DONE))
67 ret = -EIO;
68
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +090069 return ret;
70}
71
72static int exynos_init(struct hwrng *rng)
73{
74 struct exynos_rng *exynos_rng = container_of(rng,
75 struct exynos_rng, rng);
76 int ret = 0;
77
78 pm_runtime_get_sync(exynos_rng->dev);
79 ret = exynos_rng_configure(exynos_rng);
Krzysztof Kozlowskif0d947a2016-03-14 09:07:12 +090080 pm_runtime_mark_last_busy(exynos_rng->dev);
81 pm_runtime_put_autosuspend(exynos_rng->dev);
Jonghwa Leeb3296692012-06-29 09:43:26 +090082
83 return ret;
84}
85
86static int exynos_read(struct hwrng *rng, void *buf,
87 size_t max, bool wait)
88{
89 struct exynos_rng *exynos_rng = container_of(rng,
90 struct exynos_rng, rng);
91 u32 *data = buf;
Krzysztof Kozlowskid7fd6072015-10-19 13:37:40 +090092 int retry = 100;
Krzysztof Kozlowskif1925d72016-03-14 09:07:13 +090093 int ret = 4;
Jonghwa Leeb3296692012-06-29 09:43:26 +090094
95 pm_runtime_get_sync(exynos_rng->dev);
96
97 exynos_rng_writel(exynos_rng, PRNG_START, 0);
98
99 while (!(exynos_rng_readl(exynos_rng,
Krzysztof Kozlowskid7fd6072015-10-19 13:37:40 +0900100 EXYNOS_PRNG_STATUS_OFFSET) & PRNG_DONE) && --retry)
Jonghwa Leeb3296692012-06-29 09:43:26 +0900101 cpu_relax();
Krzysztof Kozlowskif1925d72016-03-14 09:07:13 +0900102 if (!retry) {
103 ret = -ETIMEDOUT;
104 goto out;
105 }
Jonghwa Leeb3296692012-06-29 09:43:26 +0900106
107 exynos_rng_writel(exynos_rng, PRNG_DONE, EXYNOS_PRNG_STATUS_OFFSET);
108
109 *data = exynos_rng_readl(exynos_rng, EXYNOS_PRNG_OUT1_OFFSET);
110
Krzysztof Kozlowskif1925d72016-03-14 09:07:13 +0900111out:
Jonghwa Leeb3296692012-06-29 09:43:26 +0900112 pm_runtime_mark_last_busy(exynos_rng->dev);
Daniel Thompsonf02b7d02015-10-16 17:01:51 +0100113 pm_runtime_put_sync_autosuspend(exynos_rng->dev);
Jonghwa Leeb3296692012-06-29 09:43:26 +0900114
Krzysztof Kozlowskif1925d72016-03-14 09:07:13 +0900115 return ret;
Jonghwa Leeb3296692012-06-29 09:43:26 +0900116}
117
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800118static int exynos_rng_probe(struct platform_device *pdev)
Jonghwa Leeb3296692012-06-29 09:43:26 +0900119{
120 struct exynos_rng *exynos_rng;
Thierry Redingc7c9e1c2013-01-21 11:08:59 +0100121 struct resource *res;
Krzysztof Kozlowski48a61e12016-03-14 09:07:14 +0900122 int ret;
Jonghwa Leeb3296692012-06-29 09:43:26 +0900123
124 exynos_rng = devm_kzalloc(&pdev->dev, sizeof(struct exynos_rng),
125 GFP_KERNEL);
126 if (!exynos_rng)
127 return -ENOMEM;
128
129 exynos_rng->dev = &pdev->dev;
130 exynos_rng->rng.name = "exynos";
131 exynos_rng->rng.init = exynos_init;
132 exynos_rng->rng.read = exynos_read;
133 exynos_rng->clk = devm_clk_get(&pdev->dev, "secss");
134 if (IS_ERR(exynos_rng->clk)) {
135 dev_err(&pdev->dev, "Couldn't get clock.\n");
136 return -ENOENT;
137 }
138
Thierry Redingc7c9e1c2013-01-21 11:08:59 +0100139 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
140 exynos_rng->mem = devm_ioremap_resource(&pdev->dev, res);
141 if (IS_ERR(exynos_rng->mem))
142 return PTR_ERR(exynos_rng->mem);
Jonghwa Leeb3296692012-06-29 09:43:26 +0900143
144 platform_set_drvdata(pdev, exynos_rng);
145
146 pm_runtime_set_autosuspend_delay(&pdev->dev, EXYNOS_AUTOSUSPEND_DELAY);
147 pm_runtime_use_autosuspend(&pdev->dev);
148 pm_runtime_enable(&pdev->dev);
149
Krzysztof Kozlowski48a61e12016-03-14 09:07:14 +0900150 ret = devm_hwrng_register(&pdev->dev, &exynos_rng->rng);
151 if (ret) {
152 pm_runtime_dont_use_autosuspend(&pdev->dev);
153 pm_runtime_disable(&pdev->dev);
154 }
155
156 return ret;
Jonghwa Leeb3296692012-06-29 09:43:26 +0900157}
158
Krzysztof Kozlowski27d80fa2016-03-14 09:07:15 +0900159static int exynos_rng_remove(struct platform_device *pdev)
160{
161 pm_runtime_dont_use_autosuspend(&pdev->dev);
162 pm_runtime_disable(&pdev->dev);
163
164 return 0;
165}
166
Arnd Bergmannb93f3422016-03-02 16:58:59 +0100167static int __maybe_unused exynos_rng_runtime_suspend(struct device *dev)
Jonghwa Leeb3296692012-06-29 09:43:26 +0900168{
169 struct platform_device *pdev = to_platform_device(dev);
170 struct exynos_rng *exynos_rng = platform_get_drvdata(pdev);
171
172 clk_disable_unprepare(exynos_rng->clk);
173
174 return 0;
175}
176
Arnd Bergmannb93f3422016-03-02 16:58:59 +0100177static int __maybe_unused exynos_rng_runtime_resume(struct device *dev)
Jonghwa Leeb3296692012-06-29 09:43:26 +0900178{
179 struct platform_device *pdev = to_platform_device(dev);
180 struct exynos_rng *exynos_rng = platform_get_drvdata(pdev);
181
182 return clk_prepare_enable(exynos_rng->clk);
183}
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +0900184
Arnd Bergmannb93f3422016-03-02 16:58:59 +0100185static int __maybe_unused exynos_rng_suspend(struct device *dev)
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +0900186{
187 return pm_runtime_force_suspend(dev);
188}
189
Arnd Bergmannb93f3422016-03-02 16:58:59 +0100190static int __maybe_unused exynos_rng_resume(struct device *dev)
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +0900191{
192 struct platform_device *pdev = to_platform_device(dev);
193 struct exynos_rng *exynos_rng = platform_get_drvdata(pdev);
194 int ret;
195
196 ret = pm_runtime_force_resume(dev);
197 if (ret)
198 return ret;
199
200 return exynos_rng_configure(exynos_rng);
201}
Jonghwa Leeb3296692012-06-29 09:43:26 +0900202
Krzysztof Kozlowskibd1dffb2015-10-19 13:37:41 +0900203static const struct dev_pm_ops exynos_rng_pm_ops = {
204 SET_SYSTEM_SLEEP_PM_OPS(exynos_rng_suspend, exynos_rng_resume)
205 SET_RUNTIME_PM_OPS(exynos_rng_runtime_suspend,
206 exynos_rng_runtime_resume, NULL)
207};
Jonghwa Leeb3296692012-06-29 09:43:26 +0900208
Krzysztof Kozlowski642c1172015-10-19 13:37:42 +0900209static const struct of_device_id exynos_rng_dt_match[] = {
210 {
211 .compatible = "samsung,exynos4-rng",
212 },
213 { },
214};
215MODULE_DEVICE_TABLE(of, exynos_rng_dt_match);
216
Jonghwa Leeb3296692012-06-29 09:43:26 +0900217static struct platform_driver exynos_rng_driver = {
218 .driver = {
219 .name = "exynos-rng",
Jonghwa Leeb3296692012-06-29 09:43:26 +0900220 .pm = &exynos_rng_pm_ops,
Krzysztof Kozlowski642c1172015-10-19 13:37:42 +0900221 .of_match_table = exynos_rng_dt_match,
Jonghwa Leeb3296692012-06-29 09:43:26 +0900222 },
223 .probe = exynos_rng_probe,
Krzysztof Kozlowski27d80fa2016-03-14 09:07:15 +0900224 .remove = exynos_rng_remove,
Jonghwa Leeb3296692012-06-29 09:43:26 +0900225};
226
227module_platform_driver(exynos_rng_driver);
228
229MODULE_DESCRIPTION("EXYNOS 4 H/W Random Number Generator driver");
230MODULE_AUTHOR("Jonghwa Lee <jonghwa3.lee@samsung.com>");
231MODULE_LICENSE("GPL");