Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. config ARCH_CPU_64BIT
  2. bool
  3. config RT_USING_CACHE
  4. bool
  5. default n
  6. config RT_USING_CPU_FFS
  7. bool
  8. default n
  9. config ARCH_CPU_STACK_GROWS_UPWARD
  10. bool
  11. default n
  12. config ARCH_MM_MMU
  13. bool
  14. config ARCH_MM_MPU
  15. bool
  16. config ARCH_ARM
  17. bool
  18. config ARCH_ARM_CORTEX_M
  19. bool
  20. select ARCH_ARM
  21. config ARCH_ARM_CORTEX_FPU
  22. bool
  23. config ARCH_ARM_CORTEX_M0
  24. bool
  25. select ARCH_ARM_CORTEX_M
  26. config ARCH_ARM_CORTEX_M3
  27. bool
  28. select ARCH_ARM_CORTEX_M
  29. select RT_USING_CPU_FFS
  30. config ARCH_ARM_MPU
  31. bool
  32. depends on ARCH_ARM
  33. select ARCH_MM_MPU
  34. config ARCH_ARM_CORTEX_M4
  35. bool
  36. select ARCH_ARM_CORTEX_M
  37. select RT_USING_CPU_FFS
  38. config ARCH_ARM_CORTEX_M7
  39. bool
  40. select ARCH_ARM_CORTEX_M
  41. select RT_USING_CPU_FFS
  42. config ARCH_ARM_CORTEX_R
  43. bool
  44. select ARCH_ARM
  45. config ARCH_ARM_MMU
  46. bool
  47. select RT_USING_CACHE
  48. select ARCH_MM_MMU
  49. depends on ARCH_ARM
  50. config RT_USING_USERSPACE
  51. bool "Isolated user space"
  52. default n
  53. depends on ARCH_MM_MMU
  54. config KERNEL_VADDR_START
  55. hex "The virtural address of kernel start"
  56. default 0xc0000000
  57. depends on RT_USING_USERSPACE
  58. config PV_OFFSET
  59. hex "The offset of kernel physical address and virtural address"
  60. default 0
  61. depends on RT_USING_USERSPACE
  62. config RT_IOREMAP_LATE
  63. bool "Support to create IO mapping in the kernel address space after system initlalization."
  64. default n
  65. depends on ARCH_ARM_CORTEX_A
  66. depends on RT_USING_USERSPACE
  67. config ARCH_ARM_ARM9
  68. bool
  69. select ARCH_ARM
  70. config ARCH_ARM_ARM11
  71. bool
  72. select ARCH_ARM
  73. config ARCH_ARM_CORTEX_A
  74. bool
  75. select ARCH_ARM
  76. config ARCH_ARM_CORTEX_A5
  77. bool
  78. select ARCH_ARM_CORTEX_A
  79. config ARCH_ARM_CORTEX_A7
  80. bool
  81. select ARCH_ARM_CORTEX_A
  82. config ARCH_ARM_CORTEX_A8
  83. bool
  84. select ARCH_ARM_CORTEX_A
  85. config ARCH_ARM_CORTEX_A9
  86. bool
  87. select ARCH_ARM_CORTEX_A
  88. config ARCH_ARM_SECURE_MODE
  89. bool "Running in secure mode [ARM Cortex-A]"
  90. default n
  91. depends on ARCH_ARM_CORTEX_A
  92. config RT_BACKTRACE_FUNCTION_NAME
  93. bool "To show function name when backtrace."
  94. default n
  95. depends on ARCH_ARM_CORTEX_A
  96. config ARCH_ARMV8
  97. bool
  98. select ARCH_ARM
  99. config ARCH_MIPS
  100. bool
  101. config ARCH_MIPS64
  102. bool
  103. select ARCH_CPU_64BIT
  104. config ARCH_MIPS_XBURST
  105. bool
  106. select ARCH_MIPS
  107. config ARCH_ANDES
  108. bool
  109. config ARCH_CSKY
  110. bool
  111. config ARCH_POWERPC
  112. bool
  113. config ARCH_RISCV
  114. bool
  115. config ARCH_RISCV_FPU
  116. bool
  117. config ARCH_RISCV32
  118. select ARCH_RISCV
  119. bool
  120. config ARCH_RISCV64
  121. select ARCH_RISCV
  122. select ARCH_CPU_64BIT
  123. bool
  124. config ARCH_IA32
  125. bool
  126. config ARCH_TIDSP
  127. bool
  128. config ARCH_TIDSP_C28X
  129. bool
  130. select ARCH_TIDSP
  131. select ARCH_CPU_STACK_GROWS_UPWARD
  132. config ARCH_HOST_SIMULATOR
  133. bool