mirror of
https://github.com/torvalds/linux.git
synced 2024-12-21 18:42:44 +00:00
6c0b319c03
Added support for the CPCAP power management regulator functions on Tegra based Motorola Xoom devices. Added sw2_sw4 value tables, which provide power to the Tegra core and aux devices. Added the Xoom init tables and device tree compatibility match. Signed-off-by: Peter Geis <pgwipeout@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
36 lines
828 B
Plaintext
36 lines
828 B
Plaintext
Motorola CPCAP PMIC voltage regulators
|
|
------------------------------------
|
|
|
|
Requires node properties:
|
|
- "compatible" value one of:
|
|
"motorola,cpcap-regulator"
|
|
"motorola,mapphone-cpcap-regulator"
|
|
"motorola,xoom-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;
|
|
};
|
|
};
|
|
};
|