twl4030-power.txt 769 B

12345678910111213141516171819202122232425262728
  1. Texas Instruments TWL family (twl4030) reset and power management module
  2. The power management module inside the TWL family provides several facilities
  3. to control the power resources, including power scripts. For now, the
  4. binding only supports the complete shutdown of the system after poweroff.
  5. Required properties:
  6. - compatible : must be "ti,twl4030-power"
  7. Optional properties:
  8. - ti,use_poweroff: With this flag, the chip will initiates an ACTIVE-to-OFF or
  9. SLEEP-to-OFF transition when the system poweroffs.
  10. Example:
  11. &i2c1 {
  12. clock-frequency = <2600000>;
  13. twl: twl@48 {
  14. reg = <0x48>;
  15. interrupts = <7>; /* SYS_NIRQ cascaded to intc */
  16. interrupt-parent = <&intc>;
  17. twl_power: power {
  18. compatible = "ti,twl4030-power";
  19. ti,use_poweroff;
  20. };
  21. };
  22. };