blob: 644f391afb321513e8379cdb4870bf9a00393af4 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/arm/sunxi/allwinner,sun9i-a80-prcm.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Allwinner A80 PRCM
8
9maintainers:
10 - Chen-Yu Tsai <wens@csie.org>
11 - Maxime Ripard <mripard@kernel.org>
12
13properties:
14 compatible:
15 const: allwinner,sun9i-a80-prcm
16
17 reg:
18 maxItems: 1
19
20required:
21 - compatible
22 - reg
23
24additionalProperties: false
25
26examples:
27 - |
28 prcm@8001400 {
29 compatible = "allwinner,sun9i-a80-prcm";
30 reg = <0x08001400 0x200>;
31 };
32
33...