51 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/alphascale,asm9260-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Alphascale asm9260 SoC Real Time Clock8 9maintainers:10 - Javier Carrasco <javier.carrasco.cruz@gmail.com>11 12allOf:13 - $ref: rtc.yaml#14 15properties:16 compatible:17 const: alphascale,asm9260-rtc18 19 reg:20 maxItems: 121 22 clocks:23 maxItems: 124 25 clock-names:26 const: ahb27 28 interrupts:29 maxItems: 130 31required:32 - compatible33 - reg34 - clocks35 - clock-names36 - interrupts37 38unevaluatedProperties: false39 40examples:41 - |42 #include <dt-bindings/clock/alphascale,asm9260.h>43 44 rtc@800a0000 {45 compatible = "alphascale,asm9260-rtc";46 reg = <0x800a0000 0x100>;47 clocks = <&acc CLKID_AHB_RTC>;48 clock-names = "ahb";49 interrupts = <2>;50 };51