0001 # SPDX-License-Identifier: GPL-2.0-only
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/timer/mrvl,mmp-timer.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Marvell MMP Timer bindings
0008
0009 maintainers:
0010 - Daniel Lezcano <daniel.lezcano@linaro.org>
0011 - Thomas Gleixner <tglx@linutronix.de>
0012 - Rob Herring <robh+dt@kernel.org>
0013
0014 properties:
0015 $nodename:
0016 pattern: '^timer@[a-f0-9]+$'
0017
0018 compatible:
0019 const: mrvl,mmp-timer
0020
0021 reg:
0022 maxItems: 1
0023
0024 interrupts:
0025 maxItems: 1
0026
0027 clocks:
0028 maxItems: 1
0029
0030 required:
0031 - compatible
0032 - reg
0033 - interrupts
0034
0035 additionalProperties: false
0036
0037 examples:
0038 - |
0039 timer@d4014000 {
0040 compatible = "mrvl,mmp-timer";
0041 reg = <0xd4014000 0x100>;
0042 interrupts = <13>;
0043 clocks = <&coreclk 2>;
0044 };
0045
0046 ...