forked from Openwrt/openwrt
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
850 B
Diff
26 lines
850 B
Diff
From bf03fa485094a2483bad7d27537f532d04e8d860 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Tue, 6 Dec 2016 17:05:39 +0000
|
|
Subject: [PATCH 0076/1085] 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
|
|
@@ -105,8 +105,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;
|
|
}
|