xref: /linux/Documentation/devicetree/bindings/fsi/ibm,p9-occ.yaml (revision 3663e2c4bc45fcdc71931fcbfcbfbf9b71f55c83)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/fsi/ibm,p9-occ.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: IBM FSI-attached On-Chip Controller (OCC)
8
9maintainers:
10  - Eddie James <eajames@linux.ibm.com>
11
12description:
13  The POWER processor On-Chip Controller (OCC) helps manage power and
14  thermals for the system, accessed through the FSI-attached SBEFIFO
15  from a service processor.
16
17properties:
18  compatible:
19    enum:
20      - ibm,p9-occ
21      - ibm,p10-occ
22
23  hwmon:
24    type: object
25    $ref: /schemas/hwmon/ibm,occ-hwmon.yaml
26
27required:
28  - compatible
29
30additionalProperties: false
31
32examples:
33  - |
34    occ {
35        compatible = "ibm,p9-occ";
36
37        hwmon {
38            compatible = "ibm,p9-occ-hwmon";
39        };
40    };
41