Kconfig 3.7 KB

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