1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/socionext,milbeaut-timer.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Milbeaut SoCs Timer Controller 8 9maintainers: 10 - Sugaya Taichi <sugaya.taichi@socionext.com> 11 12properties: 13 compatible: 14 const: socionext,milbeaut-timer 15 16 reg: 17 maxItems: 1 18 19 interrupts: 20 maxItems: 1 21 22 clocks: 23 maxItems: 1 24 25required: 26 - compatible 27 - reg 28 - interrupts 29 - clocks 30 31additionalProperties: false 32 33examples: 34 - | 35 timer@1e000050 { 36 compatible = "socionext,milbeaut-timer"; 37 reg = <0x1e000050 0x20>; 38 interrupts = <0 91 4>; 39 clocks = <&clk 4>; 40 }; 41