Kconfig 4.4 KB

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