drm/bridge: Fix assignment of the of_node of the parent to aux bridge
[drm/drm-misc.git] / Documentation / devicetree / bindings / watchdog / ti,davinci-wdt.yaml
blob3c78f60f5f48c93204b98e9c5e451fa7b3789ea5
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/watchdog/ti,davinci-wdt.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: TI DaVinci/Keystone Watchdog Timer Controller
9 maintainers:
10   - Kousik Sanagavarapu <five231003@gmail.com>
12 description: |
13   TI's Watchdog Timer Controller for DaVinci and Keystone Processors.
15   Datasheets
17     Davinci DM646x - https://www.ti.com/lit/ug/spruer5b/spruer5b.pdf
18     Keystone - https://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
20 allOf:
21   - $ref: watchdog.yaml#
23 properties:
24   compatible:
25     oneOf:
26       - items:
27           - const: ti,keystone-wdt
28           - const: ti,davinci-wdt
29       - items:
30           - const: ti,davinci-wdt
32   reg:
33     maxItems: 1
35   power-domains:
36     maxItems: 1
38   clocks:
39     maxItems: 1
41 required:
42   - compatible
43   - reg
45 unevaluatedProperties: false
47 examples:
48   - |
49     wdt: watchdog@22f0080 {
50         compatible = "ti,keystone-wdt", "ti,davinci-wdt";
51         reg = <0x022f0080 0x80>;
52         clocks = <&clkwdtimer0>;
53     };
55 ...