1*84943d6fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*84943d6fSEmmanuel Vadot%YAML 1.2 3*84943d6fSEmmanuel Vadot--- 4*84943d6fSEmmanuel Vadot$id: http://devicetree.org/schemas/timer/cirrus,ep9301-timer.yaml# 5*84943d6fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*84943d6fSEmmanuel Vadot 7*84943d6fSEmmanuel Vadottitle: Cirrus Logic EP93xx timer 8*84943d6fSEmmanuel Vadot 9*84943d6fSEmmanuel Vadotmaintainers: 10*84943d6fSEmmanuel Vadot - Alexander Sverdlin <alexander.sverdlin@gmail.com> 11*84943d6fSEmmanuel Vadot - Nikita Shubin <nikita.shubin@maquefel.me> 12*84943d6fSEmmanuel Vadot 13*84943d6fSEmmanuel Vadotproperties: 14*84943d6fSEmmanuel Vadot compatible: 15*84943d6fSEmmanuel Vadot oneOf: 16*84943d6fSEmmanuel Vadot - const: cirrus,ep9301-timer 17*84943d6fSEmmanuel Vadot - items: 18*84943d6fSEmmanuel Vadot - enum: 19*84943d6fSEmmanuel Vadot - cirrus,ep9302-timer 20*84943d6fSEmmanuel Vadot - cirrus,ep9307-timer 21*84943d6fSEmmanuel Vadot - cirrus,ep9312-timer 22*84943d6fSEmmanuel Vadot - cirrus,ep9315-timer 23*84943d6fSEmmanuel Vadot - const: cirrus,ep9301-timer 24*84943d6fSEmmanuel Vadot 25*84943d6fSEmmanuel Vadot reg: 26*84943d6fSEmmanuel Vadot maxItems: 1 27*84943d6fSEmmanuel Vadot 28*84943d6fSEmmanuel Vadot interrupts: 29*84943d6fSEmmanuel Vadot maxItems: 1 30*84943d6fSEmmanuel Vadot 31*84943d6fSEmmanuel Vadot resets: 32*84943d6fSEmmanuel Vadot maxItems: 1 33*84943d6fSEmmanuel Vadot 34*84943d6fSEmmanuel Vadotrequired: 35*84943d6fSEmmanuel Vadot - compatible 36*84943d6fSEmmanuel Vadot - reg 37*84943d6fSEmmanuel Vadot - interrupts 38*84943d6fSEmmanuel Vadot 39*84943d6fSEmmanuel VadotadditionalProperties: false 40*84943d6fSEmmanuel Vadot 41*84943d6fSEmmanuel Vadotexamples: 42*84943d6fSEmmanuel Vadot - | 43*84943d6fSEmmanuel Vadot timer@80810000 { 44*84943d6fSEmmanuel Vadot compatible = "cirrus,ep9301-timer"; 45*84943d6fSEmmanuel Vadot reg = <0x80810000 0x100>; 46*84943d6fSEmmanuel Vadot interrupt-parent = <&vic1>; 47*84943d6fSEmmanuel Vadot interrupts = <19>; 48*84943d6fSEmmanuel Vadot }; 49*84943d6fSEmmanuel Vadot... 50