brintos

brintos / linux-shallow public Read only

0
0
Text · 713 B · 75624dd Raw
40 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/mediatek,mt2712-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: MediaTek MT2712 on-SoC RTC8 9allOf:10  - $ref: rtc.yaml#11 12maintainers:13  - Ran Bi <ran.bi@mediatek.com>14 15properties:16  compatible:17    const: mediatek,mt2712-rtc18 19  reg:20    maxItems: 121 22  interrupts:23    maxItems: 124 25required:26  - reg27  - interrupts28 29unevaluatedProperties: false30 31examples:32  - |33    #include <dt-bindings/interrupt-controller/arm-gic.h>34 35    rtc@10011000 {36        compatible = "mediatek,mt2712-rtc";37        reg = <0x10011000 0x1000>;38        interrupts = <GIC_SPI 239 IRQ_TYPE_LEVEL_LOW>;39    };40