1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/marvell,orion-timer.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Marvell Orion SoC timer 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Andrew Lunn <andrew@lunn.ch> 11*ae5de77eSEmmanuel Vadot - Gregory Clement <gregory.clement@bootlin.com> 12*ae5de77eSEmmanuel Vadot 13*ae5de77eSEmmanuel Vadotproperties: 14*ae5de77eSEmmanuel Vadot compatible: 15*ae5de77eSEmmanuel Vadot const: marvell,orion-timer 16*ae5de77eSEmmanuel Vadot 17*ae5de77eSEmmanuel Vadot reg: 18*ae5de77eSEmmanuel Vadot maxItems: 1 19*ae5de77eSEmmanuel Vadot 20*ae5de77eSEmmanuel Vadot clocks: 21*ae5de77eSEmmanuel Vadot maxItems: 1 22*ae5de77eSEmmanuel Vadot 23*ae5de77eSEmmanuel Vadot interrupts: 24*ae5de77eSEmmanuel Vadot items: 25*ae5de77eSEmmanuel Vadot - description: Timer0 interrupt 26*ae5de77eSEmmanuel Vadot - description: Timer1 interrupt 27*ae5de77eSEmmanuel Vadot 28*ae5de77eSEmmanuel Vadotrequired: 29*ae5de77eSEmmanuel Vadot - compatible 30*ae5de77eSEmmanuel Vadot - reg 31*ae5de77eSEmmanuel Vadot - interrupts 32*ae5de77eSEmmanuel Vadot - clocks 33*ae5de77eSEmmanuel Vadot 34*ae5de77eSEmmanuel VadotadditionalProperties: false 35*ae5de77eSEmmanuel Vadot 36*ae5de77eSEmmanuel Vadotexamples: 37*ae5de77eSEmmanuel Vadot - | 38*ae5de77eSEmmanuel Vadot timer@20300 { 39*ae5de77eSEmmanuel Vadot compatible = "marvell,orion-timer"; 40*ae5de77eSEmmanuel Vadot reg = <0x20300 0x20>; 41*ae5de77eSEmmanuel Vadot interrupts = <1>, <2>; 42*ae5de77eSEmmanuel Vadot clocks = <&core_clk 0>; 43*ae5de77eSEmmanuel Vadot }; 44