Kconfig 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995
  1. # General architecture configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # Copyright (c) 2015 Intel Corporation
  4. # Copyright (c) 2016 Cadence Design Systems, Inc.
  5. # SPDX-License-Identifier: Apache-2.0
  6. # Include these first so that any properties (e.g. defaults) below can be
  7. # overridden (by defining symbols in multiple locations)
  8. # Note: $ARCH might be a glob pattern
  9. source "$(ARCH_DIR)/$(ARCH)/Kconfig"
  10. # Architecture symbols
  11. #
  12. # Should be 'select'ed by low-level symbols like SOC_SERIES_* or, lacking that,
  13. # by SOC_*.
  14. config ARC
  15. bool
  16. select ARCH_IS_SET
  17. select HAS_DTS
  18. imply XIP
  19. select ARCH_HAS_THREAD_LOCAL_STORAGE
  20. help
  21. ARC architecture
  22. config ARM
  23. bool
  24. select ARCH_IS_SET
  25. select ARCH_SUPPORTS_COREDUMP if CPU_CORTEX_M
  26. select HAS_DTS
  27. # FIXME: current state of the code for all ARM requires this, but
  28. # is really only necessary for Cortex-M with ARM MPU!
  29. select GEN_PRIV_STACKS
  30. select ARCH_HAS_THREAD_LOCAL_STORAGE if CPU_CORTEX_R || CPU_CORTEX_M
  31. help
  32. ARM architecture
  33. config ARM64
  34. bool
  35. select ARCH_IS_SET
  36. select 64BIT
  37. select HAS_DTS
  38. select HAS_ARM_SMCCC
  39. select ARCH_HAS_THREAD_LOCAL_STORAGE
  40. select USE_SWITCH
  41. select USE_SWITCH_SUPPORTED
  42. help
  43. ARM64 (AArch64) architecture
  44. config SPARC
  45. bool
  46. select ARCH_IS_SET
  47. select HAS_DTS
  48. select USE_SWITCH
  49. select USE_SWITCH_SUPPORTED
  50. select BIG_ENDIAN
  51. select ATOMIC_OPERATIONS_BUILTIN if SPARC_CASA
  52. select ATOMIC_OPERATIONS_C if !SPARC_CASA
  53. select ARCH_HAS_THREAD_LOCAL_STORAGE
  54. select ARCH_HAS_EXTRA_EXCEPTION_INFO
  55. help
  56. SPARC architecture
  57. config X86
  58. bool
  59. select ARCH_IS_SET
  60. select ATOMIC_OPERATIONS_BUILTIN
  61. select HAS_DTS
  62. select ARCH_SUPPORTS_COREDUMP
  63. select CPU_HAS_MMU
  64. select ARCH_MEM_DOMAIN_DATA if USERSPACE && !X86_COMMON_PAGE_TABLE
  65. select ARCH_MEM_DOMAIN_SYNCHRONOUS_API if USERSPACE
  66. select ARCH_HAS_GDBSTUB if !X86_64
  67. select ARCH_HAS_TIMING_FUNCTIONS
  68. select ARCH_HAS_THREAD_LOCAL_STORAGE
  69. select ARCH_HAS_DEMAND_PAGING
  70. select NEED_LIBC_MEM_PARTITION if USERSPACE && TIMING_FUNCTIONS \
  71. && !BOARD_HAS_TIMING_FUNCTIONS \
  72. && !SOC_HAS_TIMING_FUNCTIONS
  73. help
  74. x86 architecture
  75. config NIOS2
  76. bool
  77. select ARCH_IS_SET
  78. select ATOMIC_OPERATIONS_C
  79. select HAS_DTS
  80. imply XIP
  81. select ARCH_HAS_TIMING_FUNCTIONS
  82. help
  83. Nios II Gen 2 architecture
  84. config RISCV
  85. bool
  86. select ARCH_IS_SET
  87. select HAS_DTS
  88. select ARCH_HAS_THREAD_LOCAL_STORAGE
  89. imply XIP
  90. help
  91. RISCV architecture
  92. config XTENSA
  93. bool
  94. select ARCH_IS_SET
  95. select HAS_DTS
  96. select USE_SWITCH
  97. select USE_SWITCH_SUPPORTED
  98. imply ATOMIC_OPERATIONS_ARCH
  99. help
  100. Xtensa architecture
  101. config ARCH_POSIX
  102. bool
  103. select ARCH_IS_SET
  104. select HAS_DTS
  105. select ATOMIC_OPERATIONS_BUILTIN
  106. select ARCH_HAS_CUSTOM_SWAP_TO_MAIN
  107. select ARCH_HAS_CUSTOM_BUSY_WAIT
  108. select ARCH_HAS_THREAD_ABORT
  109. select NATIVE_APPLICATION
  110. select HAS_COVERAGE_SUPPORT
  111. help
  112. POSIX (native) architecture
  113. config ARCH_IS_SET
  114. bool
  115. help
  116. Helper symbol to detect SoCs forgetting to select one of the arch
  117. symbols above. See the top-level CMakeLists.txt.
  118. menu "General Architecture Options"
  119. module = ARCH
  120. module-str = arch
  121. source "subsys/logging/Kconfig.template.log_config"
  122. module = MPU
  123. module-str = mpu
  124. source "subsys/logging/Kconfig.template.log_config"
  125. config BIG_ENDIAN
  126. bool
  127. help
  128. This option tells the build system that the target system is big-endian.
  129. Little-endian architecture is the default and should leave this option
  130. unselected. This option is selected by arch/$ARCH/Kconfig,
  131. soc/**/Kconfig, or boards/**/Kconfig and the user should generally avoid
  132. modifying it. The option is used to select linker script OUTPUT_FORMAT
  133. and command line option for gen_isr_tables.py.
  134. config 64BIT
  135. bool
  136. help
  137. This option tells the build system that the target system is
  138. using a 64-bit address space, meaning that pointer and long types
  139. are 64 bits wide. This option is selected by arch/$ARCH/Kconfig,
  140. soc/**/Kconfig, or boards/**/Kconfig and the user should generally
  141. avoid modifying it.
  142. # Workaround for not being able to have commas in macro arguments
  143. DT_CHOSEN_Z_SRAM := zephyr,sram
  144. config SRAM_SIZE
  145. int "SRAM Size in kB"
  146. default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_SRAM),0,K)
  147. help
  148. The SRAM size in kB. The default value comes from /chosen/zephyr,sram in
  149. devicetree. The user should generally avoid changing it via menuconfig or
  150. in configuration files.
  151. config SRAM_BASE_ADDRESS
  152. hex "SRAM Base Address"
  153. default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM))
  154. help
  155. The SRAM base address. The default value comes from from
  156. /chosen/zephyr,sram in devicetree. The user should generally avoid
  157. changing it via menuconfig or in configuration files.
  158. if ARC || ARM || ARM64 || NIOS2 || X86
  159. # Workaround for not being able to have commas in macro arguments
  160. DT_CHOSEN_Z_FLASH := zephyr,flash
  161. config FLASH_SIZE
  162. int "Flash Size in kB"
  163. default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K) if (XIP && (ARM ||ARM64)) || !ARM
  164. help
  165. This option specifies the size of the flash in kB. It is normally set by
  166. the board's defconfig file and the user should generally avoid modifying
  167. it via the menu configuration.
  168. config FLASH_BASE_ADDRESS
  169. hex "Flash Base Address"
  170. default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH)) if (XIP && (ARM || ARM64)) || !ARM
  171. help
  172. This option specifies the base address of the flash on the board. It is
  173. normally set by the board's defconfig file and the user should generally
  174. avoid modifying it via the menu configuration.
  175. endif # ARM || ARM64 || ARC || NIOS2 || X86
  176. if ARCH_HAS_TRUSTED_EXECUTION
  177. config TRUSTED_EXECUTION_SECURE
  178. bool "Trusted Execution: Secure firmware image"
  179. help
  180. Select this option to enable building a Secure firmware
  181. image for a platform that supports Trusted Execution. A
  182. Secure firmware image will execute in Secure state. It may
  183. allow the CPU to execute in Non-Secure (Normal) state.
  184. Therefore, a Secure firmware image shall be able to
  185. configure security attributions of CPU resources (memory
  186. areas, peripherals, interrupts, etc.) as well as to handle
  187. faults, related to security violations. It may optionally
  188. allow certain functions to be called from the Non-Secure
  189. (Normal) domain.
  190. config TRUSTED_EXECUTION_NONSECURE
  191. depends on !TRUSTED_EXECUTION_SECURE
  192. bool "Trusted Execution: Non-Secure firmware image"
  193. help
  194. Select this option to enable building a Non-Secure
  195. firmware image for a platform that supports Trusted
  196. Execution. A Non-Secure firmware image will execute
  197. in Non-Secure (Normal) state. Therefore, it shall not
  198. access CPU resources (memory areas, peripherals,
  199. interrupts etc.) belonging to the Secure domain.
  200. endif # ARCH_HAS_TRUSTED_EXECUTION
  201. config HW_STACK_PROTECTION
  202. bool "Hardware Stack Protection"
  203. depends on ARCH_HAS_STACK_PROTECTION
  204. help
  205. Select this option to enable hardware-based platform features to
  206. catch stack overflows when the system is running in privileged
  207. mode. If CONFIG_USERSPACE is not enabled, the system is always
  208. running in privileged mode.
  209. Note that this does not necessarily prevent corruption and assertions
  210. about the overall system state when a fault is triggered cannot be
  211. made.
  212. config USERSPACE
  213. bool "User mode threads"
  214. depends on ARCH_HAS_USERSPACE
  215. depends on RUNTIME_ERROR_CHECKS
  216. depends on SRAM_REGION_PERMISSIONS
  217. select THREAD_STACK_INFO
  218. help
  219. When enabled, threads may be created or dropped down to user mode,
  220. which has significantly restricted permissions and must interact
  221. with the kernel via system calls. See Zephyr documentation for more
  222. details about this feature.
  223. If a user thread overflows its stack, this will be caught and the
  224. kernel itself will be shielded from harm. Enabling this option
  225. may or may not catch stack overflows when the system is in
  226. privileged mode or handling a system call; to ensure these are always
  227. caught, enable CONFIG_HW_STACK_PROTECTION.
  228. config PRIVILEGED_STACK_SIZE
  229. int "Size of privileged stack"
  230. default 1024
  231. depends on ARCH_HAS_USERSPACE
  232. help
  233. This option sets the privileged stack region size that will be used
  234. in addition to the user mode thread stack. During normal execution,
  235. this region will be inaccessible from user mode. During system calls,
  236. this region will be utilized by the system call. This value must be
  237. a multiple of the minimum stack alignment.
  238. config KOBJECT_TEXT_AREA
  239. int "Size of kobject text area"
  240. default 512 if COVERAGE_GCOV
  241. default 512 if NO_OPTIMIZATIONS
  242. default 512 if STACK_CANARIES && RISCV
  243. default 256
  244. depends on ARCH_HAS_USERSPACE
  245. help
  246. Size of kernel object text area. Used in linker script.
  247. config KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT
  248. int "Reserve extra kobject data area (in percentage)"
  249. default 100
  250. depends on ARCH_HAS_USERSPACE
  251. help
  252. Multiplication factor used to calculate the size of placeholder to
  253. reserve space for kobject metadata hash table. The hash table is
  254. generated via gperf is highly dependent on the absolute addresses of
  255. kobjects which might change between prebuilts. To reserve enough
  256. space for the hash table during final linking passes to keep
  257. kobjects in same place, the size of reserved space is calculated
  258. from the first prebuilt plus additional space calculated with
  259. this percentage (of the kobject data area in first prebuilt).
  260. config KOBJECT_RODATA_AREA_EXTRA_BYTES
  261. int "Reserve extra bytes for kobject rodata area"
  262. default 16
  263. depends on ARCH_HAS_USERSPACE
  264. help
  265. Reserve a few more bytes for the RODATA region for kobject metadata.
  266. This is to account for the uncertainty of tables generated by gperf.
  267. config GEN_PRIV_STACKS
  268. bool
  269. help
  270. Selected if the architecture requires that privilege elevation stacks
  271. be allocated in a separate memory area. This is typical of arches
  272. whose MPUs require regions to be power-of-two aligned/sized.
  273. FIXME: This should be removed and replaced with checks against
  274. CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT, but both ARM and ARC
  275. changes will be necessary for this.
  276. config STACK_GROWS_UP
  277. bool "Stack grows towards higher memory addresses"
  278. help
  279. Select this option if the architecture has upward growing thread
  280. stacks. This is not common.
  281. config NO_UNUSED_STACK_INSPECTION
  282. bool
  283. help
  284. Selected if the architecture will generate a fault if unused stack
  285. memory is examined, which is the region between the current stack
  286. pointer and the deepest available address in the current stack
  287. region.
  288. config MAX_THREAD_BYTES
  289. int "Bytes to use when tracking object thread permissions"
  290. default 2
  291. depends on USERSPACE
  292. help
  293. Every kernel object will have an associated bitfield to store
  294. thread permissions for that object. This controls the size of the
  295. bitfield (in bytes) and imposes a limit on how many threads can
  296. be created in the system.
  297. config DYNAMIC_OBJECTS
  298. bool "Allow kernel objects to be allocated at runtime"
  299. depends on USERSPACE
  300. help
  301. Enabling this option allows for kernel objects to be requested from
  302. the calling thread's resource pool, at a slight cost in performance
  303. due to the supplemental run-time tables required to validate such
  304. objects.
  305. Objects allocated in this way can be freed with a supervisor-only
  306. API call, or when the number of references to that object drops to
  307. zero.
  308. config NOCACHE_MEMORY
  309. bool "Support for uncached memory"
  310. depends on ARCH_HAS_NOCACHE_MEMORY_SUPPORT
  311. help
  312. Add a "nocache" read-write memory section that is configured to
  313. not be cached. This memory section can be used to perform DMA
  314. transfers when cache coherence issues are not optimal or can not
  315. be solved using cache maintenance operations.
  316. menu "Interrupt Configuration"
  317. config DYNAMIC_INTERRUPTS
  318. bool "Enable installation of IRQs at runtime"
  319. help
  320. Enable installation of interrupts at runtime, which will move some
  321. interrupt-related data structures to RAM instead of ROM, and
  322. on some architectures increase code size.
  323. config GEN_ISR_TABLES
  324. bool "Use generated IRQ tables"
  325. help
  326. This option controls whether a platform uses the gen_isr_tables
  327. script to generate its interrupt tables. This mechanism will create
  328. an appropriate hardware vector table and/or software IRQ table.
  329. config GEN_IRQ_VECTOR_TABLE
  330. bool "Generate an interrupt vector table"
  331. default y
  332. depends on GEN_ISR_TABLES
  333. help
  334. This option controls whether a platform using gen_isr_tables
  335. needs an interrupt vector table created. Only disable this if the
  336. platform does not use a vector table at all, or requires the vector
  337. table to be in a format that is not an array of function pointers
  338. indexed by IRQ line. In the latter case, the vector table must be
  339. supplied by the application or architecture code.
  340. config GEN_SW_ISR_TABLE
  341. bool "Generate a software ISR table"
  342. default y
  343. depends on GEN_ISR_TABLES
  344. help
  345. This option controls whether a platform using gen_isr_tables
  346. needs a software ISR table table created. This is an array of struct
  347. _isr_table_entry containing the interrupt service routine and supplied
  348. parameter.
  349. config ARCH_SW_ISR_TABLE_ALIGN
  350. int "Alignment size of a software ISR table"
  351. default 0
  352. depends on GEN_SW_ISR_TABLE
  353. help
  354. This option controls alignment size of generated
  355. _sw_isr_table. Some architecture needs a software ISR table
  356. to be aligned to architecture specific size. The default
  357. size is 0 for no alignment.
  358. config GEN_IRQ_START_VECTOR
  359. int
  360. default 0
  361. depends on GEN_ISR_TABLES
  362. help
  363. On some architectures, part of the vector table may be reserved for
  364. system exceptions and is declared separately from the tables
  365. created by gen_isr_tables.py. When creating these tables, this value
  366. will be subtracted from CONFIG_NUM_IRQS to properly size them.
  367. This is a hidden option which needs to be set per architecture and
  368. left alone.
  369. config IRQ_OFFLOAD
  370. bool "Enable IRQ offload"
  371. depends on TEST
  372. help
  373. Enable irq_offload() API which allows functions to be synchronously
  374. run in interrupt context. Only useful for test cases that need
  375. to validate the correctness of kernel objects in IRQ context.
  376. config EXTRA_EXCEPTION_INFO
  377. bool "Collect extra exception info"
  378. depends on ARCH_HAS_EXTRA_EXCEPTION_INFO
  379. help
  380. This option enables the collection of extra information, such as
  381. register state, when a fault occurs. This information can be useful
  382. to collect for post-mortem analysis and debug of issues.
  383. endmenu # Interrupt configuration
  384. config INIT_ARCH_HW_AT_BOOT
  385. bool "Initialize internal architecture state at boot"
  386. depends on ARCH_SUPPORTS_ARCH_HW_INIT
  387. help
  388. This option instructs Zephyr to force the initialization
  389. of the internal architectural state (for example ARCH-level
  390. HW registers and system control blocks) during boot to
  391. the reset values as specified by the corresponding
  392. architecture manual. The option is useful when the Zephyr
  393. firmware image is chain-loaded, for example, by a debugger
  394. or a bootloader, and we need to guarantee that the internal
  395. states of the architecture core blocks are restored to the
  396. reset values (as specified by the architecture).
  397. Note: the functionality is architecture-specific. For the
  398. implementation details refer to each architecture where
  399. this feature is supported.
  400. endmenu
  401. #
  402. # Architecture Capabilities
  403. #
  404. config ARCH_HAS_SINGLE_THREAD_SUPPORT
  405. bool
  406. config ARCH_HAS_TIMING_FUNCTIONS
  407. bool
  408. config ARCH_HAS_TRUSTED_EXECUTION
  409. bool
  410. config ARCH_HAS_STACK_PROTECTION
  411. bool
  412. config ARCH_HAS_USERSPACE
  413. bool
  414. config ARCH_HAS_EXECUTABLE_PAGE_BIT
  415. bool
  416. config ARCH_HAS_NOCACHE_MEMORY_SUPPORT
  417. bool
  418. config ARCH_HAS_RAMFUNC_SUPPORT
  419. bool
  420. config ARCH_HAS_NESTED_EXCEPTION_DETECTION
  421. bool
  422. config ARCH_SUPPORTS_COREDUMP
  423. bool
  424. config ARCH_SUPPORTS_ARCH_HW_INIT
  425. bool
  426. config ARCH_HAS_EXTRA_EXCEPTION_INFO
  427. bool
  428. config ARCH_HAS_GDBSTUB
  429. bool
  430. config ARCH_HAS_COHERENCE
  431. bool
  432. help
  433. When selected, the architecture supports the
  434. arch_mem_coherent() API and can link into incoherent/cached
  435. memory using the ".cached" linker section.
  436. config ARCH_HAS_THREAD_LOCAL_STORAGE
  437. bool
  438. #
  439. # Other architecture related options
  440. #
  441. config ARCH_HAS_THREAD_ABORT
  442. bool
  443. #
  444. # Hidden CPU family configs
  445. #
  446. config CPU_HAS_TEE
  447. bool
  448. help
  449. This option is enabled when the CPU has support for Trusted
  450. Execution Environment (e.g. when it has a security attribution
  451. unit).
  452. config CPU_HAS_DCLS
  453. bool
  454. help
  455. This option is enabled when the processor hardware is configured in
  456. Dual-redundant Core Lock-step (DCLS) topology.
  457. config CPU_HAS_FPU
  458. bool
  459. help
  460. This option is enabled when the CPU has hardware floating point
  461. unit.
  462. config CPU_HAS_FPU_DOUBLE_PRECISION
  463. bool
  464. select CPU_HAS_FPU
  465. help
  466. When enabled, this indicates that the CPU has a double floating point
  467. precision unit.
  468. config CPU_HAS_MPU
  469. bool
  470. help
  471. This option is enabled when the CPU has a Memory Protection Unit (MPU).
  472. config CPU_HAS_MMU
  473. bool
  474. help
  475. This hidden option is selected when the CPU has a Memory Management Unit
  476. (MMU).
  477. config ARCH_HAS_DEMAND_PAGING
  478. bool
  479. help
  480. This hidden configuration should be selected by the architecture if
  481. demand paging is supported.
  482. config ARCH_HAS_RESERVED_PAGE_FRAMES
  483. bool
  484. help
  485. This hidden configuration should be selected by the architecture if
  486. certain RAM page frames need to be marked as reserved and never used for
  487. memory mappings. The architecture will need to implement
  488. arch_reserved_pages_update().
  489. config ARCH_MAPS_ALL_RAM
  490. bool
  491. help
  492. This hidden option is selected by the architecture to inform the kernel
  493. that all RAM is mapped at boot, and not just the bounds of the Zephyr image.
  494. If RAM starts at 0x0, the first page must remain un-mapped to catch NULL
  495. pointer dereferences. With this enabled, the kernel will not assume that
  496. virtual memory addresses past the kernel image are available for mappings,
  497. but instead takes into account an entire RAM mapping instead.
  498. This is typically set by architectures which need direct access to all memory.
  499. It is the architecture's responsibility to mark reserved memory regions
  500. as such in arch_reserved_pages_update().
  501. Although the kernel will not disturb this RAM mapping by re-mapping the associated
  502. virtual addresses elsewhere, this is limited to only management of the
  503. virtual address space. The kernel's page frame ontology will not consider
  504. this mapping at all; non-kernel pages will be considered free (unless marked
  505. as reserved) and Z_PAGE_FRAME_MAPPED will not be set.
  506. menuconfig MMU
  507. bool "Enable MMU features"
  508. depends on CPU_HAS_MMU
  509. help
  510. This option is enabled when the CPU's memory management unit is active
  511. and the arch_mem_map() API is available.
  512. if MMU
  513. config MMU_PAGE_SIZE
  514. hex "Size of smallest granularity MMU page"
  515. default 0x1000
  516. help
  517. Size of memory pages. Varies per MMU but 4K is common. For MMUs that
  518. support multiple page sizes, put the smallest one here.
  519. config KERNEL_VM_BASE
  520. hex "Virtual address space base address"
  521. default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM))
  522. help
  523. Define the base of the kernel's address space.
  524. By default, this is the same as the DT_CHOSEN_Z_SRAM physical base SRAM
  525. address from DTS, in which case RAM will be identity-mapped. Some
  526. architectures may require RAM to be mapped in this way; they may have
  527. just one RAM region and doing this makes linking much simpler, as
  528. at least when the kernel boots all virtual RAM addresses are the same
  529. as their physical address (demand paging at runtime may later modify
  530. this for non-pinned page frames).
  531. Otherwise, if RAM isn't identity-mapped:
  532. 1. It is the architecture's responsibility to transition the
  533. instruction pointer to virtual addresses at early boot before
  534. entering the kernel at z_cstart().
  535. 2. The underlying architecture may impose constraints on the bounds of
  536. the kernel's address space, such as not overlapping physical RAM
  537. regions if RAM is not identity-mapped, or the virtual and physical
  538. base addresses being aligned to some common value (which allows
  539. double-linking of paging structures to make the instruction pointer
  540. transition simpler).
  541. Zephyr does not implement a split address space and if multiple
  542. page tables are in use, they all have the same virtual-to-physical
  543. mappings (with potentially different permissions).
  544. config KERNEL_VM_OFFSET
  545. hex "Kernel offset within address space"
  546. default 0
  547. help
  548. Offset that the kernel image begins within its address space,
  549. if this is not the same offset from the beginning of RAM.
  550. Some care may need to be taken in selecting this value. In certain
  551. build-time cases, or when a physical address cannot be looked up
  552. in page tables, the equation:
  553. virt = phys + ((KERNEL_VM_BASE + KERNEL_VM_OFFSET) -
  554. (SRAM_BASE_ADDRESS + SRAM_OFFSET))
  555. Will be used to convert between physical and virtual addresses for
  556. memory that is mapped at boot.
  557. This uncommon and is only necessary if the beginning of VM and
  558. physical memory have dissimilar alignment.
  559. config KERNEL_VM_SIZE
  560. hex "Size of kernel address space in bytes"
  561. default 0x800000
  562. help
  563. Size of the kernel's address space. Constraining this helps control
  564. how much total memory can be used for page tables.
  565. The difference between KERNEL_VM_BASE and KERNEL_VM_SIZE indicates the
  566. size of the virtual region for runtime memory mappings. This is needed
  567. for mapping driver MMIO regions, as well as special RAM mapping use-cases
  568. such as VSDO pages, memory mapped thread stacks, and anonymous memory
  569. mappings. The kernel itself will be mapped in here as well at boot.
  570. Systems with very large amounts of memory (such as 512M or more)
  571. will want to use a 64-bit build of Zephyr, there are no plans to
  572. implement a notion of "high" memory in Zephyr to work around physical
  573. RAM size larger than the defined bounds of the virtual address space.
  574. menuconfig DEMAND_PAGING
  575. bool "Enable demand paging [EXPERIMENTAL]"
  576. depends on ARCH_HAS_DEMAND_PAGING
  577. help
  578. Enable demand paging. Requires architecture support in how the kernel
  579. is linked and the implementation of an eviction algorithm and a
  580. backing store for evicted pages.
  581. if DEMAND_PAGING
  582. config DEMAND_PAGING_ALLOW_IRQ
  583. bool "Allow interrupts during page-ins/outs"
  584. help
  585. Allow interrupts to be serviced while pages are being evicted or
  586. retrieved from the backing store. This is much better for system
  587. latency, but any code running in interrupt context that page faults
  588. will cause a kernel panic. Such code must work with exclusively pinned
  589. code and data pages.
  590. The scheduler is still disabled during this operation.
  591. If this option is disabled, the page fault servicing logic
  592. runs with interrupts disabled for the entire operation. However,
  593. ISRs may also page fault.
  594. config DEMAND_PAGING_PAGE_FRAMES_RESERVE
  595. int "Number of page frames reserved for paging"
  596. default 32 if !LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT
  597. default 0
  598. help
  599. This sets the number of page frames that will be reserved for
  600. paging that do not count towards free memory. This is to
  601. ensure that there are some page frames available for paging
  602. code and data. Otherwise, it would be possible to exhaust
  603. all page frames via anonymous memory mappings.
  604. config DEMAND_PAGING_STATS
  605. bool "Gather Demand Paging Statistics"
  606. help
  607. This enables gathering various statistics related to demand paging,
  608. e.g. number of pagefaults. This is useful for tuning eviction
  609. algorithms and optimizing backing store.
  610. Should say N in production system as this is not without cost.
  611. config DEMAND_PAGING_STATS_USING_TIMING_FUNCTIONS
  612. bool "Use Timing Functions to Gather Demand Paging Statistics"
  613. select TIMING_FUNCTIONS_NEED_AT_BOOT
  614. help
  615. Use timing functions to gather various demand paging statistics.
  616. config DEMAND_PAGING_THREAD_STATS
  617. bool "Gather per Thread Demand Paging Statistics"
  618. depends on DEMAND_PAGING_STATS
  619. help
  620. This enables gathering per thread statistics related to demand
  621. paging.
  622. Should say N in production system as this is not without cost.
  623. config DEMAND_PAGING_TIMING_HISTOGRAM
  624. bool "Gather Demand Paging Execution Timing Histogram"
  625. depends on DEMAND_PAGING_STATS
  626. help
  627. This gathers the histogram of execution time on page eviction
  628. selection, and backing store page in and page out.
  629. Should say N in production system as this is not without cost.
  630. config DEMAND_PAGING_TIMING_HISTOGRAM_NUM_BINS
  631. int "Number of bins (buckets) in Demand Paging Timing Histogrm"
  632. depends on DEMAND_PAGING_TIMING_HISTOGRAM
  633. default 10
  634. help
  635. Defines the number of bins (buckets) in the histogram used for
  636. gathering execution timing information for demand paging.
  637. This requires k_mem_paging_eviction_histogram_bounds[] and
  638. k_mem_paging_backing_store_histogram_bounds[] to define
  639. the upper bounds for each bin. See kernel/statistics.c for
  640. information.
  641. endif # DEMAND_PAGING
  642. endif # MMU
  643. menuconfig MPU
  644. bool "Enable MPU features"
  645. depends on CPU_HAS_MPU
  646. help
  647. This option, when enabled, indicates to the core kernel that an MPU
  648. is enabled.
  649. if MPU
  650. config MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT
  651. bool
  652. help
  653. This option is enabled when the MPU requires a power of two alignment
  654. and size for MPU regions.
  655. config MPU_REQUIRES_NON_OVERLAPPING_REGIONS
  656. bool
  657. help
  658. This option is enabled when the MPU requires the active (i.e. enabled)
  659. MPU regions to be non-overlapping with each other.
  660. config MPU_GAP_FILLING
  661. bool "Force MPU to be filling in background memory regions"
  662. depends on MPU_REQUIRES_NON_OVERLAPPING_REGIONS
  663. default y if !USERSPACE
  664. help
  665. This Kconfig option instructs the MPU driver to enforce
  666. a full kernel SRAM partitioning, when it programs the
  667. dynamic MPU regions (user thread stack, PRIV stack guard
  668. and application memory domains) during context-switch. We
  669. allow this to be a configurable option, in order to be able
  670. to switch the option off and have an increased number of MPU
  671. regions available for application memory domain programming.
  672. Notes:
  673. An increased number of MPU regions should only be required,
  674. when building with USERSPACE support. As a result, when we
  675. build without USERSPACE support, gap filling should always
  676. be required.
  677. When the option is switched off, access to memory areas not
  678. covered by explicit MPU regions is restricted to privileged
  679. code on an ARCH-specific basis. Refer to ARCH-specific
  680. documentation for more information on how this option is
  681. used.
  682. endif # MPU
  683. config SRAM_REGION_PERMISSIONS
  684. bool "Assign appropriate permissions to kernel areas in SRAM"
  685. depends on MMU || MPU
  686. default y
  687. help
  688. This option indicates that memory protection hardware
  689. is present, enabled, and regions have been configured at boot for memory
  690. ranges within the kernel image.
  691. If this option is turned on, certain areas of the kernel image will
  692. have the following access policies applied for all threads, including
  693. supervisor threads:
  694. 1) All program text will be have read-only, execute memory permission
  695. 2) All read-only data will have read-only permission, and execution
  696. disabled if the hardware supports it.
  697. 3) All other RAM addresses will have read-write permission, and
  698. execution disabled if the hardware supports it.
  699. Options such as USERSPACE or HW_STACK_PROTECTION may additionally
  700. impose additional policies on the memory map, which may be global
  701. or local to the current running thread.
  702. This option may consume additional memory to satisfy memory protection
  703. hardware alignment constraints.
  704. If this option is disabled, the entire kernel will have default memory
  705. access permissions set, typically read/write/execute. It may be desirable
  706. to turn this off on MMU systems which are using the MMU for demand
  707. paging, do not need memory protection, and would rather not use up
  708. RAM for the alignment between regions.
  709. menu "Floating Point Options"
  710. config FPU
  711. bool "Enable floating point unit (FPU)"
  712. depends on CPU_HAS_FPU
  713. help
  714. This option enables the hardware Floating Point Unit (FPU), in order to
  715. support using the floating point registers and instructions.
  716. When this option is enabled, by default, threads may use the floating
  717. point registers only in an exclusive manner, and this usually means that
  718. only one thread may perform floating point operations.
  719. If it is necessary for multiple threads to perform concurrent floating
  720. point operations, the "FPU register sharing" option must be enabled to
  721. preserve the floating point registers across context switches.
  722. Note that this option cannot be selected for the platforms that do not
  723. include a hardware floating point unit; the floating point support for
  724. those platforms is dependent on the availability of the toolchain-
  725. provided software floating point library.
  726. config FPU_SHARING
  727. bool "FPU register sharing"
  728. depends on FPU && MULTITHREADING
  729. help
  730. This option enables preservation of the hardware floating point registers
  731. across context switches to allow multiple threads to perform concurrent
  732. floating point operations.
  733. Note that some compiler configurations may activate a floating point
  734. context by generating FP instructions for any thread, and that
  735. context must be preserved when switching such threads in and out.
  736. The developers can still disable the FP sharing mode in their
  737. application projects, and switch to Unshared FP registers mode,
  738. if it is guaranteed that the image code does not generate FP
  739. instructions outside the single thread context that is allowed
  740. to do so.
  741. endmenu
  742. menu "Cache Options"
  743. config CACHE_MANAGEMENT
  744. bool "Enable cache management features"
  745. help
  746. This links in the cache management functions (for d-cache and i-cache
  747. where possible).
  748. config DCACHE_LINE_SIZE_DETECT
  749. bool "Detect d-cache line size at runtime"
  750. depends on CACHE_MANAGEMENT
  751. help
  752. This option enables querying some architecture-specific hardware for
  753. finding the d-cache line size at the expense of taking more memory and
  754. code and a slightly increased boot time.
  755. If the CPU's d-cache line size is known in advance, disable this option and
  756. manually enter the value for DCACHE_LINE_SIZE or set it in the DT
  757. using the 'd-cache-line-size' property.
  758. config DCACHE_LINE_SIZE
  759. int "d-cache line size" if !DCACHE_LINE_SIZE_DETECT
  760. depends on CACHE_MANAGEMENT
  761. default 0
  762. help
  763. Size in bytes of a CPU d-cache line. If this is set to 0 the value is
  764. obtained from the 'd-cache-line-size' DT property instead if present.
  765. Detect automatically at runtime by selecting DCACHE_LINE_SIZE_DETECT.
  766. config ICACHE_LINE_SIZE_DETECT
  767. bool "Detect i-cache line size at runtime"
  768. depends on CACHE_MANAGEMENT
  769. help
  770. This option enables querying some architecture-specific hardware for
  771. finding the i-cache line size at the expense of taking more memory and
  772. code and a slightly increased boot time.
  773. If the CPU's i-cache line size is known in advance, disable this option and
  774. manually enter the value for ICACHE_LINE_SIZE or set it in the DT
  775. using the 'i-cache-line-size' property.
  776. config ICACHE_LINE_SIZE
  777. int "i-cache line size" if !ICACHE_LINE_SIZE_DETECT
  778. depends on CACHE_MANAGEMENT
  779. default 0
  780. help
  781. Size in bytes of a CPU i-cache line. If this is set to 0 the value is
  782. obtained from the 'i-cache-line-size' DT property instead if present.
  783. Detect automatically at runtime by selecting ICACHE_LINE_SIZE_DETECT.
  784. choice CACHE_TYPE
  785. prompt "Cache type"
  786. depends on CACHE_MANAGEMENT
  787. default HAS_ARCH_CACHE
  788. config HAS_ARCH_CACHE
  789. bool "Integrated cache controller"
  790. help
  791. "Integrade on-core cache controller"
  792. config HAS_EXTERNAL_CACHE
  793. bool "External cache controller"
  794. help
  795. "External cache controller or cache management system"
  796. endchoice
  797. endmenu
  798. config ARCH
  799. string
  800. help
  801. System architecture string.
  802. config SOC
  803. string
  804. help
  805. SoC name which can be found under soc/<arch>/<soc name>.
  806. This option holds the directory name used by the build system to locate
  807. the correct linker and header files for the SoC.
  808. config SOC_SERIES
  809. string
  810. help
  811. SoC series name which can be found under soc/<arch>/<family>/<series>.
  812. This option holds the directory name used by the build system to locate
  813. the correct linker and header files.
  814. config SOC_FAMILY
  815. string
  816. help
  817. SoC family name which can be found under soc/<arch>/<family>.
  818. This option holds the directory name used by the build system to locate
  819. the correct linker and header files.
  820. config BOARD
  821. string
  822. help
  823. This option holds the name of the board and is used to locate the files
  824. related to the board in the source tree (under boards/).
  825. The Board is the first location where we search for a linker.ld file,
  826. if not found we look for the linker file in
  827. soc/<arch>/<family>/<series>
  828. config TOOLCHAIN_HAS_BUILTIN_FFS
  829. bool
  830. default y if !(64BIT && RISCV)
  831. help
  832. Hidden option to signal that toolchain has __builtin_ffs*().