Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # SPDX-License-Identifier: Apache-2.0
  2. choice
  3. prompt "SoC/CPU/Configuration Selection"
  4. # This loads custom SoC root Kconfig (only available if custom SoC root are defined)
  5. osource "$(KCONFIG_BINARY_DIR)/Kconfig.soc"
  6. # This loads Zephyr base SoC root Kconfig
  7. osource "soc/$(ARCH)/*/Kconfig.soc"
  8. endchoice
  9. menu "Hardware Configuration"
  10. # This loads custom SoC root Kconfig (only available if custom SoC root are defined)
  11. osource "$(KCONFIG_BINARY_DIR)/Kconfig.soc.arch"
  12. # This loads Zephyr base SoC Kconfigs
  13. osource "soc/$(ARCH)/Kconfig"
  14. osource "soc/$(ARCH)/*/Kconfig"
  15. module = SOC
  16. module-str = SOC
  17. source "subsys/logging/Kconfig.template.log_config"
  18. endmenu
  19. # The helper symbols below are put here due to an unusual setup: The simulated
  20. # nrf52_bsim board uses the POSIX arch, but is compatible with Nordic ARM
  21. # boards
  22. config SOC_COMPATIBLE_NRF
  23. bool
  24. config SOC_COMPATIBLE_NRF52X
  25. bool
  26. config SOC_COMPATIBLE_NRF52832
  27. bool
  28. #
  29. # SOC_*_LD: SoC specific Linker script additions
  30. #
  31. config SOC_DEPRECATED_RELEASE
  32. string
  33. help
  34. This hidden option is set in the SoC configuration and indicates
  35. the Zephyr release that the SoC configuration will be removed.
  36. When set, any build for that SoC will generate a clearly visible
  37. deprecation warning.
  38. config SOC_HAS_TIMING_FUNCTIONS
  39. bool
  40. help
  41. Should be selected if SoC provides custom method for retrieving
  42. timestamps and cycle count.