Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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_HARDIRQS
  21. bool
  22. default y
  23. config HARDIRQS_SW_RESEND
  24. bool
  25. default y
  26. config GENERIC_IRQ_PROBE
  27. bool
  28. default y
  29. config RWSEM_GENERIC_SPINLOCK
  30. bool
  31. default y
  32. config GENERIC_TIME
  33. bool
  34. default y
  35. config RWSEM_XCHGADD_ALGORITHM
  36. bool
  37. config GENERIC_BUST_SPINLOCK
  38. bool
  39. config GENERIC_HWEIGHT
  40. bool
  41. default y
  42. config GENERIC_CALIBRATE_DELAY
  43. bool
  44. default y
  45. source "init/Kconfig"
  46. menu "System Type and features"
  47. config SUBARCH_AVR32B
  48. bool
  49. config MMU
  50. bool
  51. config PERFORMANCE_COUNTERS
  52. bool
  53. config PLATFORM_AT32AP
  54. bool
  55. select SUBARCH_AVR32B
  56. select MMU
  57. select PERFORMANCE_COUNTERS
  58. choice
  59. prompt "AVR32 CPU type"
  60. default CPU_AT32AP7000
  61. config CPU_AT32AP7000
  62. bool "AT32AP7000"
  63. select PLATFORM_AT32AP
  64. endchoice
  65. #
  66. # CPU Daughterboards for ATSTK1000
  67. config BOARD_ATSTK1002
  68. bool
  69. choice
  70. prompt "AVR32 board type"
  71. default BOARD_ATSTK1000
  72. config BOARD_ATSTK1000
  73. bool "ATSTK1000 evaluation board"
  74. select BOARD_ATSTK1002 if CPU_AT32AP7000
  75. endchoice
  76. choice
  77. prompt "Boot loader type"
  78. default LOADER_U_BOOT
  79. config LOADER_U_BOOT
  80. bool "U-Boot (or similar) bootloader"
  81. endchoice
  82. config LOAD_ADDRESS
  83. hex
  84. default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
  85. config ENTRY_ADDRESS
  86. hex
  87. default 0x90000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y
  88. config PHYS_OFFSET
  89. hex
  90. default 0x10000000 if CPU_AT32AP7000=y
  91. source "kernel/Kconfig.preempt"
  92. config HAVE_ARCH_BOOTMEM_NODE
  93. bool
  94. default n
  95. config ARCH_HAVE_MEMORY_PRESENT
  96. bool
  97. default n
  98. config NEED_NODE_MEMMAP_SIZE
  99. bool
  100. default n
  101. config ARCH_FLATMEM_ENABLE
  102. bool
  103. default y
  104. config ARCH_DISCONTIGMEM_ENABLE
  105. bool
  106. default n
  107. config ARCH_SPARSEMEM_ENABLE
  108. bool
  109. default n
  110. source "mm/Kconfig"
  111. config OWNERSHIP_TRACE
  112. bool "Ownership trace support"
  113. default y
  114. help
  115. Say Y to generate an Ownership Trace message on every context switch,
  116. enabling Nexus-compliant debuggers to keep track of the PID of the
  117. currently executing task.
  118. # FPU emulation goes here
  119. source "kernel/Kconfig.hz"
  120. config CMDLINE
  121. string "Default kernel command line"
  122. default ""
  123. help
  124. If you don't have a boot loader capable of passing a command line string
  125. to the kernel, you may specify one here. As a minimum, you should specify
  126. the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
  127. endmenu
  128. menu "Bus options"
  129. config PCI
  130. bool
  131. source "drivers/pci/Kconfig"
  132. source "drivers/pcmcia/Kconfig"
  133. endmenu
  134. menu "Executable file formats"
  135. source "fs/Kconfig.binfmt"
  136. endmenu
  137. source "net/Kconfig"
  138. source "drivers/Kconfig"
  139. source "fs/Kconfig"
  140. source "arch/avr32/Kconfig.debug"
  141. source "security/Kconfig"
  142. source "crypto/Kconfig"
  143. source "lib/Kconfig"