sirf,hwspinlock.txt 701 B

12345678910111213141516171819202122232425262728
  1. SIRF Hardware spinlock device Binding
  2. -----------------------------------------------
  3. Required properties :
  4. - compatible : shall contain only one of the following:
  5. "sirf,hwspinlock"
  6. - reg : the register address of hwspinlock
  7. - #hwlock-cells : hwlock users only use the hwlock id to represent a specific
  8. hwlock, so the number of cells should be <1> here.
  9. Please look at the generic hwlock binding for usage information for consumers,
  10. "Documentation/devicetree/bindings/hwlock/hwlock.txt"
  11. Example of hwlock provider:
  12. hwlock {
  13. compatible = "sirf,hwspinlock";
  14. reg = <0x13240000 0x00010000>;
  15. #hwlock-cells = <1>;
  16. };
  17. Example of hwlock users:
  18. node {
  19. ...
  20. hwlocks = <&hwlock 2>;
  21. ...
  22. };