1/* 2 * Copyright (C) 2013 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/tps65070.pdf 12 */ 13 14&tps { 15 compatible = "ti,tps6507x"; 16 17 regulators { 18 #address-cells = <1>; 19 #size-cells = <0>; 20 21 vdcdc1_reg: regulator@0 { 22 reg = <0>; 23 regulator-compatible = "VDCDC1"; 24 }; 25 26 vdcdc2_reg: regulator@1 { 27 reg = <1>; 28 regulator-compatible = "VDCDC2"; 29 }; 30 31 vdcdc3_reg: regulator@2 { 32 reg = <2>; 33 regulator-compatible = "VDCDC3"; 34 }; 35 36 ldo1_reg: regulator@3 { 37 reg = <3>; 38 regulator-compatible = "LDO1"; 39 }; 40 41 ldo2_reg: regulator@4 { 42 reg = <4>; 43 regulator-compatible = "LDO2"; 44 }; 45 46 }; 47}; 48