Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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 AVR32
  7. bool
  8. default y
  9. # With EMBEDDED=n, we get lots of stuff automatically selected
  10. # that we usually don't need on AVR32.
  11. select EMBEDDED
  12. help
  13. AVR32 is a high-performance 32-bit RISC microprocessor core,
  14. designed for cost-sensitive embedded applications, with particular
  15. emphasis on low power consumption and high code density.
  16. There is an AVR32 Linux project with a web page at
  17. http://avr32linux.org/.
  18. config UID16
  19. bool
  20. config GENERIC_GPIO
  21. bool
  22. default y
  23. config GENERIC_HARDIRQS
  24. bool
  25. default y
  26. config HARDIRQS_SW_RESEND
  27. bool
  28. default y
  29. config GENERIC_IRQ_PROBE
  30. bool
  31. default y
  32. config RWSEM_GENERIC_SPINLOCK
  33. bool
  34. default y
  35. config GENERIC_TIME
  36. bool
  37. default y
  38. config RWSEM_XCHGADD_ALGORITHM
  39. bool
  40. config ARCH_HAS_ILOG2_U32
  41. bool
  42. default n
  43. config ARCH_HAS_ILOG2_U64
  44. bool
  45. default n
  46. config GENERIC_BUST_SPINLOCK
  47. bool
  48. config GENERIC_HWEIGHT
  49. bool
  50. default y
  51. config GENERIC_CALIBRATE_DELAY
  52. bool
  53. default y
  54. source "init/Kconfig"
  55. menu "System Type and features"
  56. config SUBARCH_AVR32B
  57. bool
  58. config MMU
  59. bool
  60. config PERFORMANCE_COUNTERS
  61. bool
  62. config PLATFORM_AT32AP
  63. bool
  64. select SUBARCH_AVR32B
  65. select MMU
  66. select PERFORMANCE_COUNTERS
  67. choice
  68. prompt "AVR32 CPU type"
  69. default CPU_AT32AP7000
  70. config CPU_AT32AP7000
  71. bool "AT32AP7000"
  72. select PLATFORM_AT32AP
  73. endchoice
  74. #
  75. # CPU Daughterboards for ATSTK1000
  76. config BOARD_ATSTK1002
  77. bool
  78. choice
  79. prompt "AVR32 board type"
  80. default BOARD_ATSTK1000
  81. config BOARD_ATSTK1000
  82. bool "ATSTK1000 evaluation board"
  83. select BOARD_ATSTK1002 if CPU_AT32AP7000
  84. endchoice
  85. choice
  86. prompt "Boot loader type"
  87. default LOADER_U_BOOT
  88. config LOADER_U_BOOT
  89. bool "U-Boot (or similar) bootloader"
  90. endchoice
  91. source "arch/avr32/mach-at32ap/Kconfig"
  92. config LOAD_ADDRESS
  93. hex
  94. default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
  95. config ENTRY_ADDRESS
  96. hex
  97. default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
  98. config PHYS_OFFSET
  99. hex
  100. default 0x10000000 if CPU_AT32AP7000=y
  101. source "kernel/Kconfig.preempt"
  102. config HAVE_ARCH_BOOTMEM_NODE
  103. bool
  104. default n
  105. config ARCH_HAVE_MEMORY_PRESENT
  106. bool
  107. default n
  108. config NEED_NODE_MEMMAP_SIZE
  109. bool
  110. default n
  111. config ARCH_FLATMEM_ENABLE
  112. bool
  113. default y
  114. config ARCH_DISCONTIGMEM_ENABLE
  115. bool
  116. default n
  117. config ARCH_SPARSEMEM_ENABLE
  118. bool
  119. default n
  120. source "mm/Kconfig"
  121. config OWNERSHIP_TRACE
  122. bool "Ownership trace support"
  123. default y
  124. help
  125. Say Y to generate an Ownership Trace message on every context switch,
  126. enabling Nexus-compliant debuggers to keep track of the PID of the
  127. currently executing task.
  128. # FPU emulation goes here
  129. source "kernel/Kconfig.hz"
  130. config CMDLINE
  131. string "Default kernel command line"
  132. default ""
  133. help
  134. If you don't have a boot loader capable of passing a command line string
  135. to the kernel, you may specify one here. As a minimum, you should specify
  136. the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
  137. endmenu
  138. menu "Bus options"
  139. config PCI
  140. bool
  141. source "drivers/pci/Kconfig"
  142. source "drivers/pcmcia/Kconfig"
  143. endmenu
  144. menu "Executable file formats"
  145. source "fs/Kconfig.binfmt"
  146. endmenu
  147. source "net/Kconfig"
  148. source "drivers/Kconfig"
  149. source "fs/Kconfig"
  150. source "arch/avr32/Kconfig.debug"
  151. source "security/Kconfig"
  152. source "crypto/Kconfig"
  153. source "lib/Kconfig"