blob: 4f05d208c95cfeac7ebbc217003d34f08e0f4772 [file] [log] [blame]
AnilKumar Cha7f1b632012-07-10 16:39:42 +05301TPS65217 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
Colin Foe-Parkereb433da2012-11-20 15:18:44 +053014Optional properties:
15- ti,pmic-shutdown-controller: Telling the PMIC to shutdown on PWR_EN toggle.
16
AnilKumar Cha7f1b632012-07-10 16:39:42 +053017 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";
Colin Foe-Parkereb433da2012-11-20 15:18:44 +053026 ti,pmic-shutdown-controller;
AnilKumar Cha7f1b632012-07-10 16:39:42 +053027
28 regulators {
Stephen Warren69760cb2012-09-24 13:25:01 -060029 dcdc1_reg: dcdc1 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053030 regulator-min-microvolt = <900000>;
31 regulator-max-microvolt = <1800000>;
32 regulator-boot-on;
33 regulator-always-on;
34 };
35
Stephen Warren69760cb2012-09-24 13:25:01 -060036 dcdc2_reg: dcdc2 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053037 regulator-min-microvolt = <900000>;
38 regulator-max-microvolt = <3300000>;
39 regulator-boot-on;
40 regulator-always-on;
41 };
42
Stephen Warren69760cb2012-09-24 13:25:01 -060043 dcdc3_reg: dcc3 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053044 regulator-min-microvolt = <900000>;
45 regulator-max-microvolt = <1500000>;
46 regulator-boot-on;
47 regulator-always-on;
48 };
49
Stephen Warren69760cb2012-09-24 13:25:01 -060050 ldo1_reg: ldo1 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053051 regulator-min-microvolt = <1000000>;
52 regulator-max-microvolt = <3300000>;
53 regulator-boot-on;
54 regulator-always-on;
55 };
56
Stephen Warren69760cb2012-09-24 13:25:01 -060057 ldo2_reg: ldo2 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053058 regulator-min-microvolt = <900000>;
59 regulator-max-microvolt = <3300000>;
60 regulator-boot-on;
61 regulator-always-on;
62 };
63
Stephen Warren69760cb2012-09-24 13:25:01 -060064 ldo3_reg: ldo3 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053065 regulator-min-microvolt = <1800000>;
66 regulator-max-microvolt = <3300000>;
67 regulator-boot-on;
68 regulator-always-on;
69 };
70
Stephen Warren69760cb2012-09-24 13:25:01 -060071 ldo4_reg: ldo4 {
AnilKumar Cha7f1b632012-07-10 16:39:42 +053072 regulator-min-microvolt = <1800000>;
73 regulator-max-microvolt = <3300000>;
74 regulator-boot-on;
75 regulator-always-on;
76 };
77 };
78 };