48 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/timer/hpe,gxp-timer.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: HPE GXP Timer8 9maintainers:10 - Nick Hawkins <nick.hawkins@hpe.com>11 - Jean-Marie Verdun <verdun@hpe.com>12 13properties:14 compatible:15 const: hpe,gxp-timer16 17 reg:18 maxItems: 119 20 interrupts:21 maxItems: 122 23 clocks:24 maxItems: 125 26 clock-names:27 const: iop28 29required:30 - compatible31 - reg32 - interrupts33 - clocks34 - clock-names35 36additionalProperties: false37 38examples:39 - |40 timer@c0000000 {41 compatible = "hpe,gxp-timer";42 reg = <0x80 0x16>;43 interrupts = <0>;44 interrupt-parent = <&vic0>;45 clocks = <&iopclk>;46 clock-names = "iop";47 };48