Linux 4.19.133
[linux/fpc-iii.git] / drivers / char / hw_random / omap3-rom-rng.c
blob8df3cad7c97aeb7e622f39263ad8bde85eb9d679
1 /*
2 * omap3-rom-rng.c - RNG driver for TI OMAP3 CPU family
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Juha Yrjola <juha.yrjola@solidboot.com>
7 * Copyright (C) 2013 Pali Rohár <pali.rohar@gmail.com>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/random.h>
19 #include <linux/hw_random.h>
20 #include <linux/workqueue.h>
21 #include <linux/clk.h>
22 #include <linux/err.h>
23 #include <linux/of.h>
24 #include <linux/of_device.h>
25 #include <linux/platform_device.h>
27 #define RNG_RESET 0x01
28 #define RNG_GEN_PRNG_HW_INIT 0x02
29 #define RNG_GEN_HW 0x08
31 /* param1: ptr, param2: count, param3: flag */
32 static u32 (*omap3_rom_rng_call)(u32, u32, u32);
34 static struct delayed_work idle_work;
35 static int rng_idle;
36 static struct clk *rng_clk;
38 static void omap3_rom_rng_idle(struct work_struct *work)
40 int r;
42 r = omap3_rom_rng_call(0, 0, RNG_RESET);
43 if (r != 0) {
44 pr_err("reset failed: %d\n", r);
45 return;
47 clk_disable_unprepare(rng_clk);
48 rng_idle = 1;
51 static int omap3_rom_rng_get_random(void *buf, unsigned int count)
53 u32 r;
54 u32 ptr;
56 cancel_delayed_work_sync(&idle_work);
57 if (rng_idle) {
58 r = clk_prepare_enable(rng_clk);
59 if (r)
60 return r;
62 r = omap3_rom_rng_call(0, 0, RNG_GEN_PRNG_HW_INIT);
63 if (r != 0) {
64 clk_disable_unprepare(rng_clk);
65 pr_err("HW init failed: %d\n", r);
66 return -EIO;
68 rng_idle = 0;
71 ptr = virt_to_phys(buf);
72 r = omap3_rom_rng_call(ptr, count, RNG_GEN_HW);
73 schedule_delayed_work(&idle_work, msecs_to_jiffies(500));
74 if (r != 0)
75 return -EINVAL;
76 return 0;
79 static int omap3_rom_rng_read(struct hwrng *rng, void *data, size_t max, bool w)
81 int r;
83 r = omap3_rom_rng_get_random(data, 4);
84 if (r < 0)
85 return r;
86 return 4;
89 static struct hwrng omap3_rom_rng_ops = {
90 .name = "omap3-rom",
93 static int omap3_rom_rng_probe(struct platform_device *pdev)
95 int ret = 0;
97 omap3_rom_rng_ops.read = of_device_get_match_data(&pdev->dev);
98 if (!omap3_rom_rng_ops.read) {
99 dev_err(&pdev->dev, "missing rom code handler\n");
101 return -ENODEV;
104 omap3_rom_rng_call = pdev->dev.platform_data;
105 if (!omap3_rom_rng_call) {
106 pr_err("omap3_rom_rng_call is NULL\n");
107 return -EINVAL;
110 INIT_DELAYED_WORK(&idle_work, omap3_rom_rng_idle);
111 rng_clk = devm_clk_get(&pdev->dev, "ick");
112 if (IS_ERR(rng_clk)) {
113 pr_err("unable to get RNG clock\n");
114 return PTR_ERR(rng_clk);
117 /* Leave the RNG in reset state. */
118 ret = clk_prepare_enable(rng_clk);
119 if (ret)
120 return ret;
121 omap3_rom_rng_idle(0);
123 return hwrng_register(&omap3_rom_rng_ops);
126 static int omap3_rom_rng_remove(struct platform_device *pdev)
128 cancel_delayed_work_sync(&idle_work);
129 hwrng_unregister(&omap3_rom_rng_ops);
130 if (!rng_idle)
131 clk_disable_unprepare(rng_clk);
132 return 0;
135 static const struct of_device_id omap_rom_rng_match[] = {
136 { .compatible = "nokia,n900-rom-rng", .data = omap3_rom_rng_read, },
137 { /* sentinel */ },
139 MODULE_DEVICE_TABLE(of, omap_rom_rng_match);
141 static struct platform_driver omap3_rom_rng_driver = {
142 .driver = {
143 .name = "omap3-rom-rng",
144 .of_match_table = omap_rom_rng_match,
146 .probe = omap3_rom_rng_probe,
147 .remove = omap3_rom_rng_remove,
150 module_platform_driver(omap3_rom_rng_driver);
152 MODULE_ALIAS("platform:omap3-rom-rng");
153 MODULE_AUTHOR("Juha Yrjola");
154 MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>");
155 MODULE_LICENSE("GPL");