Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see Documentation/kbuild/kconfig-language.txt. |
| 4 | # |
| 5 | # Note: ISA is disabled and will hopefully never be enabled. |
| 6 | # If you managed to buy an ISA x86-64 box you'll have to fix all the |
| 7 | # ISA drivers you need yourself. |
| 8 | # |
| 9 | |
| 10 | mainmenu "Linux Kernel Configuration" |
| 11 | |
| 12 | config X86_64 |
| 13 | bool |
| 14 | default y |
| 15 | help |
| 16 | Port to the x86-64 architecture. x86-64 is a 64-bit extension to the |
| 17 | classical 32-bit x86 architecture. For details see |
| 18 | <http://www.x86-64.org/>. |
| 19 | |
| 20 | config 64BIT |
| 21 | def_bool y |
| 22 | |
| 23 | config X86 |
| 24 | bool |
| 25 | default y |
| 26 | |
Benjamin LaHaise | 52fdd08 | 2005-09-03 15:56:52 -0700 | [diff] [blame] | 27 | config SEMAPHORE_SLEEPERS |
| 28 | bool |
| 29 | default y |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | config MMU |
| 32 | bool |
| 33 | default y |
| 34 | |
| 35 | config ISA |
| 36 | bool |
| 37 | |
| 38 | config SBUS |
| 39 | bool |
| 40 | |
| 41 | config RWSEM_GENERIC_SPINLOCK |
| 42 | bool |
| 43 | default y |
| 44 | |
| 45 | config RWSEM_XCHGADD_ALGORITHM |
| 46 | bool |
| 47 | |
Akinobu Mita | f33e2fb | 2006-03-26 01:39:42 -0800 | [diff] [blame] | 48 | config GENERIC_HWEIGHT |
| 49 | bool |
| 50 | default y |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | config GENERIC_CALIBRATE_DELAY |
| 53 | bool |
| 54 | default y |
| 55 | |
| 56 | config X86_CMPXCHG |
| 57 | bool |
| 58 | default y |
| 59 | |
| 60 | config EARLY_PRINTK |
| 61 | bool |
| 62 | default y |
| 63 | |
| 64 | config GENERIC_ISA_DMA |
| 65 | bool |
| 66 | default y |
| 67 | |
| 68 | config GENERIC_IOMAP |
| 69 | bool |
| 70 | default y |
| 71 | |
viro@ZenIV.linux.org.uk | a08b6b7 | 2005-09-06 01:48:42 +0100 | [diff] [blame] | 72 | config ARCH_MAY_HAVE_PC_FDC |
| 73 | bool |
| 74 | default y |
| 75 | |
Andi Kleen | e992867 | 2006-01-11 22:43:33 +0100 | [diff] [blame] | 76 | config DMI |
| 77 | bool |
| 78 | default y |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | source "init/Kconfig" |
| 81 | |
| 82 | |
| 83 | menu "Processor type and features" |
| 84 | |
| 85 | choice |
Ravikiran G Thirumalai | 79f1261 | 2006-01-11 22:46:18 +0100 | [diff] [blame] | 86 | prompt "Subarchitecture Type" |
| 87 | default X86_PC |
| 88 | |
| 89 | config X86_PC |
| 90 | bool "PC-compatible" |
| 91 | help |
| 92 | Choose this option if your computer is a standard PC or compatible. |
| 93 | |
| 94 | config X86_VSMP |
| 95 | bool "Support for ScaleMP vSMP" |
| 96 | help |
| 97 | Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is |
| 98 | supposed to run on these EM64T-based machines. Only choose this option |
| 99 | if you have one of these machines. |
| 100 | |
| 101 | endchoice |
| 102 | |
| 103 | choice |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | prompt "Processor family" |
| 105 | default MK8 |
| 106 | |
| 107 | config MK8 |
| 108 | bool "AMD-Opteron/Athlon64" |
| 109 | help |
| 110 | Optimize for AMD Opteron/Athlon64/Hammer/K8 CPUs. |
| 111 | |
| 112 | config MPSC |
| 113 | bool "Intel EM64T" |
| 114 | help |
| 115 | Optimize for Intel Pentium 4 and Xeon CPUs with Intel |
| 116 | Extended Memory 64 Technology(EM64T). For details see |
| 117 | <http://www.intel.com/technology/64bitextensions/>. |
| 118 | |
| 119 | config GENERIC_CPU |
| 120 | bool "Generic-x86-64" |
| 121 | help |
| 122 | Generic x86-64 CPU. |
| 123 | |
| 124 | endchoice |
| 125 | |
| 126 | # |
| 127 | # Define implied options from the CPU selection here |
| 128 | # |
| 129 | config X86_L1_CACHE_BYTES |
| 130 | int |
| 131 | default "128" if GENERIC_CPU || MPSC |
| 132 | default "64" if MK8 |
| 133 | |
| 134 | config X86_L1_CACHE_SHIFT |
| 135 | int |
| 136 | default "7" if GENERIC_CPU || MPSC |
| 137 | default "6" if MK8 |
| 138 | |
Ravikiran G Thirumalai | e405d06 | 2006-04-07 19:50:09 +0200 | [diff] [blame] | 139 | config X86_INTERNODE_CACHE_BYTES |
| 140 | int |
| 141 | default "4096" if X86_VSMP |
| 142 | default X86_L1_CACHE_BYTES if !X86_VSMP |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | config X86_TSC |
| 145 | bool |
| 146 | default y |
| 147 | |
| 148 | config X86_GOOD_APIC |
| 149 | bool |
| 150 | default y |
| 151 | |
| 152 | config MICROCODE |
| 153 | tristate "/dev/cpu/microcode - Intel CPU microcode support" |
| 154 | ---help--- |
| 155 | If you say Y here the 'File systems' section, you will be |
| 156 | able to update the microcode on Intel processors. You will |
| 157 | obviously need the actual microcode binary data itself which is |
| 158 | not shipped with the Linux kernel. |
| 159 | |
| 160 | For latest news and information on obtaining all the required |
| 161 | ingredients for this driver, check: |
| 162 | <http://www.urbanmyth.org/microcode/>. |
| 163 | |
| 164 | To compile this driver as a module, choose M here: the |
| 165 | module will be called microcode. |
| 166 | If you use modprobe or kmod you may also want to add the line |
| 167 | 'alias char-major-10-184 microcode' to your /etc/modules.conf file. |
| 168 | |
| 169 | config X86_MSR |
| 170 | tristate "/dev/cpu/*/msr - Model-specific register support" |
| 171 | help |
| 172 | This device gives privileged processes access to the x86 |
| 173 | Model-Specific Registers (MSRs). It is a character device with |
| 174 | major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr. |
| 175 | MSR accesses are directed to a specific CPU on multi-processor |
| 176 | systems. |
| 177 | |
| 178 | config X86_CPUID |
| 179 | tristate "/dev/cpu/*/cpuid - CPU information support" |
| 180 | help |
| 181 | This device gives processes access to the x86 CPUID instruction to |
| 182 | be executed on a specific processor. It is a character device |
| 183 | with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to |
| 184 | /dev/cpu/31/cpuid. |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | config X86_HT |
| 187 | bool |
| 188 | depends on SMP && !MK8 |
| 189 | default y |
| 190 | |
| 191 | config MATH_EMULATION |
| 192 | bool |
| 193 | |
| 194 | config MCA |
| 195 | bool |
| 196 | |
| 197 | config EISA |
| 198 | bool |
| 199 | |
| 200 | config X86_IO_APIC |
| 201 | bool |
| 202 | default y |
| 203 | |
| 204 | config X86_LOCAL_APIC |
| 205 | bool |
| 206 | default y |
| 207 | |
| 208 | config MTRR |
| 209 | bool "MTRR (Memory Type Range Register) support" |
| 210 | ---help--- |
| 211 | On Intel P6 family processors (Pentium Pro, Pentium II and later) |
| 212 | the Memory Type Range Registers (MTRRs) may be used to control |
| 213 | processor access to memory ranges. This is most useful if you have |
| 214 | a video (VGA) card on a PCI or AGP bus. Enabling write-combining |
| 215 | allows bus write transfers to be combined into a larger transfer |
| 216 | before bursting over the PCI/AGP bus. This can increase performance |
| 217 | of image write operations 2.5 times or more. Saying Y here creates a |
| 218 | /proc/mtrr file which may be used to manipulate your processor's |
| 219 | MTRRs. Typically the X server should use this. |
| 220 | |
| 221 | This code has a reasonably generic interface so that similar |
| 222 | control registers on other processors can be easily supported |
| 223 | as well. |
| 224 | |
| 225 | Saying Y here also fixes a problem with buggy SMP BIOSes which only |
| 226 | set the MTRRs for the boot CPU and not for the secondary CPUs. This |
| 227 | can lead to all sorts of problems, so it's good to say Y here. |
| 228 | |
| 229 | Just say Y here, all x86-64 machines support MTRRs. |
| 230 | |
| 231 | See <file:Documentation/mtrr.txt> for more information. |
| 232 | |
| 233 | config SMP |
| 234 | bool "Symmetric multi-processing support" |
| 235 | ---help--- |
| 236 | This enables support for systems with more than one CPU. If you have |
| 237 | a system with only one CPU, like most personal computers, say N. If |
| 238 | you have a system with more than one CPU, say Y. |
| 239 | |
| 240 | If you say N here, the kernel will run on single and multiprocessor |
| 241 | machines, but will use only one CPU of a multiprocessor machine. If |
| 242 | you say Y here, the kernel will run on many, but not all, |
| 243 | singleprocessor machines. On a singleprocessor machine, the kernel |
| 244 | will run faster if you say N here. |
| 245 | |
| 246 | If you don't know what to do here, say N. |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | config SCHED_SMT |
| 249 | bool "SMT (Hyperthreading) scheduler support" |
| 250 | depends on SMP |
| 251 | default n |
| 252 | help |
| 253 | SMT scheduler support improves the CPU scheduler's decision making |
| 254 | when dealing with Intel Pentium 4 chips with HyperThreading at a |
| 255 | cost of slightly increased overhead in some places. If unsure say |
| 256 | N here. |
| 257 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 258 | config SCHED_MC |
| 259 | bool "Multi-core scheduler support" |
| 260 | depends on SMP |
| 261 | default y |
| 262 | help |
| 263 | Multi-core scheduler support improves the CPU scheduler's decision |
| 264 | making when dealing with multi-core CPU chips at a cost of slightly |
| 265 | increased overhead in some places. If unsure say N here. |
| 266 | |
Ingo Molnar | cc19ca8 | 2005-06-25 14:57:36 -0700 | [diff] [blame] | 267 | source "kernel/Kconfig.preempt" |
| 268 | |
Ravikiran G Thirumalai | b0bd35e | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 269 | config NUMA |
| 270 | bool "Non Uniform Memory Access (NUMA) Support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | depends on SMP |
| 272 | help |
Ravikiran G Thirumalai | b0bd35e | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 273 | Enable NUMA (Non Uniform Memory Access) support. The kernel |
| 274 | will try to allocate memory used by a CPU on the local memory |
| 275 | controller of the CPU and add some more NUMA awareness to the kernel. |
| 276 | This code is recommended on all multiprocessor Opteron systems. |
| 277 | If the system is EM64T, you should say N unless your system is EM64T |
| 278 | NUMA. |
| 279 | |
| 280 | config K8_NUMA |
| 281 | bool "Old style AMD Opteron NUMA detection" |
| 282 | depends on NUMA |
| 283 | default y |
| 284 | help |
| 285 | Enable K8 NUMA node topology detection. You should say Y here if |
| 286 | you have a multi processor AMD K8 system. This uses an old |
| 287 | method to read the NUMA configurtion directly from the builtin |
| 288 | Northbridge of Opteron. It is recommended to use X86_64_ACPI_NUMA |
| 289 | instead, which also takes priority if both are compiled in. |
| 290 | |
Yasunori Goto | c80d79d | 2006-04-10 22:53:53 -0700 | [diff] [blame] | 291 | config NODES_SHIFT |
| 292 | int |
| 293 | default "6" |
| 294 | depends on NEED_MULTIPLE_NODES |
| 295 | |
Ravikiran G Thirumalai | b0bd35e | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 296 | # Dummy CONFIG option to select ACPI_NUMA from drivers/acpi/Kconfig. |
| 297 | |
| 298 | config X86_64_ACPI_NUMA |
| 299 | bool "ACPI NUMA detection" |
| 300 | depends on NUMA |
| 301 | select ACPI |
Adrian Bunk | 1300124 | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 302 | select PCI |
Ravikiran G Thirumalai | b0bd35e | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 303 | select ACPI_NUMA |
| 304 | default y |
| 305 | help |
| 306 | Enable ACPI SRAT based node topology detection. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | config NUMA_EMU |
Ravikiran G Thirumalai | b0bd35e | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 309 | bool "NUMA emulation" |
| 310 | depends on NUMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | help |
| 312 | Enable NUMA emulation. A flat machine will be split |
| 313 | into virtual nodes when booted with "numa=fake=N", where N is the |
| 314 | number of nodes. This is only useful for debugging. |
| 315 | |
Dave Hansen | 3f22ab2 | 2005-06-23 00:07:43 -0700 | [diff] [blame] | 316 | config ARCH_DISCONTIGMEM_ENABLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | bool |
| 318 | depends on NUMA |
| 319 | default y |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Matt Tolentino | 1035faf | 2005-06-23 00:08:05 -0700 | [diff] [blame] | 322 | config ARCH_DISCONTIGMEM_ENABLE |
| 323 | def_bool y |
| 324 | depends on NUMA |
| 325 | |
| 326 | config ARCH_DISCONTIGMEM_DEFAULT |
| 327 | def_bool y |
| 328 | depends on NUMA |
| 329 | |
| 330 | config ARCH_SPARSEMEM_ENABLE |
| 331 | def_bool y |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 332 | depends on (NUMA || EXPERIMENTAL) |
| 333 | |
| 334 | config ARCH_MEMORY_PROBE |
| 335 | def_bool y |
| 336 | depends on MEMORY_HOTPLUG |
Matt Tolentino | 1035faf | 2005-06-23 00:08:05 -0700 | [diff] [blame] | 337 | |
| 338 | config ARCH_FLATMEM_ENABLE |
| 339 | def_bool y |
| 340 | depends on !NUMA |
| 341 | |
Dave Hansen | 3f22ab2 | 2005-06-23 00:07:43 -0700 | [diff] [blame] | 342 | source "mm/Kconfig" |
| 343 | |
Matt Tolentino | 1035faf | 2005-06-23 00:08:05 -0700 | [diff] [blame] | 344 | config HAVE_ARCH_EARLY_PFN_TO_NID |
| 345 | def_bool y |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 346 | depends on NUMA |
Matt Tolentino | 1035faf | 2005-06-23 00:08:05 -0700 | [diff] [blame] | 347 | |
KAMEZAWA Hiroyuki | dc8ecb4 | 2006-03-27 01:15:34 -0800 | [diff] [blame] | 348 | config OUT_OF_LINE_PFN_TO_PAGE |
| 349 | def_bool y |
| 350 | depends on DISCONTIGMEM |
| 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | config NR_CPUS |
| 353 | int "Maximum number of CPUs (2-256)" |
Andi Kleen | 01d4bed | 2006-03-25 16:30:58 +0100 | [diff] [blame] | 354 | range 2 255 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | depends on SMP |
| 356 | default "8" |
| 357 | help |
| 358 | This allows you to specify the maximum number of CPUs which this |
| 359 | kernel will support. Current maximum is 256 CPUs due to |
| 360 | APIC addressing limits. Less depending on the hardware. |
| 361 | |
| 362 | This is purely to save memory - each supported CPU requires |
| 363 | memory in the static kernel configuration. |
| 364 | |
Ashok Raj | 76e4f66 | 2005-06-25 14:55:00 -0700 | [diff] [blame] | 365 | config HOTPLUG_CPU |
| 366 | bool "Support for hot-pluggable CPUs (EXPERIMENTAL)" |
| 367 | depends on SMP && HOTPLUG && EXPERIMENTAL |
| 368 | help |
| 369 | Say Y here to experiment with turning CPUs off and on. CPUs |
| 370 | can be controlled through /sys/devices/system/cpu/cpu#. |
| 371 | Say N if you want to disable CPU hotplug. |
| 372 | |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | config HPET_TIMER |
| 375 | bool |
| 376 | default y |
| 377 | help |
| 378 | Use the IA-PC HPET (High Precision Event Timer) to manage |
| 379 | time in preference to the PIT and RTC, if a HPET is |
| 380 | present. The HPET provides a stable time base on SMP |
| 381 | systems, unlike the TSC, but it is more expensive to access, |
| 382 | as it is off-chip. You can find the HPET spec at |
Randy Dunlap | 89d7cbf | 2005-09-21 09:55:44 -0700 | [diff] [blame] | 383 | <http://www.intel.com/hardwaredesign/hpetspec.htm>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | config HPET_EMULATE_RTC |
| 386 | bool "Provide RTC interrupt" |
| 387 | depends on HPET_TIMER && RTC=y |
| 388 | |
Andi Kleen | a813ce4 | 2006-06-26 13:57:22 +0200 | [diff] [blame^] | 389 | # Mark as embedded because too many people got it wrong. |
| 390 | # The code disables itself when not needed. |
| 391 | config IOMMU |
| 392 | bool "IOMMU support" if EMBEDDED |
Andi Kleen | a54649b | 2005-07-28 21:15:32 -0700 | [diff] [blame] | 393 | default y |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 394 | select SWIOTLB |
Roman Zippel | dcc1a66 | 2006-06-22 14:47:35 -0700 | [diff] [blame] | 395 | select AGP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | depends on PCI |
| 397 | help |
Andi Kleen | a813ce4 | 2006-06-26 13:57:22 +0200 | [diff] [blame^] | 398 | Support for full DMA access of devices with 32bit memory access only |
| 399 | on systems with more than 3GB. This is usually needed for USB, |
| 400 | sound, many IDE/SATA chipsets and some other devices. |
| 401 | Provides a driver for the AMD Athlon64/Opteron/Turion/Sempron GART |
| 402 | based IOMMU and a software bounce buffer based IOMMU used on Intel |
| 403 | systems and as fallback. |
| 404 | The code is only active when needed (enough memory and limited |
| 405 | device) unless CONFIG_IOMMU_DEBUG or iommu=force is specified |
| 406 | too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Andi Kleen | a813ce4 | 2006-06-26 13:57:22 +0200 | [diff] [blame^] | 408 | # need this always selected by IOMMU for the VIA workaround |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | config SWIOTLB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | bool |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | config X86_MCE |
| 413 | bool "Machine check support" if EMBEDDED |
| 414 | default y |
| 415 | help |
| 416 | Include a machine check error handler to report hardware errors. |
| 417 | This version will require the mcelog utility to decode some |
| 418 | machine check error logs. See |
| 419 | ftp://ftp.x86-64.org/pub/linux/tools/mcelog |
| 420 | |
| 421 | config X86_MCE_INTEL |
| 422 | bool "Intel MCE features" |
| 423 | depends on X86_MCE && X86_LOCAL_APIC |
| 424 | default y |
| 425 | help |
| 426 | Additional support for intel specific MCE features such as |
| 427 | the thermal monitor. |
| 428 | |
Jacob Shin | 89b831e | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 429 | config X86_MCE_AMD |
| 430 | bool "AMD MCE features" |
| 431 | depends on X86_MCE && X86_LOCAL_APIC |
| 432 | default y |
| 433 | help |
| 434 | Additional support for AMD specific MCE features such as |
| 435 | the DRAM Error Threshold. |
| 436 | |
Eric W. Biederman | 5234f5e | 2005-06-25 14:58:02 -0700 | [diff] [blame] | 437 | config KEXEC |
| 438 | bool "kexec system call (EXPERIMENTAL)" |
| 439 | depends on EXPERIMENTAL |
| 440 | help |
| 441 | kexec is a system call that implements the ability to shutdown your |
| 442 | current kernel, and to start another kernel. It is like a reboot |
| 443 | but it is indepedent of the system firmware. And like a reboot |
| 444 | you can start any kernel with it, not just Linux. |
| 445 | |
| 446 | The name comes from the similiarity to the exec system call. |
| 447 | |
| 448 | It is an ongoing process to be certain the hardware in a machine |
| 449 | is properly shutdown, so do not be surprised if this code does not |
| 450 | initially work for you. It may help to enable device hotplugging |
| 451 | support. As of this writing the exact hardware interface is |
| 452 | strongly in flux, so no good recommendation can be made. |
| 453 | |
Vivek Goyal | ec9ce0d | 2006-01-09 20:51:49 -0800 | [diff] [blame] | 454 | config CRASH_DUMP |
| 455 | bool "kernel crash dumps (EXPERIMENTAL)" |
Vivek Goyal | ec9ce0d | 2006-01-09 20:51:49 -0800 | [diff] [blame] | 456 | depends on EXPERIMENTAL |
| 457 | help |
| 458 | Generate crash dump after being started by kexec. |
| 459 | |
Maneesh Soni | 05970d4 | 2006-01-09 20:51:52 -0800 | [diff] [blame] | 460 | config PHYSICAL_START |
| 461 | hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP) |
| 462 | default "0x1000000" if CRASH_DUMP |
Andi Kleen | 0410360 | 2006-03-25 16:30:13 +0100 | [diff] [blame] | 463 | default "0x200000" |
Maneesh Soni | 05970d4 | 2006-01-09 20:51:52 -0800 | [diff] [blame] | 464 | help |
| 465 | This gives the physical address where the kernel is loaded. Normally |
Andi Kleen | 0410360 | 2006-03-25 16:30:13 +0100 | [diff] [blame] | 466 | for regular kernels this value is 0x200000 (2MB). But in the case |
Maneesh Soni | 05970d4 | 2006-01-09 20:51:52 -0800 | [diff] [blame] | 467 | of kexec on panic the fail safe kernel needs to run at a different |
| 468 | address than the panic-ed kernel. This option is used to set the load |
| 469 | address for kernels used to capture crash dump on being kexec'ed |
| 470 | after panic. The default value for crash dump kernels is |
| 471 | 0x1000000 (16MB). This can also be set based on the "X" value as |
| 472 | specified in the "crashkernel=YM@XM" command line boot parameter |
| 473 | passed to the panic-ed kernel. Typically this parameter is set as |
| 474 | crashkernel=64M@16M. Please take a look at |
| 475 | Documentation/kdump/kdump.txt for more details about crash dumps. |
| 476 | |
| 477 | Don't change this unless you know what you are doing. |
| 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | config SECCOMP |
| 480 | bool "Enable seccomp to safely compute untrusted bytecode" |
| 481 | depends on PROC_FS |
| 482 | default y |
| 483 | help |
| 484 | This kernel feature is useful for number crunching applications |
| 485 | that may need to compute untrusted bytecode during their |
| 486 | execution. By using pipes or other transports made available to |
| 487 | the process as file descriptors supporting the read/write |
| 488 | syscalls, it's possible to isolate those applications in |
| 489 | their own address space using seccomp. Once seccomp is |
| 490 | enabled via /proc/<pid>/seccomp, it cannot be disabled |
| 491 | and the task is only allowed to execute a few safe syscalls |
| 492 | defined by each seccomp mode. |
| 493 | |
| 494 | If unsure, say Y. Only embedded should say N here. |
| 495 | |
Christoph Lameter | 5912100 | 2005-06-23 00:08:25 -0700 | [diff] [blame] | 496 | source kernel/Kconfig.hz |
| 497 | |
Arjan van de Ven | 4bdc3b7 | 2006-03-25 16:30:49 +0100 | [diff] [blame] | 498 | config REORDER |
| 499 | bool "Function reordering" |
| 500 | default n |
| 501 | help |
| 502 | This option enables the toolchain to reorder functions for a more |
| 503 | optimal TLB usage. If you have pretty much any version of binutils, |
| 504 | this can increase your kernel build time by roughly one minute. |
| 505 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 506 | config K8_NB |
| 507 | def_bool y |
Andi Kleen | a813ce4 | 2006-06-26 13:57:22 +0200 | [diff] [blame^] | 508 | depends on AGP_AMD64 || IOMMU || (PCI && NUMA) |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | endmenu |
| 511 | |
| 512 | # |
| 513 | # Use the generic interrupt handling code in kernel/irq/: |
| 514 | # |
| 515 | config GENERIC_HARDIRQS |
| 516 | bool |
| 517 | default y |
| 518 | |
| 519 | config GENERIC_IRQ_PROBE |
| 520 | bool |
| 521 | default y |
| 522 | |
Al Viro | 5cae841 | 2005-05-04 05:39:22 +0100 | [diff] [blame] | 523 | # we have no ISA slots, but we do have ISA-style DMA. |
| 524 | config ISA_DMA_API |
| 525 | bool |
| 526 | default y |
| 527 | |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 528 | config GENERIC_PENDING_IRQ |
| 529 | bool |
| 530 | depends on GENERIC_HARDIRQS && SMP |
| 531 | default y |
| 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | menu "Power management options" |
| 534 | |
| 535 | source kernel/power/Kconfig |
| 536 | |
| 537 | source "drivers/acpi/Kconfig" |
| 538 | |
| 539 | source "arch/x86_64/kernel/cpufreq/Kconfig" |
| 540 | |
| 541 | endmenu |
| 542 | |
| 543 | menu "Bus options (PCI etc.)" |
| 544 | |
| 545 | config PCI |
| 546 | bool "PCI support" |
| 547 | |
| 548 | # x86-64 doesn't support PCI BIOS access from long mode so always go direct. |
| 549 | config PCI_DIRECT |
| 550 | bool |
| 551 | depends on PCI |
| 552 | default y |
| 553 | |
| 554 | config PCI_MMCONFIG |
| 555 | bool "Support mmconfig PCI config space access" |
Alexander Nyberg | 8aadff7 | 2005-05-27 12:48:50 +0200 | [diff] [blame] | 556 | depends on PCI && ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | source "drivers/pci/pcie/Kconfig" |
| 559 | |
| 560 | source "drivers/pci/Kconfig" |
| 561 | |
| 562 | source "drivers/pcmcia/Kconfig" |
| 563 | |
| 564 | source "drivers/pci/hotplug/Kconfig" |
| 565 | |
| 566 | endmenu |
| 567 | |
| 568 | |
| 569 | menu "Executable file formats / Emulations" |
| 570 | |
| 571 | source "fs/Kconfig.binfmt" |
| 572 | |
| 573 | config IA32_EMULATION |
| 574 | bool "IA32 Emulation" |
| 575 | help |
| 576 | Include code to run 32-bit programs under a 64-bit kernel. You should likely |
| 577 | turn this on, unless you're 100% sure that you don't have any 32-bit programs |
| 578 | left. |
| 579 | |
| 580 | config IA32_AOUT |
Andi Kleen | ea0be47 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 581 | tristate "IA32 a.out support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | depends on IA32_EMULATION |
| 583 | help |
| 584 | Support old a.out binaries in the 32bit emulation. |
| 585 | |
| 586 | config COMPAT |
| 587 | bool |
| 588 | depends on IA32_EMULATION |
| 589 | default y |
| 590 | |
| 591 | config SYSVIPC_COMPAT |
| 592 | bool |
| 593 | depends on COMPAT && SYSVIPC |
| 594 | default y |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | endmenu |
| 597 | |
Sam Ravnborg | d5950b4 | 2005-07-11 21:03:49 -0700 | [diff] [blame] | 598 | source "net/Kconfig" |
| 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | source drivers/Kconfig |
| 601 | |
| 602 | source "drivers/firmware/Kconfig" |
| 603 | |
| 604 | source fs/Kconfig |
| 605 | |
Prasanna S Panchamukhi | cd6b076 | 2005-11-07 00:59:14 -0800 | [diff] [blame] | 606 | menu "Instrumentation Support" |
| 607 | depends on EXPERIMENTAL |
| 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | source "arch/x86_64/oprofile/Kconfig" |
| 610 | |
Prasanna S Panchamukhi | cd6b076 | 2005-11-07 00:59:14 -0800 | [diff] [blame] | 611 | config KPROBES |
| 612 | bool "Kprobes (EXPERIMENTAL)" |
Linus Torvalds | add2b6f | 2006-02-26 20:24:40 -0800 | [diff] [blame] | 613 | depends on EXPERIMENTAL && MODULES |
Prasanna S Panchamukhi | cd6b076 | 2005-11-07 00:59:14 -0800 | [diff] [blame] | 614 | help |
| 615 | Kprobes allows you to trap at almost any kernel address and |
| 616 | execute a callback function. register_kprobe() establishes |
| 617 | a probepoint and specifies the callback. Kprobes is useful |
| 618 | for kernel debugging, non-intrusive instrumentation and testing. |
| 619 | If in doubt, say "N". |
| 620 | endmenu |
| 621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | source "arch/x86_64/Kconfig.debug" |
| 623 | |
| 624 | source "security/Kconfig" |
| 625 | |
| 626 | source "crypto/Kconfig" |
| 627 | |
| 628 | source "lib/Kconfig" |