mrvl,mmp-timer.yaml 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/timer/mrvl,mmp-timer.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Marvell MMP Timer
  7. maintainers:
  8. - Daniel Lezcano <daniel.lezcano@linaro.org>
  9. - Thomas Gleixner <tglx@linutronix.de>
  10. - Rob Herring <robh@kernel.org>
  11. properties:
  12. $nodename:
  13. pattern: '^timer@[a-f0-9]+$'
  14. compatible:
  15. const: mrvl,mmp-timer
  16. reg:
  17. maxItems: 1
  18. interrupts:
  19. maxItems: 1
  20. clocks:
  21. maxItems: 1
  22. required:
  23. - compatible
  24. - reg
  25. - interrupts
  26. additionalProperties: false
  27. examples:
  28. - |
  29. timer@d4014000 {
  30. compatible = "mrvl,mmp-timer";
  31. reg = <0xd4014000 0x100>;
  32. interrupts = <13>;
  33. clocks = <&coreclk 2>;
  34. };
  35. ...