2006-06-26 00:24:59 -07:00
|
|
|
#
|
|
|
|
# Makefile for HW Random Number Generator (RNG) device drivers.
|
|
|
|
#
|
|
|
|
|
2006-12-06 21:38:20 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM) += rng-core.o
|
|
|
|
rng-core-y := core.o
|
hwrng: timeriomem - New driver
Some hardware platforms, the TS-7800[1] is one for example, can
supply the kernel with an entropy source, albeit a slow one for
TS-7800 users, by just reading a particular IO address. This
source must not be read above a certain rate otherwise the quality
suffers.
The driver is then hooked into by calling
platform_device_(register|add|del) passing a structure similar to:
------
static struct timeriomem_rng_data ts78xx_ts_rng_data = {
.address = (u32 *__iomem) TS_RNG,
.period = 1000000, /* one second */
};
static struct platform_device ts78xx_ts_rng_device = {
.name = "timeriomem_rng",
.id = -1,
.dev = {
.platform_data = &ts78xx_ts_rng_data,
},
.num_resources = 0,
};
------
[1] http://www.embeddedarm.com/products/board-detail.php?product=TS-7800
Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2009-02-21 21:03:56 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_TIMERIOMEM) += timeriomem-rng.o
|
2006-06-26 00:24:59 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_INTEL) += intel-rng.o
|
2006-06-26 00:25:00 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_AMD) += amd-rng.o
|
2011-10-06 10:56:30 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_ATMEL) += atmel-rng.o
|
2012-07-24 07:33:11 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_BCM63XX) += bcm63xx-rng.o
|
2006-06-26 00:25:01 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_GEODE) += geode-rng.o
|
2008-06-03 15:56:11 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_N2RNG) += n2-rng.o
|
|
|
|
n2-rng-y := n2-drv.o n2-asm.o
|
2006-06-26 00:25:02 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_VIA) += via-rng.o
|
2006-06-26 00:25:02 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_IXP4XX) += ixp4xx-rng.o
|
2006-06-26 00:25:03 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_OMAP) += omap-rng.o
|
2007-05-09 02:33:35 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_PASEMI) += pasemi-rng.o
|
2008-05-30 13:09:44 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_VIRTIO) += virtio-rng.o
|
2009-06-02 07:54:21 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_TX4939) += tx4939-rng.o
|
2009-04-02 08:38:41 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_MXC_RNGA) += mxc-rnga.o
|
2009-08-20 14:10:23 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_OCTEON) += octeon-rng.o
|
2009-12-19 04:45:43 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_NOMADIK) += nomadik-rng.o
|
2011-01-23 00:58:29 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_PICOXCELL) += picoxcell-rng.o
|
2011-06-27 00:34:54 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_PPC4XX) += ppc4xx-rng.o
|
2012-04-11 22:08:53 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_PSERIES) += pseries-rng.o
|
2012-06-28 17:43:26 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_EXYNOS) += exynos-rng.o
|
2012-08-08 12:18:57 -07:00
|
|
|
obj-$(CONFIG_HW_RANDOM_TPM) += tpm-rng.o
|