Kconfig 17.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#

mainmenu "IA-64 Linux Kernel Configuration"

source "init/Kconfig"

10 11
source "kernel/Kconfig.freezer"

L
Linus Torvalds 已提交
12 13 14 15
menu "Processor type and features"

config IA64
	bool
L
Len Brown 已提交
16 17
	select PCI if (!IA64_HP_SIM)
	select ACPI if (!IA64_HP_SIM)
L
Len Brown 已提交
18
	select PM if (!IA64_HP_SIM)
19
	select ARCH_SUPPORTS_MSI
20
	select HAVE_UNSTABLE_SCHED_CLOCK
S
Sam Ravnborg 已提交
21
	select HAVE_IDE
M
Mathieu Desnoyers 已提交
22
	select HAVE_OPROFILE
M
Mathieu Desnoyers 已提交
23
	select HAVE_KPROBES
24
	select HAVE_KRETPROBES
25 26
	select HAVE_FTRACE_MCOUNT_RECORD
	select HAVE_DYNAMIC_FTRACE if (!ITANIUM)
27
	select HAVE_FUNCTION_TRACER
28
	select HAVE_DMA_ATTRS
29
	select HAVE_KVM
30
	select HAVE_ARCH_TRACEHOOK
31
	select HAVE_DMA_API_DEBUG
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40
	default y
	help
	  The Itanium Processor Family is Intel's 64-bit successor to
	  the 32-bit X86 line.  The IA-64 Linux project has a home
	  page at <http://www.linuxia64.org/> and a mailing list at
	  <linux-ia64@vger.kernel.org>.

config 64BIT
	bool
Z
Zhang, Yanmin 已提交
41
	select ATA_NONSTANDARD if ATA
L
Linus Torvalds 已提交
42 43
	default y

44
config ZONE_DMA
45 46
	def_bool y
	depends on !IA64_SGI_SN2
47

48 49 50 51
config QUICKLIST
	bool
	default y

L
Linus Torvalds 已提交
52 53 54 55
config MMU
	bool
	default y

56 57 58
config NEED_DMA_MAP_STATE
	def_bool y

59 60 61
config NEED_SG_DMA_LENGTH
	def_bool y

62 63 64
config SWIOTLB
       bool

N
Nick Piggin 已提交
65
config GENERIC_LOCKBREAK
66
	def_bool n
N
Nick Piggin 已提交
67

L
Linus Torvalds 已提交
68 69 70 71
config RWSEM_XCHGADD_ALGORITHM
	bool
	default y

72 73 74 75 76
config HUGETLB_PAGE_SIZE_VARIABLE
	bool
	depends on HUGETLB_PAGE
	default y

77 78 79 80
config GENERIC_FIND_NEXT_BIT
	bool
	default y

L
Linus Torvalds 已提交
81 82 83 84
config GENERIC_CALIBRATE_DELAY
	bool
	default y

85 86 87 88 89
config GENERIC_TIME
	bool
	default y

config GENERIC_TIME_VSYSCALL
L
Linus Torvalds 已提交
90 91 92
	bool
	default y

93
config HAVE_SETUP_PER_CPU_AREA
94 95
	def_bool y

M
Matt Domsch 已提交
96 97 98 99
config DMI
	bool
	default y

L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107
config EFI
	bool
	default y

config GENERIC_IOMAP
	bool
	default y

108
config SCHED_OMIT_FRAME_POINTER
109 110 111
	bool
	default y

J
Jes Sorensen 已提交
112 113 114 115
config IA64_UNCACHED_ALLOCATOR
	bool
	select GENERIC_ALLOCATOR

116 117 118 119
config ARCH_USES_PG_UNCACHED
	def_bool y
	depends on IA64_UNCACHED_ALLOCATOR

120 121 122 123
config AUDIT_ARCH
	bool
	default y

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
menuconfig PARAVIRT_GUEST
	bool "Paravirtualized guest support"
	help
	  Say Y here to get to see options related to running Linux under
	  various hypervisors.  This option alone does not add any kernel code.

	  If you say N, all options in this submenu will be skipped and disabled.

if PARAVIRT_GUEST

config PARAVIRT
	bool "Enable paravirtualization code"
	depends on PARAVIRT_GUEST
	default y
	bool
	default y
	help
	  This changes the kernel so it can modify itself when it is run
	  under a hypervisor, potentially improving performance significantly
	  over full virtualization.  However, when run without a hypervisor
	  the kernel is theoretically slower and slightly larger.


source "arch/ia64/xen/Kconfig"

endif

L
Linus Torvalds 已提交
151 152 153 154 155 156 157 158
choice
	prompt "System type"
	default IA64_GENERIC

config IA64_GENERIC
	bool "generic"
	select NUMA
	select ACPI_NUMA
159
	select SWIOTLB
160
	select PCI_MSI
161
	select DMAR
L
Linus Torvalds 已提交
162 163 164 165 166 167 168
	help
	  This selects the system type of your hardware.  A "generic" kernel
	  will run on any supported IA-64 system.  However, if you configure
	  a kernel for your specific system, it will be faster and smaller.

	  generic		For any supported IA-64 system
	  DIG-compliant		For DIG ("Developer's Interface Guide") compliant systems
169
	  DIG+Intel+IOMMU	For DIG systems with Intel IOMMU
L
Linus Torvalds 已提交
170 171 172
	  HP-zx1/sx1000		For HP systems
	  HP-zx1/sx1000+swiotlb	For HP systems with (broken) DMA-constrained devices.
	  SGI-SN2		For SGI Altix systems
173
	  SGI-UV		For SGI UV systems
L
Linus Torvalds 已提交
174
	  Ski-simulator		For the HP simulator <http://www.hpl.hp.com/research/linux/ski/>
175
	  Xen-domU		For xen domU system
L
Linus Torvalds 已提交
176 177 178 179 180

	  If you don't know what to do, choose "generic".

config IA64_DIG
	bool "DIG-compliant"
181
	select SWIOTLB
L
Linus Torvalds 已提交
182

183 184 185 186 187
config IA64_DIG_VTD
	bool "DIG+Intel+IOMMU"
	select DMAR
	select PCI_MSI

L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195
config IA64_HP_ZX1
	bool "HP-zx1/sx1000"
	help
	  Build a kernel that runs on HP zx1 and sx1000 systems.  This adds
	  support for the HP I/O MMU.

config IA64_HP_ZX1_SWIOTLB
	bool "HP-zx1/sx1000 with software I/O TLB"
196
	select SWIOTLB
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205
	help
	  Build a kernel that runs on HP zx1 and sx1000 systems even when they
	  have broken PCI devices which cannot DMA to full 32 bits.  Apart
	  from support for the HP I/O MMU, this includes support for the software
	  I/O TLB, which allows supporting the broken devices at the expense of
	  wasting some kernel memory (about 2MB by default).

config IA64_SGI_SN2
	bool "SGI-SN2"
206 207
	select NUMA
	select ACPI_NUMA
L
Linus Torvalds 已提交
208 209 210 211 212 213 214
	help
	  Selecting this option will optimize the kernel for use on sn2 based
	  systems, but the resulting kernel binary will not run on other
	  types of ia64 systems.  If you have an SGI Altix system, it's safe
	  to select this option.  If in doubt, select ia64 generic support
	  instead.

215 216
config IA64_SGI_UV
	bool "SGI-UV"
217 218 219 220 221 222 223 224 225 226
	select NUMA
	select ACPI_NUMA
	select SWIOTLB
	help
	  Selecting this option will optimize the kernel for use on UV based
	  systems, but the resulting kernel binary will not run on other
	  types of ia64 systems.  If you have an SGI UV system, it's safe
	  to select this option.  If in doubt, select ia64 generic support
	  instead.

L
Linus Torvalds 已提交
227 228
config IA64_HP_SIM
	bool "Ski-simulator"
229
	select SWIOTLB
L
Linus Torvalds 已提交
230

231 232
config IA64_XEN_GUEST
	bool "Xen guest"
233
	select SWIOTLB
234
	depends on XEN
235 236 237
	help
	  Build a kernel that runs on Xen guest domain. At this moment only
	  16KB page size in supported.
238

L
Linus Torvalds 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
endchoice

choice
	prompt "Processor type"
	default ITANIUM

config ITANIUM
	bool "Itanium"
	help
	  Select your IA-64 processor type.  The default is Itanium.
	  This choice is safe for all IA-64 systems, but may not perform
	  optimally on systems with, say, Itanium 2 or newer processors.

config MCKINLEY
	bool "Itanium 2"
	help
	  Select this to configure for an Itanium 2 (McKinley) processor.

endchoice

choice
	prompt "Kernel page size"
	default IA64_PAGE_SIZE_16KB

config IA64_PAGE_SIZE_4KB
	bool "4KB"
	help
	  This lets you select the page size of the kernel.  For best IA-64
	  performance, a page size of 8KB or 16KB is recommended.  For best
	  IA-32 compatibility, a page size of 4KB should be selected (the vast
	  majority of IA-32 binaries work perfectly fine with a larger page
	  size).  For Itanium 2 or newer systems, a page size of 64KB can also
	  be selected.

	  4KB                For best IA-32 compatibility
	  8KB                For best IA-64 performance
	  16KB               For best IA-64 performance
	  64KB               Requires Itanium 2 or newer processor.

	  If you don't know what to do, choose 16KB.

config IA64_PAGE_SIZE_8KB
	bool "8KB"

config IA64_PAGE_SIZE_16KB
	bool "16KB"

config IA64_PAGE_SIZE_64KB
	depends on !ITANIUM
	bool "64KB"

endchoice

R
Robin Holt 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304
choice
	prompt "Page Table Levels"
	default PGTABLE_3

config PGTABLE_3
	bool "3 Levels"

config PGTABLE_4
	depends on !IA64_PAGE_SIZE_64KB
	bool "4 Levels"

endchoice

T
Tony Luck 已提交
305 306 307 308 309 310
if IA64_HP_SIM
config HZ
	default 32
endif

if !IA64_HP_SIM
311
source kernel/Kconfig.hz
T
Tony Luck 已提交
312
endif
313

L
Linus Torvalds 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
config IA64_BRL_EMU
	bool
	depends on ITANIUM
	default y

# align cache-sensitive data to 128 bytes
config IA64_L1_CACHE_SHIFT
	int
	default "7" if MCKINLEY
	default "6" if ITANIUM

config IA64_CYCLONE
	bool "Cyclone (EXA) Time Source support"
	help
	  Say Y here to enable support for IBM EXA Cyclone time source.
	  If you're unsure, answer N.

config IOSAPIC
	bool
	depends on !IA64_HP_SIM
	default y

config FORCE_MAX_ZONEORDER
337 338 339 340
	int "MAX_ORDER (11 - 17)"  if !HUGETLB_PAGE
	range 11 17  if !HUGETLB_PAGE
	default "17" if HUGETLB_PAGE
	default "11"
L
Linus Torvalds 已提交
341

342 343 344 345 346 347 348 349 350 351 352
config VIRT_CPU_ACCOUNTING
	bool "Deterministic task and CPU time accounting"
	default n
	help
	  Select this option to enable more accurate task and CPU time
	  accounting.  This is done by reading a CPU counter on each
	  kernel entry and exit and on transitions within the kernel
	  between system, softirq and hardirq state, so there is a
	  small performance impact.
	  If in doubt, say N here.

L
Linus Torvalds 已提交
353 354
config SMP
	bool "Symmetric multi-processing support"
355
	select USE_GENERIC_SMP_HELPERS
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366
	help
	  This enables support for systems with more than one CPU. If you have
	  a system with only one CPU, say N.  If you have a system with more
	  than one CPU, say Y.

	  If you say N here, the kernel will run on single and multiprocessor
	  systems, but will use only one CPU of a multiprocessor system.  If
	  you say Y here, the kernel will run on many, but not all,
	  single processor systems.  On a single processor system, the kernel
	  will run faster if you say N here.

A
Adrian Bunk 已提交
367 368
	  See also the SMP-HOWTO available at
	  <http://www.tldp.org/docs.html#howto>.
L
Linus Torvalds 已提交
369 370 371 372

	  If you don't know what to do here, say N.

config NR_CPUS
373 374
	int "Maximum number of CPUs (2-4096)"
	range 2 4096
L
Linus Torvalds 已提交
375
	depends on SMP
376
	default "4096"
L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
	help
	  You should set this to the number of CPUs in your system, but
	  keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
	  only use 2 CPUs on a >2 CPU system.  Setting this to a value larger
	  than 64 will cause the use of a CPU mask array, causing a small
	  performance hit.

config HOTPLUG_CPU
	bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
	depends on SMP && EXPERIMENTAL
	select HOTPLUG
	default n
	---help---
	  Say Y here to experiment with turning CPUs off and on.  CPUs
	  can be controlled through /sys/devices/system/cpu/cpu#.
	  Say N if you want to disable CPU hotplug.

394 395 396
config ARCH_ENABLE_MEMORY_HOTPLUG
	def_bool y

K
KAMEZAWA Hiroyuki 已提交
397 398 399
config ARCH_ENABLE_MEMORY_HOTREMOVE
	def_bool y

S
Suresh Siddha 已提交
400 401 402 403 404 405 406 407
config SCHED_SMT
	bool "SMT scheduler support"
	depends on SMP
	help
	  Improves the CPU scheduler's decision making when dealing with
	  Intel IA64 chips with MultiThreading at a cost of slightly increased
	  overhead in some places. If unsure say N here.

A
Ashok Raj 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
config PERMIT_BSP_REMOVE
	bool "Support removal of Bootstrap Processor"
	depends on HOTPLUG_CPU
	default n
	---help---
	Say Y here if your platform SAL will support removal of BSP with HOTPLUG_CPU
	support. 

config FORCE_CPEI_RETARGET
	bool "Force assumption that CPEI can be re-targetted"
	depends on PERMIT_BSP_REMOVE
	default n
	---help---
	Say Y if you need to force the assumption that CPEI can be re-targetted to
	any cpu in the system. This hint is available via ACPI 3.0 specifications.
	Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP.
	This option it useful to enable this feature on older BIOS's as well.
	You can also enable this by using boot command line option force_cpei=1.

S
Satyam Sharma 已提交
427
source "kernel/Kconfig.preempt"
L
Linus Torvalds 已提交
428

429 430
source "mm/Kconfig"

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
config ARCH_SELECT_MEMORY_MODEL
	def_bool y

config ARCH_DISCONTIGMEM_ENABLE
	def_bool y
	help
	  Say Y to support efficient handling of discontiguous physical memory,
	  for architectures which are either NUMA (Non-Uniform Memory Access)
	  or have huge holes in the physical address space for other reasons.
 	  See <file:Documentation/vm/numa> for more.

config ARCH_FLATMEM_ENABLE
	def_bool y

config ARCH_SPARSEMEM_ENABLE
	def_bool y
	depends on ARCH_DISCONTIGMEM_ENABLE
448
	select SPARSEMEM_VMEMMAP_ENABLE
449 450 451 452 453 454 455 456 457

config ARCH_DISCONTIGMEM_DEFAULT
	def_bool y if (IA64_SGI_SN2 || IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB)
	depends on ARCH_DISCONTIGMEM_ENABLE

config NUMA
	bool "NUMA support"
	depends on !IA64_HP_SIM && !FLATMEM
	default y if IA64_SGI_SN2
458
	select ACPI_NUMA if ACPI
459 460 461 462 463
	help
	  Say Y to compile the kernel to support NUMA (Non-Uniform Memory
	  Access).  This option is for configuring high-end multiprocessor
	  server systems.  If in doubt, say N.

Y
Yasunori Goto 已提交
464 465 466
config NODES_SHIFT
	int "Max num nodes shift(3-10)"
	range 3 10
467
	default "10"
Y
Yasunori Goto 已提交
468 469 470 471 472 473
	depends on NEED_MULTIPLE_NODES
	help
	  This option specifies the maximum number of nodes in your SSI system.
	  MAX_NUMNODES will be 2^(This value).
	  If in doubt, use the default.

474 475 476
config ARCH_POPULATES_NODE_MAP
	def_bool y

477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
# VIRTUAL_MEM_MAP and FLAT_NODE_MEM_MAP are functionally equivalent.
# VIRTUAL_MEM_MAP has been retained for historical reasons.
config VIRTUAL_MEM_MAP
	bool "Virtual mem map"
	depends on !SPARSEMEM
	default y if !IA64_HP_SIM
	help
	  Say Y to compile the kernel with support for a virtual mem map.
	  This code also only takes effect if a memory hole of greater than
	  1 Gb is found during boot.  You must turn this option on if you
	  require the DISCONTIGMEM option for your machine. If you are
	  unsure, say Y.

config HOLES_IN_ZONE
	bool
	default y if VIRTUAL_MEM_MAP

config HAVE_ARCH_EARLY_PFN_TO_NID
495
	def_bool NUMA && SPARSEMEM
496

497 498 499 500
config HAVE_ARCH_NODEDATA_EXTENSION
	def_bool y
	depends on NUMA

501 502 503 504
config ARCH_PROC_KCORE_TEXT
	def_bool y
	depends on PROC_KCORE

L
Linus Torvalds 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
config IA64_MCA_RECOVERY
	tristate "MCA recovery from errors other than TLB."

config PERFMON
	bool "Performance monitor support"
	help
	  Selects whether support for the IA-64 performance monitor hardware
	  is included in the kernel.  This makes some kernel data-structures a
	  little bigger and slows down execution a bit, but it is generally
	  a good idea to turn this on.  If you're unsure, say Y.

config IA64_PALINFO
	tristate "/proc/pal support"
	help
	  If you say Y here, you are able to get PAL (Processor Abstraction
	  Layer) information in /proc/pal.  This contains useful information
	  about the processors in your systems, such as cache and TLB sizes
	  and the PAL firmware version in use.

	  To use this option, you have to ensure that the "/proc file system
	  support" (CONFIG_PROC_FS) is enabled, too.

527 528 529
config IA64_MC_ERR_INJECT
	tristate "MC error injection support"
	help
M
Matt LaPlante 已提交
530 531 532
	  Adds support for MC error injection. If enabled, the kernel 
	  will provide a sysfs interface for user applications to
	  call MC error injection PAL procedures to inject various errors.
533 534 535 536
	  This is a useful tool for MCA testing.

	  If you're unsure, do not select this option.

537 538 539
config SGI_SN
	def_bool y if (IA64_SGI_SN2 || IA64_GENERIC)

D
David Mosberger-Tang 已提交
540 541 542 543 544 545 546 547
config IA64_ESI
	bool "ESI (Extensible SAL Interface) support"
	help
	  If you say Y here, support is built into the kernel to
	  make ESI calls.  ESI calls are used to support vendor-specific
	  firmware extensions, such as the ability to inject memory-errors
	  for test-purposes.  If you're unsure, say N.

548 549 550 551 552 553 554 555 556 557
config IA64_HP_AML_NFW
	bool "Support ACPI AML calls to native firmware"
	help
	  This driver installs a global ACPI Operation Region handler for
	  region 0xA1.  AML methods can use this OpRegion to call arbitrary
	  native firmware functions.  The driver installs the OpRegion
	  handler if there is an HPQ5001 device or if the user supplies
	  the "force" module parameter, e.g., with the "aml_nfw.force"
	  kernel command line option.

558 559
source "drivers/sn/Kconfig"

Z
Zou Nan hai 已提交
560 561 562 563 564 565
config KEXEC
	bool "kexec system call (EXPERIMENTAL)"
	depends on EXPERIMENTAL && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
	help
	  kexec is a system call that implements the ability to shutdown your
	  current kernel, and to start another kernel.  It is like a reboot
566
	  but it is independent of the system firmware.   And like a reboot
Z
Zou Nan hai 已提交
567 568
	  you can start any kernel with it, not just Linux.

M
Matt LaPlante 已提交
569
	  The name comes from the similarity to the exec system call.
Z
Zou Nan hai 已提交
570 571 572 573 574 575 576 577

	  It is an ongoing process to be certain the hardware in a machine
	  is properly shutdown, so do not be surprised if this code does not
	  initially work for you.  It may help to enable device hotplugging
	  support.  As of this writing the exact hardware interface is
	  strongly in flux, so no good recommendation can be made.

config CRASH_DUMP
578 579
	  bool "kernel crash dumps"
	  depends on IA64_MCA_RECOVERY && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
Z
Zou Nan hai 已提交
580 581 582
	  help
	    Generate crash dump after being started by kexec.

L
Linus Torvalds 已提交
583 584 585 586 587 588
source "drivers/firmware/Kconfig"

source "fs/Kconfig.binfmt"

endmenu

589
menu "Power management and ACPI options"
L
Linus Torvalds 已提交
590

591
source "kernel/power/Kconfig"
L
Linus Torvalds 已提交
592 593 594

source "drivers/acpi/Kconfig"

595 596 597 598 599 600
if PM

source "arch/ia64/kernel/cpufreq/Kconfig"

endif

L
Linus Torvalds 已提交
601 602 603 604 605 606 607 608 609
endmenu

if !IA64_HP_SIM

menu "Bus options (PCI, PCMCIA)"

config PCI
	bool "PCI support"
	help
610 611
	  Real IA-64 machines all have PCI/PCI-X/PCI Express busses.  Say Y
	  here unless you are using a simulator without PCI support.
L
Linus Torvalds 已提交
612 613

config PCI_DOMAINS
614 615 616 617
	def_bool PCI

config PCI_SYSCALL
	def_bool PCI
L
Linus Torvalds 已提交
618

619 620
source "drivers/pci/pcie/Kconfig"

L
Linus Torvalds 已提交
621 622 623 624 625 626
source "drivers/pci/Kconfig"

source "drivers/pci/hotplug/Kconfig"

source "drivers/pcmcia/Kconfig"

627 628 629 630 631 632 633 634 635 636
config DMAR
        bool "Support for DMA Remapping Devices (EXPERIMENTAL)"
        depends on IA64_GENERIC && ACPI && EXPERIMENTAL
	help
	  DMA remapping (DMAR) devices support enables independent address
	  translations for Direct Memory Access (DMA) from devices.
	  These DMA remapping devices are reported via ACPI tables
	  and include PCI device scope covered by these DMA
	  remapping devices.

637 638 639 640 641 642 643 644 645 646 647
config DMAR_DEFAULT_ON
	def_bool y
	prompt "Enable DMA Remapping Devices by default"
	depends on DMAR
	help
	  Selecting this option will enable a DMAR device at boot time if
	  one is found. If this option is not selected, DMAR support can
	  be enabled by passing intel_iommu=on to the kernel. It is
	  recommended you say N here while the DMAR code remains
	  experimental.

L
Linus Torvalds 已提交
648 649 650 651
endmenu

endif

652 653
source "net/Kconfig"

L
Linus Torvalds 已提交
654 655
source "drivers/Kconfig"

656 657
source "arch/ia64/hp/sim/Kconfig"

J
Jes Sorensen 已提交
658 659 660 661 662 663 664 665 666
config MSPEC
	tristate "Memory special operations driver"
	depends on IA64
	select IA64_UNCACHED_ALLOCATOR
	help
	  If you have an ia64 and you want to enable memory special
	  operations support (formerly known as fetchop), say Y here,
	  otherwise say N.

L
Linus Torvalds 已提交
667 668
source "fs/Kconfig"

669 670 671 672 673 674
source "arch/ia64/Kconfig.debug"

source "security/Kconfig"

source "crypto/Kconfig"

675 676
source "arch/ia64/kvm/Kconfig"

L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689
source "lib/Kconfig"

#
# Use the generic interrupt handling code in kernel/irq/:
#
config GENERIC_HARDIRQS
	bool
	default y

config GENERIC_IRQ_PROBE
	bool
	default y

690 691 692 693 694
config GENERIC_PENDING_IRQ
	bool
	depends on GENERIC_HARDIRQS && SMP
	default y

695 696 697 698
config IRQ_PER_CPU
	bool
	default y

699
config IOMMU_HELPER
700
	def_bool (IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB || IA64_GENERIC || SWIOTLB)
701 702 703

config IOMMU_API
	def_bool (DMAR)