Kconfig 3.8 KB

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