Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Atmel AT91 RTC Device Tree Bindings
0008 
0009 allOf:
0010   - $ref: "rtc.yaml#"
0011 
0012 maintainers:
0013   - Alexandre Belloni <alexandre.belloni@bootlin.com>
0014 
0015 properties:
0016   compatible:
0017     enum:
0018       - atmel,at91rm9200-rtc
0019       - atmel,at91sam9x5-rtc
0020       - atmel,sama5d4-rtc
0021       - atmel,sama5d2-rtc
0022       - microchip,sam9x60-rtc
0023       - microchip,sama7g5-rtc
0024 
0025   reg:
0026     maxItems: 1
0027 
0028   interrupts:
0029     maxItems: 1
0030 
0031   clocks:
0032     maxItems: 1
0033 
0034 required:
0035   - compatible
0036   - reg
0037   - interrupts
0038   - clocks
0039 
0040 additionalProperties: false
0041 
0042 examples:
0043   - |
0044     rtc@fffffe00 {
0045         compatible = "atmel,at91rm9200-rtc";
0046         reg = <0xfffffe00 0x100>;
0047         interrupts = <1 4 7>;
0048         clocks = <&clk32k>;
0049     };
0050 ...