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