Kconfig 887 B

123456789101112131415161718192021222324252627282930
  1. config ARCH_SUPPORTS_FIRMWARE
  2. bool
  3. config ARCH_SUPPORTS_TRUSTED_FOUNDATIONS
  4. bool
  5. select ARCH_SUPPORTS_FIRMWARE
  6. menu "Firmware options"
  7. depends on ARCH_SUPPORTS_FIRMWARE
  8. config TRUSTED_FOUNDATIONS
  9. bool "Trusted Foundations secure monitor support"
  10. depends on ARCH_SUPPORTS_TRUSTED_FOUNDATIONS
  11. default y
  12. help
  13. Some devices (including most Tegra-based consumer devices on the
  14. market) are booted with the Trusted Foundations secure monitor
  15. active, requiring some core operations to be performed by the secure
  16. monitor instead of the kernel.
  17. This option allows the kernel to invoke the secure monitor whenever
  18. required on devices using Trusted Foundations. See
  19. arch/arm/include/asm/trusted_foundations.h or the
  20. tlm,trusted-foundations device tree binding documentation for details
  21. on how to use it.
  22. Say n if you don't know what this is about.
  23. endmenu