···11+TPS65132 regulators22+33+Required properties:44+- compatible: "ti,tps65132"55+- reg: I2C slave address66+77+Optional Subnode:88+Device supports two regulators OUTP and OUTN. A sub node within the99+ device node describe the properties of these regulators. The sub-node1010+ names must be as follows:1111+ -For regulator outp, the sub node name should be "outp".1212+ -For regulator outn, the sub node name should be "outn".1313+1414+-enable-gpios:(active high, output) Regulators are controlled by the input pins.1515+ If it is connected to GPIO through host system then provide the1616+ gpio number as per gpio.txt.1717+-active-discharge-gpios: (active high, output) Some configurations use delay mechanisms1818+ on the enable pin, to keep the regulator enabled for some time after1919+ the enable signal goes low. This GPIO is used to actively discharge2020+ the delay mechanism. Requires specification of ti,active-discharge-time-us2121+-ti,active-discharge-time-us: how long the active discharge gpio should be2222+ asserted for during active discharge, in microseconds.2323+2424+Each regulator is defined using the standard binding for regulators.2525+2626+Example:2727+2828+ tps65132@3e {2929+ compatible = "ti,tps65132";3030+ reg = <0x3e>;3131+3232+ outp {3333+ regulator-name = "outp";3434+ regulator-boot-on;3535+ regulator-always-on;3636+ enable-gpios = <&gpio 23 0>;3737+ };3838+3939+ outn {4040+ regulator-name = "outn";4141+ regulator-boot-on;4242+ regulator-always-on;4343+ regulator-active-discharge = <0>;4444+ enable-gpios = <&gpio 40 0>;4545+ };4646+ };