Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / arch / powerpc / platforms / Kconfig.cputype
blobf01b6c0c5e50abf9b94960634f136f97d00c09a8
1 config PPC64
2         bool "64-bit kernel"
3         default n
4         help
5           This option selects whether a 32-bit or a 64-bit kernel
6           will be built.
8 menu "Processor support"
9 choice
10         prompt "Processor Type"
11         depends on PPC32
12         default 6xx
13         help
14           There are five families of 32 bit PowerPC chips supported.
15           The most common ones are the desktop and server CPUs (601, 603,
16           604, 740, 750, 74xx) CPUs from Freescale and IBM, with their
17           embedded 512x/52xx/82xx/83xx/86xx counterparts.
18           The other embeeded parts, namely 4xx, 8xx, e200 (55xx) and e500
19           (85xx) each form a family of their own that is not compatible
20           with the others.
22           If unsure, select 52xx/6xx/7xx/74xx/82xx/83xx/86xx.
24 config 6xx
25         bool "512x/52xx/6xx/7xx/74xx/82xx/83xx/86xx"
26         select PPC_FPU
28 config PPC_85xx
29         bool "Freescale 85xx"
30         select E500
31         select FSL_SOC
32         select MPC85xx
34 config PPC_8xx
35         bool "Freescale 8xx"
36         select FSL_SOC
37         select 8xx
38         select PPC_LIB_RHEAP
40 config 40x
41         bool "AMCC 40x"
42         select PPC_DCR_NATIVE
43         select PPC_UDBG_16550
45 config 44x
46         bool "AMCC 44x"
47         select PPC_DCR_NATIVE
48         select PPC_UDBG_16550
50 config E200
51         bool "Freescale e200"
53 endchoice
55 config POWER4_ONLY
56         bool "Optimize for POWER4"
57         depends on PPC64
58         default n
59         ---help---
60           Cause the compiler to optimize for POWER4/POWER5/PPC970 processors.
61           The resulting binary will not work on POWER3 or RS64 processors
62           when compiled with binutils 2.15 or later.
64 config POWER3
65         bool
66         depends on PPC64
67         default y if !POWER4_ONLY
69 config POWER4
70         depends on PPC64
71         def_bool y
73 config TUNE_CELL
74         bool "Optimize for Cell Broadband Engine"
75         depends on PPC64
76         help
77           Cause the compiler to optimize for the PPE of the Cell Broadband
78           Engine. This will make the code run considerably faster on Cell
79           but somewhat slower on other machines. This option only changes
80           the scheduling of instructions, not the selection of instructions
81           itself, so the resulting kernel will keep running on all other
82           machines. When building a kernel that is supposed to run only
83           on Cell, you should also select the POWER4_ONLY option.
85 config 6xx
86         bool
88 # this is temp to handle compat with arch=ppc
89 config 8xx
90         bool
92 config E500
93         select FSL_EMB_PERFMON
94         bool
96 config PPC_FPU
97         bool
98         default y if PPC64
100 config 4xx
101         bool
102         depends on 40x || 44x
103         default y
105 config BOOKE
106         bool
107         depends on E200 || E500 || 44x
108         default y
110 config FSL_BOOKE
111         bool
112         depends on E200 || E500
113         default y
115 config FSL_EMB_PERFMON
116 <<<<<<< HEAD:arch/powerpc/platforms/Kconfig.cputype
117         bool
118 =======
119         bool "Freescale Embedded Perfmon"
120         depends on E500 || PPC_83xx
121         help
122           This is the Performance Monitor support found on the e500 core
123           and some e300 cores (c3 and c4).  Select this only if your
124           core supports the Embedded Performance Monitor APU
125 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/powerpc/platforms/Kconfig.cputype
127 config PTE_64BIT
128         bool
129         depends on 44x || E500
130         default y if 44x
131         default y if E500 && PHYS_64BIT
133 config PHYS_64BIT
134         bool 'Large physical address support' if E500
135         depends on 44x || E500
136         select RESOURCES_64BIT
137         default y if 44x
138         ---help---
139           This option enables kernel support for larger than 32-bit physical
140           addresses.  This features is not be available on all e500 cores.
142           If in doubt, say N here.
144 config ALTIVEC
145         bool "AltiVec Support"
146         depends on CLASSIC32 || POWER4
147         ---help---
148           This option enables kernel support for the Altivec extensions to the
149           PowerPC processor. The kernel currently supports saving and restoring
150           altivec registers, and turning on the 'altivec enable' bit so user
151           processes can execute altivec instructions.
153           This option is only usefully if you have a processor that supports
154           altivec (G4, otherwise known as 74xx series), but does not have
155           any affect on a non-altivec cpu (it does, however add code to the
156           kernel).
158           If in doubt, say Y here.
160 config SPE
161         bool "SPE Support"
162         depends on E200 || E500
163         default y
164         ---help---
165           This option enables kernel support for the Signal Processing
166           Extensions (SPE) to the PowerPC processor. The kernel currently
167           supports saving and restoring SPE registers, and turning on the
168           'spe enable' bit so user processes can execute SPE instructions.
170           This option is only useful if you have a processor that supports
171           SPE (e500, otherwise known as 85xx series), but does not have any
172           effect on a non-spe cpu (it does, however add code to the kernel).
174           If in doubt, say Y here.
176 config PPC_STD_MMU
177         bool
178         depends on 6xx || POWER3 || POWER4 || PPC64
179         default y
181 config PPC_STD_MMU_32
182         def_bool y
183         depends on PPC_STD_MMU && PPC32
185 config PPC_MM_SLICES
186         bool
187         default y if HUGETLB_PAGE
188         default n
190 config VIRT_CPU_ACCOUNTING
191         bool "Deterministic task and CPU time accounting"
192         depends on PPC64
193         default y
194         help
195           Select this option to enable more accurate task and CPU time
196           accounting.  This is done by reading a CPU counter on each
197           kernel entry and exit and on transitions within the kernel
198           between system, softirq and hardirq state, so there is a
199           small performance impact.  This also enables accounting of
200           stolen time on logically-partitioned systems running on
201           IBM POWER5-based machines.
203           If in doubt, say Y here.
205 config SMP
206         depends on PPC_STD_MMU
207         bool "Symmetric multi-processing support"
208         ---help---
209           This enables support for systems with more than one CPU. If you have
210           a system with only one CPU, say N. If you have a system with more
211           than one CPU, say Y.  Note that the kernel does not currently
212           support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
213           since they have inadequate hardware support for multiprocessor
214           operation.
216           If you say N here, the kernel will run on single and multiprocessor
217           machines, but will use only one CPU of a multiprocessor machine. If
218           you say Y here, the kernel will run on single-processor machines.
219           On a single-processor machine, the kernel will run faster if you say
220           N here.
222           If you don't know what to do here, say N.
224 config NR_CPUS
225         int "Maximum number of CPUs (2-128)"
226         range 2 128
227         depends on SMP
228         default "32" if PPC64
229         default "4"
231 config NOT_COHERENT_CACHE
232         bool
233         depends on 4xx || 8xx || E200 || PPC_MPC512x
234         default y
236 config CHECK_CACHE_COHERENCY
237         bool
239 endmenu