1TPS549b22 Voltage regulators 2 3Required properties: 4- compatible: Must be "ti,tps549b22" 5- reg: I2C slave address 6 7Any property defined as part of the core regulator binding, defined in 8regulator.txt, can also be used. 9 10Example: 11 tps549b22@1e { 12 compatible = "ti,tps549b22"; 13 reg = <0x1e>; 14 regulators { 15 #address-cells = <1>; 16 #size-cells = <0>; 17 regulator@0 { 18 reg = <0>; 19 regulator-compatible = "tps549b22_dcdc"; 20 regulator-name = "vdd_xxx"; 21 regulator-min-microvolt = <767500>; 22 regulator-max-microvolt = <1535000>; 23 regulator-always-on; 24 regulator-boot-on; 25 }; 26 }; 27 }; 28