-
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.
regulator: add devicetree bindings for Fairchild FAN53555 regulators
Document the regulator and add a fairchild vendor-prefix. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Mark Brown <broonie@kernel.org>
- Loading branch information
Heiko Stuebner
authored and
Mark Brown
committed
Sep 16, 2014
1 parent
dd7e71f
commit ed801b4
Showing
2 changed files
with
24 additions
and
0 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,23 @@ | ||
Binding for Fairchild FAN53555 regulators | ||
|
||
Required properties: | ||
- compatible: "fcs,fan53555" | ||
- reg: I2C address | ||
|
||
Optional properties: | ||
- fcs,suspend-voltage-selector: declare which of the two available | ||
voltage selector registers should be used for the suspend | ||
voltage. The other one is used for the runtime voltage setting | ||
Possible values are either <0> or <1> | ||
- vin-supply: regulator supplying the vin pin | ||
|
||
Example: | ||
|
||
regulator@40 { | ||
compatible = "fcs,fan53555"; | ||
regulator-name = "fan53555"; | ||
regulator-min-microvolt = <1000000>; | ||
regulator-max-microvolt = <1800000>; | ||
vin-supply = <&parent_reg>; | ||
fcs,suspend-voltage-selector = <1>; | ||
}; |
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