Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux/fpc-iii.git] / Documentation / devicetree / bindings / mfd / twl4030-power.txt
blob8e15ec35ac99339564b4bf3333ea7c104cdd04d6
1 Texas Instruments TWL family (twl4030) reset and power management module
3 The power management module inside the TWL family provides several facilities
4 to control the power resources, including power scripts. For now, the
5 binding only supports the complete shutdown of the system after poweroff.
7 Required properties:
8 - compatible : must be "ti,twl4030-power"
10 Optional properties:
11 - ti,use_poweroff: With this flag, the chip will initiates an ACTIVE-to-OFF or
12                    SLEEP-to-OFF transition when the system poweroffs.
14 Example:
15 &i2c1 {
16         clock-frequency = <2600000>;
18         twl: twl@48 {
19                 reg = <0x48>;
20                 interrupts = <7>; /* SYS_NIRQ cascaded to intc */
21                 interrupt-parent = <&intc>;
23                 twl_power: power {
24                         compatible = "ti,twl4030-power";
25                         ti,use_poweroff;
26                 };
27         };