drm/bridge: Fix assignment of the of_node of the parent to aux bridge
[drm/drm-misc.git] / Documentation / devicetree / bindings / rtc / epson,rx8900.yaml
blobb770149c5fd677137bbeee87178d4188e5a0b59b
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/rtc/epson,rx8900.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: EPSON RX8900 / Microcrystal RV8803 Real-Time Clock
9 maintainers:
10   - Marek Vasut <marex@denx.de>
12 allOf:
13   - $ref: rtc.yaml#
15 properties:
16   compatible:
17     enum:
18       - epson,rx8804
19       - epson,rx8900
20       - microcrystal,rv8803
22   reg:
23     maxItems: 1
25   epson,vdet-disable:
26     type: boolean
27     description: |
28       Disable voltage detector. Should be set if no backup battery is used.
30   trickle-diode-disable: true
32   wakeup-source: true
34 required:
35   - compatible
36   - reg
38 additionalProperties: false
40 examples:
41   - |
42     i2c {
43         #address-cells = <1>;
44         #size-cells = <0>;
46         rtc@32 {
47             compatible = "epson,rx8900";
48             reg = <0x32>;
49             epson,vdet-disable;
50             trickle-diode-disable;
51         };
52     };