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 regulators { 20 #address-cells = <1>; 21 #size-cells = <0>; 22 23 dcdc1_reg: regulator@0 { 24 reg = <0>; 25 regulator-compatible = "dcdc1"; 26 }; 27 28 dcdc2_reg: regulator@1 { 29 reg = <1>; 30 regulator-compatible = "dcdc2"; 31 }; 32 33 dcdc3_reg: regulator@2 { 34 reg = <2>; 35 regulator-compatible = "dcdc3"; 36 }; 37 38 ldo1_reg: regulator@3 { 39 reg = <3>; 40 regulator-compatible = "ldo1"; 41 }; 42 43 ldo2_reg: regulator@4 { 44 reg = <4>; 45 regulator-compatible = "ldo2"; 46 }; 47 48 ldo3_reg: regulator@5 { 49 reg = <5>; 50 regulator-compatible = "ldo3"; 51 }; 52 53 ldo4_reg: regulator@6 { 54 reg = <6>; 55 regulator-compatible = "ldo4"; 56 }; 57 }; 58}; 59