| Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1 | # | 
 | 2 | # Hardware Random Number Generator (RNG) configuration | 
 | 3 | # | 
 | 4 |  | 
 | 5 | config HW_RANDOM | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 6 | 	tristate "Hardware Random Number Generator Core support" | 
 | 7 | 	default m | 
| Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 8 | 	---help--- | 
 | 9 | 	  Hardware Random Number Generator Core infrastructure. | 
 | 10 |  | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 11 | 	  To compile this driver as a module, choose M here: the | 
| David Brownell | 537878d | 2008-03-24 12:29:51 -0700 | [diff] [blame] | 12 | 	  module will be called rng-core.  This provides a device | 
 | 13 | 	  that's usually called /dev/hw_random, and which exposes one | 
 | 14 | 	  of possibly several hardware random number generators. | 
 | 15 |  | 
 | 16 | 	  These hardware random number generators do not feed directly | 
 | 17 | 	  into the kernel's random number generator.  That is usually | 
 | 18 | 	  handled by the "rngd" daemon.  Documentation/hw_random.txt | 
 | 19 | 	  has more information. | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 20 |  | 
| Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 21 | 	  If unsure, say Y. | 
| Michael Buesch | ca644bd | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 22 |  | 
| Alexander Clouter | 9c3c133 | 2009-02-22 12:03:56 +0800 | [diff] [blame] | 23 | config HW_RANDOM_TIMERIOMEM | 
 | 24 | 	tristate "Timer IOMEM HW Random Number Generator support" | 
| Heiko Carstens | e88cd6f | 2009-03-21 14:19:04 +0800 | [diff] [blame] | 25 | 	depends on HW_RANDOM && HAS_IOMEM | 
| Alexander Clouter | 9c3c133 | 2009-02-22 12:03:56 +0800 | [diff] [blame] | 26 | 	---help--- | 
 | 27 | 	  This driver provides kernel-side support for a generic Random | 
 | 28 | 	  Number Generator used by reading a 'dumb' iomem address that | 
 | 29 | 	  is to be read no faster than, for example, once a second; | 
 | 30 | 	  the default FPGA bitstream on the TS-7800 has such functionality. | 
 | 31 |  | 
 | 32 | 	  To compile this driver as a module, choose M here: the | 
 | 33 | 	  module will be called timeriomem-rng. | 
 | 34 |  | 
 | 35 | 	  If unsure, say Y. | 
 | 36 |  | 
| Michael Buesch | ca644bd | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 37 | config HW_RANDOM_INTEL | 
 | 38 | 	tristate "Intel HW Random Number Generator support" | 
 | 39 | 	depends on HW_RANDOM && (X86 || IA64) && PCI | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 40 | 	default HW_RANDOM | 
| Michael Buesch | ca644bd | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 41 | 	---help--- | 
 | 42 | 	  This driver provides kernel-side support for the Random Number | 
 | 43 | 	  Generator hardware found on Intel i8xx-based motherboards. | 
 | 44 |  | 
 | 45 | 	  To compile this driver as a module, choose M here: the | 
 | 46 | 	  module will be called intel-rng. | 
 | 47 |  | 
 | 48 | 	  If unsure, say Y. | 
| Michael Buesch | 96d63c0 | 2006-06-26 00:25:00 -0700 | [diff] [blame] | 49 |  | 
 | 50 | config HW_RANDOM_AMD | 
 | 51 | 	tristate "AMD HW Random Number Generator support" | 
| Dmitry Eremin-Solenikov | 3023b5b | 2011-04-27 23:21:16 +0400 | [diff] [blame] | 52 | 	depends on HW_RANDOM && (X86 || PPC_MAPLE) && PCI | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 53 | 	default HW_RANDOM | 
| Michael Buesch | 96d63c0 | 2006-06-26 00:25:00 -0700 | [diff] [blame] | 54 | 	---help--- | 
 | 55 | 	  This driver provides kernel-side support for the Random Number | 
 | 56 | 	  Generator hardware found on AMD 76x-based motherboards. | 
 | 57 |  | 
 | 58 | 	  To compile this driver as a module, choose M here: the | 
 | 59 | 	  module will be called amd-rng. | 
 | 60 |  | 
 | 61 | 	  If unsure, say Y. | 
| Michael Buesch | ef5d862 | 2006-06-26 00:25:01 -0700 | [diff] [blame] | 62 |  | 
 | 63 | config HW_RANDOM_GEODE | 
 | 64 | 	tristate "AMD Geode HW Random Number Generator support" | 
| Yinghai Lu | e199ece | 2007-07-21 17:11:22 +0200 | [diff] [blame] | 65 | 	depends on HW_RANDOM && X86_32 && PCI | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 66 | 	default HW_RANDOM | 
| Michael Buesch | ef5d862 | 2006-06-26 00:25:01 -0700 | [diff] [blame] | 67 | 	---help--- | 
 | 68 | 	  This driver provides kernel-side support for the Random Number | 
 | 69 | 	  Generator hardware found on the AMD Geode LX. | 
 | 70 |  | 
 | 71 | 	  To compile this driver as a module, choose M here: the | 
 | 72 | 	  module will be called geode-rng. | 
 | 73 |  | 
 | 74 | 	  If unsure, say Y. | 
| Michael Buesch | 1352336 | 2006-06-26 00:25:02 -0700 | [diff] [blame] | 75 |  | 
| David S. Miller | ce08715 | 2008-06-03 15:56:11 -0700 | [diff] [blame] | 76 | config HW_RANDOM_N2RNG | 
 | 77 | 	tristate "Niagara2 Random Number Generator support" | 
 | 78 | 	depends on HW_RANDOM && SPARC64 | 
 | 79 | 	default HW_RANDOM | 
 | 80 | 	---help--- | 
 | 81 | 	  This driver provides kernel-side support for the Random Number | 
 | 82 | 	  Generator hardware found on Niagara2 cpus. | 
 | 83 |  | 
 | 84 | 	  To compile this driver as a module, choose M here: the | 
 | 85 | 	  module will be called n2-rng. | 
 | 86 |  | 
 | 87 | 	  If unsure, say Y. | 
 | 88 |  | 
| Michael Buesch | 1352336 | 2006-06-26 00:25:02 -0700 | [diff] [blame] | 89 | config HW_RANDOM_VIA | 
 | 90 | 	tristate "VIA HW Random Number Generator support" | 
| Harald Welte | e9736c1 | 2009-05-15 16:01:52 +1000 | [diff] [blame] | 91 | 	depends on HW_RANDOM && X86 | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 92 | 	default HW_RANDOM | 
| Michael Buesch | 1352336 | 2006-06-26 00:25:02 -0700 | [diff] [blame] | 93 | 	---help--- | 
 | 94 | 	  This driver provides kernel-side support for the Random Number | 
 | 95 | 	  Generator hardware found on VIA based motherboards. | 
 | 96 |  | 
 | 97 | 	  To compile this driver as a module, choose M here: the | 
 | 98 | 	  module will be called via-rng. | 
 | 99 |  | 
 | 100 | 	  If unsure, say Y. | 
| Michael Buesch | d7174bc | 2006-06-26 00:25:02 -0700 | [diff] [blame] | 101 |  | 
 | 102 | config HW_RANDOM_IXP4XX | 
 | 103 | 	tristate "Intel IXP4xx NPU HW Random Number Generator support" | 
 | 104 | 	depends on HW_RANDOM && ARCH_IXP4XX | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 105 | 	default HW_RANDOM | 
| Michael Buesch | d7174bc | 2006-06-26 00:25:02 -0700 | [diff] [blame] | 106 | 	---help--- | 
 | 107 | 	  This driver provides kernel-side support for the Random | 
 | 108 | 	  Number Generator hardware found on the Intel IXP4xx NPU. | 
 | 109 |  | 
 | 110 | 	  To compile this driver as a module, choose M here: the | 
 | 111 | 	  module will be called ixp4xx-rng. | 
 | 112 |  | 
 | 113 | 	  If unsure, say Y. | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 114 |  | 
 | 115 | config HW_RANDOM_OMAP | 
 | 116 | 	tristate "OMAP Random Number Generator support" | 
| Tony Lindgren | 088ef95 | 2010-02-12 12:26:47 -0800 | [diff] [blame] | 117 | 	depends on HW_RANDOM && (ARCH_OMAP16XX || ARCH_OMAP2) | 
| Jan Beulich | fed806f | 2006-12-06 20:38:20 -0800 | [diff] [blame] | 118 | 	default HW_RANDOM | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 119 |  	---help--- | 
 | 120 |  	  This driver provides kernel-side support for the Random Number | 
 | 121 | 	  Generator hardware found on OMAP16xx and OMAP24xx multimedia | 
 | 122 | 	  processors. | 
 | 123 |  | 
 | 124 | 	  To compile this driver as a module, choose M here: the | 
 | 125 | 	  module will be called omap-rng. | 
 | 126 |  | 
 | 127 |  	  If unsure, say Y. | 
| Olof Johansson | b8cb344 | 2007-05-09 02:33:35 -0700 | [diff] [blame] | 128 |  | 
| David Daney | f7557dc | 2009-08-20 14:10:23 -0700 | [diff] [blame] | 129 | config HW_RANDOM_OCTEON | 
 | 130 | 	tristate "Octeon Random Number Generator support" | 
 | 131 | 	depends on HW_RANDOM && CPU_CAVIUM_OCTEON | 
 | 132 | 	default HW_RANDOM | 
 | 133 | 	---help--- | 
 | 134 | 	  This driver provides kernel-side support for the Random Number | 
 | 135 | 	  Generator hardware found on Octeon processors. | 
 | 136 |  | 
 | 137 | 	  To compile this driver as a module, choose M here: the | 
 | 138 | 	  module will be called octeon-rng. | 
 | 139 |  | 
 | 140 | 	  If unsure, say Y. | 
 | 141 |  | 
| Olof Johansson | b8cb344 | 2007-05-09 02:33:35 -0700 | [diff] [blame] | 142 | config HW_RANDOM_PASEMI | 
 | 143 | 	tristate "PA Semi HW Random Number Generator support" | 
 | 144 | 	depends on HW_RANDOM && PPC_PASEMI | 
 | 145 | 	default HW_RANDOM | 
 | 146 | 	---help--- | 
 | 147 | 	  This driver provides kernel-side support for the Random Number | 
| Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 148 | 	  Generator hardware found on PA Semi PWRficient SoCs. | 
| Olof Johansson | b8cb344 | 2007-05-09 02:33:35 -0700 | [diff] [blame] | 149 |  | 
 | 150 | 	  To compile this driver as a module, choose M here: the | 
 | 151 | 	  module will be called pasemi-rng. | 
 | 152 |  | 
 | 153 | 	  If unsure, say Y. | 
 | 154 |  | 
| Rusty Russell | f7f510e | 2008-05-30 15:09:44 -0500 | [diff] [blame] | 155 | config HW_RANDOM_VIRTIO | 
 | 156 | 	tristate "VirtIO Random Number Generator support" | 
 | 157 | 	depends on HW_RANDOM && VIRTIO | 
 | 158 | 	---help--- | 
 | 159 | 	  This driver provides kernel-side support for the virtual Random Number | 
 | 160 | 	  Generator hardware. | 
 | 161 |  | 
 | 162 | 	  To compile this driver as a module, choose M here: the | 
 | 163 | 	  module will be called virtio-rng.  If unsure, say N. | 
| Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 164 |  | 
| Atsushi Nemoto | 049a947 | 2009-06-02 23:54:21 +0900 | [diff] [blame] | 165 | config HW_RANDOM_TX4939 | 
 | 166 | 	tristate "TX4939 Random Number Generator support" | 
 | 167 | 	depends on HW_RANDOM && SOC_TX4939 | 
 | 168 | 	default HW_RANDOM | 
 | 169 | 	---help--- | 
 | 170 | 	  This driver provides kernel-side support for the Random Number | 
 | 171 | 	  Generator hardware found on TX4939 SoC. | 
 | 172 |  | 
 | 173 | 	  To compile this driver as a module, choose M here: the | 
 | 174 | 	  module will be called tx4939-rng. | 
 | 175 |  | 
 | 176 | 	  If unsure, say Y. | 
 | 177 |  | 
| Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 178 | config HW_RANDOM_MXC_RNGA | 
 | 179 | 	tristate "Freescale i.MX RNGA Random Number Generator" | 
 | 180 | 	depends on HW_RANDOM && ARCH_HAS_RNGA | 
 | 181 | 	---help--- | 
 | 182 | 	  This driver provides kernel-side support for the Random Number | 
 | 183 | 	  Generator hardware found on Freescale i.MX processors. | 
 | 184 |  | 
 | 185 | 	  To compile this driver as a module, choose M here: the | 
 | 186 | 	  module will be called mxc-rnga. | 
 | 187 |  | 
 | 188 | 	  If unsure, say Y. | 
| Alessandro Rubini | bc85b25 | 2009-12-19 19:45:43 +0800 | [diff] [blame] | 189 |  | 
 | 190 | config HW_RANDOM_NOMADIK | 
 | 191 | 	tristate "ST-Ericsson Nomadik Random Number Generator support" | 
 | 192 | 	depends on HW_RANDOM && PLAT_NOMADIK | 
 | 193 | 	---help--- | 
 | 194 | 	  This driver provides kernel-side support for the Random Number | 
 | 195 | 	  Generator hardware found on ST-Ericsson SoCs (8815 and 8500). | 
 | 196 |  | 
 | 197 | 	  To compile this driver as a module, choose M here: the | 
 | 198 | 	  module will be called nomadik-rng. | 
 | 199 |  | 
 | 200 | 	  If unsure, say Y. | 
| Jamie Iles | 5efb94e | 2011-01-23 18:58:29 +1100 | [diff] [blame] | 201 |  | 
 | 202 | config HW_RANDOM_PICOXCELL | 
 | 203 | 	tristate "Picochip picoXcell true random number generator support" | 
 | 204 | 	depends on HW_RANDOM && ARCH_PICOXCELL && PICOXCELL_PC3X3 | 
 | 205 | 	---help--- | 
 | 206 | 	  This driver provides kernel-side support for the Random Number | 
 | 207 | 	  Generator hardware found on Picochip PC3x3 and later devices. | 
 | 208 |  | 
 | 209 | 	  To compile this driver as a module, choose M here: the | 
 | 210 | 	  module will be called picoxcell-rng. | 
 | 211 |  | 
 | 212 | 	  If unsure, say Y. | 
| Josh Boyer | 52527cf | 2011-06-27 15:34:54 +0800 | [diff] [blame] | 213 |  | 
 | 214 | config HW_RANDOM_PPC4XX | 
 | 215 | 	tristate "PowerPC 4xx generic true random number generator support" | 
 | 216 | 	depends on HW_RANDOM && PPC && 4xx | 
 | 217 | 	---help--- | 
 | 218 | 	 This driver provides the kernel-side support for the TRNG hardware | 
 | 219 | 	 found in the security function of some PowerPC 4xx SoCs. | 
 | 220 |  | 
 | 221 | 	 To compile this driver as a module, choose M here: the | 
 | 222 | 	 module will be called ppc4xx-rng. | 
 | 223 |  | 
 | 224 | 	 If unsure, say N. |