omap-hwspinlock.txt 848 B

1234567891011121314151617181920212223242526
  1. OMAP4+ HwSpinlock Driver
  2. ========================
  3. Required properties:
  4. - compatible: Should be "ti,omap4-hwspinlock" for
  5. OMAP44xx, OMAP54xx, AM33xx, AM43xx, DRA7xx SoCs
  6. - reg: Contains the hwspinlock module register address space
  7. (base address and length)
  8. - ti,hwmods: Name of the hwmod associated with the hwspinlock device
  9. - #hwlock-cells: Should be 1. The OMAP hwspinlock users will use a
  10. 0-indexed relative hwlock number as the argument
  11. specifier value for requesting a specific hwspinlock
  12. within a hwspinlock bank.
  13. Please look at the generic hwlock binding for usage information for consumers,
  14. "Documentation/devicetree/bindings/hwlock/hwlock.txt"
  15. Example:
  16. /* OMAP4 */
  17. hwspinlock: spinlock@4a0f6000 {
  18. compatible = "ti,omap4-hwspinlock";
  19. reg = <0x4a0f6000 0x1000>;
  20. ti,hwmods = "spinlock";
  21. #hwlock-cells = <1>;
  22. };