Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/timer/hpe,gxp-timer.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: HPE GXP Timer
0008 
0009 maintainers:
0010   - Nick Hawkins <nick.hawkins@hpe.com>
0011   - Jean-Marie Verdun <verdun@hpe.com>
0012 
0013 properties:
0014   compatible:
0015     const: hpe,gxp-timer
0016 
0017   reg:
0018     maxItems: 1
0019 
0020   interrupts:
0021     maxItems: 1
0022 
0023   clocks:
0024     maxItems: 1
0025 
0026   clock-names:
0027     const: iop
0028 
0029 required:
0030   - compatible
0031   - reg
0032   - interrupts
0033   - clocks
0034   - clock-names
0035 
0036 additionalProperties: false
0037 
0038 examples:
0039   - |
0040     timer@c0000000 {
0041         compatible = "hpe,gxp-timer";
0042         reg = <0x80 0x16>;
0043         interrupts = <0>;
0044         interrupt-parent = <&vic0>;
0045         clocks = <&iopclk>;
0046         clock-names = "iop";
0047     };