Kconfig 683 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Generic HWSPINLOCK framework
  3. #
  4. # HWSPINLOCK always gets selected by whoever wants it.
  5. config HWSPINLOCK
  6. tristate
  7. menu "Hardware Spinlock drivers"
  8. config HWSPINLOCK_OMAP
  9. tristate "OMAP Hardware Spinlock device"
  10. depends on ARCH_OMAP4
  11. select HWSPINLOCK
  12. help
  13. Say y here to support the OMAP Hardware Spinlock device (firstly
  14. introduced in OMAP4).
  15. If unsure, say N.
  16. config HSEM_U8500
  17. tristate "STE Hardware Semaphore functionality"
  18. depends on ARCH_U8500
  19. select HWSPINLOCK
  20. help
  21. Say y here to support the STE Hardware Semaphore functionality, which
  22. provides a synchronisation mechanism for the various processor on the
  23. SoC.
  24. If unsure, say N.
  25. endmenu