Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

hwrng: iproc-rng200 - Add support for BCM2711

BCM2711 features a RNG200 hardware random number generator block.
So make the driver available.

Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Signed-off-by: Stephen Brennan <stephen@brennan.io>
Reviewed-by: Matthias Brugger <mbrugger@suse.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Stefan Wahren and committed by
Herbert Xu
0f95b09a efdd6099

+2 -1
+1 -1
drivers/char/hw_random/Kconfig
··· 90 90 91 91 config HW_RANDOM_IPROC_RNG200 92 92 tristate "Broadcom iProc/STB RNG200 support" 93 - depends on ARCH_BCM_IPROC || ARCH_BRCMSTB 93 + depends on ARCH_BCM_IPROC || ARCH_BCM2835 || ARCH_BRCMSTB 94 94 default HW_RANDOM 95 95 ---help--- 96 96 This driver provides kernel-side support for the RNG200
+1
drivers/char/hw_random/iproc-rng200.c
··· 213 213 } 214 214 215 215 static const struct of_device_id iproc_rng200_of_match[] = { 216 + { .compatible = "brcm,bcm2711-rng200", }, 216 217 { .compatible = "brcm,bcm7211-rng200", }, 217 218 { .compatible = "brcm,bcm7278-rng200", }, 218 219 { .compatible = "brcm,iproc-rng200", },