blob: 5cc5fc504968267b0d17251477477f41ea7a3fee [file] [log] [blame]
Michael Bueschebc915a2006-06-26 00:25:03 -07001/*
David Brownellc49a7f12008-04-16 19:24:42 +08002 * omap-rng.c - RNG driver for TI OMAP CPU family
Michael Bueschebc915a2006-06-26 00:25:03 -07003 *
4 * Author: Deepak Saxena <dsaxena@plexity.net>
5 *
6 * Copyright 2005 (c) MontaVista Software, Inc.
7 *
8 * Mostly based on original driver:
9 *
10 * Copyright (C) 2005 Nokia Corporation
Jan Engelhardt96de0e22007-10-19 23:21:04 +020011 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
Michael Bueschebc915a2006-06-26 00:25:03 -070012 *
13 * This file is licensed under the terms of the GNU General Public
14 * License version 2. This program is licensed "as is" without any
15 * warranty of any kind, whether express or implied.
Michael Bueschebc915a2006-06-26 00:25:03 -070016 */
17
18#include <linux/module.h>
19#include <linux/init.h>
20#include <linux/random.h>
21#include <linux/err.h>
David Brownellaf2bc7d2006-08-05 12:14:04 -070022#include <linux/platform_device.h>
Michael Bueschebc915a2006-06-26 00:25:03 -070023#include <linux/hw_random.h>
Patrick McHardy984e9762007-11-21 12:24:45 +080024#include <linux/delay.h>
Herbert Xu414a3c12020-06-29 18:03:55 +100025#include <linux/kernel.h>
Paul Walmsley02666362012-09-23 17:28:26 -060026#include <linux/slab.h>
Paul Walmsley665d92f2012-09-23 17:28:26 -060027#include <linux/pm_runtime.h>
Lokesh Vutlac9039702013-08-05 20:17:21 +053028#include <linux/of.h>
29#include <linux/of_device.h>
30#include <linux/of_address.h>
Lokesh Vutlae83872c2013-08-05 20:17:23 +053031#include <linux/interrupt.h>
Romain Perier38321242016-09-16 12:08:55 +020032#include <linux/clk.h>
Michael Bueschebc915a2006-06-26 00:25:03 -070033
34#include <asm/io.h>
Michael Bueschebc915a2006-06-26 00:25:03 -070035
Lokesh Vutlae83872c2013-08-05 20:17:23 +053036#define RNG_REG_STATUS_RDY (1 << 0)
Michael Bueschebc915a2006-06-26 00:25:03 -070037
Lokesh Vutlae83872c2013-08-05 20:17:23 +053038#define RNG_REG_INTACK_RDY_MASK (1 << 0)
39#define RNG_REG_INTACK_SHUTDOWN_OFLO_MASK (1 << 1)
40#define RNG_SHUTDOWN_OFLO_MASK (1 << 1)
41
42#define RNG_CONTROL_STARTUP_CYCLES_SHIFT 16
43#define RNG_CONTROL_STARTUP_CYCLES_MASK (0xffff << 16)
44#define RNG_CONTROL_ENABLE_TRNG_SHIFT 10
45#define RNG_CONTROL_ENABLE_TRNG_MASK (1 << 10)
46
47#define RNG_CONFIG_MAX_REFIL_CYCLES_SHIFT 16
48#define RNG_CONFIG_MAX_REFIL_CYCLES_MASK (0xffff << 16)
49#define RNG_CONFIG_MIN_REFIL_CYCLES_SHIFT 0
50#define RNG_CONFIG_MIN_REFIL_CYCLES_MASK (0xff << 0)
51
52#define RNG_CONTROL_STARTUP_CYCLES 0xff
53#define RNG_CONFIG_MIN_REFIL_CYCLES 0x21
54#define RNG_CONFIG_MAX_REFIL_CYCLES 0x22
55
56#define RNG_ALARMCNT_ALARM_TH_SHIFT 0x0
57#define RNG_ALARMCNT_ALARM_TH_MASK (0xff << 0)
58#define RNG_ALARMCNT_SHUTDOWN_TH_SHIFT 16
59#define RNG_ALARMCNT_SHUTDOWN_TH_MASK (0x1f << 16)
60#define RNG_ALARM_THRESHOLD 0xff
61#define RNG_SHUTDOWN_THRESHOLD 0x4
62
63#define RNG_REG_FROENABLE_MASK 0xffffff
64#define RNG_REG_FRODETUNE_MASK 0xffffff
65
66#define OMAP2_RNG_OUTPUT_SIZE 0x4
67#define OMAP4_RNG_OUTPUT_SIZE 0x8
Romain Perier38321242016-09-16 12:08:55 +020068#define EIP76_RNG_OUTPUT_SIZE 0x10
Lokesh Vutlae83872c2013-08-05 20:17:23 +053069
Sumit Gargbe867f92019-10-14 17:32:45 +053070/*
71 * EIP76 RNG takes approx. 700us to produce 16 bytes of output data
72 * as per testing results. And to account for the lack of udelay()'s
73 * reliability, we keep the timeout as 1000us.
74 */
75#define RNG_DATA_FILL_TIMEOUT 100
76
Lokesh Vutlae83872c2013-08-05 20:17:23 +053077enum {
Romain Periere54feeb2016-09-16 12:08:53 +020078 RNG_OUTPUT_0_REG = 0,
79 RNG_OUTPUT_1_REG,
80 RNG_OUTPUT_2_REG,
81 RNG_OUTPUT_3_REG,
Lokesh Vutlae83872c2013-08-05 20:17:23 +053082 RNG_STATUS_REG,
83 RNG_INTMASK_REG,
84 RNG_INTACK_REG,
85 RNG_CONTROL_REG,
86 RNG_CONFIG_REG,
87 RNG_ALARMCNT_REG,
88 RNG_FROENABLE_REG,
89 RNG_FRODETUNE_REG,
90 RNG_ALARMMASK_REG,
91 RNG_ALARMSTOP_REG,
92 RNG_REV_REG,
93 RNG_SYSCONFIG_REG,
Paul Walmsley02666362012-09-23 17:28:26 -060094};
Michael Bueschebc915a2006-06-26 00:25:03 -070095
Lokesh Vutlae83872c2013-08-05 20:17:23 +053096static const u16 reg_map_omap2[] = {
Romain Periere54feeb2016-09-16 12:08:53 +020097 [RNG_OUTPUT_0_REG] = 0x0,
Lokesh Vutlae83872c2013-08-05 20:17:23 +053098 [RNG_STATUS_REG] = 0x4,
99 [RNG_CONFIG_REG] = 0x28,
100 [RNG_REV_REG] = 0x3c,
101 [RNG_SYSCONFIG_REG] = 0x40,
102};
103
104static const u16 reg_map_omap4[] = {
Romain Periere54feeb2016-09-16 12:08:53 +0200105 [RNG_OUTPUT_0_REG] = 0x0,
106 [RNG_OUTPUT_1_REG] = 0x4,
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530107 [RNG_STATUS_REG] = 0x8,
108 [RNG_INTMASK_REG] = 0xc,
109 [RNG_INTACK_REG] = 0x10,
110 [RNG_CONTROL_REG] = 0x14,
111 [RNG_CONFIG_REG] = 0x18,
112 [RNG_ALARMCNT_REG] = 0x1c,
113 [RNG_FROENABLE_REG] = 0x20,
114 [RNG_FRODETUNE_REG] = 0x24,
115 [RNG_ALARMMASK_REG] = 0x28,
116 [RNG_ALARMSTOP_REG] = 0x2c,
117 [RNG_REV_REG] = 0x1FE0,
118 [RNG_SYSCONFIG_REG] = 0x1FE4,
119};
120
Romain Perier38321242016-09-16 12:08:55 +0200121static const u16 reg_map_eip76[] = {
122 [RNG_OUTPUT_0_REG] = 0x0,
123 [RNG_OUTPUT_1_REG] = 0x4,
124 [RNG_OUTPUT_2_REG] = 0x8,
125 [RNG_OUTPUT_3_REG] = 0xc,
126 [RNG_STATUS_REG] = 0x10,
127 [RNG_INTACK_REG] = 0x10,
128 [RNG_CONTROL_REG] = 0x14,
129 [RNG_CONFIG_REG] = 0x18,
130 [RNG_ALARMCNT_REG] = 0x1c,
131 [RNG_FROENABLE_REG] = 0x20,
132 [RNG_FRODETUNE_REG] = 0x24,
133 [RNG_ALARMMASK_REG] = 0x28,
134 [RNG_ALARMSTOP_REG] = 0x2c,
135 [RNG_REV_REG] = 0x7c,
136};
137
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530138struct omap_rng_dev;
139/**
140 * struct omap_rng_pdata - RNG IP block-specific data
141 * @regs: Pointer to the register offsets structure.
142 * @data_size: No. of bytes in RNG output.
143 * @data_present: Callback to determine if data is available.
144 * @init: Callback for IP specific initialization sequence.
145 * @cleanup: Callback for IP specific cleanup sequence.
146 */
147struct omap_rng_pdata {
148 u16 *regs;
149 u32 data_size;
150 u32 (*data_present)(struct omap_rng_dev *priv);
151 int (*init)(struct omap_rng_dev *priv);
152 void (*cleanup)(struct omap_rng_dev *priv);
153};
154
155struct omap_rng_dev {
156 void __iomem *base;
157 struct device *dev;
158 const struct omap_rng_pdata *pdata;
Romain Perierb23d2d92016-09-16 12:08:52 +0200159 struct hwrng rng;
Romain Perier38321242016-09-16 12:08:55 +0200160 struct clk *clk;
Gregory CLEMENTb166be02018-02-28 15:27:23 +0100161 struct clk *clk_reg;
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530162};
163
164static inline u32 omap_rng_read(struct omap_rng_dev *priv, u16 reg)
Michael Bueschebc915a2006-06-26 00:25:03 -0700165{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530166 return __raw_readl(priv->base + priv->pdata->regs[reg]);
Michael Bueschebc915a2006-06-26 00:25:03 -0700167}
168
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530169static inline void omap_rng_write(struct omap_rng_dev *priv, u16 reg,
170 u32 val)
Michael Bueschebc915a2006-06-26 00:25:03 -0700171{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530172 __raw_writel(val, priv->base + priv->pdata->regs[reg]);
173}
174
Romain Perier69eb4d02016-09-16 12:08:51 +0200175
176static int omap_rng_do_read(struct hwrng *rng, void *data, size_t max,
177 bool wait)
Michael Bueschebc915a2006-06-26 00:25:03 -0700178{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530179 struct omap_rng_dev *priv;
Romain Perier69eb4d02016-09-16 12:08:51 +0200180 int i, present;
Patrick McHardy984e9762007-11-21 12:24:45 +0800181
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530182 priv = (struct omap_rng_dev *)rng->priv;
Paul Walmsley02666362012-09-23 17:28:26 -0600183
Romain Perier69eb4d02016-09-16 12:08:51 +0200184 if (max < priv->pdata->data_size)
185 return 0;
186
Sumit Gargbe867f92019-10-14 17:32:45 +0530187 for (i = 0; i < RNG_DATA_FILL_TIMEOUT; i++) {
Romain Perier69eb4d02016-09-16 12:08:51 +0200188 present = priv->pdata->data_present(priv);
189 if (present || !wait)
Patrick McHardy984e9762007-11-21 12:24:45 +0800190 break;
Romain Perier69eb4d02016-09-16 12:08:51 +0200191
Patrick McHardy984e9762007-11-21 12:24:45 +0800192 udelay(10);
193 }
Romain Perier69eb4d02016-09-16 12:08:51 +0200194 if (!present)
195 return 0;
Michael Bueschebc915a2006-06-26 00:25:03 -0700196
Romain Periere54feeb2016-09-16 12:08:53 +0200197 memcpy_fromio(data, priv->base + priv->pdata->regs[RNG_OUTPUT_0_REG],
Romain Perier69eb4d02016-09-16 12:08:51 +0200198 priv->pdata->data_size);
Paul Walmsley02666362012-09-23 17:28:26 -0600199
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530200 if (priv->pdata->regs[RNG_INTACK_REG])
201 omap_rng_write(priv, RNG_INTACK_REG, RNG_REG_INTACK_RDY_MASK);
Romain Perier69eb4d02016-09-16 12:08:51 +0200202
203 return priv->pdata->data_size;
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530204}
205
Olof Johanssona2469682013-08-20 11:07:53 -0700206static int omap_rng_init(struct hwrng *rng)
207{
208 struct omap_rng_dev *priv;
209
210 priv = (struct omap_rng_dev *)rng->priv;
211 return priv->pdata->init(priv);
212}
213
214static void omap_rng_cleanup(struct hwrng *rng)
215{
216 struct omap_rng_dev *priv;
217
218 priv = (struct omap_rng_dev *)rng->priv;
219 priv->pdata->cleanup(priv);
220}
221
Olof Johanssona2469682013-08-20 11:07:53 -0700222
223static inline u32 omap2_rng_data_present(struct omap_rng_dev *priv)
224{
225 return omap_rng_read(priv, RNG_STATUS_REG) ? 0 : 1;
226}
227
228static int omap2_rng_init(struct omap_rng_dev *priv)
229{
230 omap_rng_write(priv, RNG_SYSCONFIG_REG, 0x1);
231 return 0;
232}
233
234static void omap2_rng_cleanup(struct omap_rng_dev *priv)
235{
236 omap_rng_write(priv, RNG_SYSCONFIG_REG, 0x0);
237}
238
239static struct omap_rng_pdata omap2_rng_pdata = {
240 .regs = (u16 *)reg_map_omap2,
241 .data_size = OMAP2_RNG_OUTPUT_SIZE,
242 .data_present = omap2_rng_data_present,
243 .init = omap2_rng_init,
244 .cleanup = omap2_rng_cleanup,
245};
246
Olof Johanssona2469682013-08-20 11:07:53 -0700247static inline u32 omap4_rng_data_present(struct omap_rng_dev *priv)
248{
249 return omap_rng_read(priv, RNG_STATUS_REG) & RNG_REG_STATUS_RDY;
250}
251
Romain Perier38321242016-09-16 12:08:55 +0200252static int eip76_rng_init(struct omap_rng_dev *priv)
253{
254 u32 val;
255
256 /* Return if RNG is already running. */
257 if (omap_rng_read(priv, RNG_CONTROL_REG) & RNG_CONTROL_ENABLE_TRNG_MASK)
258 return 0;
259
260 /* Number of 512 bit blocks of raw Noise Source output data that must
261 * be processed by either the Conditioning Function or the
262 * SP 800-90 DRBG ‘BC_DF’ functionality to yield a ‘full entropy’
263 * output value.
264 */
265 val = 0x5 << RNG_CONFIG_MIN_REFIL_CYCLES_SHIFT;
266
267 /* Number of FRO samples that are XOR-ed together into one bit to be
268 * shifted into the main shift register
269 */
270 val |= RNG_CONFIG_MAX_REFIL_CYCLES << RNG_CONFIG_MAX_REFIL_CYCLES_SHIFT;
271 omap_rng_write(priv, RNG_CONFIG_REG, val);
272
273 /* Enable all available FROs */
274 omap_rng_write(priv, RNG_FRODETUNE_REG, 0x0);
275 omap_rng_write(priv, RNG_FROENABLE_REG, RNG_REG_FROENABLE_MASK);
276
277 /* Enable TRNG */
278 val = RNG_CONTROL_ENABLE_TRNG_MASK;
279 omap_rng_write(priv, RNG_CONTROL_REG, val);
280
281 return 0;
282}
283
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530284static int omap4_rng_init(struct omap_rng_dev *priv)
285{
286 u32 val;
287
288 /* Return if RNG is already running. */
Andre Wolokita656d7e72015-03-16 12:54:50 +1100289 if (omap_rng_read(priv, RNG_CONTROL_REG) & RNG_CONTROL_ENABLE_TRNG_MASK)
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530290 return 0;
291
292 val = RNG_CONFIG_MIN_REFIL_CYCLES << RNG_CONFIG_MIN_REFIL_CYCLES_SHIFT;
293 val |= RNG_CONFIG_MAX_REFIL_CYCLES << RNG_CONFIG_MAX_REFIL_CYCLES_SHIFT;
294 omap_rng_write(priv, RNG_CONFIG_REG, val);
295
296 omap_rng_write(priv, RNG_FRODETUNE_REG, 0x0);
297 omap_rng_write(priv, RNG_FROENABLE_REG, RNG_REG_FROENABLE_MASK);
298 val = RNG_ALARM_THRESHOLD << RNG_ALARMCNT_ALARM_TH_SHIFT;
299 val |= RNG_SHUTDOWN_THRESHOLD << RNG_ALARMCNT_SHUTDOWN_TH_SHIFT;
300 omap_rng_write(priv, RNG_ALARMCNT_REG, val);
301
302 val = RNG_CONTROL_STARTUP_CYCLES << RNG_CONTROL_STARTUP_CYCLES_SHIFT;
303 val |= RNG_CONTROL_ENABLE_TRNG_MASK;
304 omap_rng_write(priv, RNG_CONTROL_REG, val);
305
306 return 0;
307}
308
309static void omap4_rng_cleanup(struct omap_rng_dev *priv)
310{
311 int val;
312
313 val = omap_rng_read(priv, RNG_CONTROL_REG);
314 val &= ~RNG_CONTROL_ENABLE_TRNG_MASK;
Andre Wolokita1a5addf2015-03-16 10:19:11 +1100315 omap_rng_write(priv, RNG_CONTROL_REG, val);
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530316}
317
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530318static irqreturn_t omap4_rng_irq(int irq, void *dev_id)
319{
320 struct omap_rng_dev *priv = dev_id;
321 u32 fro_detune, fro_enable;
322
323 /*
324 * Interrupt raised by a fro shutdown threshold, do the following:
325 * 1. Clear the alarm events.
326 * 2. De tune the FROs which are shutdown.
327 * 3. Re enable the shutdown FROs.
328 */
329 omap_rng_write(priv, RNG_ALARMMASK_REG, 0x0);
330 omap_rng_write(priv, RNG_ALARMSTOP_REG, 0x0);
331
332 fro_enable = omap_rng_read(priv, RNG_FROENABLE_REG);
333 fro_detune = ~fro_enable & RNG_REG_FRODETUNE_MASK;
334 fro_detune = fro_detune | omap_rng_read(priv, RNG_FRODETUNE_REG);
335 fro_enable = RNG_REG_FROENABLE_MASK;
336
337 omap_rng_write(priv, RNG_FRODETUNE_REG, fro_detune);
338 omap_rng_write(priv, RNG_FROENABLE_REG, fro_enable);
339
340 omap_rng_write(priv, RNG_INTACK_REG, RNG_REG_INTACK_SHUTDOWN_OFLO_MASK);
341
342 return IRQ_HANDLED;
Michael Bueschebc915a2006-06-26 00:25:03 -0700343}
344
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530345static struct omap_rng_pdata omap4_rng_pdata = {
346 .regs = (u16 *)reg_map_omap4,
347 .data_size = OMAP4_RNG_OUTPUT_SIZE,
348 .data_present = omap4_rng_data_present,
349 .init = omap4_rng_init,
350 .cleanup = omap4_rng_cleanup,
351};
352
Romain Perier38321242016-09-16 12:08:55 +0200353static struct omap_rng_pdata eip76_rng_pdata = {
354 .regs = (u16 *)reg_map_eip76,
355 .data_size = EIP76_RNG_OUTPUT_SIZE,
356 .data_present = omap4_rng_data_present,
357 .init = eip76_rng_init,
358 .cleanup = omap4_rng_cleanup,
359};
360
Herbert Xu414a3c12020-06-29 18:03:55 +1000361static const struct of_device_id omap_rng_of_match[] __maybe_unused = {
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530362 {
363 .compatible = "ti,omap2-rng",
364 .data = &omap2_rng_pdata,
365 },
366 {
367 .compatible = "ti,omap4-rng",
368 .data = &omap4_rng_pdata,
369 },
Romain Perier38321242016-09-16 12:08:55 +0200370 {
371 .compatible = "inside-secure,safexcel-eip76",
372 .data = &eip76_rng_pdata,
373 },
Lokesh Vutlac9039702013-08-05 20:17:21 +0530374 {},
375};
376MODULE_DEVICE_TABLE(of, omap_rng_of_match);
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530377
378static int of_get_omap_rng_device_details(struct omap_rng_dev *priv,
379 struct platform_device *pdev)
380{
381 const struct of_device_id *match;
382 struct device *dev = &pdev->dev;
383 int irq, err;
384
385 match = of_match_device(of_match_ptr(omap_rng_of_match), dev);
386 if (!match) {
387 dev_err(dev, "no compatible OF match\n");
388 return -EINVAL;
389 }
390 priv->pdata = match->data;
391
Romain Perier38321242016-09-16 12:08:55 +0200392 if (of_device_is_compatible(dev->of_node, "ti,omap4-rng") ||
393 of_device_is_compatible(dev->of_node, "inside-secure,safexcel-eip76")) {
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530394 irq = platform_get_irq(pdev, 0);
Markus Elfringb1114182020-04-04 16:45:57 +0200395 if (irq < 0)
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530396 return irq;
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530397
398 err = devm_request_irq(dev, irq, omap4_rng_irq,
399 IRQF_TRIGGER_NONE, dev_name(dev), priv);
400 if (err) {
401 dev_err(dev, "unable to request irq %d, err = %d\n",
402 irq, err);
403 return err;
404 }
Romain Perier38321242016-09-16 12:08:55 +0200405
Thomas Petazzonib9857352017-03-07 15:14:48 +0100406 /*
407 * On OMAP4, enabling the shutdown_oflo interrupt is
408 * done in the interrupt mask register. There is no
409 * such register on EIP76, and it's enabled by the
410 * same bit in the control register
411 */
412 if (priv->pdata->regs[RNG_INTMASK_REG])
413 omap_rng_write(priv, RNG_INTMASK_REG,
414 RNG_SHUTDOWN_OFLO_MASK);
415 else
416 omap_rng_write(priv, RNG_CONTROL_REG,
417 RNG_SHUTDOWN_OFLO_MASK);
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530418 }
419 return 0;
420}
Lokesh Vutlac9039702013-08-05 20:17:21 +0530421
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530422static int get_omap_rng_device_details(struct omap_rng_dev *omap_rng)
423{
424 /* Only OMAP2/3 can be non-DT */
425 omap_rng->pdata = &omap2_rng_pdata;
426 return 0;
427}
428
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800429static int omap_rng_probe(struct platform_device *pdev)
Michael Bueschebc915a2006-06-26 00:25:03 -0700430{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530431 struct omap_rng_dev *priv;
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530432 struct device *dev = &pdev->dev;
Michael Bueschebc915a2006-06-26 00:25:03 -0700433 int ret;
434
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530435 priv = devm_kzalloc(dev, sizeof(struct omap_rng_dev), GFP_KERNEL);
Jingoo Han9e9026a2014-04-29 17:15:36 +0900436 if (!priv)
Paul Walmsley02666362012-09-23 17:28:26 -0600437 return -ENOMEM;
Paul Walmsley02666362012-09-23 17:28:26 -0600438
Romain Perierb23d2d92016-09-16 12:08:52 +0200439 priv->rng.read = omap_rng_do_read;
440 priv->rng.init = omap_rng_init;
441 priv->rng.cleanup = omap_rng_cleanup;
Rouven Czerwinski62f95ae2019-03-11 11:58:57 +0100442 priv->rng.quality = 900;
Romain Perierb23d2d92016-09-16 12:08:52 +0200443
444 priv->rng.priv = (unsigned long)priv;
Jingoo Han1f539bc2013-05-29 09:47:29 +0900445 platform_set_drvdata(pdev, priv);
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530446 priv->dev = dev;
Michael Bueschebc915a2006-06-26 00:25:03 -0700447
YueHaibingc7c16c52019-10-16 18:46:16 +0800448 priv->base = devm_platform_ioremap_resource(pdev, 0);
Thierry Redingc7c9e1c2013-01-21 11:08:59 +0100449 if (IS_ERR(priv->base)) {
450 ret = PTR_ERR(priv->base);
Russell King55c381e2008-09-04 14:07:22 +0100451 goto err_ioremap;
452 }
Michael Bueschebc915a2006-06-26 00:25:03 -0700453
Romain Perierb23d2d92016-09-16 12:08:52 +0200454 priv->rng.name = devm_kstrdup(dev, dev_name(dev), GFP_KERNEL);
455 if (!priv->rng.name) {
456 ret = -ENOMEM;
457 goto err_ioremap;
458 }
459
Paul Walmsley665d92f2012-09-23 17:28:26 -0600460 pm_runtime_enable(&pdev->dev);
Nishanth Menon61dc0a42016-06-24 11:50:39 -0500461 ret = pm_runtime_get_sync(&pdev->dev);
Dave Gerlachad8529f2016-09-20 10:25:40 -0500462 if (ret < 0) {
Nishanth Menon61dc0a42016-06-24 11:50:39 -0500463 dev_err(&pdev->dev, "Failed to runtime_get device: %d\n", ret);
464 pm_runtime_put_noidle(&pdev->dev);
465 goto err_ioremap;
466 }
Paul Walmsley665d92f2012-09-23 17:28:26 -0600467
Thomas Petazzoni43ec5402017-03-07 15:14:49 +0100468 priv->clk = devm_clk_get(&pdev->dev, NULL);
Masahiro Yamada45586c72020-02-03 17:37:45 -0800469 if (PTR_ERR(priv->clk) == -EPROBE_DEFER)
Thomas Petazzoni43ec5402017-03-07 15:14:49 +0100470 return -EPROBE_DEFER;
471 if (!IS_ERR(priv->clk)) {
472 ret = clk_prepare_enable(priv->clk);
473 if (ret) {
474 dev_err(&pdev->dev,
475 "Unable to enable the clk: %d\n", ret);
476 goto err_register;
477 }
478 }
479
Gregory CLEMENTb166be02018-02-28 15:27:23 +0100480 priv->clk_reg = devm_clk_get(&pdev->dev, "reg");
Masahiro Yamada45586c72020-02-03 17:37:45 -0800481 if (PTR_ERR(priv->clk_reg) == -EPROBE_DEFER)
Gregory CLEMENTb166be02018-02-28 15:27:23 +0100482 return -EPROBE_DEFER;
483 if (!IS_ERR(priv->clk_reg)) {
484 ret = clk_prepare_enable(priv->clk_reg);
485 if (ret) {
486 dev_err(&pdev->dev,
487 "Unable to enable the register clk: %d\n",
488 ret);
489 goto err_register;
490 }
491 }
492
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530493 ret = (dev->of_node) ? of_get_omap_rng_device_details(priv, pdev) :
494 get_omap_rng_device_details(priv);
495 if (ret)
Romain Perier38321242016-09-16 12:08:55 +0200496 goto err_register;
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530497
Chuhong Yuan3e752412019-07-25 16:01:55 +0800498 ret = devm_hwrng_register(&pdev->dev, &priv->rng);
Russell King55c381e2008-09-04 14:07:22 +0100499 if (ret)
500 goto err_register;
Michael Bueschebc915a2006-06-26 00:25:03 -0700501
Romain Perierf0d5a112016-09-16 12:08:54 +0200502 dev_info(&pdev->dev, "Random Number Generator ver. %02x\n",
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530503 omap_rng_read(priv, RNG_REV_REG));
Michael Bueschebc915a2006-06-26 00:25:03 -0700504
505 return 0;
Russell King55c381e2008-09-04 14:07:22 +0100506
507err_register:
Paul Walmsley02666362012-09-23 17:28:26 -0600508 priv->base = NULL;
Romain Perier38321242016-09-16 12:08:55 +0200509 pm_runtime_put_sync(&pdev->dev);
Paul Walmsley665d92f2012-09-23 17:28:26 -0600510 pm_runtime_disable(&pdev->dev);
Romain Perier38321242016-09-16 12:08:55 +0200511
Gregory CLEMENTb166be02018-02-28 15:27:23 +0100512 clk_disable_unprepare(priv->clk_reg);
Gregory CLEMENT10bc3202018-02-28 15:27:22 +0100513 clk_disable_unprepare(priv->clk);
Russell King55c381e2008-09-04 14:07:22 +0100514err_ioremap:
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530515 dev_err(dev, "initialization failed.\n");
Russell King55c381e2008-09-04 14:07:22 +0100516 return ret;
Michael Bueschebc915a2006-06-26 00:25:03 -0700517}
518
Dmitry Torokhov1ee9b5e2015-03-09 10:36:35 -0700519static int omap_rng_remove(struct platform_device *pdev)
Michael Bueschebc915a2006-06-26 00:25:03 -0700520{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530521 struct omap_rng_dev *priv = platform_get_drvdata(pdev);
Paul Walmsley02666362012-09-23 17:28:26 -0600522
Michael Bueschebc915a2006-06-26 00:25:03 -0700523
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530524 priv->pdata->cleanup(priv);
Paul Walmsley02666362012-09-23 17:28:26 -0600525
Paul Walmsley665d92f2012-09-23 17:28:26 -0600526 pm_runtime_put_sync(&pdev->dev);
527 pm_runtime_disable(&pdev->dev);
Michael Bueschebc915a2006-06-26 00:25:03 -0700528
Gregory CLEMENT10bc3202018-02-28 15:27:22 +0100529 clk_disable_unprepare(priv->clk);
Gregory CLEMENTb166be02018-02-28 15:27:23 +0100530 clk_disable_unprepare(priv->clk_reg);
Romain Perier38321242016-09-16 12:08:55 +0200531
Michael Bueschebc915a2006-06-26 00:25:03 -0700532 return 0;
533}
534
Dmitry Torokhova308d662015-03-11 14:08:36 -0700535static int __maybe_unused omap_rng_suspend(struct device *dev)
Michael Bueschebc915a2006-06-26 00:25:03 -0700536{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530537 struct omap_rng_dev *priv = dev_get_drvdata(dev);
Paul Walmsley02666362012-09-23 17:28:26 -0600538
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530539 priv->pdata->cleanup(priv);
Paul Walmsley665d92f2012-09-23 17:28:26 -0600540 pm_runtime_put_sync(dev);
Paul Walmsley02666362012-09-23 17:28:26 -0600541
Michael Bueschebc915a2006-06-26 00:25:03 -0700542 return 0;
543}
544
Dmitry Torokhova308d662015-03-11 14:08:36 -0700545static int __maybe_unused omap_rng_resume(struct device *dev)
Michael Bueschebc915a2006-06-26 00:25:03 -0700546{
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530547 struct omap_rng_dev *priv = dev_get_drvdata(dev);
Nishanth Menon61dc0a42016-06-24 11:50:39 -0500548 int ret;
Paul Walmsley02666362012-09-23 17:28:26 -0600549
Nishanth Menon61dc0a42016-06-24 11:50:39 -0500550 ret = pm_runtime_get_sync(dev);
Dave Gerlachad8529f2016-09-20 10:25:40 -0500551 if (ret < 0) {
Nishanth Menon61dc0a42016-06-24 11:50:39 -0500552 dev_err(dev, "Failed to runtime_get device: %d\n", ret);
553 pm_runtime_put_noidle(dev);
554 return ret;
555 }
556
Lokesh Vutlae83872c2013-08-05 20:17:23 +0530557 priv->pdata->init(priv);
Paul Walmsley02666362012-09-23 17:28:26 -0600558
David Brownellaf2bc7d2006-08-05 12:14:04 -0700559 return 0;
Michael Bueschebc915a2006-06-26 00:25:03 -0700560}
561
Rafael J. Wysocki76505722012-07-06 19:08:53 +0200562static SIMPLE_DEV_PM_OPS(omap_rng_pm, omap_rng_suspend, omap_rng_resume);
Michael Bueschebc915a2006-06-26 00:25:03 -0700563
David Brownellaf2bc7d2006-08-05 12:14:04 -0700564static struct platform_driver omap_rng_driver = {
565 .driver = {
566 .name = "omap_rng",
Dmitry Torokhova308d662015-03-11 14:08:36 -0700567 .pm = &omap_rng_pm,
Lokesh Vutlac9039702013-08-05 20:17:21 +0530568 .of_match_table = of_match_ptr(omap_rng_of_match),
David Brownellaf2bc7d2006-08-05 12:14:04 -0700569 },
Michael Bueschebc915a2006-06-26 00:25:03 -0700570 .probe = omap_rng_probe,
Dmitry Torokhov1ee9b5e2015-03-09 10:36:35 -0700571 .remove = omap_rng_remove,
Michael Bueschebc915a2006-06-26 00:25:03 -0700572};
573
Lokesh Vutla4390f772013-08-05 20:17:18 +0530574module_platform_driver(omap_rng_driver);
575MODULE_ALIAS("platform:omap_rng");
Michael Bueschebc915a2006-06-26 00:25:03 -0700576MODULE_AUTHOR("Deepak Saxena (and others)");
577MODULE_LICENSE("GPL");