1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/soc/bcm/brcm,bcm23550-cdc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Broadcom BCM23550 Cluster Dormant Control
8
9description:
10  The Cluster Dormant Control block keeps the CPU in idle state. A command
11  needs to be sent to this block to bring the CPU into running state.
12
13maintainers:
14  - Florian Fainelli <f.fainelli@gmail.com>
15
16properties:
17  compatible:
18    const: brcm,bcm23550-cdc
19
20  reg:
21    maxItems: 1
22
23required:
24  - compatible
25  - reg
26
27additionalProperties: false
28
29examples:
30  - |
31    cdc@3fe0e000 {
32        compatible = "brcm,bcm23550-cdc";
33        reg = <0x3fe0e000 0x78>;
34    };
35...
36