Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. config C6X
  6. def_bool y
  7. select CLKDEV_LOOKUP
  8. select GENERIC_ATOMIC64
  9. select GENERIC_IRQ_SHOW
  10. select HAVE_ARCH_TRACEHOOK
  11. select HAVE_DMA_API_DEBUG
  12. select HAVE_MEMBLOCK
  13. select SPARSE_IRQ
  14. select IRQ_DOMAIN
  15. select OF
  16. select OF_EARLY_FLATTREE
  17. select GENERIC_CLOCKEVENTS
  18. select MODULES_USE_ELF_RELA
  19. select ARCH_NO_COHERENT_DMA_MMAP
  20. config MMU
  21. def_bool n
  22. config FPU
  23. def_bool n
  24. config RWSEM_GENERIC_SPINLOCK
  25. def_bool y
  26. config GENERIC_CALIBRATE_DELAY
  27. def_bool y
  28. config GENERIC_HWEIGHT
  29. def_bool y
  30. config GENERIC_BUG
  31. def_bool y
  32. depends on BUG
  33. config C6X_BIG_KERNEL
  34. bool "Build a big kernel"
  35. help
  36. The C6X function call instruction has a limited range of +/- 2MiB.
  37. This is sufficient for most kernels, but some kernel configurations
  38. with lots of compiled-in functionality may require a larger range
  39. for function calls. Use this option to have the compiler generate
  40. function calls with 32-bit range. This will make the kernel both
  41. larger and slower.
  42. If unsure, say N.
  43. source "init/Kconfig"
  44. # Use the generic interrupt handling code in kernel/irq/
  45. source "kernel/Kconfig.freezer"
  46. config CMDLINE_BOOL
  47. bool "Default bootloader kernel arguments"
  48. config CMDLINE
  49. string "Kernel command line"
  50. depends on CMDLINE_BOOL
  51. default "console=ttyS0,57600"
  52. help
  53. On some architectures there is currently no way for the boot loader
  54. to pass arguments to the kernel. For these architectures, you should
  55. supply some command-line options at build time by entering them
  56. here.
  57. config CMDLINE_FORCE
  58. bool "Force default kernel command string"
  59. depends on CMDLINE_BOOL
  60. default n
  61. help
  62. Set this to have arguments from the default kernel command string
  63. override those passed by the boot loader.
  64. config CPU_BIG_ENDIAN
  65. bool "Build big-endian kernel"
  66. default n
  67. help
  68. Say Y if you plan on running a kernel in big-endian mode.
  69. Note that your board must be properly built and your board
  70. port must properly enable any big-endian related features
  71. of your chipset/board/processor.
  72. config FORCE_MAX_ZONEORDER
  73. int "Maximum zone order"
  74. default "13"
  75. help
  76. The kernel memory allocator divides physically contiguous memory
  77. blocks into "zones", where each zone is a power of two number of
  78. pages. This option selects the largest power of two that the kernel
  79. keeps in the memory allocator. If you need to allocate very large
  80. blocks of physically contiguous memory, then you may need to
  81. increase this value.
  82. This config option is actually maximum order plus one. For example,
  83. a value of 11 means that the largest free memory block is 2^10 pages.
  84. menu "Processor type and features"
  85. source "arch/c6x/platforms/Kconfig"
  86. config KERNEL_RAM_BASE_ADDRESS
  87. hex "Virtual address of memory base"
  88. default 0xe0000000 if SOC_TMS320C6455
  89. default 0xe0000000 if SOC_TMS320C6457
  90. default 0xe0000000 if SOC_TMS320C6472
  91. default 0x80000000
  92. source "mm/Kconfig"
  93. source "kernel/Kconfig.preempt"
  94. source "kernel/Kconfig.hz"
  95. endmenu
  96. menu "Executable file formats"
  97. source "fs/Kconfig.binfmt"
  98. endmenu
  99. source "net/Kconfig"
  100. source "drivers/Kconfig"
  101. source "fs/Kconfig"
  102. source "security/Kconfig"
  103. source "crypto/Kconfig"
  104. source "lib/Kconfig"
  105. menu "Kernel hacking"
  106. source "lib/Kconfig.debug"
  107. config ACCESS_CHECK
  108. bool "Check the user pointer address"
  109. default y
  110. help
  111. Usually the pointer transfer from user space is checked to see if its
  112. address is in the kernel space.
  113. Say N here to disable that check to improve the performance.
  114. endmenu