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