forked from Minki/linux
0ad4c07edd
Many Motorola phones like droid 4 are using a custom PMIC called CPCAP or 6556002. This PMIC is used with several SoCs, I've noticed at least omap3, omap4 and Tegra2 based Motorola phones and tablets using it. Cc: devicetree@vger.kernel.org Cc: Marcel Partap <mpartap@gmx.net> Cc: Michael Scott <michael.scott@linaro.org> Cc: Rob Herring <robh@kernel.org> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Mark Brown <broonie@kernel.org>
35 lines
792 B
Plaintext
35 lines
792 B
Plaintext
Motorola CPCAP PMIC voltage regulators
|
|
------------------------------------
|
|
|
|
Requires node properties:
|
|
- "compatible" value one of:
|
|
"motorola,cpcap-regulator"
|
|
"motorola,mapphone-cpcap-regulator"
|
|
|
|
Required regulator properties:
|
|
- "regulator-name"
|
|
- "regulator-enable-ramp-delay"
|
|
- "regulator-min-microvolt"
|
|
- "regulator-max-microvolt"
|
|
|
|
Optional regulator properties:
|
|
- "regulator-boot-on"
|
|
|
|
See Documentation/devicetree/bindings/regulator/regulator.txt
|
|
for more details about the regulator properties.
|
|
|
|
Example:
|
|
|
|
cpcap_regulator: regulator {
|
|
compatible = "motorola,cpcap-regulator";
|
|
|
|
cpcap_regulators: regulators {
|
|
sw5: SW5 {
|
|
regulator-min-microvolt = <5050000>;
|
|
regulator-max-microvolt = <5050000>;
|
|
regulator-enable-ramp-delay = <50000>;
|
|
regulator-boot-on;
|
|
};
|
|
};
|
|
};
|