Kconfig 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. mainmenu "Linux/Xtensa Kernel Configuration"
  4. config FRAME_POINTER
  5. bool
  6. default n
  7. config ZONE_DMA
  8. bool
  9. default y
  10. config XTENSA
  11. bool
  12. default y
  13. help
  14. Xtensa processors are 32-bit RISC machines designed by Tensilica
  15. primarily for embedded systems. These processors are both
  16. configurable and extensible. The Linux port to the Xtensa
  17. architecture supports all processor configurations and extensions,
  18. with reasonable minimum requirements. The Xtensa Linux project has
  19. a home page at <http://xtensa.sourceforge.net/>.
  20. config RWSEM_XCHGADD_ALGORITHM
  21. bool
  22. default y
  23. config GENERIC_FIND_NEXT_BIT
  24. bool
  25. default y
  26. config GENERIC_HWEIGHT
  27. bool
  28. default y
  29. config GENERIC_HARDIRQS
  30. bool
  31. default y
  32. config ARCH_HAS_ILOG2_U32
  33. bool
  34. default n
  35. config ARCH_HAS_ILOG2_U64
  36. bool
  37. default n
  38. config NO_IOPORT
  39. def_bool y
  40. config HZ
  41. int
  42. default 100
  43. source "init/Kconfig"
  44. menu "Processor type and features"
  45. choice
  46. prompt "Xtensa Processor Configuration"
  47. default XTENSA_VARIANT_FSF
  48. config XTENSA_VARIANT_FSF
  49. bool "fsf"
  50. endchoice
  51. config MMU
  52. bool
  53. default y
  54. config XTENSA_UNALIGNED_USER
  55. bool "Unaligned memory access in use space"
  56. ---help---
  57. The Xtensa architecture currently does not handle unaligned
  58. memory accesses in hardware but through an exception handler.
  59. Per default, unaligned memory accesses are disabled in user space.
  60. Say Y here to enable unaligned memory access in user space.
  61. config PREEMPT
  62. bool "Preemptible Kernel"
  63. ---help---
  64. This option reduces the latency of the kernel when reacting to
  65. real-time or interactive events by allowing a low priority process to
  66. be preempted even if it is in kernel mode executing a system call.
  67. Unfortunately the kernel code has some race conditions if both
  68. CONFIG_SMP and CONFIG_PREEMPT are enabled, so this option is
  69. currently disabled if you are building an SMP kernel.
  70. Say Y here if you are building a kernel for a desktop, embedded
  71. or real-time system. Say N if you are unsure.
  72. config MATH_EMULATION
  73. bool "Math emulation"
  74. help
  75. Can we use information of configuration file?
  76. config HIGHMEM
  77. bool "High memory support"
  78. endmenu
  79. menu "Platform options"
  80. choice
  81. prompt "Xtensa System Type"
  82. default XTENSA_PLATFORM_ISS
  83. config XTENSA_PLATFORM_ISS
  84. bool "ISS"
  85. help
  86. ISS is an acronym for Tensilica's Instruction Set Simulator.
  87. config XTENSA_PLATFORM_XT2000
  88. bool "XT2000"
  89. help
  90. XT2000 is the name of Tensilica's feature-rich emulation platform.
  91. This hardware is capable of running a full Linux distribution.
  92. endchoice
  93. config XTENSA_CALIBRATE_CCOUNT
  94. bool "Auto calibration of the CPU clock rate"
  95. ---help---
  96. On some platforms (XT2000, for example), the CPU clock rate can
  97. vary. The frequency can be determined, however, by measuring
  98. against a well known, fixed frequency, such as an UART oscillator.
  99. config XTENSA_CPU_CLOCK
  100. int "CPU clock rate [MHz]"
  101. depends on !XTENSA_CALIBRATE_CCOUNT
  102. default "16"
  103. config GENERIC_CALIBRATE_DELAY
  104. bool "Auto calibration of the BogoMIPS value"
  105. ---help---
  106. The BogoMIPS value can easily be derived from the CPU frequency.
  107. config CMDLINE_BOOL
  108. bool "Default bootloader kernel arguments"
  109. config CMDLINE
  110. string "Initial kernel command string"
  111. depends on CMDLINE_BOOL
  112. default "console=ttyS0,38400 root=/dev/ram"
  113. help
  114. On some architectures (EBSA110 and CATS), there is currently no way
  115. for the boot loader to pass arguments to the kernel. For these
  116. architectures, you should supply some command-line options at build
  117. time by entering them here. As a minimum, you should specify the
  118. memory size and the root device (e.g., mem=64M root=/dev/nfs).
  119. config SERIAL_CONSOLE
  120. bool
  121. depends on XTENSA_PLATFORM_ISS
  122. default y
  123. config XTENSA_ISS_NETWORK
  124. bool
  125. depends on XTENSA_PLATFORM_ISS
  126. default y
  127. source "mm/Kconfig"
  128. endmenu
  129. menu "Bus options"
  130. config PCI
  131. bool "PCI support" if !XTENSA_PLATFORM_ISS
  132. depends on !XTENSA_PLATFORM_ISS
  133. default y
  134. help
  135. Find out whether you have a PCI motherboard. PCI is the name of a
  136. bus system, i.e. the way the CPU talks to the other stuff inside
  137. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  138. VESA. If you have PCI, say Y, otherwise N.
  139. source "drivers/pci/Kconfig"
  140. config HOTPLUG
  141. bool "Support for hot-pluggable devices"
  142. ---help---
  143. Say Y here if you want to plug devices into your computer while
  144. the system is running, and be able to use them quickly. In many
  145. cases, the devices can likewise be unplugged at any time too.
  146. One well known example of this is PCMCIA- or PC-cards, credit-card
  147. size devices such as network cards, modems or hard drives which are
  148. plugged into slots found on all modern laptop computers. Another
  149. example, used on modern desktops as well as laptops, is USB.
  150. Enable HOTPLUG and KMOD, and build a modular kernel. Get agent
  151. software (at <http://linux-hotplug.sourceforge.net/>) and install it.
  152. Then your kernel will automatically call out to a user mode "policy
  153. agent" (/sbin/hotplug) to load modules and set up software needed
  154. to use devices as you hotplug them.
  155. source "drivers/pcmcia/Kconfig"
  156. source "drivers/pci/hotplug/Kconfig"
  157. endmenu
  158. menu "Executable file formats"
  159. # only elf supported
  160. config KCORE_ELF
  161. bool
  162. depends on PROC_FS
  163. default y
  164. help
  165. If you enabled support for /proc file system then the file
  166. /proc/kcore will contain the kernel core image in ELF format. This
  167. can be used in gdb:
  168. $ cd /usr/src/linux ; gdb vmlinux /proc/kcore
  169. This is especially useful if you have compiled the kernel with the
  170. "-g" option to preserve debugging information. It is mainly used
  171. for examining kernel data structures on the live kernel.
  172. source "fs/Kconfig.binfmt"
  173. endmenu
  174. source "net/Kconfig"
  175. source "drivers/Kconfig"
  176. source "fs/Kconfig"
  177. menu "Xtensa initrd options"
  178. depends on BLK_DEV_INITRD
  179. config EMBEDDED_RAMDISK
  180. bool "Embed root filesystem ramdisk into the kernel"
  181. config EMBEDDED_RAMDISK_IMAGE
  182. string "Filename of gzipped ramdisk image"
  183. depends on EMBEDDED_RAMDISK
  184. default "ramdisk.gz"
  185. help
  186. This is the filename of the ramdisk image to be built into the
  187. kernel. Relative pathnames are relative to arch/xtensa/boot/ramdisk/.
  188. The ramdisk image is not part of the kernel distribution; you must
  189. provide one yourself.
  190. endmenu
  191. source "arch/xtensa/Kconfig.debug"
  192. source "security/Kconfig"
  193. source "crypto/Kconfig"
  194. source "lib/Kconfig"