xref: /linux/Documentation/devicetree/bindings/power/actions,s500-sps.yaml (revision 84318277d6334c6981ab326d4acc87c6a6ddc9b8)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/power/actions,s500-sps.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Actions Semi Owl Smart Power System (SPS)
8
9maintainers:
10  - Andreas Färber <afaerber@suse.de>
11  - Manivannan Sadhasivam <mani@kernel.org>
12
13properties:
14  compatible:
15    enum:
16      - actions,s500-sps
17      - actions,s700-sps
18      - actions,s900-sps
19
20  reg:
21    maxItems: 1
22
23  '#power-domain-cells':
24    const: 1
25
26required:
27  - compatible
28  - reg
29  - '#power-domain-cells'
30
31additionalProperties: false
32
33examples:
34  - |
35    power-controller@b01b0100 {
36        compatible = "actions,s500-sps";
37        reg = <0xb01b0100 0x100>;
38        #power-domain-cells = <1>;
39    };
40