Merge tag 'watchdog-for-linus-v4.11-2' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / Documentation / devicetree / bindings / regulator / cpcap-regulator.txt
CommitLineData
0ad4c07e
TL
1Motorola CPCAP PMIC voltage regulators
2------------------------------------
3
4Requires node properties:
5- "compatible" value one of:
6 "motorola,cpcap-regulator"
7 "motorola,mapphone-cpcap-regulator"
8
9Required regulator properties:
10- "regulator-name"
11- "regulator-enable-ramp-delay"
12- "regulator-min-microvolt"
13- "regulator-max-microvolt"
14
15Optional regulator properties:
16- "regulator-boot-on"
17
18See Documentation/devicetree/bindings/regulator/regulator.txt
19for more details about the regulator properties.
20
21Example:
22
23cpcap_regulator: regulator {
24 compatible = "motorola,cpcap-regulator";
25
26 cpcap_regulators: regulators {
27 sw5: SW5 {
28 regulator-min-microvolt = <5050000>;
29 regulator-max-microvolt = <5050000>;
30 regulator-enable-ramp-delay = <50000>;
31 regulator-boot-on;
32 };
33 };
34};