diff options
author | Jonghwa Lee <jonghwa3.lee@samsung.com> | 2012-06-28 20:43:26 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-07-10 23:06:14 -0400 |
commit | b329669ea0b5b02efd41f94372bcf0e988814af4 (patch) | |
tree | 99426c67437296b466caefac3cfd3d9a9bc163fc /drivers/char/hw_random/Kconfig | |
parent | bf084d8f6eb4ded3f90a6ab79bb682db00ebfbd4 (diff) |
hwrng: exynos - Add support for Exynos random number generator
This patch supports Exynos SOC's PRNG driver. Exynos's PRNG has 5 seeds and
5 random number outputs. Module is excuted under runtime power management control,
so it activates only while it's in use. Otherwise it will be suspended generally.
It was tested on PQ board by rngtest program.
Signed-off-by: Jonghwa Lee <jonghwa3.lee@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/char/hw_random/Kconfig')
-rw-r--r-- | drivers/char/hw_random/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig index f45dad39a18b..b01d67328243 100644 --- a/drivers/char/hw_random/Kconfig +++ b/drivers/char/hw_random/Kconfig | |||
@@ -263,3 +263,15 @@ config HW_RANDOM_PSERIES | |||
263 | module will be called pseries-rng. | 263 | module will be called pseries-rng. |
264 | 264 | ||
265 | If unsure, say Y. | 265 | If unsure, say Y. |
266 | |||
267 | config HW_RANDOM_EXYNOS | ||
268 | tristate "EXYNOS HW random number generator support" | ||
269 | depends on HW_RANDOM && HAS_IOMEM && HAVE_CLK | ||
270 | ---help--- | ||
271 | This driver provides kernel-side support for the Random Number | ||
272 | Generator hardware found on EXYNOS SOCs. | ||
273 | |||
274 | To compile this driver as a module, choose M here: the | ||
275 | module will be called exynos-rng. | ||
276 | |||
277 | If unsure, say Y. | ||