These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
840 B
Diff
25 lines
840 B
Diff
From 5209f993b47e8364984ccad3b5c1a8ae0aad5a43 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Tue, 6 Dec 2016 17:05:39 +0000
|
|
Subject: [PATCH] bcm2835-rng: Avoid initialising if already enabled
|
|
|
|
Avoids the 0x40000 cycles of warmup again if firmware has already used it
|
|
---
|
|
drivers/char/hw_random/bcm2835-rng.c | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/char/hw_random/bcm2835-rng.c
|
|
+++ b/drivers/char/hw_random/bcm2835-rng.c
|
|
@@ -107,8 +107,10 @@ static int bcm2835_rng_init(struct hwrng
|
|
}
|
|
|
|
/* set warm-up count & enable */
|
|
- rng_writel(priv, RNG_WARMUP_COUNT, RNG_STATUS);
|
|
- rng_writel(priv, RNG_RBGEN, RNG_CTRL);
|
|
+ if (!(rng_readl(priv, RNG_CTRL) & RNG_RBGEN)) {
|
|
+ rng_writel(priv, RNG_WARMUP_COUNT, RNG_STATUS);
|
|
+ rng_writel(priv, RNG_RBGEN, RNG_CTRL);
|
|
+ }
|
|
|
|
return ret;
|
|
}
|