-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
regulators: max8660: add DT bindings
This patch adds devicetree bindings for max8660, along with some documentation. Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Mark Brown <broonie@linaro.org>
- Loading branch information
Daniel Mack
authored and
Mark Brown
committed
Aug 2, 2013
1 parent
de492e8
commit abe4c51
Showing
3 changed files
with
129 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Maxim MAX8660 voltage regulator | ||
|
||
Required properties: | ||
- compatible: must be one of "maxim,max8660", "maxim,max8661" | ||
- reg: I2C slave address, usually 0x34 | ||
- any required generic properties defined in regulator.txt | ||
|
||
Example: | ||
|
||
i2c_master { | ||
max8660@34 { | ||
compatible = "maxim,max8660"; | ||
reg = <0x34>; | ||
|
||
regulators { | ||
regulator@0 { | ||
regulator-compatible= "V3(DCDC)"; | ||
regulator-min-microvolt = <725000>; | ||
regulator-max-microvolt = <1800000>; | ||
}; | ||
|
||
regulator@1 { | ||
regulator-compatible= "V4(DCDC)"; | ||
regulator-min-microvolt = <725000>; | ||
regulator-max-microvolt = <1800000>; | ||
}; | ||
|
||
regulator@2 { | ||
regulator-compatible= "V5(LDO)"; | ||
regulator-min-microvolt = <1700000>; | ||
regulator-max-microvolt = <2000000>; | ||
}; | ||
|
||
regulator@3 { | ||
regulator-compatible= "V6(LDO)"; | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
regulator@4 { | ||
regulator-compatible= "V7(LDO)"; | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters