Merge tag 'for-5.1/dm-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/devic...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / regulator / max77650-regulator.txt
1 Regulator driver for MAX77650 PMIC from Maxim Integrated.
2
3 This module is part of the MAX77650 MFD device. For more details
4 see Documentation/devicetree/bindings/mfd/max77650.txt.
5
6 The regulator controller is represented as a sub-node of the PMIC node
7 on the device tree.
8
9 The device has a single LDO regulator and a SIMO buck-boost regulator with
10 three independent power rails.
11
12 Required properties:
13 --------------------
14 - compatible:           Must be "maxim,max77650-regulator"
15
16 Each rail must be instantiated under the regulators subnode of the top PMIC
17 node. Up to four regulators can be defined. For standard regulator properties
18 refer to Documentation/devicetree/bindings/regulator/regulator.txt.
19
20 Available regulator compatible strings are: "ldo", "sbb0", "sbb1", "sbb2".
21
22 Example:
23 --------
24
25         regulators {
26                 compatible = "maxim,max77650-regulator";
27
28                 max77650_ldo: regulator@0 {
29                         regulator-compatible = "ldo";
30                         regulator-name = "max77650-ldo";
31                         regulator-min-microvolt = <1350000>;
32                         regulator-max-microvolt = <2937500>;
33                 };
34
35                 max77650_sbb0: regulator@1 {
36                         regulator-compatible = "sbb0";
37                         regulator-name = "max77650-sbb0";
38                         regulator-min-microvolt = <800000>;
39                         regulator-max-microvolt = <1587500>;
40                 };
41         };