xref: /linux/drivers/char/hw_random/stm32-rng.c (revision 436cdcdec02905d1523aec98891d3a1c889dd529)
1226b0b0aSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2c6a97c42SDaniel Thompson /*
3c6a97c42SDaniel Thompson  * Copyright (c) 2015, Daniel Thompson
4c6a97c42SDaniel Thompson  */
5c6a97c42SDaniel Thompson 
6c6a97c42SDaniel Thompson #include <linux/clk.h>
7c6a97c42SDaniel Thompson #include <linux/delay.h>
8c6a97c42SDaniel Thompson #include <linux/hw_random.h>
9c6a97c42SDaniel Thompson #include <linux/io.h>
10279f4f8fSlionel.debieve@st.com #include <linux/iopoll.h>
11c6a97c42SDaniel Thompson #include <linux/kernel.h>
12c6a97c42SDaniel Thompson #include <linux/module.h>
13c6a97c42SDaniel Thompson #include <linux/of_address.h>
14c6a97c42SDaniel Thompson #include <linux/of_platform.h>
15c6a97c42SDaniel Thompson #include <linux/pm_runtime.h>
16326ed382Slionel.debieve@st.com #include <linux/reset.h>
17c6a97c42SDaniel Thompson #include <linux/slab.h>
18c6a97c42SDaniel Thompson 
19c6a97c42SDaniel Thompson #define RNG_CR 0x00
20c6a97c42SDaniel Thompson #define RNG_CR_RNGEN BIT(2)
21529571edSlionel.debieve@st.com #define RNG_CR_CED BIT(5)
22c6a97c42SDaniel Thompson 
23c6a97c42SDaniel Thompson #define RNG_SR 0x04
24c6a97c42SDaniel Thompson #define RNG_SR_SEIS BIT(6)
25c6a97c42SDaniel Thompson #define RNG_SR_CEIS BIT(5)
26c6a97c42SDaniel Thompson #define RNG_SR_DRDY BIT(0)
27c6a97c42SDaniel Thompson 
28c6a97c42SDaniel Thompson #define RNG_DR 0x08
29c6a97c42SDaniel Thompson 
30c6a97c42SDaniel Thompson struct stm32_rng_private {
31c6a97c42SDaniel Thompson 	struct hwrng rng;
32c6a97c42SDaniel Thompson 	void __iomem *base;
33c6a97c42SDaniel Thompson 	struct clk *clk;
34326ed382Slionel.debieve@st.com 	struct reset_control *rst;
35529571edSlionel.debieve@st.com 	bool ced;
36c6a97c42SDaniel Thompson };
37c6a97c42SDaniel Thompson 
38c6a97c42SDaniel Thompson static int stm32_rng_read(struct hwrng *rng, void *data, size_t max, bool wait)
39c6a97c42SDaniel Thompson {
40c6a97c42SDaniel Thompson 	struct stm32_rng_private *priv =
41c6a97c42SDaniel Thompson 	    container_of(rng, struct stm32_rng_private, rng);
42c6a97c42SDaniel Thompson 	u32 sr;
43c6a97c42SDaniel Thompson 	int retval = 0;
44c6a97c42SDaniel Thompson 
45c6a97c42SDaniel Thompson 	pm_runtime_get_sync((struct device *) priv->rng.priv);
46c6a97c42SDaniel Thompson 
47c6a97c42SDaniel Thompson 	while (max > sizeof(u32)) {
48c6a97c42SDaniel Thompson 		sr = readl_relaxed(priv->base + RNG_SR);
49279f4f8fSlionel.debieve@st.com 		/* Manage timeout which is based on timer and take */
50279f4f8fSlionel.debieve@st.com 		/* care of initial delay time when enabling rng	*/
51c6a97c42SDaniel Thompson 		if (!sr && wait) {
52279f4f8fSlionel.debieve@st.com 			retval = readl_relaxed_poll_timeout_atomic(priv->base
53279f4f8fSlionel.debieve@st.com 								   + RNG_SR,
54279f4f8fSlionel.debieve@st.com 								   sr, sr,
55279f4f8fSlionel.debieve@st.com 								   10, 50000);
56279f4f8fSlionel.debieve@st.com 			if (retval)
57279f4f8fSlionel.debieve@st.com 				dev_err((struct device *)priv->rng.priv,
58279f4f8fSlionel.debieve@st.com 					"%s: timeout %x!\n", __func__, sr);
59c6a97c42SDaniel Thompson 		}
60c6a97c42SDaniel Thompson 
61c6a97c42SDaniel Thompson 		/* If error detected or data not ready... */
621ff69adfSMaxime Coquelin 		if (sr != RNG_SR_DRDY) {
631ff69adfSMaxime Coquelin 			if (WARN_ONCE(sr & (RNG_SR_SEIS | RNG_SR_CEIS),
641ff69adfSMaxime Coquelin 					"bad RNG status - %x\n", sr))
651ff69adfSMaxime Coquelin 				writel_relaxed(0, priv->base + RNG_SR);
66c6a97c42SDaniel Thompson 			break;
671ff69adfSMaxime Coquelin 		}
68c6a97c42SDaniel Thompson 
69c6a97c42SDaniel Thompson 		*(u32 *)data = readl_relaxed(priv->base + RNG_DR);
70c6a97c42SDaniel Thompson 
71c6a97c42SDaniel Thompson 		retval += sizeof(u32);
72c6a97c42SDaniel Thompson 		data += sizeof(u32);
73c6a97c42SDaniel Thompson 		max -= sizeof(u32);
74c6a97c42SDaniel Thompson 	}
75c6a97c42SDaniel Thompson 
76c6a97c42SDaniel Thompson 	pm_runtime_mark_last_busy((struct device *) priv->rng.priv);
77c6a97c42SDaniel Thompson 	pm_runtime_put_sync_autosuspend((struct device *) priv->rng.priv);
78c6a97c42SDaniel Thompson 
79c6a97c42SDaniel Thompson 	return retval || !wait ? retval : -EIO;
80c6a97c42SDaniel Thompson }
81c6a97c42SDaniel Thompson 
82c6a97c42SDaniel Thompson static int stm32_rng_init(struct hwrng *rng)
83c6a97c42SDaniel Thompson {
84c6a97c42SDaniel Thompson 	struct stm32_rng_private *priv =
85c6a97c42SDaniel Thompson 	    container_of(rng, struct stm32_rng_private, rng);
86c6a97c42SDaniel Thompson 	int err;
87c6a97c42SDaniel Thompson 
88c6a97c42SDaniel Thompson 	err = clk_prepare_enable(priv->clk);
89c6a97c42SDaniel Thompson 	if (err)
90c6a97c42SDaniel Thompson 		return err;
91c6a97c42SDaniel Thompson 
92529571edSlionel.debieve@st.com 	if (priv->ced)
93c6a97c42SDaniel Thompson 		writel_relaxed(RNG_CR_RNGEN, priv->base + RNG_CR);
94529571edSlionel.debieve@st.com 	else
95529571edSlionel.debieve@st.com 		writel_relaxed(RNG_CR_RNGEN | RNG_CR_CED,
96529571edSlionel.debieve@st.com 			       priv->base + RNG_CR);
97c6a97c42SDaniel Thompson 
98c6a97c42SDaniel Thompson 	/* clear error indicators */
99c6a97c42SDaniel Thompson 	writel_relaxed(0, priv->base + RNG_SR);
100c6a97c42SDaniel Thompson 
101c6a97c42SDaniel Thompson 	return 0;
102c6a97c42SDaniel Thompson }
103c6a97c42SDaniel Thompson 
104c6a97c42SDaniel Thompson static void stm32_rng_cleanup(struct hwrng *rng)
105c6a97c42SDaniel Thompson {
106c6a97c42SDaniel Thompson 	struct stm32_rng_private *priv =
107c6a97c42SDaniel Thompson 	    container_of(rng, struct stm32_rng_private, rng);
108c6a97c42SDaniel Thompson 
109c6a97c42SDaniel Thompson 	writel_relaxed(0, priv->base + RNG_CR);
110c6a97c42SDaniel Thompson 	clk_disable_unprepare(priv->clk);
111c6a97c42SDaniel Thompson }
112c6a97c42SDaniel Thompson 
113c6a97c42SDaniel Thompson static int stm32_rng_probe(struct platform_device *ofdev)
114c6a97c42SDaniel Thompson {
115c6a97c42SDaniel Thompson 	struct device *dev = &ofdev->dev;
116c6a97c42SDaniel Thompson 	struct device_node *np = ofdev->dev.of_node;
117c6a97c42SDaniel Thompson 	struct stm32_rng_private *priv;
118c6a97c42SDaniel Thompson 	struct resource res;
119c6a97c42SDaniel Thompson 	int err;
120c6a97c42SDaniel Thompson 
121c6a97c42SDaniel Thompson 	priv = devm_kzalloc(dev, sizeof(struct stm32_rng_private), GFP_KERNEL);
122c6a97c42SDaniel Thompson 	if (!priv)
123c6a97c42SDaniel Thompson 		return -ENOMEM;
124c6a97c42SDaniel Thompson 
125c6a97c42SDaniel Thompson 	err = of_address_to_resource(np, 0, &res);
126c6a97c42SDaniel Thompson 	if (err)
127c6a97c42SDaniel Thompson 		return err;
128c6a97c42SDaniel Thompson 
129c6a97c42SDaniel Thompson 	priv->base = devm_ioremap_resource(dev, &res);
130c6a97c42SDaniel Thompson 	if (IS_ERR(priv->base))
131c6a97c42SDaniel Thompson 		return PTR_ERR(priv->base);
132c6a97c42SDaniel Thompson 
133c6a97c42SDaniel Thompson 	priv->clk = devm_clk_get(&ofdev->dev, NULL);
134c6a97c42SDaniel Thompson 	if (IS_ERR(priv->clk))
135c6a97c42SDaniel Thompson 		return PTR_ERR(priv->clk);
136c6a97c42SDaniel Thompson 
137326ed382Slionel.debieve@st.com 	priv->rst = devm_reset_control_get(&ofdev->dev, NULL);
138326ed382Slionel.debieve@st.com 	if (!IS_ERR(priv->rst)) {
139326ed382Slionel.debieve@st.com 		reset_control_assert(priv->rst);
140326ed382Slionel.debieve@st.com 		udelay(2);
141326ed382Slionel.debieve@st.com 		reset_control_deassert(priv->rst);
142326ed382Slionel.debieve@st.com 	}
143326ed382Slionel.debieve@st.com 
144529571edSlionel.debieve@st.com 	priv->ced = of_property_read_bool(np, "clock-error-detect");
145529571edSlionel.debieve@st.com 
146c6a97c42SDaniel Thompson 	dev_set_drvdata(dev, priv);
147c6a97c42SDaniel Thompson 
148*436cdcdeSJulia Lawall 	priv->rng.name = dev_driver_string(dev);
149c6a97c42SDaniel Thompson #ifndef CONFIG_PM
150*436cdcdeSJulia Lawall 	priv->rng.init = stm32_rng_init;
151*436cdcdeSJulia Lawall 	priv->rng.cleanup = stm32_rng_cleanup;
152c6a97c42SDaniel Thompson #endif
153*436cdcdeSJulia Lawall 	priv->rng.read = stm32_rng_read;
154c6a97c42SDaniel Thompson 	priv->rng.priv = (unsigned long) dev;
15538a1965fSLionel Debieve 	priv->rng.quality = 900;
156c6a97c42SDaniel Thompson 
157c6a97c42SDaniel Thompson 	pm_runtime_set_autosuspend_delay(dev, 100);
158c6a97c42SDaniel Thompson 	pm_runtime_use_autosuspend(dev);
159c6a97c42SDaniel Thompson 	pm_runtime_enable(dev);
160c6a97c42SDaniel Thompson 
161c6a97c42SDaniel Thompson 	return devm_hwrng_register(dev, &priv->rng);
162c6a97c42SDaniel Thompson }
163c6a97c42SDaniel Thompson 
164af0d4442SLionel Debieve static int stm32_rng_remove(struct platform_device *ofdev)
165af0d4442SLionel Debieve {
166af0d4442SLionel Debieve 	pm_runtime_disable(&ofdev->dev);
167af0d4442SLionel Debieve 
168af0d4442SLionel Debieve 	return 0;
169af0d4442SLionel Debieve }
170af0d4442SLionel Debieve 
171c6a97c42SDaniel Thompson #ifdef CONFIG_PM
172c6a97c42SDaniel Thompson static int stm32_rng_runtime_suspend(struct device *dev)
173c6a97c42SDaniel Thompson {
174d6ba06b8SDaniel Thompson 	struct stm32_rng_private *priv = dev_get_drvdata(dev);
175c6a97c42SDaniel Thompson 
176c6a97c42SDaniel Thompson 	stm32_rng_cleanup(&priv->rng);
177c6a97c42SDaniel Thompson 
178c6a97c42SDaniel Thompson 	return 0;
179c6a97c42SDaniel Thompson }
180c6a97c42SDaniel Thompson 
181c6a97c42SDaniel Thompson static int stm32_rng_runtime_resume(struct device *dev)
182c6a97c42SDaniel Thompson {
183d6ba06b8SDaniel Thompson 	struct stm32_rng_private *priv = dev_get_drvdata(dev);
184c6a97c42SDaniel Thompson 
185c6a97c42SDaniel Thompson 	return stm32_rng_init(&priv->rng);
186c6a97c42SDaniel Thompson }
187c6a97c42SDaniel Thompson #endif
188c6a97c42SDaniel Thompson 
1899bae5494Slionel.debieve@st.com static const struct dev_pm_ops stm32_rng_pm_ops = {
1909bae5494Slionel.debieve@st.com 	SET_RUNTIME_PM_OPS(stm32_rng_runtime_suspend,
1919bae5494Slionel.debieve@st.com 			   stm32_rng_runtime_resume, NULL)
1929bae5494Slionel.debieve@st.com 	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1939bae5494Slionel.debieve@st.com 				pm_runtime_force_resume)
1949bae5494Slionel.debieve@st.com };
1959bae5494Slionel.debieve@st.com 
196c6a97c42SDaniel Thompson 
197c6a97c42SDaniel Thompson static const struct of_device_id stm32_rng_match[] = {
198c6a97c42SDaniel Thompson 	{
199c6a97c42SDaniel Thompson 		.compatible = "st,stm32-rng",
200c6a97c42SDaniel Thompson 	},
201c6a97c42SDaniel Thompson 	{},
202c6a97c42SDaniel Thompson };
203c6a97c42SDaniel Thompson MODULE_DEVICE_TABLE(of, stm32_rng_match);
204c6a97c42SDaniel Thompson 
205c6a97c42SDaniel Thompson static struct platform_driver stm32_rng_driver = {
206c6a97c42SDaniel Thompson 	.driver = {
207c6a97c42SDaniel Thompson 		.name = "stm32-rng",
208c6a97c42SDaniel Thompson 		.pm = &stm32_rng_pm_ops,
209c6a97c42SDaniel Thompson 		.of_match_table = stm32_rng_match,
210c6a97c42SDaniel Thompson 	},
211c6a97c42SDaniel Thompson 	.probe = stm32_rng_probe,
212af0d4442SLionel Debieve 	.remove = stm32_rng_remove,
213c6a97c42SDaniel Thompson };
214c6a97c42SDaniel Thompson 
215c6a97c42SDaniel Thompson module_platform_driver(stm32_rng_driver);
216c6a97c42SDaniel Thompson 
217c6a97c42SDaniel Thompson MODULE_LICENSE("GPL");
218c6a97c42SDaniel Thompson MODULE_AUTHOR("Daniel Thompson <daniel.thompson@linaro.org>");
219c6a97c42SDaniel Thompson MODULE_DESCRIPTION("STMicroelectronics STM32 RNG device driver");
220