Kconfig 2.7 KB

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