hpe,gxp-timer.yaml 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/timer/hpe,gxp-timer.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: HPE GXP Timer
  7. maintainers:
  8. - Nick Hawkins <nick.hawkins@hpe.com>
  9. - Jean-Marie Verdun <verdun@hpe.com>
  10. properties:
  11. compatible:
  12. const: hpe,gxp-timer
  13. reg:
  14. maxItems: 1
  15. interrupts:
  16. maxItems: 1
  17. clocks:
  18. maxItems: 1
  19. clock-names:
  20. const: iop
  21. required:
  22. - compatible
  23. - reg
  24. - interrupts
  25. - clocks
  26. - clock-names
  27. additionalProperties: false
  28. examples:
  29. - |
  30. timer@c0000000 {
  31. compatible = "hpe,gxp-timer";
  32. reg = <0x80 0x16>;
  33. interrupts = <0>;
  34. interrupt-parent = <&vic0>;
  35. clocks = <&iopclk>;
  36. clock-names = "iop";
  37. };