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/socionext,milbeaut-timer.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Milbeaut SoCs Timer Controller 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Sugaya Taichi <sugaya.taichi@socionext.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot const: socionext,milbeaut-timer 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadot reg: 17*ae5de77eSEmmanuel Vadot maxItems: 1 18*ae5de77eSEmmanuel Vadot 19*ae5de77eSEmmanuel Vadot interrupts: 20*ae5de77eSEmmanuel Vadot maxItems: 1 21*ae5de77eSEmmanuel Vadot 22*ae5de77eSEmmanuel Vadot clocks: 23*ae5de77eSEmmanuel Vadot maxItems: 1 24*ae5de77eSEmmanuel Vadot 25*ae5de77eSEmmanuel Vadotrequired: 26*ae5de77eSEmmanuel Vadot - compatible 27*ae5de77eSEmmanuel Vadot - reg 28*ae5de77eSEmmanuel Vadot - interrupts 29*ae5de77eSEmmanuel Vadot - clocks 30*ae5de77eSEmmanuel Vadot 31*ae5de77eSEmmanuel VadotadditionalProperties: false 32*ae5de77eSEmmanuel Vadot 33*ae5de77eSEmmanuel Vadotexamples: 34*ae5de77eSEmmanuel Vadot - | 35*ae5de77eSEmmanuel Vadot timer@1e000050 { 36*ae5de77eSEmmanuel Vadot compatible = "socionext,milbeaut-timer"; 37*ae5de77eSEmmanuel Vadot reg = <0x1e000050 0x20>; 38*ae5de77eSEmmanuel Vadot interrupts = <0 91 4>; 39*ae5de77eSEmmanuel Vadot clocks = <&clk 4>; 40*ae5de77eSEmmanuel Vadot }; 41