brintos

brintos / linux-shallow public Read only

0
0
Text · 986 B · c8bb2ee Raw
55 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Atmel AT91 RTC8 9allOf:10  - $ref: rtc.yaml#11 12maintainers:13  - Alexandre Belloni <alexandre.belloni@bootlin.com>14 15properties:16  compatible:17    oneOf:18      - enum:19          - atmel,at91rm9200-rtc20          - atmel,at91sam9x5-rtc21          - atmel,sama5d4-rtc22          - atmel,sama5d2-rtc23          - microchip,sam9x60-rtc24          - microchip,sama7g5-rtc25      - items:26          - const: microchip,sam9x7-rtc27          - const: microchip,sam9x60-rtc28 29  reg:30    maxItems: 131 32  interrupts:33    maxItems: 134 35  clocks:36    maxItems: 137 38required:39  - compatible40  - reg41  - interrupts42  - clocks43 44additionalProperties: false45 46examples:47  - |48    rtc@fffffe00 {49        compatible = "atmel,at91rm9200-rtc";50        reg = <0xfffffe00 0x100>;51        interrupts = <1 4 7>;52        clocks = <&clk32k>;53    };54...55