Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux
[deliverable/linux.git] / Documentation / devicetree / bindings / regulator / tps65217.txt
CommitLineData
a7f1b63e
AC
1TPS65217 family of regulators
2
3Required properties:
4- compatible: "ti,tps65217"
5- reg: I2C slave address
6- regulators: list of regulators provided by this controller, must be named
7 after their hardware counterparts: dcdc[1-3] and ldo[1-4]
8- regulators: This is the list of child nodes that specify the regulator
9 initialization data for defined regulators. Not all regulators for the given
10 device need to be present. The definition for each of these nodes is defined
11 using the standard binding for regulators found at
12 Documentation/devicetree/bindings/regulator/regulator.txt.
13
eb433dad
CFP
14Optional properties:
15- ti,pmic-shutdown-controller: Telling the PMIC to shutdown on PWR_EN toggle.
16
a7f1b63e
AC
17 The valid names for regulators are:
18 tps65217: dcdc1, dcdc2, dcdc3, ldo1, ldo2, ldo3 and ldo4
19
20Each regulator is defined using the standard binding for regulators.
21
22Example:
23
24 tps: tps@24 {
25 compatible = "ti,tps65217";
eb433dad 26 ti,pmic-shutdown-controller;
a7f1b63e
AC
27
28 regulators {
8e6ebfaa
HS
29 #address-cells = <1>;
30 #size-cells = <0>;
31
69760cb4 32 dcdc1_reg: dcdc1 {
8e6ebfaa 33 reg = <0>;
a7f1b63e
AC
34 regulator-min-microvolt = <900000>;
35 regulator-max-microvolt = <1800000>;
36 regulator-boot-on;
37 regulator-always-on;
38 };
39
69760cb4 40 dcdc2_reg: dcdc2 {
8e6ebfaa 41 reg = <1>;
a7f1b63e
AC
42 regulator-min-microvolt = <900000>;
43 regulator-max-microvolt = <3300000>;
44 regulator-boot-on;
45 regulator-always-on;
46 };
47
69760cb4 48 dcdc3_reg: dcc3 {
8e6ebfaa 49 reg = <2>;
a7f1b63e
AC
50 regulator-min-microvolt = <900000>;
51 regulator-max-microvolt = <1500000>;
52 regulator-boot-on;
53 regulator-always-on;
54 };
55
69760cb4 56 ldo1_reg: ldo1 {
8e6ebfaa 57 reg = <3>;
a7f1b63e
AC
58 regulator-min-microvolt = <1000000>;
59 regulator-max-microvolt = <3300000>;
60 regulator-boot-on;
61 regulator-always-on;
62 };
63
69760cb4 64 ldo2_reg: ldo2 {
8e6ebfaa 65 reg = <4>;
a7f1b63e
AC
66 regulator-min-microvolt = <900000>;
67 regulator-max-microvolt = <3300000>;
68 regulator-boot-on;
69 regulator-always-on;
70 };
71
69760cb4 72 ldo3_reg: ldo3 {
8e6ebfaa 73 reg = <5>;
a7f1b63e
AC
74 regulator-min-microvolt = <1800000>;
75 regulator-max-microvolt = <3300000>;
76 regulator-boot-on;
77 regulator-always-on;
78 };
79
69760cb4 80 ldo4_reg: ldo4 {
8e6ebfaa 81 reg = <6>;
a7f1b63e
AC
82 regulator-min-microvolt = <1800000>;
83 regulator-max-microvolt = <3300000>;
84 regulator-boot-on;
85 regulator-always-on;
86 };
87 };
88 };
This page took 0.189486 seconds and 5 git commands to generate.