diff options
Diffstat (limited to 'Documentation/devicetree/bindings/regulator/act8865-regulator.txt')
-rw-r--r-- | Documentation/devicetree/bindings/regulator/act8865-regulator.txt | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/regulator/act8865-regulator.txt b/Documentation/devicetree/bindings/regulator/act8865-regulator.txt new file mode 100644 index 000000000000..bef1fbb647ca --- /dev/null +++ b/Documentation/devicetree/bindings/regulator/act8865-regulator.txt | |||
@@ -0,0 +1,60 @@ | |||
1 | ACT8865 regulator | ||
2 | ------------------- | ||
3 | |||
4 | Required properties: | ||
5 | - compatible: "active-semi,act8865" | ||
6 | - reg: I2C slave address | ||
7 | |||
8 | Any standard regulator properties can be used to configure the single regulator. | ||
9 | |||
10 | The valid names for regulators are: | ||
11 | DCDC_REG1, DCDC_REG2, DCDC_REG3, LDO_REG1, LDO_REG2, LDO_REG3, LDO_REG4. | ||
12 | |||
13 | Example: | ||
14 | -------- | ||
15 | |||
16 | i2c1: i2c@f0018000 { | ||
17 | pmic: act8865@5b { | ||
18 | compatible = "active-semi,act8865"; | ||
19 | reg = <0x5b>; | ||
20 | status = "disabled"; | ||
21 | |||
22 | regulators { | ||
23 | vcc_1v8_reg: DCDC_REG1 { | ||
24 | regulator-name = "VCC_1V8"; | ||
25 | regulator-min-microvolt = <1800000>; | ||
26 | regulator-max-microvolt = <1800000>; | ||
27 | regulator-always-on; | ||
28 | }; | ||
29 | |||
30 | vcc_1v2_reg: DCDC_REG2 { | ||
31 | regulator-name = "VCC_1V2"; | ||
32 | regulator-min-microvolt = <1100000>; | ||
33 | regulator-max-microvolt = <1300000>; | ||
34 | regulator-suspend-mem-microvolt = <1150000>; | ||
35 | regulator-suspend-standby-microvolt = <1150000>; | ||
36 | regulator-always-on; | ||
37 | }; | ||
38 | |||
39 | vcc_3v3_reg: DCDC_REG3 { | ||
40 | regulator-name = "VCC_3V3"; | ||
41 | regulator-min-microvolt = <3300000>; | ||
42 | regulator-max-microvolt = <3300000>; | ||
43 | regulator-always-on; | ||
44 | }; | ||
45 | |||
46 | vddana_reg: LDO_REG1 { | ||
47 | regulator-name = "VDDANA"; | ||
48 | regulator-min-microvolt = <3300000>; | ||
49 | regulator-max-microvolt = <3300000>; | ||
50 | regulator-always-on; | ||
51 | }; | ||
52 | |||
53 | vddfuse_reg: LDO_REG2 { | ||
54 | regulator-name = "FUSE_2V5"; | ||
55 | regulator-min-microvolt = <2500000>; | ||
56 | regulator-max-microvolt = <2500000>; | ||
57 | }; | ||
58 | }; | ||
59 | }; | ||
60 | }; | ||