mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 03:24:19 +02:00
hwrng: exynos - Implement bus clock control
Some SoCs like Exynos850 might require the SSS bus clock (PCLK) to be enabled in order to access TRNG registers. Add and handle the optional PCLK clock accordingly to make it possible. Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Anand Moon <linux.amoon@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
81da8056e9
commit
e003d67067
|
|
@ -47,7 +47,8 @@
|
|||
struct exynos_trng_dev {
|
||||
struct device *dev;
|
||||
void __iomem *mem;
|
||||
struct clk *clk;
|
||||
struct clk *clk; /* operating clock */
|
||||
struct clk *pclk; /* bus clock */
|
||||
struct hwrng rng;
|
||||
};
|
||||
|
||||
|
|
@ -141,6 +142,13 @@ static int exynos_trng_probe(struct platform_device *pdev)
|
|||
goto err_clock;
|
||||
}
|
||||
|
||||
trng->pclk = devm_clk_get_optional_enabled(&pdev->dev, "pclk");
|
||||
if (IS_ERR(trng->pclk)) {
|
||||
ret = dev_err_probe(&pdev->dev, PTR_ERR(trng->pclk),
|
||||
"Could not get pclk\n");
|
||||
goto err_clock;
|
||||
}
|
||||
|
||||
ret = devm_hwrng_register(&pdev->dev, &trng->rng);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Could not register hwrng device.\n");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user