-
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.
yaml --- r: 350466 b: refs/heads/master c: 6116ad9 h: refs/heads/master v: v3
- Loading branch information
Vishwanathrao Badarkhe, Manish
authored and
Mark Brown
committed
Jan 27, 2013
1 parent
0ef74e3
commit 111bd9e
Showing
536 changed files
with
3,813 additions
and
6,356 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b67a2ecb540b3ac08c962742d2142104390ff60c | ||
refs/heads/master: 6116ad94e1205b33a4c96530474844cd2a1ac21d |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
TPS6507x Power Management Integrated Circuit | ||
|
||
Required properties: | ||
- compatible: "ti,tps6507x" | ||
- reg: I2C slave address | ||
- 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 regulator is matched with the regulator-compatible. | ||
|
||
The valid regulator-compatible values are: | ||
tps6507x: vdcdc1, vdcdc2, vdcdc3, vldo1, vldo2 | ||
- xxx-supply: Input voltage supply regulator. | ||
These entries are required if regulators are enabled for a device. | ||
Missing of these properties can cause the regulator registration | ||
fails. | ||
If some of input supply is powered through battery or always-on | ||
supply then also it is require to have these parameters with proper | ||
node handle of always on power supply. | ||
tps6507x: | ||
vindcdc1_2-supply: VDCDC1 and VDCDC2 input. | ||
vindcdc3-supply : VDCDC3 input. | ||
vldo1_2-supply : VLDO1 and VLDO2 input. | ||
|
||
Regulator Optional properties: | ||
- defdcdc_default: It's property of DCDC2 and DCDC3 regulators. | ||
0: If defdcdc pin of DCDC2/DCDC3 is pulled to GND. | ||
1: If defdcdc pin of DCDC2/DCDC3 is driven HIGH. | ||
If this property is not defined, it defaults to 0 (not enabled). | ||
|
||
Example: | ||
|
||
pmu: tps6507x@48 { | ||
compatible = "ti,tps6507x"; | ||
reg = <0x48>; | ||
|
||
vindcdc1_2-supply = <&vbat>; | ||
vindcdc3-supply = <...>; | ||
vinldo1_2-supply = <...>; | ||
|
||
regulators { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
vdcdc1_reg: regulator@0 { | ||
regulator-compatible = "VDCDC1"; | ||
reg = <0>; | ||
regulator-min-microvolt = <3150000>; | ||
regulator-max-microvolt = <3450000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
}; | ||
vdcdc2_reg: regulator@1 { | ||
regulator-compatible = "VDCDC2"; | ||
reg = <1>; | ||
regulator-min-microvolt = <1710000>; | ||
regulator-max-microvolt = <3450000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
defdcdc_default = <1>; | ||
}; | ||
vdcdc3_reg: regulator@2 { | ||
regulator-compatible = "VDCDC3"; | ||
reg = <2>; | ||
regulator-min-microvolt = <950000> | ||
regulator-max-microvolt = <1350000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
defdcdc_default = <1>; | ||
}; | ||
ldo1_reg: regulator@3 { | ||
regulator-compatible = "LDO1"; | ||
reg = <3>; | ||
regulator-min-microvolt = <1710000>; | ||
regulator-max-microvolt = <1890000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
}; | ||
ldo2_reg: regulator@4 { | ||
regulator-compatible = "LDO2"; | ||
reg = <4>; | ||
regulator-min-microvolt = <1140000>; | ||
regulator-max-microvolt = <1320000>; | ||
regulator-always-on; | ||
regulator-boot-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
152 changes: 0 additions & 152 deletions
152
trunk/Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
trunk/Documentation/devicetree/bindings/regulator/tps51632-regulator.txt
This file was deleted.
Oops, something went wrong.
Empty file.
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
Oops, something went wrong.