blob: 537eac70447c0733a0d199386d5b44688c4b3657 [file] [log] [blame]
Tom Rini6b642ac2024-10-01 12:20:28 -06001# 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 };