ralink,rt2880-timer.yaml 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/timer/ralink,rt2880-timer.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Timer present in Ralink family SoCs
  7. maintainers:
  8. - Sergio Paracuellos <sergio.paracuellos@gmail.com>
  9. properties:
  10. compatible:
  11. const: ralink,rt2880-timer
  12. reg:
  13. maxItems: 1
  14. clocks:
  15. maxItems: 1
  16. interrupts:
  17. maxItems: 1
  18. required:
  19. - compatible
  20. - reg
  21. - clocks
  22. - interrupts
  23. additionalProperties: false
  24. examples:
  25. - |
  26. timer@100 {
  27. compatible = "ralink,rt2880-timer";
  28. reg = <0x100 0x20>;
  29. clocks = <&sysc 3>;
  30. interrupt-parent = <&intc>;
  31. interrupts = <1>;
  32. };
  33. ...