Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | comment "Processor Type" |
| 2 | |
| 3 | config CPU_32 |
| 4 | bool |
| 5 | default y |
| 6 | |
| 7 | # Select CPU types depending on the architecture selected. This selects |
| 8 | # which CPUs we support in the kernel image, and the compiler instruction |
| 9 | # optimiser behaviour. |
| 10 | |
| 11 | # ARM610 |
| 12 | config CPU_ARM610 |
| 13 | bool "Support ARM610 processor" |
| 14 | depends on ARCH_RPC |
| 15 | select CPU_32v3 |
| 16 | select CPU_CACHE_V3 |
| 17 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 18 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 19 | select CPU_COPY_V3 if MMU |
| 20 | select CPU_TLB_V3 if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | help |
| 22 | The ARM610 is the successor to the ARM3 processor |
| 23 | and was produced by VLSI Technology Inc. |
| 24 | |
| 25 | Say Y if you want support for the ARM610 processor. |
| 26 | Otherwise, say N. |
| 27 | |
| 28 | # ARM710 |
| 29 | config CPU_ARM710 |
| 30 | bool "Support ARM710 processor" if !ARCH_CLPS7500 && ARCH_RPC |
| 31 | default y if ARCH_CLPS7500 |
| 32 | select CPU_32v3 |
| 33 | select CPU_CACHE_V3 |
| 34 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 35 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 36 | select CPU_COPY_V3 if MMU |
| 37 | select CPU_TLB_V3 if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | help |
| 39 | A 32-bit RISC microprocessor based on the ARM7 processor core |
| 40 | designed by Advanced RISC Machines Ltd. The ARM710 is the |
| 41 | successor to the ARM610 processor. It was released in |
| 42 | July 1994 by VLSI Technology Inc. |
| 43 | |
| 44 | Say Y if you want support for the ARM710 processor. |
| 45 | Otherwise, say N. |
| 46 | |
| 47 | # ARM720T |
| 48 | config CPU_ARM720T |
| 49 | bool "Support ARM720T processor" if !ARCH_CLPS711X && !ARCH_L7200 && !ARCH_CDB89712 && ARCH_INTEGRATOR |
| 50 | default y if ARCH_CLPS711X || ARCH_L7200 || ARCH_CDB89712 || ARCH_H720X |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 51 | select CPU_32v4T |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | select CPU_ABRT_LV4T |
| 53 | select CPU_CACHE_V4 |
| 54 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 55 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 56 | select CPU_COPY_V4WT if MMU |
| 57 | select CPU_TLB_V4WT if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | help |
| 59 | A 32-bit RISC processor with 8kByte Cache, Write Buffer and |
| 60 | MMU built around an ARM7TDMI core. |
| 61 | |
| 62 | Say Y if you want support for the ARM720T processor. |
| 63 | Otherwise, say N. |
| 64 | |
| 65 | # ARM920T |
| 66 | config CPU_ARM920T |
Ben Dooks | 3434d9d | 2006-06-24 21:21:28 +0100 | [diff] [blame] | 67 | bool "Support ARM920T processor" |
| 68 | depends on ARCH_EP93XX || ARCH_INTEGRATOR || CPU_S3C2410 || CPU_S3C2440 || CPU_S3C2442 || ARCH_IMX || ARCH_AAEC2000 || ARCH_AT91RM9200 |
| 69 | default y if CPU_S3C2410 || CPU_S3C2440 || CPU_S3C2442 || ARCH_AT91RM9200 |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 70 | select CPU_32v4T |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | select CPU_ABRT_EV4T |
| 72 | select CPU_CACHE_V4WT |
| 73 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 74 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 75 | select CPU_COPY_V4WB if MMU |
| 76 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | help |
| 78 | The ARM920T is licensed to be produced by numerous vendors, |
| 79 | and is used in the Maverick EP9312 and the Samsung S3C2410. |
| 80 | |
| 81 | More information on the Maverick EP9312 at |
| 82 | <http://linuxdevices.com/products/PD2382866068.html>. |
| 83 | |
| 84 | Say Y if you want support for the ARM920T processor. |
| 85 | Otherwise, say N. |
| 86 | |
| 87 | # ARM922T |
| 88 | config CPU_ARM922T |
| 89 | bool "Support ARM922T processor" if ARCH_INTEGRATOR |
Russell King | 0fec53a | 2006-01-08 22:37:46 +0000 | [diff] [blame] | 90 | depends on ARCH_LH7A40X || ARCH_INTEGRATOR |
| 91 | default y if ARCH_LH7A40X |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 92 | select CPU_32v4T |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | select CPU_ABRT_EV4T |
| 94 | select CPU_CACHE_V4WT |
| 95 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 96 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 97 | select CPU_COPY_V4WB if MMU |
| 98 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | help |
| 100 | The ARM922T is a version of the ARM920T, but with smaller |
| 101 | instruction and data caches. It is used in Altera's |
| 102 | Excalibur XA device family. |
| 103 | |
| 104 | Say Y if you want support for the ARM922T processor. |
| 105 | Otherwise, say N. |
| 106 | |
| 107 | # ARM925T |
| 108 | config CPU_ARM925T |
Tony Lindgren | b288f75 | 2005-07-10 19:58:08 +0100 | [diff] [blame] | 109 | bool "Support ARM925T processor" if ARCH_OMAP1 |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 110 | depends on ARCH_OMAP15XX |
| 111 | default y if ARCH_OMAP15XX |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 112 | select CPU_32v4T |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | select CPU_ABRT_EV4T |
| 114 | select CPU_CACHE_V4WT |
| 115 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 116 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 117 | select CPU_COPY_V4WB if MMU |
| 118 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | help |
| 120 | The ARM925T is a mix between the ARM920T and ARM926T, but with |
| 121 | different instruction and data caches. It is used in TI's OMAP |
| 122 | device family. |
| 123 | |
| 124 | Say Y if you want support for the ARM925T processor. |
| 125 | Otherwise, say N. |
| 126 | |
| 127 | # ARM926T |
| 128 | config CPU_ARM926T |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 129 | bool "Support ARM926T processor" |
Andrew Victor | 8fc5ffa | 2006-06-29 16:06:33 +0100 | [diff] [blame] | 130 | depends on ARCH_INTEGRATOR || ARCH_VERSATILE_PB || MACH_VERSATILE_AB || ARCH_OMAP730 || ARCH_OMAP16XX || MACH_REALVIEW_EB || ARCH_PNX4008 || ARCH_NETX || CPU_S3C2412 || ARCH_AT91SAM9260 || ARCH_AT91SAM9261 |
| 131 | default y if ARCH_VERSATILE_PB || MACH_VERSATILE_AB || ARCH_OMAP730 || ARCH_OMAP16XX || ARCH_PNX4008 || ARCH_NETX || CPU_S3C2412 || ARCH_AT91SAM9260 || ARCH_AT91SAM9261 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | select CPU_32v5 |
| 133 | select CPU_ABRT_EV5TJ |
| 134 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 135 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 136 | select CPU_COPY_V4WB if MMU |
| 137 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | help |
| 139 | This is a variant of the ARM920. It has slightly different |
| 140 | instruction sequences for cache and TLB operations. Curiously, |
| 141 | there is no documentation on it at the ARM corporate website. |
| 142 | |
| 143 | Say Y if you want support for the ARM926T processor. |
| 144 | Otherwise, say N. |
| 145 | |
| 146 | # ARM1020 - needs validating |
| 147 | config CPU_ARM1020 |
| 148 | bool "Support ARM1020T (rev 0) processor" |
| 149 | depends on ARCH_INTEGRATOR |
| 150 | select CPU_32v5 |
| 151 | select CPU_ABRT_EV4T |
| 152 | select CPU_CACHE_V4WT |
| 153 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 154 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 155 | select CPU_COPY_V4WB if MMU |
| 156 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | help |
| 158 | The ARM1020 is the 32K cached version of the ARM10 processor, |
| 159 | with an addition of a floating-point unit. |
| 160 | |
| 161 | Say Y if you want support for the ARM1020 processor. |
| 162 | Otherwise, say N. |
| 163 | |
| 164 | # ARM1020E - needs validating |
| 165 | config CPU_ARM1020E |
| 166 | bool "Support ARM1020E processor" |
| 167 | depends on ARCH_INTEGRATOR |
| 168 | select CPU_32v5 |
| 169 | select CPU_ABRT_EV4T |
| 170 | select CPU_CACHE_V4WT |
| 171 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 172 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 173 | select CPU_COPY_V4WB if MMU |
| 174 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | depends on n |
| 176 | |
| 177 | # ARM1022E |
| 178 | config CPU_ARM1022 |
| 179 | bool "Support ARM1022E processor" |
| 180 | depends on ARCH_INTEGRATOR |
| 181 | select CPU_32v5 |
| 182 | select CPU_ABRT_EV4T |
| 183 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 184 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 185 | select CPU_COPY_V4WB if MMU # can probably do better |
| 186 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | help |
| 188 | The ARM1022E is an implementation of the ARMv5TE architecture |
| 189 | based upon the ARM10 integer core with a 16KiB L1 Harvard cache, |
| 190 | embedded trace macrocell, and a floating-point unit. |
| 191 | |
| 192 | Say Y if you want support for the ARM1022E processor. |
| 193 | Otherwise, say N. |
| 194 | |
| 195 | # ARM1026EJ-S |
| 196 | config CPU_ARM1026 |
| 197 | bool "Support ARM1026EJ-S processor" |
| 198 | depends on ARCH_INTEGRATOR |
| 199 | select CPU_32v5 |
| 200 | select CPU_ABRT_EV5T # But need Jazelle, but EV5TJ ignores bit 10 |
| 201 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 202 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 203 | select CPU_COPY_V4WB if MMU # can probably do better |
| 204 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | help |
| 206 | The ARM1026EJ-S is an implementation of the ARMv5TEJ architecture |
| 207 | based upon the ARM10 integer core. |
| 208 | |
| 209 | Say Y if you want support for the ARM1026EJ-S processor. |
| 210 | Otherwise, say N. |
| 211 | |
| 212 | # SA110 |
| 213 | config CPU_SA110 |
| 214 | bool "Support StrongARM(R) SA-110 processor" if !ARCH_EBSA110 && !FOOTBRIDGE && !ARCH_TBOX && !ARCH_SHARK && !ARCH_NEXUSPCI && ARCH_RPC |
| 215 | default y if ARCH_EBSA110 || FOOTBRIDGE || ARCH_TBOX || ARCH_SHARK || ARCH_NEXUSPCI |
| 216 | select CPU_32v3 if ARCH_RPC |
| 217 | select CPU_32v4 if !ARCH_RPC |
| 218 | select CPU_ABRT_EV4 |
| 219 | select CPU_CACHE_V4WB |
| 220 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 221 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 222 | select CPU_COPY_V4WB if MMU |
| 223 | select CPU_TLB_V4WB if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | help |
| 225 | The Intel StrongARM(R) SA-110 is a 32-bit microprocessor and |
| 226 | is available at five speeds ranging from 100 MHz to 233 MHz. |
| 227 | More information is available at |
| 228 | <http://developer.intel.com/design/strong/sa110.htm>. |
| 229 | |
| 230 | Say Y if you want support for the SA-110 processor. |
| 231 | Otherwise, say N. |
| 232 | |
| 233 | # SA1100 |
| 234 | config CPU_SA1100 |
| 235 | bool |
| 236 | depends on ARCH_SA1100 |
| 237 | default y |
| 238 | select CPU_32v4 |
| 239 | select CPU_ABRT_EV4 |
| 240 | select CPU_CACHE_V4WB |
| 241 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 242 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 243 | select CPU_TLB_V4WB if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | # XScale |
| 246 | config CPU_XSCALE |
| 247 | bool |
Lennert Buytenhek | 3f7e581 | 2006-09-18 23:10:26 +0100 | [diff] [blame] | 248 | depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_PXA || ARCH_IXP4XX || ARCH_IXP2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | default y |
| 250 | select CPU_32v5 |
| 251 | select CPU_ABRT_EV5T |
| 252 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 253 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 254 | select CPU_TLB_V4WBI if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 256 | # XScale Core Version 3 |
| 257 | config CPU_XSC3 |
| 258 | bool |
| 259 | depends on ARCH_IXP23XX |
| 260 | default y |
| 261 | select CPU_32v5 |
| 262 | select CPU_ABRT_EV5T |
| 263 | select CPU_CACHE_VIVT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 264 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 265 | select CPU_TLB_V4WBI if MMU |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 266 | select IO_36 |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | # ARMv6 |
| 269 | config CPU_V6 |
| 270 | bool "Support ARM V6 processor" |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 271 | depends on ARCH_INTEGRATOR || MACH_REALVIEW_EB || ARCH_OMAP2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | select CPU_32v6 |
| 273 | select CPU_ABRT_EV6 |
| 274 | select CPU_CACHE_V6 |
| 275 | select CPU_CACHE_VIPT |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 276 | select CPU_CP15_MMU |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 277 | select CPU_COPY_V6 if MMU |
| 278 | select CPU_TLB_V6 if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Russell King | 4a5f79e | 2005-11-03 15:48:21 +0000 | [diff] [blame] | 280 | # ARMv6k |
| 281 | config CPU_32v6K |
| 282 | bool "Support ARM V6K processor extensions" if !SMP |
| 283 | depends on CPU_V6 |
| 284 | default y if SMP |
| 285 | help |
| 286 | Say Y here if your ARMv6 processor supports the 'K' extension. |
| 287 | This enables the kernel to use some instructions not present |
| 288 | on previous processors, and as such a kernel build with this |
| 289 | enabled will not boot on processors with do not support these |
| 290 | instructions. |
| 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | # Figure out what processor architecture version we should be using. |
| 293 | # This defines the compiler instruction set which depends on the machine type. |
| 294 | config CPU_32v3 |
| 295 | bool |
Russell King | 60b6cf6 | 2006-06-19 17:36:43 +0100 | [diff] [blame] | 296 | select TLS_REG_EMUL if SMP || !MMU |
Russell King | 48fa14f | 2006-03-16 14:52:33 +0000 | [diff] [blame] | 297 | select NEEDS_SYSCALL_FOR_CMPXCHG if SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | config CPU_32v4 |
| 300 | bool |
Russell King | 60b6cf6 | 2006-06-19 17:36:43 +0100 | [diff] [blame] | 301 | select TLS_REG_EMUL if SMP || !MMU |
Russell King | 48fa14f | 2006-03-16 14:52:33 +0000 | [diff] [blame] | 302 | select NEEDS_SYSCALL_FOR_CMPXCHG if SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 304 | config CPU_32v4T |
| 305 | bool |
| 306 | select TLS_REG_EMUL if SMP || !MMU |
| 307 | select NEEDS_SYSCALL_FOR_CMPXCHG if SMP |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | config CPU_32v5 |
| 310 | bool |
Russell King | 60b6cf6 | 2006-06-19 17:36:43 +0100 | [diff] [blame] | 311 | select TLS_REG_EMUL if SMP || !MMU |
Russell King | 48fa14f | 2006-03-16 14:52:33 +0000 | [diff] [blame] | 312 | select NEEDS_SYSCALL_FOR_CMPXCHG if SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
| 314 | config CPU_32v6 |
| 315 | bool |
| 316 | |
| 317 | # The abort model |
| 318 | config CPU_ABRT_EV4 |
| 319 | bool |
| 320 | |
| 321 | config CPU_ABRT_EV4T |
| 322 | bool |
| 323 | |
| 324 | config CPU_ABRT_LV4T |
| 325 | bool |
| 326 | |
| 327 | config CPU_ABRT_EV5T |
| 328 | bool |
| 329 | |
| 330 | config CPU_ABRT_EV5TJ |
| 331 | bool |
| 332 | |
| 333 | config CPU_ABRT_EV6 |
| 334 | bool |
| 335 | |
| 336 | # The cache model |
| 337 | config CPU_CACHE_V3 |
| 338 | bool |
| 339 | |
| 340 | config CPU_CACHE_V4 |
| 341 | bool |
| 342 | |
| 343 | config CPU_CACHE_V4WT |
| 344 | bool |
| 345 | |
| 346 | config CPU_CACHE_V4WB |
| 347 | bool |
| 348 | |
| 349 | config CPU_CACHE_V6 |
| 350 | bool |
| 351 | |
| 352 | config CPU_CACHE_VIVT |
| 353 | bool |
| 354 | |
| 355 | config CPU_CACHE_VIPT |
| 356 | bool |
| 357 | |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 358 | if MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | # The copy-page model |
| 360 | config CPU_COPY_V3 |
| 361 | bool |
| 362 | |
| 363 | config CPU_COPY_V4WT |
| 364 | bool |
| 365 | |
| 366 | config CPU_COPY_V4WB |
| 367 | bool |
| 368 | |
| 369 | config CPU_COPY_V6 |
| 370 | bool |
| 371 | |
| 372 | # This selects the TLB model |
| 373 | config CPU_TLB_V3 |
| 374 | bool |
| 375 | help |
| 376 | ARM Architecture Version 3 TLB. |
| 377 | |
| 378 | config CPU_TLB_V4WT |
| 379 | bool |
| 380 | help |
| 381 | ARM Architecture Version 4 TLB with writethrough cache. |
| 382 | |
| 383 | config CPU_TLB_V4WB |
| 384 | bool |
| 385 | help |
| 386 | ARM Architecture Version 4 TLB with writeback cache. |
| 387 | |
| 388 | config CPU_TLB_V4WBI |
| 389 | bool |
| 390 | help |
| 391 | ARM Architecture Version 4 TLB with writeback cache and invalidate |
| 392 | instruction cache entry. |
| 393 | |
| 394 | config CPU_TLB_V6 |
| 395 | bool |
| 396 | |
Hyok S. Choi | f9c21a6 | 2006-06-21 22:26:29 +0100 | [diff] [blame] | 397 | endif |
| 398 | |
Hyok S. Choi | fefdaa0 | 2006-09-26 17:36:37 +0900 | [diff] [blame^] | 399 | config CPU_CP15 |
| 400 | bool |
| 401 | help |
| 402 | Processor has the CP15 register. |
| 403 | |
| 404 | config CPU_CP15_MMU |
| 405 | bool |
| 406 | select CPU_CP15 |
| 407 | help |
| 408 | Processor has the CP15 register, which has MMU related registers. |
| 409 | |
| 410 | config CPU_CP15_MPU |
| 411 | bool |
| 412 | select CPU_CP15 |
| 413 | help |
| 414 | Processor has the CP15 register, which has MPU related registers. |
| 415 | |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 416 | # |
| 417 | # CPU supports 36-bit I/O |
| 418 | # |
| 419 | config IO_36 |
| 420 | bool |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | comment "Processor Features" |
| 423 | |
| 424 | config ARM_THUMB |
| 425 | bool "Support Thumb user binaries" |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 426 | depends on CPU_ARM720T || CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || CPU_XSCALE || CPU_XSC3 || CPU_V6 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | default y |
| 428 | help |
| 429 | Say Y if you want to include kernel support for running user space |
| 430 | Thumb binaries. |
| 431 | |
| 432 | The Thumb instruction set is a compressed form of the standard ARM |
| 433 | instruction set resulting in smaller binaries at the expense of |
| 434 | slightly less efficient code. |
| 435 | |
| 436 | If you don't know what this all is, saying Y is a safe choice. |
| 437 | |
| 438 | config CPU_BIG_ENDIAN |
| 439 | bool "Build big-endian kernel" |
| 440 | depends on ARCH_SUPPORTS_BIG_ENDIAN |
| 441 | help |
| 442 | Say Y if you plan on running a kernel in big-endian mode. |
| 443 | Note that your board must be properly built and your board |
| 444 | port must properly enable any big-endian related features |
| 445 | of your chipset/board/processor. |
| 446 | |
| 447 | config CPU_ICACHE_DISABLE |
| 448 | bool "Disable I-Cache" |
Catalin Marinas | e03eb52 | 2005-10-05 23:06:36 +0100 | [diff] [blame] | 449 | depends on CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_V6 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | help |
| 451 | Say Y here to disable the processor instruction cache. Unless |
| 452 | you have a reason not to or are unsure, say N. |
| 453 | |
| 454 | config CPU_DCACHE_DISABLE |
| 455 | bool "Disable D-Cache" |
Catalin Marinas | e03eb52 | 2005-10-05 23:06:36 +0100 | [diff] [blame] | 456 | depends on CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_V6 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | help |
| 458 | Say Y here to disable the processor data cache. Unless |
| 459 | you have a reason not to or are unsure, say N. |
| 460 | |
| 461 | config CPU_DCACHE_WRITETHROUGH |
| 462 | bool "Force write through D-cache" |
Catalin Marinas | e03eb52 | 2005-10-05 23:06:36 +0100 | [diff] [blame] | 463 | depends on (CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_V6) && !CPU_DCACHE_DISABLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | default y if CPU_ARM925T |
| 465 | help |
| 466 | Say Y here to use the data cache in writethrough mode. Unless you |
| 467 | specifically require this or are unsure, say N. |
| 468 | |
| 469 | config CPU_CACHE_ROUND_ROBIN |
| 470 | bool "Round robin I and D cache replacement algorithm" |
| 471 | depends on (CPU_ARM926T || CPU_ARM1020) && (!CPU_ICACHE_DISABLE || !CPU_DCACHE_DISABLE) |
| 472 | help |
| 473 | Say Y here to use the predictable round-robin cache replacement |
| 474 | policy. Unless you specifically require this or are unsure, say N. |
| 475 | |
| 476 | config CPU_BPREDICT_DISABLE |
| 477 | bool "Disable branch prediction" |
Catalin Marinas | e03eb52 | 2005-10-05 23:06:36 +0100 | [diff] [blame] | 478 | depends on CPU_ARM1020 || CPU_V6 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | help |
| 480 | Say Y here to disable branch prediction. If unsure, say N. |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 481 | |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 482 | config TLS_REG_EMUL |
| 483 | bool |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 484 | help |
Nicolas Pitre | 70489c8 | 2005-05-12 19:27:12 +0100 | [diff] [blame] | 485 | An SMP system using a pre-ARMv6 processor (there are apparently |
| 486 | a few prototypes like that in existence) and therefore access to |
| 487 | that required register must be emulated. |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 488 | |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 489 | config HAS_TLS_REG |
| 490 | bool |
Nicolas Pitre | 70489c8 | 2005-05-12 19:27:12 +0100 | [diff] [blame] | 491 | depends on !TLS_REG_EMUL |
| 492 | default y if SMP || CPU_32v7 |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 493 | help |
| 494 | This selects support for the CP15 thread register. |
Nicolas Pitre | 70489c8 | 2005-05-12 19:27:12 +0100 | [diff] [blame] | 495 | It is defined to be available on some ARMv6 processors (including |
| 496 | all SMP capable ARMv6's) or later processors. User space may |
| 497 | assume directly accessing that register and always obtain the |
| 498 | expected value only on ARMv7 and above. |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 499 | |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 500 | config NEEDS_SYSCALL_FOR_CMPXCHG |
| 501 | bool |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 502 | help |
| 503 | SMP on a pre-ARMv6 processor? Well OK then. |
| 504 | Forget about fast user space cmpxchg support. |
| 505 | It is just not possible. |
| 506 | |