Kconfig 3.6 KB

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