Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # ARM architecture configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "ARM Options"
  5. depends on ARM
  6. config ARCH
  7. default "arm"
  8. config CPU_CORTEX
  9. bool
  10. help
  11. This option signifies the use of a CPU of the Cortex family.
  12. config ARM_CUSTOM_INTERRUPT_CONTROLLER
  13. bool
  14. depends on !CPU_CORTEX_M
  15. help
  16. This option indicates that the ARM CPU is connected to a custom (i.e.
  17. non-GIC) interrupt controller.
  18. A number of Cortex-A and Cortex-R cores (Cortex-A5, Cortex-R4/5, ...)
  19. allow interfacing to a custom external interrupt controller and this
  20. option must be selected when such cores are connected to an interrupt
  21. controller that is not the ARM Generic Interrupt Controller (GIC).
  22. When this option is selected, the architecture interrupt control
  23. functions are mapped to the SoC interrupt control interface, which is
  24. implemented at the SoC level.
  25. N.B. This option is only applicable to the Cortex-A and Cortex-R
  26. family cores. The Cortex-M family cores are always equipped with
  27. the ARM Nested Vectored Interrupt Controller (NVIC).
  28. config CODE_DATA_RELOCATION
  29. bool "Relocate code/data sections"
  30. depends on CPU_CORTEX_M
  31. help
  32. When selected this will relocate .text, data and .bss sections from
  33. the specified files and places it in the required memory region. The
  34. files should be specified in the CMakeList.txt file with
  35. a cmake API zephyr_code_relocate().
  36. config CODE_DATA_RELOCATION_SRAM
  37. bool "Relocate code/data sections to SRAM"
  38. depends on CPU_CORTEX_M
  39. select CODE_DATA_RELOCATION
  40. help
  41. When selected this will relocate .text, data and .bss sections from
  42. the specified files and places it in SRAM. The files should be specified
  43. in the CMakeList.txt file with a cmake API zephyr_code_relocate(). This
  44. config is used to create an MPU entry for the SRAM space used for code
  45. relocation.
  46. rsource "core/aarch32/Kconfig"
  47. endmenu