Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | Motorola CPCAP PMIC voltage regulators |
| 2 | ------------------------------------ |
| 3 | |
| 4 | Requires node properties: |
| 5 | - "compatible" value one of: |
| 6 | "motorola,cpcap-regulator" |
| 7 | "motorola,mapphone-cpcap-regulator" |
| 8 | "motorola,xoom-cpcap-regulator" |
| 9 | |
| 10 | Required regulator properties: |
| 11 | - "regulator-name" |
| 12 | - "regulator-enable-ramp-delay" |
| 13 | - "regulator-min-microvolt" |
| 14 | - "regulator-max-microvolt" |
| 15 | |
| 16 | Optional regulator properties: |
| 17 | - "regulator-boot-on" |
| 18 | |
| 19 | See Documentation/devicetree/bindings/regulator/regulator.txt |
| 20 | for more details about the regulator properties. |
| 21 | |
| 22 | Example: |
| 23 | |
| 24 | cpcap_regulator: regulator { |
| 25 | compatible = "motorola,cpcap-regulator"; |
| 26 | |
| 27 | cpcap_regulators: regulators { |
| 28 | sw5: SW5 { |
| 29 | regulator-min-microvolt = <5050000>; |
| 30 | regulator-max-microvolt = <5050000>; |
| 31 | regulator-enable-ramp-delay = <50000>; |
| 32 | regulator-boot-on; |
| 33 | }; |
| 34 | }; |
| 35 | }; |