-
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.
Merge remote-tracking branch 'regulator/topic/88pm800' into regulator…
…-next
- Loading branch information
Showing
9 changed files
with
732 additions
and
275 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,38 @@ | ||
Marvell 88PM800 regulator | ||
|
||
Required properties: | ||
- compatible: "marvell,88pm800" | ||
- reg: I2C slave address | ||
- regulators: A node that houses a sub-node for each regulator within the | ||
device. Each sub-node is identified using the node's name (or the deprecated | ||
regulator-compatible property if present), with valid values listed below. | ||
The content of each sub-node is defined by the standard binding for | ||
regulators; see regulator.txt. | ||
|
||
The valid names for regulators are: | ||
|
||
buck1, buck2, buck3, buck4, buck5, ldo1, ldo2, ldo3, ldo4, ldo5, ldo6, ldo7, | ||
ldo8, ldo9, ldo10, ldo11, ldo12, ldo13, ldo14, ldo15, ldo16, ldo17, ldo18, ldo19 | ||
|
||
Example: | ||
|
||
pmic: 88pm800@31 { | ||
compatible = "marvell,88pm800"; | ||
reg = <0x31>; | ||
|
||
regulators { | ||
buck1 { | ||
regulator-min-microvolt = <600000>; | ||
regulator-max-microvolt = <3950000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
ldo1 { | ||
regulator-min-microvolt = <600000>; | ||
regulator-max-microvolt = <15000000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
... | ||
}; | ||
}; |
Oops, something went wrong.