brintos

brintos / linux-shallow public Read only

0
0
Text · 707 B · 054e1e3 Raw
44 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/allwinner,sun4i-a10-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Allwinner A10 RTC8 9allOf:10  - $ref: rtc.yaml#11 12maintainers:13  - Chen-Yu Tsai <wens@csie.org>14  - Maxime Ripard <mripard@kernel.org>15 16properties:17  compatible:18    enum:19      - allwinner,sun4i-a10-rtc20      - allwinner,sun7i-a20-rtc21 22  reg:23    maxItems: 124 25  interrupts:26    maxItems: 127 28required:29  - compatible30  - reg31  - interrupts32 33additionalProperties: false34 35examples:36  - |37    rtc: rtc@1c20d00 {38        compatible = "allwinner,sun4i-a10-rtc";39        reg = <0x01c20d00 0x20>;40        interrupts = <24>;41    };42 43...44