xref: /openbmc/linux/Documentation/devicetree/bindings/hwmon/ibm,p8-occ-hwmon.txt (revision e65e175b07bef5974045cc42238de99057669ca7)
1Device-tree bindings for I2C-based On-Chip Controller hwmon device
2------------------------------------------------------------------
3
4Required properties:
5 - compatible = "ibm,p8-occ-hwmon";
6 - reg = <I2C address>;			: I2C bus address
7
8Examples:
9
10    i2c-bus@100 {
11        #address-cells = <1>;
12        #size-cells = <0>;
13        clock-frequency = <100000>;
14        < more properties >
15
16        occ-hwmon@1 {
17            compatible = "ibm,p8-occ-hwmon";
18            reg = <0x50>;
19        };
20
21        occ-hwmon@2 {
22            compatible = "ibm,p8-occ-hwmon";
23            reg = <0x51>;
24        };
25    };
26