-
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: tps65217: Add device tree support
This commit adds device tree support for tps65217 pmic. And usage details are added to device tree documentation. Driver is tested by using kernel module with regulator set and get APIs. Signed-off-by: AnilKumar Ch <anilkumar@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
- Loading branch information
AnilKumar Ch
authored and
Mark Brown
committed
Jul 12, 2012
1 parent
257ee3c
commit a7f1b63
Showing
4 changed files
with
159 additions
and
3 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,91 @@ | ||
TPS65217 family of regulators | ||
|
||
Required properties: | ||
- compatible: "ti,tps65217" | ||
- reg: I2C slave address | ||
- regulators: list of regulators provided by this controller, must be named | ||
after their hardware counterparts: dcdc[1-3] and ldo[1-4] | ||
- regulators: This is the list of child nodes that specify the regulator | ||
initialization data for defined regulators. Not all regulators for the given | ||
device need to be present. The definition for each of these nodes is defined | ||
using the standard binding for regulators found at | ||
Documentation/devicetree/bindings/regulator/regulator.txt. | ||
|
||
The valid names for regulators are: | ||
tps65217: dcdc1, dcdc2, dcdc3, ldo1, ldo2, ldo3 and ldo4 | ||
|
||
Each regulator is defined using the standard binding for regulators. | ||
|
||
Example: | ||
|
||
tps: tps@24 { | ||
compatible = "ti,tps65217"; | ||
|
||
regulators { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
dcdc1_reg: regulator@0 { | ||
reg = <0>; | ||
regulator-compatible = "dcdc1"; | ||
regulator-min-microvolt = <900000>; | ||
regulator-max-microvolt = <1800000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
dcdc2_reg: regulator@1 { | ||
reg = <1>; | ||
regulator-compatible = "dcdc2"; | ||
regulator-min-microvolt = <900000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
dcdc3_reg: regulator@2 { | ||
reg = <2>; | ||
regulator-compatible = "dcdc3"; | ||
regulator-min-microvolt = <900000>; | ||
regulator-max-microvolt = <1500000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
ldo1_reg: regulator@3 { | ||
reg = <3>; | ||
regulator-compatible = "ldo1"; | ||
regulator-min-microvolt = <1000000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
ldo2_reg: regulator@4 { | ||
reg = <4>; | ||
regulator-compatible = "ldo2"; | ||
regulator-min-microvolt = <900000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
ldo3_reg: regulator@5 { | ||
reg = <5>; | ||
regulator-compatible = "ldo3"; | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
ldo4_reg: regulator@6 { | ||
reg = <6>; | ||
regulator-compatible = "ldo4"; | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
}; | ||
}; |
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
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