-
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: 302254 b: refs/heads/master c: 62f6b08 h: refs/heads/master v: v3
- Loading branch information
Thierry Reding
authored and
Mark Brown
committed
May 4, 2012
1 parent
b1ca844
commit b16777d
Showing
5 changed files
with
186 additions
and
1 deletion.
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: 1c8fa58f4750e9ad722fbf899866c312ffabab67 | ||
refs/heads/master: 62f6b0879304e2169d6bf6221612e8111e342ee7 |
97 changes: 97 additions & 0 deletions
97
trunk/Documentation/devicetree/bindings/regulator/tps6586x.txt
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,97 @@ | ||
TPS6586x family of regulators | ||
|
||
Required properties: | ||
- compatible: "ti,tps6586x" | ||
- reg: I2C slave address | ||
- interrupts: the interrupt outputs of the controller | ||
- #gpio-cells: number of cells to describe a GPIO | ||
- gpio-controller: mark the device as a GPIO controller | ||
- regulators: list of regulators provided by this controller, must be named | ||
after their hardware counterparts: sm[0-2], ldo[0-9] and ldo_rtc | ||
|
||
Each regulator is defined using the standard binding for regulators. | ||
|
||
Example: | ||
|
||
pmu: tps6586x@34 { | ||
compatible = "ti,tps6586x"; | ||
reg = <0x34>; | ||
interrupts = <0 88 0x4>; | ||
|
||
#gpio-cells = <2>; | ||
gpio-controller; | ||
|
||
regulators { | ||
sm0_reg: sm0 { | ||
regulator-min-microvolt = < 725000>; | ||
regulator-max-microvolt = <1500000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
sm1_reg: sm1 { | ||
regulator-min-microvolt = < 725000>; | ||
regulator-max-microvolt = <1500000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
sm2_reg: sm2 { | ||
regulator-min-microvolt = <3000000>; | ||
regulator-max-microvolt = <4550000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
ldo0_reg: ldo0 { | ||
regulator-name = "PCIE CLK"; | ||
regulator-min-microvolt = <3300000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo1_reg: ldo1 { | ||
regulator-min-microvolt = < 725000>; | ||
regulator-max-microvolt = <1500000>; | ||
}; | ||
|
||
ldo2_reg: ldo2 { | ||
regulator-min-microvolt = < 725000>; | ||
regulator-max-microvolt = <1500000>; | ||
}; | ||
|
||
ldo3_reg: ldo3 { | ||
regulator-min-microvolt = <1250000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo4_reg: ldo4 { | ||
regulator-min-microvolt = <1700000>; | ||
regulator-max-microvolt = <2475000>; | ||
}; | ||
|
||
ldo5_reg: ldo5 { | ||
regulator-min-microvolt = <1250000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo6_reg: ldo6 { | ||
regulator-min-microvolt = <1250000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo7_reg: ldo7 { | ||
regulator-min-microvolt = <1250000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo8_reg: ldo8 { | ||
regulator-min-microvolt = <1250000>; | ||
regulator-max-microvolt = <3300000>; | ||
}; | ||
|
||
ldo9_reg: ldo9 { | ||
regulator-min-microvolt = <1250000>; | ||
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
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