OSDN Git Service

c1d23c14ddd92694a89a5c632ea76d44c6bf146d
[android-x86/kernel.git] / Documentation / devicetree / bindings / hwmon / ltc2978.txt
1 ltc2978
2
3 Required properties:
4 - compatible: should contain one of:
5   * "lltc,ltc2974"
6   * "lltc,ltc2977"
7   * "lltc,ltc2978"
8   * "lltc,ltc3880"
9   * "lltc,ltc3882"
10   * "lltc,ltc3883"
11   * "lltc,ltc3887"
12   * "lltc,ltm4676"
13 - reg: I2C slave address
14
15 Optional properties:
16 - regulators: A node that houses a sub-node for each regulator controlled by
17   the device. Each sub-node is identified using the node's name, with valid
18   values listed below. The content of each sub-node is defined by the
19   standard binding for regulators; see regulator.txt.
20
21 Valid names of regulators depend on number of supplies supported per device:
22   * ltc2974 : vout0 - vout3
23   * ltc2977 : vout0 - vout7
24   * ltc2978 : vout0 - vout7
25   * ltc3880, ltc3882 : vout0 - vout1
26   * ltc3883 : vout0
27   * ltm4676 : vout0 - vout1
28
29 Example:
30 ltc2978@5e {
31         compatible = "lltc,ltc2978";
32         reg = <0x5e>;
33         regulators {
34                 vout0 {
35                         regulator-name = "FPGA-2.5V";
36                 };
37                 vout2 {
38                         regulator-name = "FPGA-1.5V";
39                 };
40         };
41 };