interface.txt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Power Management Interface
  2. The power management subsystem provides a unified sysfs interface to
  3. userspace, regardless of what architecture or platform one is
  4. running. The interface exists in /sys/power/ directory (assuming sysfs
  5. is mounted at /sys).
  6. /sys/power/state controls system power state. Reading from this file
  7. returns what states are supported, which is hard-coded to 'standby'
  8. (Power-On Suspend), 'mem' (Suspend-to-RAM), and 'disk'
  9. (Suspend-to-Disk).
  10. Writing to this file one of those strings causes the system to
  11. transition into that state. Please see the file
  12. Documentation/power/states.txt for a description of each of those
  13. states.
  14. /sys/power/disk controls the operating mode of the suspend-to-disk
  15. mechanism. Suspend-to-disk can be handled in several ways. The
  16. greatest distinction is who writes memory to disk - the firmware or
  17. the kernel. If the firmware does it, we assume that it also handles
  18. suspending the system.
  19. If the kernel does it, then we have three options for putting the system
  20. to sleep - using the platform driver (e.g. ACPI or other PM
  21. registers), powering off the system or rebooting the system (for
  22. testing). The system will support either 'firmware' or 'platform', and
  23. that is known a priori. But, the user may choose 'shutdown' or
  24. 'reboot' as alternatives.
  25. Reading from this file will display what the mode is currently set
  26. to. Writing to this file will accept one of
  27. 'firmware'
  28. 'platform'
  29. 'shutdown'
  30. 'reboot'
  31. It will only change to 'firmware' or 'platform' if the system supports
  32. it.