Kconfig 3.9 KB

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