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/timer/cirrus,clps711x-timer.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Cirrus Logic CLPS711X Timer Counter 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Alexander Shiyan <shc_work@mail.ru> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot oneOf: 15*ae5de77eSEmmanuel Vadot - items: 16*ae5de77eSEmmanuel Vadot - enum: 17*ae5de77eSEmmanuel Vadot - cirrus,ep7312-timer 18*ae5de77eSEmmanuel Vadot - const: cirrus,ep7209-timer 19*ae5de77eSEmmanuel Vadot - const: cirrus,ep7209-timer 20*ae5de77eSEmmanuel Vadot 21*ae5de77eSEmmanuel Vadot reg: 22*ae5de77eSEmmanuel Vadot maxItems: 1 23*ae5de77eSEmmanuel Vadot 24*ae5de77eSEmmanuel Vadot clocks: 25*ae5de77eSEmmanuel Vadot maxItems: 1 26*ae5de77eSEmmanuel Vadot 27*ae5de77eSEmmanuel Vadot interrupts: 28*ae5de77eSEmmanuel Vadot maxItems: 1 29*ae5de77eSEmmanuel Vadot 30*ae5de77eSEmmanuel Vadotrequired: 31*ae5de77eSEmmanuel Vadot - compatible 32*ae5de77eSEmmanuel Vadot - reg 33*ae5de77eSEmmanuel Vadot - clocks 34*ae5de77eSEmmanuel Vadot - interrupts 35*ae5de77eSEmmanuel Vadot 36*ae5de77eSEmmanuel VadotadditionalProperties: false 37*ae5de77eSEmmanuel Vadot 38*ae5de77eSEmmanuel Vadotexamples: 39*ae5de77eSEmmanuel Vadot - | 40*ae5de77eSEmmanuel Vadot timer@80000300 { 41*ae5de77eSEmmanuel Vadot compatible = "cirrus,ep7312-timer", "cirrus,ep7209-timer"; 42*ae5de77eSEmmanuel Vadot reg = <0x80000300 0x4>; 43*ae5de77eSEmmanuel Vadot interrupts = <8>; 44*ae5de77eSEmmanuel Vadot clocks = <&clks 5>; 45*ae5de77eSEmmanuel Vadot }; 46