diff options
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/regulator/max8973-regulator.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/regulator/max8973-regulator.txt b/Documentation/devicetree/bindings/regulator/max8973-regulator.txt new file mode 100644 index 000000000000..4f15d8a1bfd0 --- /dev/null +++ b/Documentation/devicetree/bindings/regulator/max8973-regulator.txt | |||
@@ -0,0 +1,21 @@ | |||
1 | * Maxim MAX8973 Voltage Regulator | ||
2 | |||
3 | Required properties: | ||
4 | |||
5 | - compatible: must be "maxim,max8973" | ||
6 | - reg: the i2c slave address of the regulator. It should be 0x1b. | ||
7 | |||
8 | Any standard regulator properties can be used to configure the single max8973 | ||
9 | DCDC. | ||
10 | |||
11 | Example: | ||
12 | |||
13 | max8973@1b { | ||
14 | compatible = "maxim,max8973"; | ||
15 | reg = <0x1b>; | ||
16 | |||
17 | regulator-min-microvolt = <935000>; | ||
18 | regulator-max-microvolt = <1200000>; | ||
19 | regulator-boot-on; | ||
20 | regulator-always-on; | ||
21 | }; | ||