Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux/PA-RISC Kernel Configuration"
  6. config PARISC
  7. def_bool y
  8. help
  9. The PA-RISC microprocessor is designed by Hewlett-Packard and used
  10. in many of their workstations & servers (HP9000 700 and 800 series,
  11. and later HP3000 series). The PA-RISC Linux project home page is
  12. at <http://www.parisc-linux.org/>.
  13. config MMU
  14. def_bool y
  15. config STACK_GROWSUP
  16. def_bool y
  17. config UID16
  18. bool
  19. config RWSEM_GENERIC_SPINLOCK
  20. def_bool y
  21. config RWSEM_XCHGADD_ALGORITHM
  22. bool
  23. config GENERIC_CALIBRATE_DELAY
  24. bool
  25. default y
  26. config GENERIC_ISA_DMA
  27. bool
  28. config GENERIC_HARDIRQS
  29. def_bool y
  30. config GENERIC_IRQ_PROBE
  31. def_bool y
  32. # unless you want to implement ACPI on PA-RISC ... ;-)
  33. config PM
  34. bool
  35. config ISA_DMA_API
  36. bool
  37. default y
  38. source "init/Kconfig"
  39. menu "Processor type and features"
  40. choice
  41. prompt "Processor type"
  42. default PA7000
  43. config PA7000
  44. bool "PA7000/PA7100"
  45. ---help---
  46. This is the processor type of your CPU. This information is
  47. used for optimizing purposes. In order to compile a kernel
  48. that can run on all 32-bit PA CPUs (albeit not optimally fast),
  49. you can specify "PA7000" here.
  50. Specifying "PA8000" here will allow you to select a 64-bit kernel
  51. which is required on some machines.
  52. config PA7100LC
  53. bool "PA7100LC"
  54. help
  55. Select this option for the PCX-L processor, as used in the
  56. 712, 715/64, 715/80, 715/100, 715/100XC, 725/100, 743, 748,
  57. D200, D210, D300, D310 and E-class
  58. config PA7200
  59. bool "PA7200"
  60. help
  61. Select this option for the PCX-T' processor, as used in the
  62. C100, C110, J100, J110, J210XC, D250, D260, D350, D360,
  63. K100, K200, K210, K220, K400, K410 and K420
  64. config PA7300LC
  65. bool "PA7300LC"
  66. help
  67. Select this option for the PCX-L2 processor, as used in the
  68. 744, A180, B132L, B160L, B180L, C132L, C160L, C180L,
  69. D220, D230, D320 and D330.
  70. config PA8X00
  71. bool "PA8000 and up"
  72. help
  73. Select this option for PCX-U to PCX-W2 processors.
  74. endchoice
  75. # Define implied options from the CPU selection here
  76. config PA20
  77. def_bool y
  78. depends on PA8X00
  79. config PA11
  80. def_bool y
  81. depends on PA7000 || PA7100LC || PA7200 || PA7300LC
  82. config PREFETCH
  83. def_bool y
  84. depends on PA8X00
  85. config 64BIT
  86. bool "64-bit kernel"
  87. depends on PA8X00
  88. help
  89. Enable this if you want to support 64bit kernel on PA-RISC platform.
  90. At the moment, only people willing to use more than 2GB of RAM,
  91. or having a 64bit-only capable PA-RISC machine should say Y here.
  92. Since there is no 64bit userland on PA-RISC, there is no point to
  93. enable this option otherwise. The 64bit kernel is significantly bigger
  94. and slower than the 32bit one.
  95. config SMP
  96. bool "Symmetric multi-processing support"
  97. ---help---
  98. This enables support for systems with more than one CPU. If you have
  99. a system with only one CPU, like most personal computers, say N. If
  100. you have a system with more than one CPU, say Y.
  101. If you say N here, the kernel will run on single and multiprocessor
  102. machines, but will use only one CPU of a multiprocessor machine. If
  103. you say Y here, the kernel will run on many, but not all,
  104. singleprocessor machines. On a singleprocessor machine, the kernel
  105. will run faster if you say N here.
  106. See also the <file:Documentation/smp.txt>,
  107. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available
  108. at <http://www.tldp.org/docs.html#howto>.
  109. If you don't know what to do here, say N.
  110. config HOTPLUG_CPU
  111. bool
  112. default y if SMP
  113. select HOTPLUG
  114. config ARCH_DISCONTIGMEM_ENABLE
  115. bool "Discontiguous memory support (EXPERIMENTAL)"
  116. depends on EXPERIMENTAL
  117. help
  118. Say Y to support efficient handling of discontiguous physical memory,
  119. for architectures which are either NUMA (Non-Uniform Memory Access)
  120. or have huge holes in the physical address space for other reasons.
  121. See <file:Documentation/vm/numa> for more.
  122. source "mm/Kconfig"
  123. config PREEMPT
  124. bool
  125. # bool "Preemptible Kernel"
  126. default n
  127. config COMPAT
  128. def_bool y
  129. depends on 64BIT
  130. config HPUX
  131. bool "Support for HP-UX binaries"
  132. depends on !64BIT
  133. config NR_CPUS
  134. int "Maximum number of CPUs (2-32)"
  135. range 2 32
  136. depends on SMP
  137. default "32"
  138. endmenu
  139. source "drivers/parisc/Kconfig"
  140. menu "Executable file formats"
  141. source "fs/Kconfig.binfmt"
  142. endmenu
  143. source "drivers/Kconfig"
  144. source "fs/Kconfig"
  145. source "arch/parisc/oprofile/Kconfig"
  146. source "arch/parisc/Kconfig.debug"
  147. source "security/Kconfig"
  148. source "crypto/Kconfig"
  149. source "lib/Kconfig"