Merge tag 'staging-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / power / mti,mips-cpc.yaml
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/power/mti,mips-cpc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: MIPS Cluster Power Controller
8
9 description: |
10   Defines a location of the MIPS Cluster Power Controller registers.
11
12 maintainers:
13   - Paul Burton <paulburton@kernel.org>
14
15 properties:
16   compatible:
17     const: mti,mips-cpc
18
19   reg:
20     description: |
21       Base address and size of an unoccupied memory region, which will be
22       used to map the MIPS CPC registers block.
23     maxItems: 1
24
25 required:
26   - compatible
27   - reg
28
29 examples:
30   - |
31     cpc@1bde0000 {
32       compatible = "mti,mips-cpc";
33       reg = <0x1bde0000 0x8000>;
34     };
35 ...