Kconfig 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. #
  4. mainmenu "Linux/SPARC Kernel Configuration"
  5. config 64BIT
  6. bool "64-bit kernel" if ARCH = "sparc"
  7. default ARCH = "sparc64"
  8. help
  9. SPARC is a family of RISC microprocessors designed and marketed by
  10. Sun Microsystems, incorporated. They are very widely found in Sun
  11. workstations and clones.
  12. Say yes to build a 64-bit kernel - formerly known as sparc64
  13. Say no to build a 32-bit kernel - formerly known as sparc
  14. config SPARC
  15. bool
  16. default y
  17. select HAVE_IDE
  18. select HAVE_OPROFILE
  19. select HAVE_ARCH_KGDB if !SMP || SPARC64
  20. select HAVE_ARCH_TRACEHOOK
  21. select ARCH_WANT_OPTIONAL_GPIOLIB
  22. select RTC_CLASS
  23. select RTC_DRV_M48T59
  24. select HAVE_PERF_EVENTS
  25. select PERF_USE_VMALLOC
  26. select HAVE_DMA_ATTRS
  27. select HAVE_DMA_API_DEBUG
  28. config SPARC32
  29. def_bool !64BIT
  30. config SPARC64
  31. def_bool 64BIT
  32. select ARCH_SUPPORTS_MSI
  33. select HAVE_FUNCTION_TRACER
  34. select HAVE_KRETPROBES
  35. select HAVE_KPROBES
  36. select HAVE_LMB
  37. select HAVE_SYSCALL_WRAPPERS
  38. select HAVE_DYNAMIC_FTRACE
  39. select HAVE_FTRACE_MCOUNT_RECORD
  40. select USE_GENERIC_SMP_HELPERS if SMP
  41. select RTC_DRV_CMOS
  42. select RTC_DRV_BQ4802
  43. select RTC_DRV_SUN4V
  44. select RTC_DRV_STARFIRE
  45. select HAVE_PERF_EVENTS
  46. select PERF_USE_VMALLOC
  47. config ARCH_DEFCONFIG
  48. string
  49. default "arch/sparc/configs/sparc32_defconfig" if SPARC32
  50. default "arch/sparc/configs/sparc64_defconfig" if SPARC64
  51. # CONFIG_BITS can be used at source level to get 32/64 bits
  52. config BITS
  53. int
  54. default 32 if SPARC32
  55. default 64 if SPARC64
  56. config GENERIC_TIME
  57. bool
  58. default y if SPARC64
  59. config GENERIC_CMOS_UPDATE
  60. bool
  61. default y if SPARC64
  62. config GENERIC_CLOCKEVENTS
  63. bool
  64. default y if SPARC64
  65. config IOMMU_HELPER
  66. bool
  67. default y if SPARC64
  68. config QUICKLIST
  69. bool
  70. default y if SPARC64
  71. config STACKTRACE_SUPPORT
  72. bool
  73. default y if SPARC64
  74. config LOCKDEP_SUPPORT
  75. bool
  76. default y if SPARC64
  77. config HAVE_LATENCYTOP_SUPPORT
  78. bool
  79. default y if SPARC64
  80. config AUDIT_ARCH
  81. bool
  82. default y
  83. config HAVE_SETUP_PER_CPU_AREA
  84. def_bool y if SPARC64
  85. config NEED_PER_CPU_EMBED_FIRST_CHUNK
  86. def_bool y if SPARC64
  87. config NEED_PER_CPU_PAGE_FIRST_CHUNK
  88. def_bool y if SPARC64
  89. config GENERIC_HARDIRQS_NO__DO_IRQ
  90. bool
  91. def_bool y if SPARC64
  92. config MMU
  93. bool
  94. default y
  95. config HIGHMEM
  96. bool
  97. default y if SPARC32
  98. config ZONE_DMA
  99. bool
  100. default y if SPARC32
  101. config GENERIC_ISA_DMA
  102. bool
  103. default y if SPARC32
  104. config GENERIC_GPIO
  105. bool
  106. help
  107. Generic GPIO API support
  108. config ARCH_NO_VIRT_TO_BUS
  109. def_bool y
  110. config OF
  111. def_bool y
  112. config ARCH_SUPPORTS_DEBUG_PAGEALLOC
  113. def_bool y if SPARC64
  114. source "init/Kconfig"
  115. source "kernel/Kconfig.freezer"
  116. menu "Processor type and features"
  117. config SMP
  118. bool "Symmetric multi-processing support (does not work on sun4/sun4c)"
  119. ---help---
  120. This enables support for systems with more than one CPU. If you have
  121. a system with only one CPU, say N. If you have a system with more
  122. than one CPU, say Y.
  123. If you say N here, the kernel will run on single and multiprocessor
  124. machines, but will use only one CPU of a multiprocessor machine. If
  125. you say Y here, the kernel will run on many, but not all,
  126. singleprocessor machines. On a singleprocessor machine, the kernel
  127. will run faster if you say N here.
  128. People using multiprocessor machines who say Y here should also say
  129. Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
  130. Management" code will be disabled if you say Y here.
  131. See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
  132. available at <http://www.tldp.org/docs.html#howto>.
  133. If you don't know what to do here, say N.
  134. config NR_CPUS
  135. int "Maximum number of CPUs"
  136. depends on SMP
  137. range 2 32 if SPARC32
  138. range 2 1024 if SPARC64
  139. default 32 if SPARC32
  140. default 64 if SPARC64
  141. source kernel/Kconfig.hz
  142. config RWSEM_GENERIC_SPINLOCK
  143. bool
  144. default y if SPARC32
  145. config RWSEM_XCHGADD_ALGORITHM
  146. bool
  147. default y if SPARC64
  148. config GENERIC_FIND_NEXT_BIT
  149. bool
  150. default y
  151. config GENERIC_HWEIGHT
  152. bool
  153. default y if !ULTRA_HAS_POPULATION_COUNT
  154. config GENERIC_CALIBRATE_DELAY
  155. bool
  156. default y
  157. config ARCH_MAY_HAVE_PC_FDC
  158. bool
  159. default y
  160. config EMULATED_CMPXCHG
  161. bool
  162. default y if SPARC32
  163. help
  164. Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
  165. is emulated, and therefore it is not completely atomic.
  166. # Makefile helpers
  167. config SPARC32_SMP
  168. bool
  169. default y
  170. depends on SPARC32 && SMP
  171. config SPARC64_SMP
  172. bool
  173. default y
  174. depends on SPARC64 && SMP
  175. choice
  176. prompt "Kernel page size" if SPARC64
  177. default SPARC64_PAGE_SIZE_8KB
  178. config SPARC64_PAGE_SIZE_8KB
  179. bool "8KB"
  180. help
  181. This lets you select the page size of the kernel.
  182. 8KB and 64KB work quite well, since SPARC ELF sections
  183. provide for up to 64KB alignment.
  184. If you don't know what to do, choose 8KB.
  185. config SPARC64_PAGE_SIZE_64KB
  186. bool "64KB"
  187. endchoice
  188. config SECCOMP
  189. bool "Enable seccomp to safely compute untrusted bytecode"
  190. depends on SPARC64 && PROC_FS
  191. default y
  192. help
  193. This kernel feature is useful for number crunching applications
  194. that may need to compute untrusted bytecode during their
  195. execution. By using pipes or other transports made available to
  196. the process as file descriptors supporting the read/write
  197. syscalls, it's possible to isolate those applications in
  198. their own address space using seccomp. Once seccomp is
  199. enabled via /proc/<pid>/seccomp, it cannot be disabled
  200. and the task is only allowed to execute a few safe syscalls
  201. defined by each seccomp mode.
  202. If unsure, say Y. Only embedded should say N here.
  203. config HOTPLUG_CPU
  204. bool "Support for hot-pluggable CPUs"
  205. depends on SPARC64 && SMP
  206. select HOTPLUG
  207. help
  208. Say Y here to experiment with turning CPUs off and on. CPUs
  209. can be controlled through /sys/devices/system/cpu/cpu#.
  210. Say N if you want to disable CPU hotplug.
  211. config GENERIC_HARDIRQS
  212. bool
  213. default y if SPARC64
  214. source "kernel/time/Kconfig"
  215. if SPARC64
  216. source "drivers/cpufreq/Kconfig"
  217. config US3_FREQ
  218. tristate "UltraSPARC-III CPU Frequency driver"
  219. depends on CPU_FREQ
  220. select CPU_FREQ_TABLE
  221. help
  222. This adds the CPUFreq driver for UltraSPARC-III processors.
  223. For details, take a look at <file:Documentation/cpu-freq>.
  224. If in doubt, say N.
  225. config US2E_FREQ
  226. tristate "UltraSPARC-IIe CPU Frequency driver"
  227. depends on CPU_FREQ
  228. select CPU_FREQ_TABLE
  229. help
  230. This adds the CPUFreq driver for UltraSPARC-IIe processors.
  231. For details, take a look at <file:Documentation/cpu-freq>.
  232. If in doubt, say N.
  233. endif
  234. config US3_MC
  235. tristate "UltraSPARC-III Memory Controller driver"
  236. depends on SPARC64
  237. default y
  238. help
  239. This adds a driver for the UltraSPARC-III memory controller.
  240. Loading this driver allows exact mnemonic strings to be
  241. printed in the event of a memory error, so that the faulty DIMM
  242. on the motherboard can be matched to the error.
  243. If in doubt, say Y, as this information can be very useful.
  244. # Global things across all Sun machines.
  245. config GENERIC_LOCKBREAK
  246. bool
  247. default y
  248. depends on SPARC64 && SMP && PREEMPT
  249. choice
  250. prompt "SPARC64 Huge TLB Page Size"
  251. depends on SPARC64 && HUGETLB_PAGE
  252. default HUGETLB_PAGE_SIZE_4MB
  253. config HUGETLB_PAGE_SIZE_4MB
  254. bool "4MB"
  255. config HUGETLB_PAGE_SIZE_512K
  256. bool "512K"
  257. config HUGETLB_PAGE_SIZE_64K
  258. depends on !SPARC64_PAGE_SIZE_64KB
  259. bool "64K"
  260. endchoice
  261. config NUMA
  262. bool "NUMA support"
  263. depends on SPARC64 && SMP
  264. config NODES_SHIFT
  265. int
  266. default "4"
  267. depends on NEED_MULTIPLE_NODES
  268. # Some NUMA nodes have memory ranges that span
  269. # other nodes. Even though a pfn is valid and
  270. # between a node's start and end pfns, it may not
  271. # reside on that node. See memmap_init_zone()
  272. # for details.
  273. config NODES_SPAN_OTHER_NODES
  274. def_bool y
  275. depends on NEED_MULTIPLE_NODES
  276. config ARCH_POPULATES_NODE_MAP
  277. def_bool y if SPARC64
  278. config ARCH_SELECT_MEMORY_MODEL
  279. def_bool y if SPARC64
  280. config ARCH_SPARSEMEM_ENABLE
  281. def_bool y if SPARC64
  282. select SPARSEMEM_VMEMMAP_ENABLE
  283. config ARCH_SPARSEMEM_DEFAULT
  284. def_bool y if SPARC64
  285. source "mm/Kconfig"
  286. config SCHED_SMT
  287. bool "SMT (Hyperthreading) scheduler support"
  288. depends on SPARC64 && SMP
  289. default y
  290. help
  291. SMT scheduler support improves the CPU scheduler's decision making
  292. when dealing with SPARC cpus at a cost of slightly increased overhead
  293. in some places. If unsure say N here.
  294. config SCHED_MC
  295. bool "Multi-core scheduler support"
  296. depends on SPARC64 && SMP
  297. default y
  298. help
  299. Multi-core scheduler support improves the CPU scheduler's decision
  300. making when dealing with multi-core CPU chips at a cost of slightly
  301. increased overhead in some places. If unsure say N here.
  302. if SPARC64
  303. source "kernel/Kconfig.preempt"
  304. endif
  305. config CMDLINE_BOOL
  306. bool "Default bootloader kernel arguments"
  307. depends on SPARC64
  308. config CMDLINE
  309. string "Initial kernel command string"
  310. depends on CMDLINE_BOOL
  311. default "console=ttyS0,9600 root=/dev/sda1"
  312. help
  313. Say Y here if you want to be able to pass default arguments to
  314. the kernel. This will be overridden by the bootloader, if you
  315. use one (such as SILO). This is most useful if you want to boot
  316. a kernel from TFTP, and want default options to be available
  317. with having them passed on the command line.
  318. NOTE: This option WILL override the PROM bootargs setting!
  319. config SUN_PM
  320. bool
  321. default y if SPARC32
  322. help
  323. Enable power management and CPU standby features on supported
  324. SPARC platforms.
  325. config SPARC_LED
  326. tristate "Sun4m LED driver"
  327. depends on SPARC32
  328. help
  329. This driver toggles the front-panel LED on sun4m systems
  330. in a user-specifiable manner. Its state can be probed
  331. by reading /proc/led and its blinking mode can be changed
  332. via writes to /proc/led
  333. config SERIAL_CONSOLE
  334. bool
  335. depends on SPARC32
  336. default y
  337. ---help---
  338. If you say Y here, it will be possible to use a serial port as the
  339. system console (the system console is the device which receives all
  340. kernel messages and warnings and which allows logins in single user
  341. mode). This could be useful if some terminal or printer is connected
  342. to that serial port.
  343. Even if you say Y here, the currently visible virtual console
  344. (/dev/tty0) will still be used as the system console by default, but
  345. you can alter that using a kernel command line option such as
  346. "console=ttyS1". (Try "man bootparam" or see the documentation of
  347. your boot loader (silo) about how to pass options to the kernel at
  348. boot time.)
  349. If you don't have a graphics card installed and you say Y here, the
  350. kernel will automatically use the first serial line, /dev/ttyS0, as
  351. system console.
  352. If unsure, say N.
  353. config SPARC_LEON
  354. bool "Sparc Leon processor family"
  355. depends on SPARC32
  356. ---help---
  357. If you say Y here if you are running on a SPARC-LEON processor.
  358. The LEON processor is a synthesizable VHDL model of the
  359. SPARC-v8 standard. LEON is part of the GRLIB collection of
  360. IP cores that are distributed under GPL. GRLIB can be downloaded
  361. from www.gaisler.com. You can download a sparc-linux cross-compilation
  362. toolchain at www.gaisler.com.
  363. endmenu
  364. menu "Bus options (PCI etc.)"
  365. config SBUS
  366. bool
  367. default y
  368. config SBUSCHAR
  369. bool
  370. default y
  371. config SUN_LDOMS
  372. bool "Sun Logical Domains support"
  373. depends on SPARC64
  374. help
  375. Say Y here is you want to support virtual devices via
  376. Logical Domains.
  377. config PCI
  378. bool "Support for PCI and PS/2 keyboard/mouse"
  379. help
  380. Find out whether your system includes a PCI bus. PCI is the name of
  381. a bus system, i.e. the way the CPU talks to the other stuff inside
  382. your box. If you say Y here, the kernel will include drivers and
  383. infrastructure code to support PCI bus devices.
  384. CONFIG_PCI is needed for all JavaStation's (including MrCoffee),
  385. CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC.
  386. All of these platforms are extremely obscure, so say N if unsure.
  387. config PCI_DOMAINS
  388. def_bool PCI if SPARC64
  389. config PCI_SYSCALL
  390. def_bool PCI
  391. source "drivers/pci/Kconfig"
  392. source "drivers/pcmcia/Kconfig"
  393. config SUN_OPENPROMFS
  394. tristate "Openprom tree appears in /proc/openprom"
  395. help
  396. If you say Y, the OpenPROM device tree will be available as a
  397. virtual file system, which you can mount to /proc/openprom by "mount
  398. -t openpromfs none /proc/openprom".
  399. To compile the /proc/openprom support as a module, choose M here: the
  400. module will be called openpromfs.
  401. Only choose N if you know in advance that you will not need to modify
  402. OpenPROM settings on the running system.
  403. # Makefile helpers
  404. config SPARC32_PCI
  405. bool
  406. default y
  407. depends on SPARC32 && PCI
  408. config SPARC64_PCI
  409. bool
  410. default y
  411. depends on SPARC64 && PCI
  412. endmenu
  413. menu "Executable file formats"
  414. source "fs/Kconfig.binfmt"
  415. config COMPAT
  416. bool
  417. depends on SPARC64
  418. default y
  419. select COMPAT_BINFMT_ELF
  420. config SYSVIPC_COMPAT
  421. bool
  422. depends on COMPAT && SYSVIPC
  423. default y
  424. endmenu
  425. source "net/Kconfig"
  426. source "drivers/Kconfig"
  427. source "drivers/sbus/char/Kconfig"
  428. source "fs/Kconfig"
  429. source "arch/sparc/Kconfig.debug"
  430. source "security/Kconfig"
  431. source "crypto/Kconfig"
  432. source "lib/Kconfig"