blob: 3aa6c821449a90fd43d0169fb3bbcf410140602d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6mainmenu "IA-64 Linux Kernel Configuration"
7
8source "init/Kconfig"
9
10menu "Processor type and features"
11
12config IA64
13 bool
Len Brown06f87ad2007-01-26 00:38:53 -050014 select PCI if (!IA64_HP_SIM)
15 select ACPI if (!IA64_HP_SIM)
Len Brown8140a902007-03-16 22:00:43 -040016 select PM if (!IA64_HP_SIM)
Dan Williamsf282b9702007-04-18 18:46:20 +100017 select ARCH_SUPPORTS_MSI
Sam Ravnborgec7748b2008-02-09 10:46:40 +010018 select HAVE_IDE
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -050019 select HAVE_OPROFILE
Mathieu Desnoyers3f550092008-02-02 15:10:35 -050020 select HAVE_KPROBES
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -080021 select HAVE_KRETPROBES
Xiantao Zhangb6939192008-03-28 14:58:47 +080022 select HAVE_KVM
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 default y
24 help
25 The Itanium Processor Family is Intel's 64-bit successor to
26 the 32-bit X86 line. The IA-64 Linux project has a home
27 page at <http://www.linuxia64.org/> and a mailing list at
28 <linux-ia64@vger.kernel.org>.
29
30config 64BIT
31 bool
Zhang, Yanmin9f271d52007-02-09 11:29:51 +080032 select ATA_NONSTANDARD if ATA
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 default y
34
Christoph Lameter66701b12007-02-10 01:43:09 -080035config ZONE_DMA
Christoph Lameter09ae1f52007-02-10 01:43:11 -080036 def_bool y
37 depends on !IA64_SGI_SN2
Christoph Lameter66701b12007-02-10 01:43:09 -080038
Christoph Lameter2bd62a42007-05-10 22:42:53 -070039config QUICKLIST
40 bool
41 default y
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043config MMU
44 bool
45 default y
46
John W. Linville6c654b52005-09-29 14:42:42 -070047config SWIOTLB
48 bool
John W. Linville6c654b52005-09-29 14:42:42 -070049
Nick Piggin95c354f2008-01-30 13:31:20 +010050config GENERIC_LOCKBREAK
51 bool
52 default y
53 depends on SMP && PREEMPT
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055config RWSEM_XCHGADD_ALGORITHM
56 bool
57 default y
58
David Howellsf0d1b0b2006-12-08 02:37:49 -080059config ARCH_HAS_ILOG2_U32
60 bool
61 default n
62
63config ARCH_HAS_ILOG2_U64
64 bool
65 default n
66
Mel Gormand9c23402007-10-16 01:26:01 -070067config HUGETLB_PAGE_SIZE_VARIABLE
68 bool
69 depends on HUGETLB_PAGE
70 default y
71
Akinobu Mita2875aef2006-03-26 01:39:25 -080072config GENERIC_FIND_NEXT_BIT
73 bool
74 default y
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076config GENERIC_CALIBRATE_DELAY
77 bool
78 default y
79
Tony Luck0aa366f2007-07-20 11:22:30 -070080config GENERIC_TIME
81 bool
82 default y
83
84config GENERIC_TIME_VSYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 bool
86 default y
87
travis@sgi.com988c3882008-01-30 23:27:58 +010088config HAVE_SETUP_PER_CPU_AREA
travis@sgi.comb32ef632008-01-30 13:32:51 +010089 def_bool y
90
Matt Domsch3ed3bce2006-03-26 01:37:03 -080091config DMI
92 bool
93 default y
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095config EFI
96 bool
97 default y
98
99config GENERIC_IOMAP
100 bool
101 default y
102
Anton Blanchard7d12e522005-05-05 16:15:11 -0700103config SCHED_NO_NO_OMIT_FRAME_POINTER
104 bool
105 default y
106
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700107config IA64_UNCACHED_ALLOCATOR
108 bool
109 select GENERIC_ALLOCATOR
110
Al Viroe65e1fc2006-09-12 03:04:40 -0400111config AUDIT_ARCH
112 bool
113 default y
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115choice
116 prompt "System type"
117 default IA64_GENERIC
118
119config IA64_GENERIC
120 bool "generic"
121 select NUMA
122 select ACPI_NUMA
Jan Beulichd1598e02007-01-03 09:26:21 +0000123 select SWIOTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 help
125 This selects the system type of your hardware. A "generic" kernel
126 will run on any supported IA-64 system. However, if you configure
127 a kernel for your specific system, it will be faster and smaller.
128
129 generic For any supported IA-64 system
130 DIG-compliant For DIG ("Developer's Interface Guide") compliant systems
131 HP-zx1/sx1000 For HP systems
132 HP-zx1/sx1000+swiotlb For HP systems with (broken) DMA-constrained devices.
133 SGI-SN2 For SGI Altix systems
134 Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/>
135
136 If you don't know what to do, choose "generic".
137
138config IA64_DIG
139 bool "DIG-compliant"
Jan Beulichd1598e02007-01-03 09:26:21 +0000140 select SWIOTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142config IA64_HP_ZX1
143 bool "HP-zx1/sx1000"
144 help
145 Build a kernel that runs on HP zx1 and sx1000 systems. This adds
146 support for the HP I/O MMU.
147
148config IA64_HP_ZX1_SWIOTLB
149 bool "HP-zx1/sx1000 with software I/O TLB"
Jan Beulichd1598e02007-01-03 09:26:21 +0000150 select SWIOTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 help
152 Build a kernel that runs on HP zx1 and sx1000 systems even when they
153 have broken PCI devices which cannot DMA to full 32 bits. Apart
154 from support for the HP I/O MMU, this includes support for the software
155 I/O TLB, which allows supporting the broken devices at the expense of
156 wasting some kernel memory (about 2MB by default).
157
158config IA64_SGI_SN2
159 bool "SGI-SN2"
Jes Sorensenbd3be242008-02-11 15:10:19 +0100160 select NUMA
161 select ACPI_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 help
163 Selecting this option will optimize the kernel for use on sn2 based
164 systems, but the resulting kernel binary will not run on other
165 types of ia64 systems. If you have an SGI Altix system, it's safe
166 to select this option. If in doubt, select ia64 generic support
167 instead.
168
169config IA64_HP_SIM
170 bool "Ski-simulator"
Jan Beulichd1598e02007-01-03 09:26:21 +0000171 select SWIOTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173endchoice
174
175choice
176 prompt "Processor type"
177 default ITANIUM
178
179config ITANIUM
180 bool "Itanium"
181 help
182 Select your IA-64 processor type. The default is Itanium.
183 This choice is safe for all IA-64 systems, but may not perform
184 optimally on systems with, say, Itanium 2 or newer processors.
185
186config MCKINLEY
187 bool "Itanium 2"
188 help
189 Select this to configure for an Itanium 2 (McKinley) processor.
190
191endchoice
192
193choice
194 prompt "Kernel page size"
195 default IA64_PAGE_SIZE_16KB
196
197config IA64_PAGE_SIZE_4KB
198 bool "4KB"
199 help
200 This lets you select the page size of the kernel. For best IA-64
201 performance, a page size of 8KB or 16KB is recommended. For best
202 IA-32 compatibility, a page size of 4KB should be selected (the vast
203 majority of IA-32 binaries work perfectly fine with a larger page
204 size). For Itanium 2 or newer systems, a page size of 64KB can also
205 be selected.
206
207 4KB For best IA-32 compatibility
208 8KB For best IA-64 performance
209 16KB For best IA-64 performance
210 64KB Requires Itanium 2 or newer processor.
211
212 If you don't know what to do, choose 16KB.
213
214config IA64_PAGE_SIZE_8KB
215 bool "8KB"
216
217config IA64_PAGE_SIZE_16KB
218 bool "16KB"
219
220config IA64_PAGE_SIZE_64KB
221 depends on !ITANIUM
222 bool "64KB"
223
224endchoice
225
Robin Holt837cd0b2005-11-11 09:35:43 -0600226choice
227 prompt "Page Table Levels"
228 default PGTABLE_3
229
230config PGTABLE_3
231 bool "3 Levels"
232
233config PGTABLE_4
234 depends on !IA64_PAGE_SIZE_64KB
235 bool "4 Levels"
236
237endchoice
238
Tony Luck10d0aa32008-02-11 13:23:46 -0800239if IA64_HP_SIM
240config HZ
241 default 32
242endif
243
244if !IA64_HP_SIM
Christoph Lameterb5d23e52005-06-23 00:08:27 -0700245source kernel/Kconfig.hz
Tony Luck10d0aa32008-02-11 13:23:46 -0800246endif
Christoph Lameterb5d23e52005-06-23 00:08:27 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248config IA64_BRL_EMU
249 bool
250 depends on ITANIUM
251 default y
252
253# align cache-sensitive data to 128 bytes
254config IA64_L1_CACHE_SHIFT
255 int
256 default "7" if MCKINLEY
257 default "6" if ITANIUM
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259config IA64_CYCLONE
260 bool "Cyclone (EXA) Time Source support"
261 help
262 Say Y here to enable support for IBM EXA Cyclone time source.
263 If you're unsure, answer N.
264
265config IOSAPIC
266 bool
267 depends on !IA64_HP_SIM
268 default y
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270config FORCE_MAX_ZONEORDER
Bob Piccoda9577c2005-10-04 15:13:37 -0400271 int "MAX_ORDER (11 - 17)" if !HUGETLB_PAGE
272 range 11 17 if !HUGETLB_PAGE
273 default "17" if HUGETLB_PAGE
274 default "11"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Hidetoshi Setob64f34c2008-01-29 14:27:30 +0900276config VIRT_CPU_ACCOUNTING
277 bool "Deterministic task and CPU time accounting"
278 default n
279 help
280 Select this option to enable more accurate task and CPU time
281 accounting. This is done by reading a CPU counter on each
282 kernel entry and exit and on transitions within the kernel
283 between system, softirq and hardirq state, so there is a
284 small performance impact.
285 If in doubt, say N here.
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287config SMP
288 bool "Symmetric multi-processing support"
289 help
290 This enables support for systems with more than one CPU. If you have
291 a system with only one CPU, say N. If you have a system with more
292 than one CPU, say Y.
293
294 If you say N here, the kernel will run on single and multiprocessor
295 systems, but will use only one CPU of a multiprocessor system. If
296 you say Y here, the kernel will run on many, but not all,
297 single processor systems. On a single processor system, the kernel
298 will run faster if you say N here.
299
Adrian Bunk03502fa2008-02-03 15:50:21 +0200300 See also the SMP-HOWTO available at
301 <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 If you don't know what to do here, say N.
304
305config NR_CPUS
Jack Steiner54703d32005-09-14 10:33:40 -0500306 int "Maximum number of CPUs (2-1024)"
307 range 2 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 depends on SMP
Christoph Lameterc57d68c2006-08-22 19:43:27 -0700309 default "1024"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 help
311 You should set this to the number of CPUs in your system, but
312 keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
313 only use 2 CPUs on a >2 CPU system. Setting this to a value larger
314 than 64 will cause the use of a CPU mask array, causing a small
315 performance hit.
316
317config HOTPLUG_CPU
318 bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
319 depends on SMP && EXPERIMENTAL
320 select HOTPLUG
321 default n
322 ---help---
323 Say Y here to experiment with turning CPUs off and on. CPUs
324 can be controlled through /sys/devices/system/cpu/cpu#.
325 Say N if you want to disable CPU hotplug.
326
Yasunori Gotocc576372006-06-29 02:24:27 -0700327config ARCH_ENABLE_MEMORY_HOTPLUG
328 def_bool y
329
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700330config ARCH_ENABLE_MEMORY_HOTREMOVE
331 def_bool y
332
Suresh Siddha7a9bdd82005-04-05 18:05:00 -0700333config SCHED_SMT
334 bool "SMT scheduler support"
335 depends on SMP
Suresh Siddha7a9bdd82005-04-05 18:05:00 -0700336 help
337 Improves the CPU scheduler's decision making when dealing with
338 Intel IA64 chips with MultiThreading at a cost of slightly increased
339 overhead in some places. If unsure say N here.
340
Ashok Rajff741902005-11-11 14:32:40 -0800341config PERMIT_BSP_REMOVE
342 bool "Support removal of Bootstrap Processor"
343 depends on HOTPLUG_CPU
344 default n
345 ---help---
346 Say Y here if your platform SAL will support removal of BSP with HOTPLUG_CPU
347 support.
348
349config FORCE_CPEI_RETARGET
350 bool "Force assumption that CPEI can be re-targetted"
351 depends on PERMIT_BSP_REMOVE
352 default n
353 ---help---
354 Say Y if you need to force the assumption that CPEI can be re-targetted to
355 any cpu in the system. This hint is available via ACPI 3.0 specifications.
356 Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP.
357 This option it useful to enable this feature on older BIOS's as well.
358 You can also enable this by using boot command line option force_cpei=1.
359
Satyam Sharma0b0517a42007-08-13 23:41:45 +0530360source "kernel/Kconfig.preempt"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Dave Hansen3f22ab22005-06-23 00:07:43 -0700362source "mm/Kconfig"
363
Bob Piccoda9577c2005-10-04 15:13:37 -0400364config ARCH_SELECT_MEMORY_MODEL
365 def_bool y
366
367config ARCH_DISCONTIGMEM_ENABLE
368 def_bool y
369 help
370 Say Y to support efficient handling of discontiguous physical memory,
371 for architectures which are either NUMA (Non-Uniform Memory Access)
372 or have huge holes in the physical address space for other reasons.
373 See <file:Documentation/vm/numa> for more.
374
375config ARCH_FLATMEM_ENABLE
376 def_bool y
377
378config ARCH_SPARSEMEM_ENABLE
379 def_bool y
380 depends on ARCH_DISCONTIGMEM_ENABLE
Christoph Lameteref229c52007-10-16 01:24:15 -0700381 select SPARSEMEM_VMEMMAP_ENABLE
Bob Piccoda9577c2005-10-04 15:13:37 -0400382
383config ARCH_DISCONTIGMEM_DEFAULT
384 def_bool y if (IA64_SGI_SN2 || IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB)
385 depends on ARCH_DISCONTIGMEM_ENABLE
386
387config NUMA
388 bool "NUMA support"
389 depends on !IA64_HP_SIM && !FLATMEM
390 default y if IA64_SGI_SN2
KAMEZAWA Hiroyuki6c33eb32006-11-08 17:44:50 -0800391 select ACPI_NUMA if ACPI
Bob Piccoda9577c2005-10-04 15:13:37 -0400392 help
393 Say Y to compile the kernel to support NUMA (Non-Uniform Memory
394 Access). This option is for configuring high-end multiprocessor
395 server systems. If in doubt, say N.
396
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700397config NODES_SHIFT
398 int "Max num nodes shift(3-10)"
399 range 3 10
Christoph Lameterc57d68c2006-08-22 19:43:27 -0700400 default "10"
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700401 depends on NEED_MULTIPLE_NODES
402 help
403 This option specifies the maximum number of nodes in your SSI system.
404 MAX_NUMNODES will be 2^(This value).
405 If in doubt, use the default.
406
Mel Gorman05e0caa2006-09-27 01:49:54 -0700407config ARCH_POPULATES_NODE_MAP
408 def_bool y
409
Bob Piccoda9577c2005-10-04 15:13:37 -0400410# VIRTUAL_MEM_MAP and FLAT_NODE_MEM_MAP are functionally equivalent.
411# VIRTUAL_MEM_MAP has been retained for historical reasons.
412config VIRTUAL_MEM_MAP
413 bool "Virtual mem map"
414 depends on !SPARSEMEM
415 default y if !IA64_HP_SIM
416 help
417 Say Y to compile the kernel with support for a virtual mem map.
418 This code also only takes effect if a memory hole of greater than
419 1 Gb is found during boot. You must turn this option on if you
420 require the DISCONTIGMEM option for your machine. If you are
421 unsure, say Y.
422
423config HOLES_IN_ZONE
424 bool
425 default y if VIRTUAL_MEM_MAP
426
427config HAVE_ARCH_EARLY_PFN_TO_NID
428 def_bool y
429 depends on NEED_MULTIPLE_NODES
430
Yasunori Goto10ad4002006-06-27 02:53:33 -0700431config HAVE_ARCH_NODEDATA_EXTENSION
432 def_bool y
433 depends on NUMA
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435config IA32_SUPPORT
436 bool "Support for Linux/x86 binaries"
437 help
438 IA-64 processors can execute IA-32 (X86) instructions. By
439 saying Y here, the kernel will include IA-32 system call
440 emulation support which makes it possible to transparently
441 run IA-32 Linux binaries on an IA-64 Linux system.
442 If in doubt, say Y.
443
444config COMPAT
445 bool
446 depends on IA32_SUPPORT
447 default y
448
Tony Luck7a6c8132007-07-27 15:35:43 -0700449config COMPAT_FOR_U64_ALIGNMENT
450 def_bool COMPAT
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452config IA64_MCA_RECOVERY
453 tristate "MCA recovery from errors other than TLB."
454
455config PERFMON
456 bool "Performance monitor support"
457 help
458 Selects whether support for the IA-64 performance monitor hardware
459 is included in the kernel. This makes some kernel data-structures a
460 little bigger and slows down execution a bit, but it is generally
461 a good idea to turn this on. If you're unsure, say Y.
462
463config IA64_PALINFO
464 tristate "/proc/pal support"
465 help
466 If you say Y here, you are able to get PAL (Processor Abstraction
467 Layer) information in /proc/pal. This contains useful information
468 about the processors in your systems, such as cache and TLB sizes
469 and the PAL firmware version in use.
470
471 To use this option, you have to ensure that the "/proc file system
472 support" (CONFIG_PROC_FS) is enabled, too.
473
Fenghua Yue9ef08b2006-12-08 16:06:01 -0800474config IA64_MC_ERR_INJECT
475 tristate "MC error injection support"
476 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200477 Adds support for MC error injection. If enabled, the kernel
478 will provide a sysfs interface for user applications to
479 call MC error injection PAL procedures to inject various errors.
Fenghua Yue9ef08b2006-12-08 16:06:01 -0800480 This is a useful tool for MCA testing.
481
482 If you're unsure, do not select this option.
483
Jes Sorensen466575f2006-01-19 04:54:00 -0500484config SGI_SN
485 def_bool y if (IA64_SGI_SN2 || IA64_GENERIC)
486
David Mosberger-Tang2ab561a2006-06-21 11:19:22 -0700487config IA64_ESI
488 bool "ESI (Extensible SAL Interface) support"
489 help
490 If you say Y here, support is built into the kernel to
491 make ESI calls. ESI calls are used to support vendor-specific
492 firmware extensions, such as the ability to inject memory-errors
493 for test-purposes. If you're unsure, say N.
494
Bjorn Helgaas28eda5b2007-09-20 14:22:03 -0600495config IA64_HP_AML_NFW
496 bool "Support ACPI AML calls to native firmware"
497 help
498 This driver installs a global ACPI Operation Region handler for
499 region 0xA1. AML methods can use this OpRegion to call arbitrary
500 native firmware functions. The driver installs the OpRegion
501 handler if there is an HPQ5001 device or if the user supplies
502 the "force" module parameter, e.g., with the "aml_nfw.force"
503 kernel command line option.
504
Brent Casavantc1311af2006-04-20 15:38:16 -0500505source "drivers/sn/Kconfig"
506
Zou Nan haia79561132006-12-07 09:51:35 -0800507config KEXEC
508 bool "kexec system call (EXPERIMENTAL)"
509 depends on EXPERIMENTAL && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
510 help
511 kexec is a system call that implements the ability to shutdown your
512 current kernel, and to start another kernel. It is like a reboot
David Sterba3dde6ad2007-05-09 07:12:20 +0200513 but it is independent of the system firmware. And like a reboot
Zou Nan haia79561132006-12-07 09:51:35 -0800514 you can start any kernel with it, not just Linux.
515
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200516 The name comes from the similarity to the exec system call.
Zou Nan haia79561132006-12-07 09:51:35 -0800517
518 It is an ongoing process to be certain the hardware in a machine
519 is properly shutdown, so do not be surprised if this code does not
520 initially work for you. It may help to enable device hotplugging
521 support. As of this writing the exact hardware interface is
522 strongly in flux, so no good recommendation can be made.
523
524config CRASH_DUMP
525 bool "kernel crash dumps (EXPERIMENTAL)"
526 depends on EXPERIMENTAL && IA64_MCA_RECOVERY && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
527 help
528 Generate crash dump after being started by kexec.
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530source "drivers/firmware/Kconfig"
531
532source "fs/Kconfig.binfmt"
533
534endmenu
535
536menu "Power management and ACPI"
537
Len Browneb7b6b32005-08-25 12:08:25 -0400538source "kernel/power/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540source "drivers/acpi/Kconfig"
541
Venkatesh Pallipadi4db86992005-07-29 16:15:00 -0700542if PM
543
544source "arch/ia64/kernel/cpufreq/Kconfig"
545
546endif
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548endmenu
549
550if !IA64_HP_SIM
551
552menu "Bus options (PCI, PCMCIA)"
553
554config PCI
555 bool "PCI support"
556 help
Christoph Hellwig85f265d2005-08-09 13:38:00 -0700557 Real IA-64 machines all have PCI/PCI-X/PCI Express busses. Say Y
558 here unless you are using a simulator without PCI support.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560config PCI_DOMAINS
Matthew Wilcox36e23592007-07-10 10:54:40 -0600561 def_bool PCI
562
563config PCI_SYSCALL
564 def_bool PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Kenji Kaneshigeb7bb5752006-04-28 11:50:43 +0900566source "drivers/pci/pcie/Kconfig"
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568source "drivers/pci/Kconfig"
569
570source "drivers/pci/hotplug/Kconfig"
571
572source "drivers/pcmcia/Kconfig"
573
574endmenu
575
576endif
577
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700578source "net/Kconfig"
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580source "drivers/Kconfig"
581
Jes Sorensen1a4b0fc2006-11-10 12:27:49 -0800582config MSPEC
583 tristate "Memory special operations driver"
584 depends on IA64
585 select IA64_UNCACHED_ALLOCATOR
586 help
587 If you have an ia64 and you want to enable memory special
588 operations support (formerly known as fetchop), say Y here,
589 otherwise say N.
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591source "fs/Kconfig"
592
Xiantao Zhangb6939192008-03-28 14:58:47 +0800593source "arch/ia64/kvm/Kconfig"
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595source "lib/Kconfig"
596
597#
598# Use the generic interrupt handling code in kernel/irq/:
599#
600config GENERIC_HARDIRQS
601 bool
602 default y
603
604config GENERIC_IRQ_PROBE
605 bool
606 default y
607
Ashok Raj54d5d422005-09-06 15:16:15 -0700608config GENERIC_PENDING_IRQ
609 bool
610 depends on GENERIC_HARDIRQS && SMP
611 default y
612
Ingo Molnar0d7012a2006-06-29 02:24:43 -0700613config IRQ_PER_CPU
614 bool
615 default y
616
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700617config IOMMU_HELPER
618 def_bool (IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB || IA64_GENERIC)
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620source "arch/ia64/hp/sim/Kconfig"
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622source "arch/ia64/Kconfig.debug"
623
624source "security/Kconfig"
625
626source "crypto/Kconfig"