Kconfig 3.5 KB

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