Merge branch 'fix/soundcore' into for-linus
[pandora-kernel.git] / arch / powerpc / platforms / Kconfig.cputype
1 config PPC64
2         bool "64-bit kernel"
3         default n
4         select PPC_HAVE_PMU_SUPPORT
5         help
6           This option selects whether a 32-bit or a 64-bit kernel
7           will be built.
8
9 menu "Processor support"
10 choice
11         prompt "Processor Type"
12         depends on PPC32
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.
21
22           If unsure, select 52xx/6xx/7xx/74xx/82xx/83xx/86xx.
23
24 config PPC_BOOK3S_32
25         bool "512x/52xx/6xx/7xx/74xx/82xx/83xx/86xx"
26         select PPC_FPU
27
28 config PPC_85xx
29         bool "Freescale 85xx"
30         select E500
31         select FSL_SOC
32         select MPC85xx
33
34 config PPC_8xx
35         bool "Freescale 8xx"
36         select FSL_SOC
37         select 8xx
38         select PPC_LIB_RHEAP
39
40 config 40x
41         bool "AMCC 40x"
42         select PPC_DCR_NATIVE
43         select PPC_UDBG_16550
44         select 4xx_SOC
45         select PPC_PCI_CHOICE
46
47 config 44x
48         bool "AMCC 44x"
49         select PPC_DCR_NATIVE
50         select PPC_UDBG_16550
51         select 4xx_SOC
52         select PPC_PCI_CHOICE
53         select PHYS_64BIT
54
55 config E200
56         bool "Freescale e200"
57
58 endchoice
59
60 config PPC_BOOK3S_64
61         def_bool y
62         depends on PPC64
63         select PPC_FPU
64
65 config PPC_BOOK3S
66         def_bool y
67         depends on PPC_BOOK3S_32 || PPC_BOOK3S_64
68
69 config POWER4_ONLY
70         bool "Optimize for POWER4"
71         depends on PPC64 && PPC_BOOK3S
72         default n
73         ---help---
74           Cause the compiler to optimize for POWER4/POWER5/PPC970 processors.
75           The resulting binary will not work on POWER3 or RS64 processors
76           when compiled with binutils 2.15 or later.
77
78 config 6xx
79         def_bool y
80         depends on PPC32 && PPC_BOOK3S
81         select PPC_HAVE_PMU_SUPPORT
82
83 config POWER3
84         bool
85         depends on PPC64 && PPC_BOOK3S
86         default y if !POWER4_ONLY
87
88 config POWER4
89         depends on PPC64 && PPC_BOOK3S
90         def_bool y
91
92 config TUNE_CELL
93         bool "Optimize for Cell Broadband Engine"
94         depends on PPC64 && PPC_BOOK3S
95         help
96           Cause the compiler to optimize for the PPE of the Cell Broadband
97           Engine. This will make the code run considerably faster on Cell
98           but somewhat slower on other machines. This option only changes
99           the scheduling of instructions, not the selection of instructions
100           itself, so the resulting kernel will keep running on all other
101           machines. When building a kernel that is supposed to run only
102           on Cell, you should also select the POWER4_ONLY option.
103
104 # this is temp to handle compat with arch=ppc
105 config 8xx
106         bool
107
108 config E500
109         select FSL_EMB_PERFMON
110         bool
111
112 config PPC_E500MC
113         bool "e500mc Support"
114         select PPC_FPU
115         depends on E500
116
117 config PPC_FPU
118         bool
119         default y if PPC64
120
121 config 4xx
122         bool
123         depends on 40x || 44x
124         default y
125
126 config BOOKE
127         bool
128         depends on E200 || E500 || 44x
129         default y
130
131 config FSL_BOOKE
132         bool
133         depends on E200 || E500
134         default y
135
136 config FSL_EMB_PERFMON
137         bool "Freescale Embedded Perfmon"
138         depends on E500 || PPC_83xx
139         help
140           This is the Performance Monitor support found on the e500 core
141           and some e300 cores (c3 and c4).  Select this only if your
142           core supports the Embedded Performance Monitor APU
143
144 config PTE_64BIT
145         bool
146         depends on 44x || E500 || PPC_86xx
147         default y if PHYS_64BIT
148
149 config PHYS_64BIT
150         bool 'Large physical address support' if E500 || PPC_86xx
151         depends on (44x || E500 || PPC_86xx) && !PPC_83xx && !PPC_82xx
152         ---help---
153           This option enables kernel support for larger than 32-bit physical
154           addresses.  This feature may not be available on all cores.
155
156           If you have more than 3.5GB of RAM or so, you also need to enable
157           SWIOTLB under Kernel Options for this to work.  The actual number
158           is platform-dependent.
159
160           If in doubt, say N here.
161
162 config ALTIVEC
163         bool "AltiVec Support"
164         depends on 6xx || POWER4
165         ---help---
166           This option enables kernel support for the Altivec extensions to the
167           PowerPC processor. The kernel currently supports saving and restoring
168           altivec registers, and turning on the 'altivec enable' bit so user
169           processes can execute altivec instructions.
170
171           This option is only usefully if you have a processor that supports
172           altivec (G4, otherwise known as 74xx series), but does not have
173           any affect on a non-altivec cpu (it does, however add code to the
174           kernel).
175
176           If in doubt, say Y here.
177
178 config VSX
179         bool "VSX Support"
180         depends on POWER4 && ALTIVEC && PPC_FPU
181         ---help---
182
183           This option enables kernel support for the Vector Scaler extensions
184           to the PowerPC processor. The kernel currently supports saving and
185           restoring VSX registers, and turning on the 'VSX enable' bit so user
186           processes can execute VSX instructions.
187
188           This option is only useful if you have a processor that supports
189           VSX (P7 and above), but does not have any affect on a non-VSX
190           CPUs (it does, however add code to the kernel).
191
192           If in doubt, say Y here.
193
194 config SPE
195         bool "SPE Support"
196         depends on E200 || (E500 && !PPC_E500MC)
197         default y
198         ---help---
199           This option enables kernel support for the Signal Processing
200           Extensions (SPE) to the PowerPC processor. The kernel currently
201           supports saving and restoring SPE registers, and turning on the
202           'spe enable' bit so user processes can execute SPE instructions.
203
204           This option is only useful if you have a processor that supports
205           SPE (e500, otherwise known as 85xx series), but does not have any
206           effect on a non-spe cpu (it does, however add code to the kernel).
207
208           If in doubt, say Y here.
209
210 config PPC_STD_MMU
211         def_bool y
212         depends on PPC_BOOK3S
213
214 config PPC_STD_MMU_32
215         def_bool y
216         depends on PPC_STD_MMU && PPC32
217
218 config PPC_STD_MMU_64
219         def_bool y
220         depends on PPC_STD_MMU && PPC64
221
222 config PPC_MMU_NOHASH
223         def_bool y
224         depends on !PPC_STD_MMU
225
226 config PPC_BOOK3E_MMU
227         def_bool y
228         depends on FSL_BOOKE
229
230 config PPC_MM_SLICES
231         bool
232         default y if HUGETLB_PAGE || (PPC_STD_MMU_64 && PPC_64K_PAGES)
233         default n
234
235 config VIRT_CPU_ACCOUNTING
236         bool "Deterministic task and CPU time accounting"
237         depends on PPC64
238         default y
239         help
240           Select this option to enable more accurate task and CPU time
241           accounting.  This is done by reading a CPU counter on each
242           kernel entry and exit and on transitions within the kernel
243           between system, softirq and hardirq state, so there is a
244           small performance impact.  This also enables accounting of
245           stolen time on logically-partitioned systems running on
246           IBM POWER5-based machines.
247
248           If in doubt, say Y here.
249
250 config PPC_HAVE_PMU_SUPPORT
251        bool
252
253 config PPC_PERF_CTRS
254        def_bool y
255        depends on PERF_COUNTERS && PPC_HAVE_PMU_SUPPORT
256        help
257          This enables the powerpc-specific perf_counter back-end.
258
259 config SMP
260         depends on PPC_STD_MMU || FSL_BOOKE
261         bool "Symmetric multi-processing support"
262         ---help---
263           This enables support for systems with more than one CPU. If you have
264           a system with only one CPU, say N. If you have a system with more
265           than one CPU, say Y.  Note that the kernel does not currently
266           support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
267           since they have inadequate hardware support for multiprocessor
268           operation.
269
270           If you say N here, the kernel will run on single and multiprocessor
271           machines, but will use only one CPU of a multiprocessor machine. If
272           you say Y here, the kernel will run on single-processor machines.
273           On a single-processor machine, the kernel will run faster if you say
274           N here.
275
276           If you don't know what to do here, say N.
277
278 config NR_CPUS
279         int "Maximum number of CPUs (2-8192)"
280         range 2 8192
281         depends on SMP
282         default "32" if PPC64
283         default "4"
284
285 config NOT_COHERENT_CACHE
286         bool
287         depends on 4xx || 8xx || E200 || PPC_MPC512x
288         default y
289
290 config CHECK_CACHE_COHERENCY
291         bool
292
293 endmenu