brintos

brintos / linux-shallow public Read only

0
0
Text · 967 B · 3dbdc5a Raw
40 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/hwmon/ibm,occ-hwmon.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: IBM On-Chip Controller (OCC) accessed from a service processor8 9maintainers:10  - Eddie James <eajames@linux.ibm.com>11 12description: |13  The POWER processor On-Chip Controller (OCC) helps manage power and14  thermals for the system. A service processor or baseboard management15  controller can query the OCC for it's power and thermal data to report16  through hwmon.17 18properties:19  compatible:20    enum:21      - ibm,p9-occ-hwmon22      - ibm,p10-occ-hwmon23 24  ibm,no-poll-on-init:25    description: This property describes whether or not the OCC should26      be polled during driver initialization.27    type: boolean28 29required:30  - compatible31 32additionalProperties: false33 34examples:35  - |36    hwmon {37        compatible = "ibm,p10-occ-hwmon";38        ibm,no-poll-on-init;39    };40