Kconfig 766 B

123456789101112131415161718192021222324
  1. menu "Hardware Spinlock Support"
  2. config DM_HWSPINLOCK
  3. bool "Enable U-Boot hardware spinlock support"
  4. help
  5. This option enables U-Boot hardware spinlock support
  6. config HWSPINLOCK_SANDBOX
  7. bool "Enable Hardware Spinlock support for Sandbox"
  8. depends on SANDBOX && DM_HWSPINLOCK
  9. help
  10. Enable hardware spinlock support in Sandbox. This is a dummy device that
  11. can be probed and support all the methods of HWSPINLOCK, but does not
  12. really do anything.
  13. config HWSPINLOCK_STM32
  14. bool "Enable Hardware Spinlock support for STM32"
  15. depends on ARCH_STM32MP && DM_HWSPINLOCK
  16. help
  17. Enable hardware spinlock support in STM32MP. Hardware spinlocks are
  18. hardware mutex which provide a synchronisation mechanism for the
  19. various processors on the SoC.
  20. endmenu