drm/bridge: Fix assignment of the of_node of the parent to aux bridge
[drm/drm-misc.git] / Documentation / devicetree / bindings / rtc / atmel,at91rm9200-rtc.yaml
blobc8bb2eef442dd6a77f8ac8a167ec8cd08a1bfa64
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Atmel AT91 RTC
9 allOf:
10   - $ref: rtc.yaml#
12 maintainers:
13   - Alexandre Belloni <alexandre.belloni@bootlin.com>
15 properties:
16   compatible:
17     oneOf:
18       - enum:
19           - atmel,at91rm9200-rtc
20           - atmel,at91sam9x5-rtc
21           - atmel,sama5d4-rtc
22           - atmel,sama5d2-rtc
23           - microchip,sam9x60-rtc
24           - microchip,sama7g5-rtc
25       - items:
26           - const: microchip,sam9x7-rtc
27           - const: microchip,sam9x60-rtc
29   reg:
30     maxItems: 1
32   interrupts:
33     maxItems: 1
35   clocks:
36     maxItems: 1
38 required:
39   - compatible
40   - reg
41   - interrupts
42   - clocks
44 additionalProperties: false
46 examples:
47   - |
48     rtc@fffffe00 {
49         compatible = "atmel,at91rm9200-rtc";
50         reg = <0xfffffe00 0x100>;
51         interrupts = <1 4 7>;
52         clocks = <&clk32k>;
53     };
54 ...