Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. config ARCH_CPU_64BIT
  2. bool
  3. config RT_USING_CACHE
  4. bool
  5. default n
  6. config ARCH_CPU_BIG_ENDIAN
  7. bool
  8. config ARCH_ARM_BOOTWITH_FLUSH_CACHE
  9. bool
  10. default n
  11. config ARCH_CPU_STACK_GROWS_UPWARD
  12. bool
  13. default n
  14. config RT_USING_CPU_FFS
  15. bool
  16. default n
  17. config ARCH_MM_MMU
  18. bool
  19. config ARCH_MM_MPU
  20. bool
  21. config ARCH_ARM
  22. bool
  23. config ARCH_ARM_CORTEX_M
  24. bool
  25. select ARCH_ARM
  26. config ARCH_ARM_CORTEX_FPU
  27. bool
  28. config ARCH_ARM_CORTEX_SECURE
  29. bool
  30. config ARCH_ARM_CORTEX_M0
  31. bool
  32. select ARCH_ARM_CORTEX_M
  33. config ARCH_ARM_CORTEX_M3
  34. bool
  35. select ARCH_ARM_CORTEX_M
  36. select RT_USING_CPU_FFS
  37. config ARCH_ARM_MPU
  38. bool
  39. depends on ARCH_ARM
  40. select ARCH_MM_MPU
  41. config ARCH_ARM_CORTEX_M4
  42. bool
  43. select ARCH_ARM_CORTEX_M
  44. select RT_USING_CPU_FFS
  45. config ARCH_ARM_CORTEX_M7
  46. bool
  47. select ARCH_ARM_CORTEX_M
  48. select RT_USING_CPU_FFS
  49. select RT_USING_CACHE
  50. config ARCH_ARM_CORTEX_M33
  51. bool
  52. select ARCH_ARM_CORTEX_M
  53. select RT_USING_CPU_FFS
  54. config ARCH_ARM_CORTEX_R
  55. bool
  56. select ARCH_ARM
  57. config ARCH_ARM_MMU
  58. bool
  59. select RT_USING_CACHE
  60. select ARCH_MM_MMU
  61. depends on ARCH_ARM
  62. if RT_USING_SMART
  63. config KERNEL_VADDR_START
  64. hex "The virtural address of kernel start"
  65. default 0xffff000000000000 if ARCH_ARMV8
  66. default 0xc0000000 if ARCH_ARM
  67. default 0x80000000 if ARCH_RISCV
  68. depends on ARCH_MM_MMU
  69. config RT_IOREMAP_LATE
  70. bool "Support to create IO mapping in the kernel address space after system initlalization."
  71. default n
  72. depends on ARCH_ARM_CORTEX_A
  73. depends on ARCH_MM_MMU
  74. endif
  75. config ARCH_ARM_ARM9
  76. bool
  77. select ARCH_ARM
  78. config ARCH_ARM_ARM11
  79. bool
  80. select ARCH_ARM
  81. config ARCH_ARM_CORTEX_A
  82. bool
  83. select ARCH_ARM
  84. select ARCH_ARM_MMU
  85. select RT_USING_CPU_FFS
  86. if ARCH_ARM_CORTEX_A
  87. config RT_SMP_AUTO_BOOT
  88. bool
  89. default n
  90. config RT_USING_GIC_V2
  91. bool
  92. default n
  93. config RT_USING_GIC_V3
  94. bool
  95. default n
  96. config RT_NO_USING_GIC
  97. bool
  98. default y if !RT_USING_GIC_V2 && !RT_USING_GIC_V3
  99. endif
  100. config ARCH_ARM_CORTEX_A5
  101. bool
  102. select ARCH_ARM_CORTEX_A
  103. config ARCH_ARM_CORTEX_A7
  104. bool
  105. select ARCH_ARM_CORTEX_A
  106. config ARCH_ARM_CORTEX_A8
  107. bool
  108. select ARCH_ARM_CORTEX_A
  109. config ARCH_ARM_CORTEX_A9
  110. bool
  111. select ARCH_ARM_CORTEX_A
  112. config ARCH_ARM_SECURE_MODE
  113. bool "Running in secure mode [ARM Cortex-A]"
  114. default n
  115. depends on ARCH_ARM_CORTEX_A
  116. config RT_BACKTRACE_FUNCTION_NAME
  117. bool "To show function name when backtrace."
  118. default n
  119. depends on ARCH_ARM_CORTEX_A
  120. config ARCH_ARMV8
  121. bool
  122. select ARCH_ARM
  123. select ARCH_ARM_MMU
  124. config ARCH_MIPS
  125. bool
  126. config ARCH_MIPS64
  127. bool
  128. select ARCH_CPU_64BIT
  129. config ARCH_MIPS_XBURST
  130. bool
  131. select ARCH_MIPS
  132. config ARCH_ANDES
  133. bool
  134. config ARCH_CSKY
  135. bool
  136. config ARCH_POWERPC
  137. bool
  138. config ARCH_RISCV
  139. bool
  140. config ARCH_RISCV_FPU
  141. bool
  142. config ARCH_RISCV_FPU_S
  143. select ARCH_RISCV_FPU
  144. bool
  145. config ARCH_RISCV_FPU_D
  146. select ARCH_RISCV_FPU
  147. bool
  148. config ARCH_RISCV32
  149. select ARCH_RISCV
  150. bool
  151. config ARCH_RISCV64
  152. select ARCH_RISCV
  153. select ARCH_CPU_64BIT
  154. bool
  155. config ARCH_IA32
  156. bool
  157. config ARCH_TIDSP
  158. bool
  159. config ARCH_TIDSP_C28X
  160. bool
  161. select ARCH_TIDSP
  162. select ARCH_CPU_STACK_GROWS_UPWARD
  163. config ARCH_HOST_SIMULATOR
  164. bool
  165. config ARCH_CPU_STACK_GROWS_UPWARD
  166. bool
  167. default n