Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux Kernel Configuration"
  6. config ARM
  7. bool
  8. default y
  9. help
  10. The ARM series is a line of low-power-consumption RISC chip designs
  11. licensed by ARM ltd and targeted at embedded applications and
  12. handhelds such as the Compaq IPAQ. ARM-based PCs are no longer
  13. manufactured, but legacy ARM-based PC hardware remains popular in
  14. Europe. There is an ARM Linux project with a web page at
  15. <http://www.arm.linux.org.uk/>.
  16. config MMU
  17. bool
  18. default y
  19. config EISA
  20. bool
  21. ---help---
  22. The Extended Industry Standard Architecture (EISA) bus was
  23. developed as an open alternative to the IBM MicroChannel bus.
  24. The EISA bus provided some of the features of the IBM MicroChannel
  25. bus while maintaining backward compatibility with cards made for
  26. the older ISA bus. The EISA bus saw limited use between 1988 and
  27. 1995 when it was made obsolete by the PCI bus.
  28. Say Y here if you are building a kernel for an EISA-based machine.
  29. Otherwise, say N.
  30. config SBUS
  31. bool
  32. config MCA
  33. bool
  34. help
  35. MicroChannel Architecture is found in some IBM PS/2 machines and
  36. laptops. It is a bus system similar to PCI or ISA. See
  37. <file:Documentation/mca.txt> (and especially the web page given
  38. there) before attempting to build an MCA bus kernel.
  39. config RWSEM_GENERIC_SPINLOCK
  40. bool
  41. default y
  42. config RWSEM_XCHGADD_ALGORITHM
  43. bool
  44. config GENERIC_CALIBRATE_DELAY
  45. bool
  46. default y
  47. config GENERIC_BUST_SPINLOCK
  48. bool
  49. config ARCH_MAY_HAVE_PC_FDC
  50. bool
  51. config GENERIC_ISA_DMA
  52. bool
  53. config FIQ
  54. bool
  55. source "init/Kconfig"
  56. menu "System Type"
  57. choice
  58. prompt "ARM system type"
  59. default ARCH_RPC
  60. config ARCH_CLPS7500
  61. bool "Cirrus-CL-PS7500FE"
  62. select TIMER_ACORN
  63. select ISA
  64. config ARCH_CLPS711X
  65. bool "CLPS711x/EP721x-based"
  66. config ARCH_CO285
  67. bool "Co-EBSA285"
  68. select FOOTBRIDGE
  69. select FOOTBRIDGE_ADDIN
  70. config ARCH_EBSA110
  71. bool "EBSA-110"
  72. select ISA
  73. help
  74. This is an evaluation board for the StrongARM processor available
  75. from Digital. It has limited hardware on-board, including an onboard
  76. Ethernet interface, two PCMCIA sockets, two serial ports and a
  77. parallel port.
  78. config ARCH_FOOTBRIDGE
  79. bool "FootBridge"
  80. select FOOTBRIDGE
  81. config ARCH_INTEGRATOR
  82. bool "Integrator"
  83. select ARM_AMBA
  84. select ICST525
  85. config ARCH_IOP3XX
  86. bool "IOP3xx-based"
  87. select PCI
  88. config ARCH_IXP4XX
  89. bool "IXP4xx-based"
  90. select DMABOUNCE
  91. select PCI
  92. config ARCH_IXP2000
  93. bool "IXP2400/2800-based"
  94. select PCI
  95. config ARCH_L7200
  96. bool "LinkUp-L7200"
  97. select FIQ
  98. help
  99. Say Y here if you intend to run this kernel on a LinkUp Systems
  100. L7200 Software Development Board which uses an ARM720T processor.
  101. Information on this board can be obtained at:
  102. <http://www.linkupsys.com/>
  103. If you have any questions or comments about the Linux kernel port
  104. to this board, send e-mail to <sjhill@cotw.com>.
  105. config ARCH_PXA
  106. bool "PXA2xx-based"
  107. config ARCH_RPC
  108. bool "RiscPC"
  109. select ARCH_ACORN
  110. select FIQ
  111. select TIMER_ACORN
  112. select ARCH_MAY_HAVE_PC_FDC
  113. select ISA_DMA_API
  114. help
  115. On the Acorn Risc-PC, Linux can support the internal IDE disk and
  116. CD-ROM interface, serial and parallel port, and the floppy drive.
  117. config ARCH_SA1100
  118. bool "SA1100-based"
  119. select ISA
  120. select ARCH_DISCONTIGMEM_ENABLE
  121. config ARCH_S3C2410
  122. bool "Samsung S3C2410"
  123. help
  124. Samsung S3C2410X CPU based systems, such as the Simtec Electronics
  125. BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
  126. the Samsung SMDK2410 development board (and derviatives).
  127. config ARCH_SHARK
  128. bool "Shark"
  129. select ISA
  130. select ISA_DMA
  131. select PCI
  132. config ARCH_LH7A40X
  133. bool "Sharp LH7A40X"
  134. help
  135. Say Y here for systems based on one of the Sharp LH7A40X
  136. System on a Chip processors. These CPUs include an ARM922T
  137. core with a wide array of integrated devices for
  138. hand-held and low-power applications.
  139. config ARCH_OMAP
  140. bool "TI OMAP"
  141. config ARCH_VERSATILE
  142. bool "Versatile"
  143. select ARM_AMBA
  144. select ARM_VIC
  145. select ICST307
  146. help
  147. This enables support for ARM Ltd Versatile board.
  148. config ARCH_REALVIEW
  149. bool "RealView"
  150. select ARM_AMBA
  151. select ICST307
  152. help
  153. This enables support for ARM Ltd RealView boards.
  154. config ARCH_IMX
  155. bool "IMX"
  156. config ARCH_H720X
  157. bool "Hynix-HMS720x-based"
  158. select ISA_DMA_API
  159. help
  160. This enables support for systems based on the Hynix HMS720x
  161. config ARCH_AAEC2000
  162. bool "Agilent AAEC-2000 based"
  163. select ARM_AMBA
  164. help
  165. This enables support for systems based on the Agilent AAEC-2000
  166. config ARCH_AT91RM9200
  167. bool "AT91RM9200"
  168. help
  169. Say Y here if you intend to run this kernel on an AT91RM9200-based
  170. board.
  171. endchoice
  172. source "arch/arm/mach-clps711x/Kconfig"
  173. source "arch/arm/mach-footbridge/Kconfig"
  174. source "arch/arm/mach-integrator/Kconfig"
  175. source "arch/arm/mach-iop3xx/Kconfig"
  176. source "arch/arm/mach-ixp4xx/Kconfig"
  177. source "arch/arm/mach-ixp2000/Kconfig"
  178. source "arch/arm/mach-pxa/Kconfig"
  179. source "arch/arm/mach-sa1100/Kconfig"
  180. source "arch/arm/plat-omap/Kconfig"
  181. source "arch/arm/mach-omap1/Kconfig"
  182. source "arch/arm/mach-omap2/Kconfig"
  183. source "arch/arm/mach-s3c2410/Kconfig"
  184. source "arch/arm/mach-lh7a40x/Kconfig"
  185. source "arch/arm/mach-imx/Kconfig"
  186. source "arch/arm/mach-h720x/Kconfig"
  187. source "arch/arm/mach-versatile/Kconfig"
  188. source "arch/arm/mach-aaec2000/Kconfig"
  189. source "arch/arm/mach-realview/Kconfig"
  190. source "arch/arm/mach-at91rm9200/Kconfig"
  191. # Definitions to make life easier
  192. config ARCH_ACORN
  193. bool
  194. source arch/arm/mm/Kconfig
  195. # bool 'Use XScale PMU as timer source' CONFIG_XSCALE_PMU_TIMER
  196. config XSCALE_PMU
  197. bool
  198. depends on CPU_XSCALE && !XSCALE_PMU_TIMER
  199. default y
  200. endmenu
  201. source "arch/arm/common/Kconfig"
  202. config FORCE_MAX_ZONEORDER
  203. int
  204. depends on SA1111
  205. default "9"
  206. menu "Bus support"
  207. config ARM_AMBA
  208. bool
  209. config ISA
  210. bool
  211. help
  212. Find out whether you have ISA slots on your motherboard. ISA is the
  213. name of a bus system, i.e. the way the CPU talks to the other stuff
  214. inside your box. Other bus systems are PCI, EISA, MicroChannel
  215. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  216. newer boards don't support it. If you have ISA, say Y, otherwise N.
  217. # Select ISA DMA controller support
  218. config ISA_DMA
  219. bool
  220. select ISA_DMA_API
  221. # Select ISA DMA interface
  222. config ISA_DMA_API
  223. bool
  224. config PCI
  225. bool "PCI support" if ARCH_INTEGRATOR_AP || ARCH_VERSATILE_PB
  226. help
  227. Find out whether you have a PCI motherboard. PCI is the name of a
  228. bus system, i.e. the way the CPU talks to the other stuff inside
  229. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  230. VESA. If you have PCI, say Y, otherwise N.
  231. The PCI-HOWTO, available from
  232. <http://www.tldp.org/docs.html#howto>, contains valuable
  233. information about which PCI hardware does work under Linux and which
  234. doesn't.
  235. # Select the host bridge type
  236. config PCI_HOST_VIA82C505
  237. bool
  238. depends on PCI && ARCH_SHARK
  239. default y
  240. source "drivers/pci/Kconfig"
  241. source "drivers/pcmcia/Kconfig"
  242. endmenu
  243. menu "Kernel Features"
  244. config SMP
  245. bool "Symmetric Multi-Processing (EXPERIMENTAL)"
  246. depends on EXPERIMENTAL && REALVIEW_MPCORE
  247. help
  248. This enables support for systems with more than one CPU. If you have
  249. a system with only one CPU, like most personal computers, say N. If
  250. you have a system with more than one CPU, say Y.
  251. If you say N here, the kernel will run on single and multiprocessor
  252. machines, but will use only one CPU of a multiprocessor machine. If
  253. you say Y here, the kernel will run on many, but not all, single
  254. processor machines. On a single processor machine, the kernel will
  255. run faster if you say N here.
  256. See also the <file:Documentation/smp.txt>,
  257. <file:Documentation/i386/IO-APIC.txt>,
  258. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
  259. <http://www.linuxdoc.org/docs.html#howto>.
  260. If you don't know what to do here, say N.
  261. config NR_CPUS
  262. int "Maximum number of CPUs (2-32)"
  263. range 2 32
  264. depends on SMP
  265. default "4"
  266. config HOTPLUG_CPU
  267. bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
  268. depends on SMP && HOTPLUG && EXPERIMENTAL
  269. help
  270. Say Y here to experiment with turning CPUs off and on. CPUs
  271. can be controlled through /sys/devices/system/cpu.
  272. config LOCAL_TIMERS
  273. bool "Use local timer interrupts"
  274. depends on SMP && REALVIEW_MPCORE
  275. default y
  276. help
  277. Enable support for local timers on SMP platforms, rather then the
  278. legacy IPI broadcast method. Local timers allows the system
  279. accounting to be spread across the timer interval, preventing a
  280. "thundering herd" at every timer tick.
  281. config PREEMPT
  282. bool "Preemptible Kernel (EXPERIMENTAL)"
  283. depends on EXPERIMENTAL
  284. help
  285. This option reduces the latency of the kernel when reacting to
  286. real-time or interactive events by allowing a low priority process to
  287. be preempted even if it is in kernel mode executing a system call.
  288. This allows applications to run more reliably even when the system is
  289. under load.
  290. Say Y here if you are building a kernel for a desktop, embedded
  291. or real-time system. Say N if you are unsure.
  292. config NO_IDLE_HZ
  293. bool "Dynamic tick timer"
  294. help
  295. Select this option if you want to disable continuous timer ticks
  296. and have them programmed to occur as required. This option saves
  297. power as the system can remain in idle state for longer.
  298. By default dynamic tick is disabled during the boot, and can be
  299. manually enabled with:
  300. echo 1 > /sys/devices/system/timer/timer0/dyn_tick
  301. Alternatively, if you want dynamic tick automatically enabled
  302. during boot, pass "dyntick=enable" via the kernel command string.
  303. Please note that dynamic tick may affect the accuracy of
  304. timekeeping on some platforms depending on the implementation.
  305. Currently at least OMAP, PXA2xx and SA11x0 platforms are known
  306. to have accurate timekeeping with dynamic tick.
  307. config AEABI
  308. bool "Use the ARM EABI to compile the kernel"
  309. help
  310. This option allows for the kernel to be compiled using the latest
  311. ARM ABI (aka EABI). This is only useful if you are using a user
  312. space environment that is also compiled with EABI.
  313. Since there are major incompatibilities between the legacy ABI and
  314. EABI, especially with regard to structure member alignment, this
  315. option also changes the kernel syscall calling convention to
  316. disambiguate both ABIs and allow for backward compatibility support
  317. (selected with CONFIG_OABI_COMPAT).
  318. To use this you need GCC version 4.0.0 or later.
  319. config OABI_COMPAT
  320. bool "Allow old ABI binaries to run with this kernel"
  321. depends on AEABI
  322. default y
  323. help
  324. This option preserves the old syscall interface along with the
  325. new (ARM EABI) one. It also provides a compatibility layer to
  326. intercept syscalls that have structure arguments which layout
  327. in memory differs between the legacy ABI and the new ARM EABI
  328. (only for non "thumb" binaries). This option adds a tiny
  329. overhead to all syscalls and produces a slightly larger kernel.
  330. If you know you'll be using only pure EABI user space then you
  331. can say N here. If this option is not selected and you attempt
  332. to execute a legacy ABI binary then the result will be
  333. UNPREDICTABLE (in fact it can be predicted that it won't work
  334. at all). If in doubt say Y.
  335. config ARCH_DISCONTIGMEM_ENABLE
  336. bool
  337. default (ARCH_LH7A40X && !LH7A40X_CONTIGMEM)
  338. help
  339. Say Y to support efficient handling of discontiguous physical memory,
  340. for architectures which are either NUMA (Non-Uniform Memory Access)
  341. or have huge holes in the physical address space for other reasons.
  342. See <file:Documentation/vm/numa> for more.
  343. source "mm/Kconfig"
  344. config LEDS
  345. bool "Timer and CPU usage LEDs"
  346. depends on ARCH_CDB89712 || ARCH_CO285 || ARCH_EBSA110 || \
  347. ARCH_EBSA285 || ARCH_IMX || ARCH_INTEGRATOR || \
  348. ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \
  349. ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \
  350. ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE || \
  351. ARCH_AT91RM9200
  352. help
  353. If you say Y here, the LEDs on your machine will be used
  354. to provide useful information about your current system status.
  355. If you are compiling a kernel for a NetWinder or EBSA-285, you will
  356. be able to select which LEDs are active using the options below. If
  357. you are compiling a kernel for the EBSA-110 or the LART however, the
  358. red LED will simply flash regularly to indicate that the system is
  359. still functional. It is safe to say Y here if you have a CATS
  360. system, but the driver will do nothing.
  361. config LEDS_TIMER
  362. bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
  363. MACH_OMAP_H2 || MACH_OMAP_PERSEUS2
  364. depends on LEDS
  365. default y if ARCH_EBSA110
  366. help
  367. If you say Y here, one of the system LEDs (the green one on the
  368. NetWinder, the amber one on the EBSA285, or the red one on the LART)
  369. will flash regularly to indicate that the system is still
  370. operational. This is mainly useful to kernel hackers who are
  371. debugging unstable kernels.
  372. The LART uses the same LED for both Timer LED and CPU usage LED
  373. functions. You may choose to use both, but the Timer LED function
  374. will overrule the CPU usage LED.
  375. config LEDS_CPU
  376. bool "CPU usage LED" if (!ARCH_CDB89712 && !ARCH_EBSA110 && \
  377. !ARCH_OMAP) || MACH_OMAP_H2 || MACH_OMAP_PERSEUS2
  378. depends on LEDS
  379. help
  380. If you say Y here, the red LED will be used to give a good real
  381. time indication of CPU usage, by lighting whenever the idle task
  382. is not currently executing.
  383. The LART uses the same LED for both Timer LED and CPU usage LED
  384. functions. You may choose to use both, but the Timer LED function
  385. will overrule the CPU usage LED.
  386. config ALIGNMENT_TRAP
  387. bool
  388. default y if !ARCH_EBSA110
  389. help
  390. ARM processors can not fetch/store information which is not
  391. naturally aligned on the bus, i.e., a 4 byte fetch must start at an
  392. address divisible by 4. On 32-bit ARM processors, these non-aligned
  393. fetch/store instructions will be emulated in software if you say
  394. here, which has a severe performance impact. This is necessary for
  395. correct operation of some network protocols. With an IP-only
  396. configuration it is safe to say N, otherwise say Y.
  397. endmenu
  398. menu "Boot options"
  399. # Compressed boot loader in ROM. Yes, we really want to ask about
  400. # TEXT and BSS so we preserve their values in the config files.
  401. config ZBOOT_ROM_TEXT
  402. hex "Compressed ROM boot loader base address"
  403. default "0"
  404. help
  405. The physical address at which the ROM-able zImage is to be
  406. placed in the target. Platforms which normally make use of
  407. ROM-able zImage formats normally set this to a suitable
  408. value in their defconfig file.
  409. If ZBOOT_ROM is not enabled, this has no effect.
  410. config ZBOOT_ROM_BSS
  411. hex "Compressed ROM boot loader BSS address"
  412. default "0"
  413. help
  414. The base address of 64KiB of read/write memory in the target
  415. for the ROM-able zImage, which must be available while the
  416. decompressor is running. Platforms which normally make use of
  417. ROM-able zImage formats normally set this to a suitable
  418. value in their defconfig file.
  419. If ZBOOT_ROM is not enabled, this has no effect.
  420. config ZBOOT_ROM
  421. bool "Compressed boot loader in ROM/flash"
  422. depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
  423. help
  424. Say Y here if you intend to execute your compressed kernel image
  425. (zImage) directly from ROM or flash. If unsure, say N.
  426. config CMDLINE
  427. string "Default kernel command string"
  428. default ""
  429. help
  430. On some architectures (EBSA110 and CATS), there is currently no way
  431. for the boot loader to pass arguments to the kernel. For these
  432. architectures, you should supply some command-line options at build
  433. time by entering them here. As a minimum, you should specify the
  434. memory size and the root device (e.g., mem=64M root=/dev/nfs).
  435. config XIP_KERNEL
  436. bool "Kernel Execute-In-Place from ROM"
  437. depends on !ZBOOT_ROM
  438. help
  439. Execute-In-Place allows the kernel to run from non-volatile storage
  440. directly addressable by the CPU, such as NOR flash. This saves RAM
  441. space since the text section of the kernel is not loaded from flash
  442. to RAM. Read-write sections, such as the data section and stack,
  443. are still copied to RAM. The XIP kernel is not compressed since
  444. it has to run directly from flash, so it will take more space to
  445. store it. The flash address used to link the kernel object files,
  446. and for storing it, is configuration dependent. Therefore, if you
  447. say Y here, you must know the proper physical address where to
  448. store the kernel image depending on your own flash memory usage.
  449. Also note that the make target becomes "make xipImage" rather than
  450. "make zImage" or "make Image". The final kernel binary to put in
  451. ROM memory will be arch/arm/boot/xipImage.
  452. If unsure, say N.
  453. config XIP_PHYS_ADDR
  454. hex "XIP Kernel Physical Location"
  455. depends on XIP_KERNEL
  456. default "0x00080000"
  457. help
  458. This is the physical address in your flash memory the kernel will
  459. be linked for and stored to. This address is dependent on your
  460. own flash usage.
  461. endmenu
  462. if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP1)
  463. menu "CPU Frequency scaling"
  464. source "drivers/cpufreq/Kconfig"
  465. config CPU_FREQ_SA1100
  466. bool
  467. depends on CPU_FREQ && (SA1100_H3100 || SA1100_H3600 || SA1100_H3800 || SA1100_LART || SA1100_PLEB || SA1100_BADGE4 || SA1100_HACKKIT)
  468. default y
  469. config CPU_FREQ_SA1110
  470. bool
  471. depends on CPU_FREQ && (SA1100_ASSABET || SA1100_CERF || SA1100_PT_SYSTEM3)
  472. default y
  473. config CPU_FREQ_INTEGRATOR
  474. tristate "CPUfreq driver for ARM Integrator CPUs"
  475. depends on ARCH_INTEGRATOR && CPU_FREQ
  476. default y
  477. help
  478. This enables the CPUfreq driver for ARM Integrator CPUs.
  479. For details, take a look at <file:Documentation/cpu-freq>.
  480. If in doubt, say Y.
  481. endmenu
  482. endif
  483. menu "Floating point emulation"
  484. comment "At least one emulation must be selected"
  485. config FPE_NWFPE
  486. bool "NWFPE math emulation"
  487. depends on !AEABI || OABI_COMPAT
  488. ---help---
  489. Say Y to include the NWFPE floating point emulator in the kernel.
  490. This is necessary to run most binaries. Linux does not currently
  491. support floating point hardware so you need to say Y here even if
  492. your machine has an FPA or floating point co-processor podule.
  493. You may say N here if you are going to load the Acorn FPEmulator
  494. early in the bootup.
  495. config FPE_NWFPE_XP
  496. bool "Support extended precision"
  497. depends on FPE_NWFPE
  498. help
  499. Say Y to include 80-bit support in the kernel floating-point
  500. emulator. Otherwise, only 32 and 64-bit support is compiled in.
  501. Note that gcc does not generate 80-bit operations by default,
  502. so in most cases this option only enlarges the size of the
  503. floating point emulator without any good reason.
  504. You almost surely want to say N here.
  505. config FPE_FASTFPE
  506. bool "FastFPE math emulation (EXPERIMENTAL)"
  507. depends on (!AEABI || OABI_COMPAT) && !CPU_32v3 && EXPERIMENTAL
  508. ---help---
  509. Say Y here to include the FAST floating point emulator in the kernel.
  510. This is an experimental much faster emulator which now also has full
  511. precision for the mantissa. It does not support any exceptions.
  512. It is very simple, and approximately 3-6 times faster than NWFPE.
  513. It should be sufficient for most programs. It may be not suitable
  514. for scientific calculations, but you have to check this for yourself.
  515. If you do not feel you need a faster FP emulation you should better
  516. choose NWFPE.
  517. config VFP
  518. bool "VFP-format floating point maths"
  519. depends on CPU_V6 || CPU_ARM926T
  520. help
  521. Say Y to include VFP support code in the kernel. This is needed
  522. if your hardware includes a VFP unit.
  523. Please see <file:Documentation/arm/VFP/release-notes.txt> for
  524. release notes and additional status information.
  525. Say N if your target does not have VFP hardware.
  526. endmenu
  527. menu "Userspace binary formats"
  528. source "fs/Kconfig.binfmt"
  529. config ARTHUR
  530. tristate "RISC OS personality"
  531. depends on !AEABI
  532. help
  533. Say Y here to include the kernel code necessary if you want to run
  534. Acorn RISC OS/Arthur binaries under Linux. This code is still very
  535. experimental; if this sounds frightening, say N and sleep in peace.
  536. You can also say M here to compile this support as a module (which
  537. will be called arthur).
  538. endmenu
  539. menu "Power management options"
  540. source "kernel/power/Kconfig"
  541. config APM
  542. tristate "Advanced Power Management Emulation"
  543. ---help---
  544. APM is a BIOS specification for saving power using several different
  545. techniques. This is mostly useful for battery powered laptops with
  546. APM compliant BIOSes. If you say Y here, the system time will be
  547. reset after a RESUME operation, the /proc/apm device will provide
  548. battery status information, and user-space programs will receive
  549. notification of APM "events" (e.g. battery status change).
  550. In order to use APM, you will need supporting software. For location
  551. and more information, read <file:Documentation/pm.txt> and the
  552. Battery Powered Linux mini-HOWTO, available from
  553. <http://www.tldp.org/docs.html#howto>.
  554. This driver does not spin down disk drives (see the hdparm(8)
  555. manpage ("man 8 hdparm") for that), and it doesn't turn off
  556. VESA-compliant "green" monitors.
  557. Generally, if you don't have a battery in your machine, there isn't
  558. much point in using this driver and you should say N. If you get
  559. random kernel OOPSes or reboots that don't seem to be related to
  560. anything, try disabling/enabling this option (or disabling/enabling
  561. APM in your BIOS).
  562. endmenu
  563. source "net/Kconfig"
  564. menu "Device Drivers"
  565. source "drivers/base/Kconfig"
  566. source "drivers/connector/Kconfig"
  567. if ALIGNMENT_TRAP
  568. source "drivers/mtd/Kconfig"
  569. endif
  570. source "drivers/parport/Kconfig"
  571. source "drivers/pnp/Kconfig"
  572. source "drivers/block/Kconfig"
  573. source "drivers/acorn/block/Kconfig"
  574. if PCMCIA || ARCH_CLPS7500 || ARCH_IOP3XX || ARCH_IXP4XX \
  575. || ARCH_L7200 || ARCH_LH7A40X || ARCH_PXA || ARCH_RPC \
  576. || ARCH_S3C2410 || ARCH_SA1100 || ARCH_SHARK || FOOTBRIDGE
  577. source "drivers/ide/Kconfig"
  578. endif
  579. source "drivers/scsi/Kconfig"
  580. source "drivers/md/Kconfig"
  581. source "drivers/message/fusion/Kconfig"
  582. source "drivers/ieee1394/Kconfig"
  583. source "drivers/message/i2o/Kconfig"
  584. source "drivers/net/Kconfig"
  585. source "drivers/isdn/Kconfig"
  586. # input before char - char/joystick depends on it. As does USB.
  587. source "drivers/input/Kconfig"
  588. source "drivers/char/Kconfig"
  589. source "drivers/i2c/Kconfig"
  590. source "drivers/spi/Kconfig"
  591. source "drivers/hwmon/Kconfig"
  592. #source "drivers/l3/Kconfig"
  593. source "drivers/misc/Kconfig"
  594. source "drivers/mfd/Kconfig"
  595. source "drivers/media/Kconfig"
  596. source "drivers/video/Kconfig"
  597. source "sound/Kconfig"
  598. source "drivers/usb/Kconfig"
  599. source "drivers/mmc/Kconfig"
  600. endmenu
  601. source "fs/Kconfig"
  602. source "arch/arm/oprofile/Kconfig"
  603. source "arch/arm/Kconfig.debug"
  604. source "security/Kconfig"
  605. source "crypto/Kconfig"
  606. source "lib/Kconfig"