/arch/sparc64/Kconfig

https://bitbucket.org/evzijst/gittest · #! · 630 lines · 487 code · 143 blank · 0 comment · 0 complexity · 0c0810199b9f42625aa4d07dc8ae5a64 MD5 · raw file

  1. # $Id: config.in,v 1.158 2002/01/24 22:14:44 davem Exp $
  2. # For a description of the syntax of this configuration file,
  3. # see the Configure script.
  4. #
  5. mainmenu "Linux/UltraSPARC Kernel Configuration"
  6. config 64BIT
  7. def_bool y
  8. config MMU
  9. bool
  10. default y
  11. config TIME_INTERPOLATION
  12. bool
  13. default y
  14. choice
  15. prompt "Kernel page size"
  16. default SPARC64_PAGE_SIZE_8KB
  17. config SPARC64_PAGE_SIZE_8KB
  18. bool "8KB"
  19. help
  20. This lets you select the page size of the kernel.
  21. 8KB and 64KB work quite well, since Sparc ELF sections
  22. provide for up to 64KB alignment.
  23. Therefore, 512KB and 4MB are for expert hackers only.
  24. If you don't know what to do, choose 8KB.
  25. config SPARC64_PAGE_SIZE_64KB
  26. bool "64KB"
  27. config SPARC64_PAGE_SIZE_512KB
  28. bool "512KB"
  29. config SPARC64_PAGE_SIZE_4MB
  30. bool "4MB"
  31. endchoice
  32. source "init/Kconfig"
  33. config SYSVIPC_COMPAT
  34. bool
  35. depends on COMPAT && SYSVIPC
  36. default y
  37. menu "General machine setup"
  38. config BBC_I2C
  39. tristate "UltraSPARC-III bootbus i2c controller driver"
  40. depends on PCI
  41. help
  42. The BBC devices on the UltraSPARC III have two I2C controllers. The
  43. first I2C controller connects mainly to configuration PROMs (NVRAM,
  44. CPU configuration, DIMM types, etc.). The second I2C controller
  45. connects to environmental control devices such as fans and
  46. temperature sensors. The second controller also connects to the
  47. smartcard reader, if present. Say Y to enable support for these.
  48. config VT
  49. bool "Virtual terminal" if EMBEDDED
  50. select INPUT
  51. default y
  52. ---help---
  53. If you say Y here, you will get support for terminal devices with
  54. display and keyboard devices. These are called "virtual" because you
  55. can run several virtual terminals (also called virtual consoles) on
  56. one physical terminal. This is rather useful, for example one
  57. virtual terminal can collect system messages and warnings, another
  58. one can be used for a text-mode user session, and a third could run
  59. an X session, all in parallel. Switching between virtual terminals
  60. is done with certain key combinations, usually Alt-<function key>.
  61. The setterm command ("man setterm") can be used to change the
  62. properties (such as colors or beeping) of a virtual terminal. The
  63. man page console_codes(4) ("man console_codes") contains the special
  64. character sequences that can be used to change those properties
  65. directly. The fonts used on virtual terminals can be changed with
  66. the setfont ("man setfont") command and the key bindings are defined
  67. with the loadkeys ("man loadkeys") command.
  68. You need at least one virtual terminal device in order to make use
  69. of your keyboard and monitor. Therefore, only people configuring an
  70. embedded system would want to say N here in order to save some
  71. memory; the only way to log into such a system is then via a serial
  72. or network connection.
  73. If unsure, say Y, or else you won't be able to do much with your new
  74. shiny Linux system :-)
  75. config VT_CONSOLE
  76. bool "Support for console on virtual terminal" if EMBEDDED
  77. depends on VT
  78. default y
  79. ---help---
  80. The system console is the device which receives all kernel messages
  81. and warnings and which allows logins in single user mode. If you
  82. answer Y here, a virtual terminal (the device used to interact with
  83. a physical terminal) can be used as system console. This is the most
  84. common mode of operations, so you should say Y here unless you want
  85. the kernel messages be output only to a serial port (in which case
  86. you should say Y to "Console on serial port", below).
  87. If you do say Y here, by default the currently visible virtual
  88. terminal (/dev/tty0) will be used as system console. You can change
  89. that with a kernel command line option such as "console=tty3" which
  90. would use the third virtual terminal as system console. (Try "man
  91. bootparam" or see the documentation of your boot loader (lilo or
  92. loadlin) about how to pass options to the kernel at boot time.)
  93. If unsure, say Y.
  94. config HW_CONSOLE
  95. bool
  96. default y
  97. config SMP
  98. bool "Symmetric multi-processing support"
  99. ---help---
  100. This enables support for systems with more than one CPU. If you have
  101. a system with only one CPU, say N. If you have a system with more than
  102. one CPU, say Y.
  103. If you say N here, the kernel will run on single and multiprocessor
  104. machines, but will use only one CPU of a multiprocessor machine. If
  105. you say Y here, the kernel will run on many, but not all,
  106. singleprocessor machines. On a singleprocessor machine, the kernel
  107. will run faster if you say N here.
  108. People using multiprocessor machines who say Y here should also say
  109. Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
  110. Management" code will be disabled if you say Y here.
  111. See also the <file:Documentation/smp.txt>,
  112. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
  113. <http://www.tldp.org/docs.html#howto>.
  114. If you don't know what to do here, say N.
  115. config PREEMPT
  116. bool "Preemptible Kernel"
  117. help
  118. This option reduces the latency of the kernel when reacting to
  119. real-time or interactive events by allowing a low priority process to
  120. be preempted even if it is in kernel mode executing a system call.
  121. This allows applications to run more reliably even when the system is
  122. under load.
  123. Say Y here if you are building a kernel for a desktop, embedded
  124. or real-time system. Say N if you are unsure.
  125. config NR_CPUS
  126. int "Maximum number of CPUs (2-64)"
  127. range 2 64
  128. depends on SMP
  129. default "32"
  130. source "drivers/cpufreq/Kconfig"
  131. config US3_FREQ
  132. tristate "UltraSPARC-III CPU Frequency driver"
  133. depends on CPU_FREQ
  134. select CPU_FREQ_TABLE
  135. help
  136. This adds the CPUFreq driver for UltraSPARC-III processors.
  137. For details, take a look at <file:Documentation/cpu-freq>.
  138. If in doubt, say N.
  139. config US2E_FREQ
  140. tristate "UltraSPARC-IIe CPU Frequency driver"
  141. depends on CPU_FREQ
  142. select CPU_FREQ_TABLE
  143. help
  144. This adds the CPUFreq driver for UltraSPARC-IIe processors.
  145. For details, take a look at <file:Documentation/cpu-freq>.
  146. If in doubt, say N.
  147. # Identify this as a Sparc64 build
  148. config SPARC64
  149. bool
  150. default y
  151. help
  152. SPARC is a family of RISC microprocessors designed and marketed by
  153. Sun Microsystems, incorporated. This port covers the newer 64-bit
  154. UltraSPARC. The UltraLinux project maintains both the SPARC32 and
  155. SPARC64 ports; its web page is available at
  156. <http://www.ultralinux.org/>.
  157. # Global things across all Sun machines.
  158. config RWSEM_GENERIC_SPINLOCK
  159. bool
  160. config RWSEM_XCHGADD_ALGORITHM
  161. bool
  162. default y
  163. config GENERIC_CALIBRATE_DELAY
  164. bool
  165. default y
  166. choice
  167. prompt "SPARC64 Huge TLB Page Size"
  168. depends on HUGETLB_PAGE
  169. default HUGETLB_PAGE_SIZE_4MB
  170. config HUGETLB_PAGE_SIZE_4MB
  171. bool "4MB"
  172. config HUGETLB_PAGE_SIZE_512K
  173. depends on !SPARC64_PAGE_SIZE_4MB
  174. bool "512K"
  175. config HUGETLB_PAGE_SIZE_64K
  176. depends on !SPARC64_PAGE_SIZE_4MB && !SPARC64_PAGE_SIZE_512K
  177. bool "64K"
  178. endchoice
  179. config GENERIC_ISA_DMA
  180. bool
  181. default y
  182. config ISA
  183. bool
  184. help
  185. Find out whether you have ISA slots on your motherboard. ISA is the
  186. name of a bus system, i.e. the way the CPU talks to the other stuff
  187. inside your box. Other bus systems are PCI, EISA, MicroChannel
  188. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  189. newer boards don't support it. If you have ISA, say Y, otherwise N.
  190. config ISAPNP
  191. bool
  192. help
  193. Say Y here if you would like support for ISA Plug and Play devices.
  194. Some information is in <file:Documentation/isapnp.txt>.
  195. To compile this driver as a module, choose M here: the
  196. module will be called isapnp.
  197. If unsure, say Y.
  198. config EISA
  199. bool
  200. ---help---
  201. The Extended Industry Standard Architecture (EISA) bus was
  202. developed as an open alternative to the IBM MicroChannel bus.
  203. The EISA bus provided some of the features of the IBM MicroChannel
  204. bus while maintaining backward compatibility with cards made for
  205. the older ISA bus. The EISA bus saw limited use between 1988 and
  206. 1995 when it was made obsolete by the PCI bus.
  207. Say Y here if you are building a kernel for an EISA-based machine.
  208. Otherwise, say N.
  209. config MCA
  210. bool
  211. help
  212. MicroChannel Architecture is found in some IBM PS/2 machines and
  213. laptops. It is a bus system similar to PCI or ISA. See
  214. <file:Documentation/mca.txt> (and especially the web page given
  215. there) before attempting to build an MCA bus kernel.
  216. config PCMCIA
  217. tristate
  218. ---help---
  219. Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
  220. computer. These are credit-card size devices such as network cards,
  221. modems or hard drives often used with laptops computers. There are
  222. actually two varieties of these cards: the older 16 bit PCMCIA cards
  223. and the newer 32 bit CardBus cards. If you want to use CardBus
  224. cards, you need to say Y here and also to "CardBus support" below.
  225. To use your PC-cards, you will need supporting software from David
  226. Hinds' pcmcia-cs package (see the file <file:Documentation/Changes>
  227. for location). Please also read the PCMCIA-HOWTO, available from
  228. <http://www.tldp.org/docs.html#howto>.
  229. To compile this driver as modules, choose M here: the
  230. modules will be called pcmcia_core and ds.
  231. config SBUS
  232. bool
  233. default y
  234. config SBUSCHAR
  235. bool
  236. default y
  237. config SUN_AUXIO
  238. bool
  239. default y
  240. config SUN_IO
  241. bool
  242. default y
  243. config PCI
  244. bool "PCI support"
  245. help
  246. Find out whether you have a PCI motherboard. PCI is the name of a
  247. bus system, i.e. the way the CPU talks to the other stuff inside
  248. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  249. VESA. If you have PCI, say Y, otherwise N.
  250. The PCI-HOWTO, available from
  251. <http://www.tldp.org/docs.html#howto>, contains valuable
  252. information about which PCI hardware does work under Linux and which
  253. doesn't.
  254. config PCI_DOMAINS
  255. bool
  256. default PCI
  257. config RTC
  258. tristate
  259. depends on PCI
  260. default y
  261. ---help---
  262. If you say Y here and create a character special file /dev/rtc with
  263. major number 10 and minor number 135 using mknod ("man mknod"), you
  264. will get access to the real time clock (or hardware clock) built
  265. into your computer.
  266. Every PC has such a clock built in. It can be used to generate
  267. signals from as low as 1Hz up to 8192Hz, and can also be used
  268. as a 24 hour alarm. It reports status information via the file
  269. /proc/driver/rtc and its behaviour is set by various ioctls on
  270. /dev/rtc.
  271. If you run Linux on a multiprocessor machine and said Y to
  272. "Symmetric Multi Processing" above, you should say Y here to read
  273. and set the RTC in an SMP compatible fashion.
  274. If you think you have a use for such a device (such as periodic data
  275. sampling), then say Y here, and read <file:Documentation/rtc.txt>
  276. for details.
  277. To compile this driver as a module, choose M here: the
  278. module will be called rtc.
  279. source "drivers/pci/Kconfig"
  280. config SUN_OPENPROMFS
  281. tristate "Openprom tree appears in /proc/openprom"
  282. help
  283. If you say Y, the OpenPROM device tree will be available as a
  284. virtual file system, which you can mount to /proc/openprom by "mount
  285. -t openpromfs none /proc/openprom".
  286. To compile the /proc/openprom support as a module, choose M here: the
  287. module will be called openpromfs. If unsure, choose M.
  288. config SPARC32_COMPAT
  289. bool "Kernel support for Linux/Sparc 32bit binary compatibility"
  290. help
  291. This allows you to run 32-bit binaries on your Ultra.
  292. Everybody wants this; say Y.
  293. config COMPAT
  294. bool
  295. depends on SPARC32_COMPAT
  296. default y
  297. config UID16
  298. bool
  299. depends on SPARC32_COMPAT
  300. default y
  301. config BINFMT_ELF32
  302. tristate "Kernel support for 32-bit ELF binaries"
  303. depends on SPARC32_COMPAT
  304. help
  305. This allows you to run 32-bit Linux/ELF binaries on your Ultra.
  306. Everybody wants this; say Y.
  307. config BINFMT_AOUT32
  308. bool "Kernel support for 32-bit (ie. SunOS) a.out binaries"
  309. depends on SPARC32_COMPAT
  310. help
  311. This allows you to run 32-bit a.out format binaries on your Ultra.
  312. If you want to run SunOS binaries (see SunOS binary emulation below)
  313. or other a.out binaries, say Y. If unsure, say N.
  314. source "fs/Kconfig.binfmt"
  315. config SUNOS_EMUL
  316. bool "SunOS binary emulation"
  317. depends on BINFMT_AOUT32
  318. help
  319. This allows you to run most SunOS binaries. If you want to do this,
  320. say Y here and place appropriate files in /usr/gnemul/sunos. See
  321. <http://www.ultralinux.org/faq.html> for more information. If you
  322. want to run SunOS binaries on an Ultra you must also say Y to
  323. "Kernel support for 32-bit a.out binaries" above.
  324. config SOLARIS_EMUL
  325. tristate "Solaris binary emulation (EXPERIMENTAL)"
  326. depends on SPARC32_COMPAT && EXPERIMENTAL
  327. help
  328. This is experimental code which will enable you to run (many)
  329. Solaris binaries on your SPARC Linux machine.
  330. To compile this code as a module, choose M here: the
  331. module will be called solaris.
  332. source "drivers/parport/Kconfig"
  333. config PRINTER
  334. tristate "Parallel printer support"
  335. depends on PARPORT
  336. ---help---
  337. If you intend to attach a printer to the parallel port of your Linux
  338. box (as opposed to using a serial printer; if the connector at the
  339. printer has 9 or 25 holes ["female"], then it's serial), say Y.
  340. Also read the Printing-HOWTO, available from
  341. <http://www.tldp.org/docs.html#howto>.
  342. It is possible to share one parallel port among several devices
  343. (e.g. printer and ZIP drive) and it is safe to compile the
  344. corresponding drivers into the kernel.
  345. To compile this driver as a module, choose M here and read
  346. <file:Documentation/parport.txt>. The module will be called lp.
  347. If you have several parallel ports, you can specify which ports to
  348. use with the "lp" kernel command line option. (Try "man bootparam"
  349. or see the documentation of your boot loader (lilo or loadlin) about
  350. how to pass options to the kernel at boot time.) The syntax of the
  351. "lp" command line option can be found in <file:drivers/char/lp.c>.
  352. If you have more than 8 printers, you need to increase the LP_NO
  353. macro in lp.c and the PARPORT_MAX macro in parport.h.
  354. config ENVCTRL
  355. tristate "SUNW, envctrl support"
  356. depends on PCI
  357. help
  358. Kernel support for temperature and fan monitoring on Sun SME
  359. machines.
  360. To compile this driver as a module, choose M here: the
  361. module will be called envctrl.
  362. config DISPLAY7SEG
  363. tristate "7-Segment Display support"
  364. depends on PCI
  365. ---help---
  366. This is the driver for the 7-segment display and LED present on
  367. Sun Microsystems CompactPCI models CP1400 and CP1500.
  368. To compile this driver as a module, choose M here: the
  369. module will be called display7seg.
  370. If you do not have a CompactPCI model CP1400 or CP1500, or
  371. another UltraSPARC-IIi-cEngine boardset with a 7-segment display,
  372. you should say N to this option.
  373. config CMDLINE_BOOL
  374. bool "Default bootloader kernel arguments"
  375. config CMDLINE
  376. string "Initial kernel command string"
  377. depends on CMDLINE_BOOL
  378. default "console=ttyS0,9600 root=/dev/sda1"
  379. help
  380. Say Y here if you want to be able to pass default arguments to
  381. the kernel. This will be overridden by the bootloader, if you
  382. use one (such as SILO). This is most useful if you want to boot
  383. a kernel from TFTP, and want default options to be available
  384. with having them passed on the command line.
  385. NOTE: This option WILL override the PROM bootargs setting!
  386. endmenu
  387. source "drivers/base/Kconfig"
  388. source "drivers/video/Kconfig"
  389. source "drivers/serial/Kconfig"
  390. source "drivers/sbus/char/Kconfig"
  391. source "drivers/mtd/Kconfig"
  392. source "drivers/block/Kconfig"
  393. source "drivers/ide/Kconfig"
  394. source "drivers/scsi/Kconfig"
  395. source "drivers/fc4/Kconfig"
  396. source "drivers/md/Kconfig"
  397. if PCI
  398. source "drivers/message/fusion/Kconfig"
  399. endif
  400. source "drivers/ieee1394/Kconfig"
  401. source "net/Kconfig"
  402. source "drivers/isdn/Kconfig"
  403. source "drivers/telephony/Kconfig"
  404. # This one must be before the filesystem configs. -DaveM
  405. menu "Unix98 PTY support"
  406. config UNIX98_PTYS
  407. bool "Unix98 PTY support"
  408. ---help---
  409. A pseudo terminal (PTY) is a software device consisting of two
  410. halves: a master and a slave. The slave device behaves identical to
  411. a physical terminal; the master device is used by a process to
  412. read data from and write data to the slave, thereby emulating a
  413. terminal. Typical programs for the master side are telnet servers
  414. and xterms.
  415. Linux has traditionally used the BSD-like names /dev/ptyxx for
  416. masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
  417. has a number of problems. The GNU C library glibc 2.1 and later,
  418. however, supports the Unix98 naming standard: in order to acquire a
  419. pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
  420. terminal is then made available to the process and the pseudo
  421. terminal slave can be accessed as /dev/pts/<number>. What was
  422. traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
  423. The entries in /dev/pts/ are created on the fly by a virtual
  424. file system; therefore, if you say Y here you should say Y to
  425. "/dev/pts file system for Unix98 PTYs" as well.
  426. If you want to say Y here, you need to have the C library glibc 2.1
  427. or later (equal to libc-6.1, check with "ls -l /lib/libc.so.*").
  428. Read the instructions in <file:Documentation/Changes> pertaining to
  429. pseudo terminals. It's safe to say N.
  430. config UNIX98_PTY_COUNT
  431. int "Maximum number of Unix98 PTYs in use (0-2048)"
  432. depends on UNIX98_PTYS
  433. default "256"
  434. help
  435. The maximum number of Unix98 PTYs that can be used at any one time.
  436. The default is 256, and should be enough for desktop systems. Server
  437. machines which support incoming telnet/rlogin/ssh connections and/or
  438. serve several X terminals may want to increase this: every incoming
  439. connection and every xterm uses up one PTY.
  440. When not in use, each additional set of 256 PTYs occupy
  441. approximately 8 KB of kernel memory on 32-bit architectures.
  442. endmenu
  443. menu "XFree86 DRI support"
  444. config DRM
  445. bool "Direct Rendering Manager (XFree86 DRI support)"
  446. help
  447. Kernel-level support for the Direct Rendering Infrastructure (DRI)
  448. introduced in XFree86 4.0. If you say Y here, you need to select
  449. the module that's right for your graphics card from the list below.
  450. These modules provide support for synchronization, security, and
  451. DMA transfers. Please see <http://dri.sourceforge.net/> for more
  452. details. You should also select and configure AGP
  453. (/dev/agpgart) support.
  454. config DRM_FFB
  455. tristate "Creator/Creator3D"
  456. depends on DRM && BROKEN
  457. help
  458. Choose this option if you have one of Sun's Creator3D-based graphics
  459. and frame buffer cards. Product page at
  460. <http://www.sun.com/desktop/products/Graphics/creator3d.html>.
  461. config DRM_TDFX
  462. tristate "3dfx Banshee/Voodoo3+"
  463. depends on DRM
  464. help
  465. Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
  466. graphics card. If M is selected, the module will be called tdfx.
  467. config DRM_R128
  468. tristate "ATI Rage 128"
  469. depends on DRM
  470. help
  471. Choose this option if you have an ATI Rage 128 graphics card. If M
  472. is selected, the module will be called r128. AGP support for
  473. this card is strongly suggested (unless you have a PCI version).
  474. endmenu
  475. source "drivers/input/Kconfig"
  476. source "drivers/i2c/Kconfig"
  477. source "fs/Kconfig"
  478. source "drivers/media/Kconfig"
  479. source "sound/Kconfig"
  480. source "drivers/usb/Kconfig"
  481. source "drivers/infiniband/Kconfig"
  482. source "drivers/char/watchdog/Kconfig"
  483. source "arch/sparc64/oprofile/Kconfig"
  484. source "arch/sparc64/Kconfig.debug"
  485. source "security/Kconfig"
  486. source "crypto/Kconfig"
  487. source "lib/Kconfig"