1/*
2 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/*
10 * Integrated Power Management Chip
11 * http://www.ti.com/lit/ds/symlink/tps65217.pdf
12 */
13
14&tps {
15	compatible = "ti,tps65217";
16	interrupt-controller;
17	#interrupt-cells = <1>;
18
19	charger {
20		compatible = "ti,tps65217-charger";
21		interrupts = <0>, <1>;
22		interrupt-names = "USB", "AC";
23		status = "disabled";
24	};
25
26	pwrbutton {
27		compatible = "ti,tps65217-pwrbutton";
28		status = "disabled";
29	};
30
31	regulators {
32		#address-cells = <1>;
33		#size-cells = <0>;
34
35		dcdc1_reg: regulator@0 {
36			reg = <0>;
37			regulator-compatible = "dcdc1";
38		};
39
40		dcdc2_reg: regulator@1 {
41			reg = <1>;
42			regulator-compatible = "dcdc2";
43		};
44
45		dcdc3_reg: regulator@2 {
46			reg = <2>;
47			regulator-compatible = "dcdc3";
48		};
49
50		ldo1_reg: regulator@3 {
51			reg = <3>;
52			regulator-compatible = "ldo1";
53		};
54
55		ldo2_reg: regulator@4 {
56			reg = <4>;
57			regulator-compatible = "ldo2";
58		};
59
60		ldo3_reg: regulator@5 {
61			reg = <5>;
62			regulator-compatible = "ldo3";
63		};
64
65		ldo4_reg: regulator@6 {
66			reg = <6>;
67			regulator-compatible = "ldo4";
68		};
69	};
70};
71