xref: /linux/scripts/dtc/include-prefixes/arm/tps65217.dtsi (revision 9ec0a6585f63513b7c55dedb16ee60837d9e6806)
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		status = "disabled";
22	};
23
24	regulators {
25		#address-cells = <1>;
26		#size-cells = <0>;
27
28		dcdc1_reg: regulator@0 {
29			reg = <0>;
30			regulator-compatible = "dcdc1";
31		};
32
33		dcdc2_reg: regulator@1 {
34			reg = <1>;
35			regulator-compatible = "dcdc2";
36		};
37
38		dcdc3_reg: regulator@2 {
39			reg = <2>;
40			regulator-compatible = "dcdc3";
41		};
42
43		ldo1_reg: regulator@3 {
44			reg = <3>;
45			regulator-compatible = "ldo1";
46		};
47
48		ldo2_reg: regulator@4 {
49			reg = <4>;
50			regulator-compatible = "ldo2";
51		};
52
53		ldo3_reg: regulator@5 {
54			reg = <5>;
55			regulator-compatible = "ldo3";
56		};
57
58		ldo4_reg: regulator@6 {
59			reg = <6>;
60			regulator-compatible = "ldo4";
61		};
62	};
63};
64