mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
bcm2835-rng: Avoid initialising if already enabled
Avoids the 0x40000 cycles of warmup again if firmware has already used it
This commit is contained in:
@@ -102,8 +102,10 @@ static int bcm2835_rng_init(struct hwrng *rng)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* set warm-up count & enable */
|
/* set warm-up count & enable */
|
||||||
rng_writel(priv, RNG_WARMUP_COUNT, RNG_STATUS);
|
if (!(rng_readl(priv, RNG_CTRL) & RNG_RBGEN)) {
|
||||||
rng_writel(priv, RNG_RBGEN, RNG_CTRL);
|
rng_writel(priv, RNG_WARMUP_COUNT, RNG_STATUS);
|
||||||
|
rng_writel(priv, RNG_RBGEN, RNG_CTRL);
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user