blob: ed9d32c2469e540d38be36fd9fb97e26460c2626 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001comment "Processor Type"
2
3config 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
12config 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. Choifefdaa02006-09-26 17:36:37 +090018 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +010019 select CPU_COPY_V3 if MMU
20 select CPU_TLB_V3 if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 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
Hyok S. Choi07e0da72006-09-26 17:37:36 +090028# ARM7TDMI
29config CPU_ARM7TDMI
30 bool "Support ARM7TDMI processor"
31 select CPU_32v4T
32 select CPU_ABRT_LV4T
33 select CPU_CACHE_V4
34 help
35 A 32-bit RISC microprocessor based on the ARM7 processor core
36 which has no memory control unit and cache.
37
38 Say Y if you want support for the ARM7TDMI processor.
39 Otherwise, say N.
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041# ARM710
42config CPU_ARM710
43 bool "Support ARM710 processor" if !ARCH_CLPS7500 && ARCH_RPC
44 default y if ARCH_CLPS7500
45 select CPU_32v3
46 select CPU_CACHE_V3
47 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +090048 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +010049 select CPU_COPY_V3 if MMU
50 select CPU_TLB_V3 if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 help
52 A 32-bit RISC microprocessor based on the ARM7 processor core
53 designed by Advanced RISC Machines Ltd. The ARM710 is the
54 successor to the ARM610 processor. It was released in
55 July 1994 by VLSI Technology Inc.
56
57 Say Y if you want support for the ARM710 processor.
58 Otherwise, say N.
59
60# ARM720T
61config CPU_ARM720T
62 bool "Support ARM720T processor" if !ARCH_CLPS711X && !ARCH_L7200 && !ARCH_CDB89712 && ARCH_INTEGRATOR
63 default y if ARCH_CLPS711X || ARCH_L7200 || ARCH_CDB89712 || ARCH_H720X
Lennert Buytenhek260e98e2006-08-28 12:51:20 +010064 select CPU_32v4T
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 select CPU_ABRT_LV4T
66 select CPU_CACHE_V4
67 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +090068 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +010069 select CPU_COPY_V4WT if MMU
70 select CPU_TLB_V4WT if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 help
72 A 32-bit RISC processor with 8kByte Cache, Write Buffer and
73 MMU built around an ARM7TDMI core.
74
75 Say Y if you want support for the ARM720T processor.
76 Otherwise, say N.
77
Hyok S. Choib731c312006-09-26 17:37:50 +090078# ARM740T
79config CPU_ARM740T
80 bool "Support ARM740T processor" if ARCH_INTEGRATOR
81 select CPU_32v4T
82 select CPU_ABRT_LV4T
83 select CPU_CACHE_V3 # although the core is v4t
84 select CPU_CP15_MPU
85 help
86 A 32-bit RISC processor with 8KB cache or 4KB variants,
87 write buffer and MPU(Protection Unit) built around
88 an ARM7TDMI core.
89
90 Say Y if you want support for the ARM740T processor.
91 Otherwise, say N.
92
Hyok S. Choi43f5f012006-09-26 17:38:05 +090093# ARM9TDMI
94config CPU_ARM9TDMI
95 bool "Support ARM9TDMI processor"
96 select CPU_32v4T
97 select CPU_ABRT_EV4T
98 select CPU_CACHE_V4
99 help
100 A 32-bit RISC microprocessor based on the ARM9 processor core
101 which has no memory control unit and cache.
102
103 Say Y if you want support for the ARM9TDMI processor.
104 Otherwise, say N.
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# ARM920T
107config CPU_ARM920T
Ben Dooks3434d9d2006-06-24 21:21:28 +0100108 bool "Support ARM920T processor"
109 depends on ARCH_EP93XX || ARCH_INTEGRATOR || CPU_S3C2410 || CPU_S3C2440 || CPU_S3C2442 || ARCH_IMX || ARCH_AAEC2000 || ARCH_AT91RM9200
110 default y if CPU_S3C2410 || CPU_S3C2440 || CPU_S3C2442 || ARCH_AT91RM9200
Lennert Buytenhek260e98e2006-08-28 12:51:20 +0100111 select CPU_32v4T
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 select CPU_ABRT_EV4T
113 select CPU_CACHE_V4WT
114 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900115 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100116 select CPU_COPY_V4WB if MMU
117 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 help
119 The ARM920T is licensed to be produced by numerous vendors,
120 and is used in the Maverick EP9312 and the Samsung S3C2410.
121
122 More information on the Maverick EP9312 at
123 <http://linuxdevices.com/products/PD2382866068.html>.
124
125 Say Y if you want support for the ARM920T processor.
126 Otherwise, say N.
127
128# ARM922T
129config CPU_ARM922T
130 bool "Support ARM922T processor" if ARCH_INTEGRATOR
Russell King0fec53a2006-01-08 22:37:46 +0000131 depends on ARCH_LH7A40X || ARCH_INTEGRATOR
132 default y if ARCH_LH7A40X
Lennert Buytenhek260e98e2006-08-28 12:51:20 +0100133 select CPU_32v4T
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 select CPU_ABRT_EV4T
135 select CPU_CACHE_V4WT
136 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900137 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100138 select CPU_COPY_V4WB if MMU
139 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 help
141 The ARM922T is a version of the ARM920T, but with smaller
142 instruction and data caches. It is used in Altera's
143 Excalibur XA device family.
144
145 Say Y if you want support for the ARM922T processor.
146 Otherwise, say N.
147
148# ARM925T
149config CPU_ARM925T
Tony Lindgrenb288f752005-07-10 19:58:08 +0100150 bool "Support ARM925T processor" if ARCH_OMAP1
Tony Lindgren3179a012005-11-10 14:26:48 +0000151 depends on ARCH_OMAP15XX
152 default y if ARCH_OMAP15XX
Lennert Buytenhek260e98e2006-08-28 12:51:20 +0100153 select CPU_32v4T
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 select CPU_ABRT_EV4T
155 select CPU_CACHE_V4WT
156 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900157 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100158 select CPU_COPY_V4WB if MMU
159 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 help
161 The ARM925T is a mix between the ARM920T and ARM926T, but with
162 different instruction and data caches. It is used in TI's OMAP
163 device family.
164
165 Say Y if you want support for the ARM925T processor.
166 Otherwise, say N.
167
168# ARM926T
169config CPU_ARM926T
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000170 bool "Support ARM926T processor"
Andrew Victor8fc5ffa2006-06-29 16:06:33 +0100171 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
172 default y if ARCH_VERSATILE_PB || MACH_VERSATILE_AB || ARCH_OMAP730 || ARCH_OMAP16XX || ARCH_PNX4008 || ARCH_NETX || CPU_S3C2412 || ARCH_AT91SAM9260 || ARCH_AT91SAM9261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 select CPU_32v5
174 select CPU_ABRT_EV5TJ
175 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900176 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100177 select CPU_COPY_V4WB if MMU
178 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 help
180 This is a variant of the ARM920. It has slightly different
181 instruction sequences for cache and TLB operations. Curiously,
182 there is no documentation on it at the ARM corporate website.
183
184 Say Y if you want support for the ARM926T processor.
185 Otherwise, say N.
186
187# ARM1020 - needs validating
188config CPU_ARM1020
189 bool "Support ARM1020T (rev 0) processor"
190 depends on ARCH_INTEGRATOR
191 select CPU_32v5
192 select CPU_ABRT_EV4T
193 select CPU_CACHE_V4WT
194 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900195 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100196 select CPU_COPY_V4WB if MMU
197 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 help
199 The ARM1020 is the 32K cached version of the ARM10 processor,
200 with an addition of a floating-point unit.
201
202 Say Y if you want support for the ARM1020 processor.
203 Otherwise, say N.
204
205# ARM1020E - needs validating
206config CPU_ARM1020E
207 bool "Support ARM1020E processor"
208 depends on ARCH_INTEGRATOR
209 select CPU_32v5
210 select CPU_ABRT_EV4T
211 select CPU_CACHE_V4WT
212 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900213 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100214 select CPU_COPY_V4WB if MMU
215 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 depends on n
217
218# ARM1022E
219config CPU_ARM1022
220 bool "Support ARM1022E processor"
221 depends on ARCH_INTEGRATOR
222 select CPU_32v5
223 select CPU_ABRT_EV4T
224 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900225 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100226 select CPU_COPY_V4WB if MMU # can probably do better
227 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 help
229 The ARM1022E is an implementation of the ARMv5TE architecture
230 based upon the ARM10 integer core with a 16KiB L1 Harvard cache,
231 embedded trace macrocell, and a floating-point unit.
232
233 Say Y if you want support for the ARM1022E processor.
234 Otherwise, say N.
235
236# ARM1026EJ-S
237config CPU_ARM1026
238 bool "Support ARM1026EJ-S processor"
239 depends on ARCH_INTEGRATOR
240 select CPU_32v5
241 select CPU_ABRT_EV5T # But need Jazelle, but EV5TJ ignores bit 10
242 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900243 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100244 select CPU_COPY_V4WB if MMU # can probably do better
245 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 help
247 The ARM1026EJ-S is an implementation of the ARMv5TEJ architecture
248 based upon the ARM10 integer core.
249
250 Say Y if you want support for the ARM1026EJ-S processor.
251 Otherwise, say N.
252
253# SA110
254config CPU_SA110
255 bool "Support StrongARM(R) SA-110 processor" if !ARCH_EBSA110 && !FOOTBRIDGE && !ARCH_TBOX && !ARCH_SHARK && !ARCH_NEXUSPCI && ARCH_RPC
256 default y if ARCH_EBSA110 || FOOTBRIDGE || ARCH_TBOX || ARCH_SHARK || ARCH_NEXUSPCI
257 select CPU_32v3 if ARCH_RPC
258 select CPU_32v4 if !ARCH_RPC
259 select CPU_ABRT_EV4
260 select CPU_CACHE_V4WB
261 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900262 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100263 select CPU_COPY_V4WB if MMU
264 select CPU_TLB_V4WB if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 help
266 The Intel StrongARM(R) SA-110 is a 32-bit microprocessor and
267 is available at five speeds ranging from 100 MHz to 233 MHz.
268 More information is available at
269 <http://developer.intel.com/design/strong/sa110.htm>.
270
271 Say Y if you want support for the SA-110 processor.
272 Otherwise, say N.
273
274# SA1100
275config CPU_SA1100
276 bool
277 depends on ARCH_SA1100
278 default y
279 select CPU_32v4
280 select CPU_ABRT_EV4
281 select CPU_CACHE_V4WB
282 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900283 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100284 select CPU_TLB_V4WB if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286# XScale
287config CPU_XSCALE
288 bool
Lennert Buytenhek3f7e5812006-09-18 23:10:26 +0100289 depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_PXA || ARCH_IXP4XX || ARCH_IXP2000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 default y
291 select CPU_32v5
292 select CPU_ABRT_EV5T
293 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900294 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100295 select CPU_TLB_V4WBI if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Lennert Buytenhek23bdf862006-03-28 21:00:40 +0100297# XScale Core Version 3
298config CPU_XSC3
299 bool
300 depends on ARCH_IXP23XX
301 default y
302 select CPU_32v5
303 select CPU_ABRT_EV5T
304 select CPU_CACHE_VIVT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900305 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100306 select CPU_TLB_V4WBI if MMU
Lennert Buytenhek23bdf862006-03-28 21:00:40 +0100307 select IO_36
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309# ARMv6
310config CPU_V6
311 bool "Support ARM V6 processor"
Tony Lindgren1dbae812005-11-10 14:26:51 +0000312 depends on ARCH_INTEGRATOR || MACH_REALVIEW_EB || ARCH_OMAP2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 select CPU_32v6
314 select CPU_ABRT_EV6
315 select CPU_CACHE_V6
316 select CPU_CACHE_VIPT
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900317 select CPU_CP15_MMU
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100318 select CPU_COPY_V6 if MMU
319 select CPU_TLB_V6 if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Russell King4a5f79e2005-11-03 15:48:21 +0000321# ARMv6k
322config CPU_32v6K
323 bool "Support ARM V6K processor extensions" if !SMP
324 depends on CPU_V6
325 default y if SMP
326 help
327 Say Y here if your ARMv6 processor supports the 'K' extension.
328 This enables the kernel to use some instructions not present
329 on previous processors, and as such a kernel build with this
330 enabled will not boot on processors with do not support these
331 instructions.
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333# Figure out what processor architecture version we should be using.
334# This defines the compiler instruction set which depends on the machine type.
335config CPU_32v3
336 bool
Russell King60b6cf62006-06-19 17:36:43 +0100337 select TLS_REG_EMUL if SMP || !MMU
Russell King48fa14f2006-03-16 14:52:33 +0000338 select NEEDS_SYSCALL_FOR_CMPXCHG if SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340config CPU_32v4
341 bool
Russell King60b6cf62006-06-19 17:36:43 +0100342 select TLS_REG_EMUL if SMP || !MMU
Russell King48fa14f2006-03-16 14:52:33 +0000343 select NEEDS_SYSCALL_FOR_CMPXCHG if SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Lennert Buytenhek260e98e2006-08-28 12:51:20 +0100345config CPU_32v4T
346 bool
347 select TLS_REG_EMUL if SMP || !MMU
348 select NEEDS_SYSCALL_FOR_CMPXCHG if SMP
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350config CPU_32v5
351 bool
Russell King60b6cf62006-06-19 17:36:43 +0100352 select TLS_REG_EMUL if SMP || !MMU
Russell King48fa14f2006-03-16 14:52:33 +0000353 select NEEDS_SYSCALL_FOR_CMPXCHG if SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355config CPU_32v6
356 bool
357
358# The abort model
359config CPU_ABRT_EV4
360 bool
361
362config CPU_ABRT_EV4T
363 bool
364
365config CPU_ABRT_LV4T
366 bool
367
368config CPU_ABRT_EV5T
369 bool
370
371config CPU_ABRT_EV5TJ
372 bool
373
374config CPU_ABRT_EV6
375 bool
376
377# The cache model
378config CPU_CACHE_V3
379 bool
380
381config CPU_CACHE_V4
382 bool
383
384config CPU_CACHE_V4WT
385 bool
386
387config CPU_CACHE_V4WB
388 bool
389
390config CPU_CACHE_V6
391 bool
392
393config CPU_CACHE_VIVT
394 bool
395
396config CPU_CACHE_VIPT
397 bool
398
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100399if MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400# The copy-page model
401config CPU_COPY_V3
402 bool
403
404config CPU_COPY_V4WT
405 bool
406
407config CPU_COPY_V4WB
408 bool
409
410config CPU_COPY_V6
411 bool
412
413# This selects the TLB model
414config CPU_TLB_V3
415 bool
416 help
417 ARM Architecture Version 3 TLB.
418
419config CPU_TLB_V4WT
420 bool
421 help
422 ARM Architecture Version 4 TLB with writethrough cache.
423
424config CPU_TLB_V4WB
425 bool
426 help
427 ARM Architecture Version 4 TLB with writeback cache.
428
429config CPU_TLB_V4WBI
430 bool
431 help
432 ARM Architecture Version 4 TLB with writeback cache and invalidate
433 instruction cache entry.
434
435config CPU_TLB_V6
436 bool
437
Hyok S. Choif9c21a62006-06-21 22:26:29 +0100438endif
439
Hyok S. Choifefdaa02006-09-26 17:36:37 +0900440config CPU_CP15
441 bool
442 help
443 Processor has the CP15 register.
444
445config CPU_CP15_MMU
446 bool
447 select CPU_CP15
448 help
449 Processor has the CP15 register, which has MMU related registers.
450
451config CPU_CP15_MPU
452 bool
453 select CPU_CP15
454 help
455 Processor has the CP15 register, which has MPU related registers.
456
Lennert Buytenhek23bdf862006-03-28 21:00:40 +0100457#
458# CPU supports 36-bit I/O
459#
460config IO_36
461 bool
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463comment "Processor Features"
464
465config ARM_THUMB
466 bool "Support Thumb user binaries"
Hyok S. Choib731c312006-09-26 17:37:50 +0900467 depends on CPU_ARM720T || CPU_ARM740T || CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || CPU_XSCALE || CPU_XSC3 || CPU_V6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 default y
469 help
470 Say Y if you want to include kernel support for running user space
471 Thumb binaries.
472
473 The Thumb instruction set is a compressed form of the standard ARM
474 instruction set resulting in smaller binaries at the expense of
475 slightly less efficient code.
476
477 If you don't know what this all is, saying Y is a safe choice.
478
479config CPU_BIG_ENDIAN
480 bool "Build big-endian kernel"
481 depends on ARCH_SUPPORTS_BIG_ENDIAN
482 help
483 Say Y if you plan on running a kernel in big-endian mode.
484 Note that your board must be properly built and your board
485 port must properly enable any big-endian related features
486 of your chipset/board/processor.
487
488config CPU_ICACHE_DISABLE
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900489 bool "Disable I-Cache (I-bit)"
490 depends on CPU_CP15 && !(CPU_ARM610 || CPU_ARM710 || CPU_ARM720T || CPU_ARM740T || CPU_XSCALE || CPU_XSC3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 help
492 Say Y here to disable the processor instruction cache. Unless
493 you have a reason not to or are unsure, say N.
494
495config CPU_DCACHE_DISABLE
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900496 bool "Disable D-Cache (C-bit)"
497 depends on CPU_CP15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 help
499 Say Y here to disable the processor data cache. Unless
500 you have a reason not to or are unsure, say N.
501
502config CPU_DCACHE_WRITETHROUGH
503 bool "Force write through D-cache"
Hyok S. Choib731c312006-09-26 17:37:50 +0900504 depends on (CPU_ARM740T || CPU_ARM920T || CPU_ARM922T || CPU_ARM925T || CPU_ARM926T || CPU_ARM1020 || CPU_V6) && !CPU_DCACHE_DISABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 default y if CPU_ARM925T
506 help
507 Say Y here to use the data cache in writethrough mode. Unless you
508 specifically require this or are unsure, say N.
509
510config CPU_CACHE_ROUND_ROBIN
511 bool "Round robin I and D cache replacement algorithm"
512 depends on (CPU_ARM926T || CPU_ARM1020) && (!CPU_ICACHE_DISABLE || !CPU_DCACHE_DISABLE)
513 help
514 Say Y here to use the predictable round-robin cache replacement
515 policy. Unless you specifically require this or are unsure, say N.
516
517config CPU_BPREDICT_DISABLE
518 bool "Disable branch prediction"
Catalin Marinase03eb522005-10-05 23:06:36 +0100519 depends on CPU_ARM1020 || CPU_V6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 help
521 Say Y here to disable branch prediction. If unsure, say N.
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100522
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100523config TLS_REG_EMUL
524 bool
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100525 help
Nicolas Pitre70489c82005-05-12 19:27:12 +0100526 An SMP system using a pre-ARMv6 processor (there are apparently
527 a few prototypes like that in existence) and therefore access to
528 that required register must be emulated.
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100529
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100530config HAS_TLS_REG
531 bool
Nicolas Pitre70489c82005-05-12 19:27:12 +0100532 depends on !TLS_REG_EMUL
533 default y if SMP || CPU_32v7
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100534 help
535 This selects support for the CP15 thread register.
Nicolas Pitre70489c82005-05-12 19:27:12 +0100536 It is defined to be available on some ARMv6 processors (including
537 all SMP capable ARMv6's) or later processors. User space may
538 assume directly accessing that register and always obtain the
539 expected value only on ARMv7 and above.
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100540
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100541config NEEDS_SYSCALL_FOR_CMPXCHG
542 bool
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100543 help
544 SMP on a pre-ARMv6 processor? Well OK then.
545 Forget about fast user space cmpxchg support.
546 It is just not possible.
547