1 // SPDX-License-Identifier: GPL-2.0-only
3 * ST Random Number Generator Driver ST's Platforms
5 * Author: Pankaj Dev: <pankaj.dev@st.com>
6 * Lee Jones <lee.jones@linaro.org>
8 * Copyright (C) 2015 STMicroelectronics (R&D) Limited
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/hw_random.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
22 #define ST_RNG_STATUS_REG 0x20
23 #define ST_RNG_DATA_REG 0x24
25 /* Registers fields */
26 #define ST_RNG_STATUS_BAD_SEQUENCE BIT(0)
27 #define ST_RNG_STATUS_BAD_ALTERNANCE BIT(1)
28 #define ST_RNG_STATUS_FIFO_FULL BIT(5)
30 #define ST_RNG_SAMPLE_SIZE 2 /* 2 Byte (16bit) samples */
31 #define ST_RNG_FIFO_DEPTH 4
32 #define ST_RNG_FIFO_SIZE (ST_RNG_FIFO_DEPTH * ST_RNG_SAMPLE_SIZE)
35 * Samples are documented to be available every 0.667us, so in theory
36 * the 4 sample deep FIFO should take 2.668us to fill. However, during
37 * thorough testing, it became apparent that filling the FIFO actually
38 * takes closer to 12us. We then multiply by 2 in order to account for
39 * the lack of udelay()'s reliability, suggested by Russell King.
41 #define ST_RNG_FILL_FIFO_TIMEOUT (12 * 2)
49 static int st_rng_read(struct hwrng
*rng
, void *data
, size_t max
, bool wait
)
51 struct st_rng_data
*ddata
= (struct st_rng_data
*)rng
->priv
;
55 /* Wait until FIFO is full - max 4uS*/
56 for (i
= 0; i
< ST_RNG_FILL_FIFO_TIMEOUT
; i
++) {
57 status
= readl_relaxed(ddata
->base
+ ST_RNG_STATUS_REG
);
58 if (status
& ST_RNG_STATUS_FIFO_FULL
)
63 if (i
== ST_RNG_FILL_FIFO_TIMEOUT
)
66 for (i
= 0; i
< ST_RNG_FIFO_SIZE
&& i
< max
; i
+= 2)
68 readl_relaxed(ddata
->base
+ ST_RNG_DATA_REG
);
70 return i
; /* No of bytes read */
73 static int st_rng_probe(struct platform_device
*pdev
)
75 struct st_rng_data
*ddata
;
80 ddata
= devm_kzalloc(&pdev
->dev
, sizeof(*ddata
), GFP_KERNEL
);
84 base
= devm_platform_ioremap_resource(pdev
, 0);
88 clk
= devm_clk_get(&pdev
->dev
, NULL
);
92 ret
= clk_prepare_enable(clk
);
96 ddata
->ops
.priv
= (unsigned long)ddata
;
97 ddata
->ops
.read
= st_rng_read
;
98 ddata
->ops
.name
= pdev
->name
;
102 dev_set_drvdata(&pdev
->dev
, ddata
);
104 ret
= devm_hwrng_register(&pdev
->dev
, &ddata
->ops
);
106 dev_err(&pdev
->dev
, "Failed to register HW RNG\n");
107 clk_disable_unprepare(clk
);
111 dev_info(&pdev
->dev
, "Successfully registered HW RNG\n");
116 static int st_rng_remove(struct platform_device
*pdev
)
118 struct st_rng_data
*ddata
= dev_get_drvdata(&pdev
->dev
);
120 clk_disable_unprepare(ddata
->clk
);
125 static const struct of_device_id st_rng_match
[] __maybe_unused
= {
126 { .compatible
= "st,rng" },
129 MODULE_DEVICE_TABLE(of
, st_rng_match
);
131 static struct platform_driver st_rng_driver
= {
133 .name
= "st-hwrandom",
134 .of_match_table
= of_match_ptr(st_rng_match
),
136 .probe
= st_rng_probe
,
137 .remove
= st_rng_remove
140 module_platform_driver(st_rng_driver
);
142 MODULE_AUTHOR("Pankaj Dev <pankaj.dev@st.com>");
143 MODULE_LICENSE("GPL v2");