-
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: 365183 b: refs/heads/master c: 22a712b h: refs/heads/master i: 365181: a4aa54a 365179: 555ad5c 365175: 135e0ba 365167: f22c64c 365151: 35979e2 365119: dbb181f 365055: 12caa9c v: v3
- Loading branch information
Mark Brown
committed
Apr 28, 2013
1 parent
2d4e681
commit 854ae2f
Showing
51 changed files
with
5,029 additions
and
795 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: 1864b670902260d1c239f37e984f26de8fbad319 | ||
refs/heads/master: 22a712b90ca5411cb37df82dfb50144c87175fb4 |
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
52 changes: 52 additions & 0 deletions
52
trunk/Documentation/devicetree/bindings/regulator/max8952.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,52 @@ | ||
Maxim MAX8952 voltage regulator | ||
|
||
Required properties: | ||
- compatible: must be equal to "maxim,max8952" | ||
- reg: I2C slave address, usually 0x60 | ||
- max8952,dvs-mode-microvolt: array of 4 integer values defining DVS voltages | ||
in microvolts. All values must be from range <770000, 1400000> | ||
- any required generic properties defined in regulator.txt | ||
|
||
Optional properties: | ||
- max8952,vid-gpios: array of two GPIO pins used for DVS voltage selection | ||
- max8952,en-gpio: GPIO used to control enable status of regulator | ||
- max8952,default-mode: index of default DVS voltage, from <0, 3> range | ||
- max8952,sync-freq: sync frequency, must be one of following values: | ||
- 0: 26 MHz | ||
- 1: 13 MHz | ||
- 2: 19.2 MHz | ||
Defaults to 26 MHz if not specified. | ||
- max8952,ramp-speed: voltage ramp speed, must be one of following values: | ||
- 0: 32mV/us | ||
- 1: 16mV/us | ||
- 2: 8mV/us | ||
- 3: 4mV/us | ||
- 4: 2mV/us | ||
- 5: 1mV/us | ||
- 6: 0.5mV/us | ||
- 7: 0.25mV/us | ||
Defaults to 32mV/us if not specified. | ||
- any available generic properties defined in regulator.txt | ||
|
||
Example: | ||
|
||
vdd_arm_reg: pmic@60 { | ||
compatible = "maxim,max8952"; | ||
reg = <0x60>; | ||
|
||
/* max8952-specific properties */ | ||
max8952,vid-gpios = <&gpx0 3 0>, <&gpx0 4 0>; | ||
max8952,en-gpio = <&gpx0 1 0>; | ||
max8952,default-mode = <0>; | ||
max8952,dvs-mode-microvolt = <1250000>, <1200000>, | ||
<1050000>, <950000>; | ||
max8952,sync-freq = <0>; | ||
max8952,ramp-speed = <0>; | ||
|
||
/* generic regulator properties */ | ||
regulator-name = "vdd_arm"; | ||
regulator-min-microvolt = <770000>; | ||
regulator-max-microvolt = <1400000>; | ||
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
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.