power-management.txt 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. Power Management for USB
  2. Alan Stern <stern@rowland.harvard.edu>
  3. October 5, 2007
  4. What is Power Management?
  5. -------------------------
  6. Power Management (PM) is the practice of saving energy by suspending
  7. parts of a computer system when they aren't being used. While a
  8. component is "suspended" it is in a nonfunctional low-power state; it
  9. might even be turned off completely. A suspended component can be
  10. "resumed" (returned to a functional full-power state) when the kernel
  11. needs to use it. (There also are forms of PM in which components are
  12. placed in a less functional but still usable state instead of being
  13. suspended; an example would be reducing the CPU's clock rate. This
  14. document will not discuss those other forms.)
  15. When the parts being suspended include the CPU and most of the rest of
  16. the system, we speak of it as a "system suspend". When a particular
  17. device is turned off while the system as a whole remains running, we
  18. call it a "dynamic suspend" (also known as a "runtime suspend" or
  19. "selective suspend"). This document concentrates mostly on how
  20. dynamic PM is implemented in the USB subsystem, although system PM is
  21. covered to some extent (see Documentation/power/*.txt for more
  22. information about system PM).
  23. Note: Dynamic PM support for USB is present only if the kernel was
  24. built with CONFIG_USB_SUSPEND enabled. System PM support is present
  25. only if the kernel was built with CONFIG_SUSPEND or CONFIG_HIBERNATION
  26. enabled.
  27. What is Remote Wakeup?
  28. ----------------------
  29. When a device has been suspended, it generally doesn't resume until
  30. the computer tells it to. Likewise, if the entire computer has been
  31. suspended, it generally doesn't resume until the user tells it to, say
  32. by pressing a power button or opening the cover.
  33. However some devices have the capability of resuming by themselves, or
  34. asking the kernel to resume them, or even telling the entire computer
  35. to resume. This capability goes by several names such as "Wake On
  36. LAN"; we will refer to it generically as "remote wakeup". When a
  37. device is enabled for remote wakeup and it is suspended, it may resume
  38. itself (or send a request to be resumed) in response to some external
  39. event. Examples include a suspended keyboard resuming when a key is
  40. pressed, or a suspended USB hub resuming when a device is plugged in.
  41. When is a USB device idle?
  42. --------------------------
  43. A device is idle whenever the kernel thinks it's not busy doing
  44. anything important and thus is a candidate for being suspended. The
  45. exact definition depends on the device's driver; drivers are allowed
  46. to declare that a device isn't idle even when there's no actual
  47. communication taking place. (For example, a hub isn't considered idle
  48. unless all the devices plugged into that hub are already suspended.)
  49. In addition, a device isn't considered idle so long as a program keeps
  50. its usbfs file open, whether or not any I/O is going on.
  51. If a USB device has no driver, its usbfs file isn't open, and it isn't
  52. being accessed through sysfs, then it definitely is idle.
  53. Forms of dynamic PM
  54. -------------------
  55. Dynamic suspends can occur in two ways: manual and automatic.
  56. "Manual" means that the user has told the kernel to suspend a device,
  57. whereas "automatic" means that the kernel has decided all by itself to
  58. suspend a device. Automatic suspend is called "autosuspend" for
  59. short. In general, a device won't be autosuspended unless it has been
  60. idle for some minimum period of time, the so-called idle-delay time.
  61. Of course, nothing the kernel does on its own initiative should
  62. prevent the computer or its devices from working properly. If a
  63. device has been autosuspended and a program tries to use it, the
  64. kernel will automatically resume the device (autoresume). For the
  65. same reason, an autosuspended device will usually have remote wakeup
  66. enabled, if the device supports remote wakeup.
  67. It is worth mentioning that many USB drivers don't support
  68. autosuspend. In fact, at the time of this writing (Linux 2.6.23) the
  69. only drivers which do support it are the hub driver, kaweth, asix,
  70. usblp, usblcd, and usb-skeleton (which doesn't count). If a
  71. non-supporting driver is bound to a device, the device won't be
  72. autosuspended. In effect, the kernel pretends the device is never
  73. idle.
  74. We can categorize power management events in two broad classes:
  75. external and internal. External events are those triggered by some
  76. agent outside the USB stack: system suspend/resume (triggered by
  77. userspace), manual dynamic suspend/resume (also triggered by
  78. userspace), and remote wakeup (triggered by the device). Internal
  79. events are those triggered within the USB stack: autosuspend and
  80. autoresume.
  81. The user interface for dynamic PM
  82. ---------------------------------
  83. The user interface for controlling dynamic PM is located in the power/
  84. subdirectory of each USB device's sysfs directory, that is, in
  85. /sys/bus/usb/devices/.../power/ where "..." is the device's ID. The
  86. relevant attribute files are: wakeup, level, and autosuspend.
  87. power/wakeup
  88. This file is empty if the device does not support
  89. remote wakeup. Otherwise the file contains either the
  90. word "enabled" or the word "disabled", and you can
  91. write those words to the file. The setting determines
  92. whether or not remote wakeup will be enabled when the
  93. device is next suspended. (If the setting is changed
  94. while the device is suspended, the change won't take
  95. effect until the following suspend.)
  96. power/level
  97. This file contains one of three words: "on", "auto",
  98. or "suspend". You can write those words to the file
  99. to change the device's setting.
  100. "on" means that the device should be resumed and
  101. autosuspend is not allowed. (Of course, system
  102. suspends are still allowed.)
  103. "auto" is the normal state in which the kernel is
  104. allowed to autosuspend and autoresume the device.
  105. "suspend" means that the device should remain
  106. suspended, and autoresume is not allowed. (But remote
  107. wakeup may still be allowed, since it is controlled
  108. separately by the power/wakeup attribute.)
  109. power/autosuspend
  110. This file contains an integer value, which is the
  111. number of seconds the device should remain idle before
  112. the kernel will autosuspend it (the idle-delay time).
  113. The default is 2. 0 means to autosuspend as soon as
  114. the device becomes idle, and -1 means never to
  115. autosuspend. You can write a number to the file to
  116. change the autosuspend idle-delay time.
  117. Writing "-1" to power/autosuspend and writing "on" to power/level do
  118. essentially the same thing -- they both prevent the device from being
  119. autosuspended. Yes, this is a redundancy in the API.
  120. (In 2.6.21 writing "0" to power/autosuspend would prevent the device
  121. from being autosuspended; the behavior was changed in 2.6.22. The
  122. power/autosuspend attribute did not exist prior to 2.6.21, and the
  123. power/level attribute did not exist prior to 2.6.22.)
  124. Changing the default idle-delay time
  125. ------------------------------------
  126. The default autosuspend idle-delay time is controlled by a module
  127. parameter in usbcore. You can specify the value when usbcore is
  128. loaded. For example, to set it to 5 seconds instead of 2 you would
  129. do:
  130. modprobe usbcore autosuspend=5
  131. Equivalently, you could add to /etc/modprobe.conf a line saying:
  132. options usbcore autosuspend=5
  133. Some distributions load the usbcore module very early during the boot
  134. process, by means of a program or script running from an initramfs
  135. image. To alter the parameter value you would have to rebuild that
  136. image.
  137. If usbcore is compiled into the kernel rather than built as a loadable
  138. module, you can add
  139. usbcore.autosuspend=5
  140. to the kernel's boot command line.
  141. Finally, the parameter value can be changed while the system is
  142. running. If you do:
  143. echo 5 >/sys/module/usbcore/parameters/autosuspend
  144. then each new USB device will have its autosuspend idle-delay
  145. initialized to 5. (The idle-delay values for already existing devices
  146. will not be affected.)
  147. Setting the initial default idle-delay to -1 will prevent any
  148. autosuspend of any USB device. This is a simple alternative to
  149. disabling CONFIG_USB_SUSPEND and rebuilding the kernel, and it has the
  150. added benefit of allowing you to enable autosuspend for selected
  151. devices.
  152. Warnings
  153. --------
  154. The USB specification states that all USB devices must support power
  155. management. Nevertheless, the sad fact is that many devices do not
  156. support it very well. You can suspend them all right, but when you
  157. try to resume them they disconnect themselves from the USB bus or
  158. they stop working entirely. This seems to be especially prevalent
  159. among printers and scanners, but plenty of other types of device have
  160. the same deficiency.
  161. For this reason, by default the kernel disables autosuspend (the
  162. power/level attribute is initialized to "on") for all devices other
  163. than hubs. Hubs, at least, appear to be reasonably well-behaved in
  164. this regard.
  165. (In 2.6.21 and 2.6.22 this wasn't the case. Autosuspend was enabled
  166. by default for almost all USB devices. A number of people experienced
  167. problems as a result.)
  168. This means that non-hub devices won't be autosuspended unless the user
  169. or a program explicitly enables it. As of this writing there aren't
  170. any widespread programs which will do this; we hope that in the near
  171. future device managers such as HAL will take on this added
  172. responsibility. In the meantime you can always carry out the
  173. necessary operations by hand or add them to a udev script. You can
  174. also change the idle-delay time; 2 seconds is not the best choice for
  175. every device.
  176. Sometimes it turns out that even when a device does work okay with
  177. autosuspend there are still problems. For example, there are
  178. experimental patches adding autosuspend support to the usbhid driver,
  179. which manages keyboards and mice, among other things. Tests with a
  180. number of keyboards showed that typing on a suspended keyboard, while
  181. causing the keyboard to do a remote wakeup all right, would
  182. nonetheless frequently result in lost keystrokes. Tests with mice
  183. showed that some of them would issue a remote-wakeup request in
  184. response to button presses but not to motion, and some in response to
  185. neither.
  186. The kernel will not prevent you from enabling autosuspend on devices
  187. that can't handle it. It is even possible in theory to damage a
  188. device by suspending it at the wrong time -- for example, suspending a
  189. USB hard disk might cause it to spin down without parking the heads.
  190. (Highly unlikely, but possible.) Take care.
  191. The driver interface for Power Management
  192. -----------------------------------------
  193. The requirements for a USB driver to support external power management
  194. are pretty modest; the driver need only define
  195. .suspend
  196. .resume
  197. .reset_resume
  198. methods in its usb_driver structure, and the reset_resume method is
  199. optional. The methods' jobs are quite simple:
  200. The suspend method is called to warn the driver that the
  201. device is going to be suspended. If the driver returns a
  202. negative error code, the suspend will be aborted. Normally
  203. the driver will return 0, in which case it must cancel all
  204. outstanding URBs (usb_kill_urb()) and not submit any more.
  205. The resume method is called to tell the driver that the
  206. device has been resumed and the driver can return to normal
  207. operation. URBs may once more be submitted.
  208. The reset_resume method is called to tell the driver that
  209. the device has been resumed and it also has been reset.
  210. The driver should redo any necessary device initialization,
  211. since the device has probably lost most or all of its state
  212. (although the interfaces will be in the same altsettings as
  213. before the suspend).
  214. If the device is disconnected or powered down while it is suspended,
  215. the disconnect method will be called instead of the resume or
  216. reset_resume method. This is also quite likely to happen when
  217. waking up from hibernation, as many systems do not maintain suspend
  218. current to the USB host controllers during hibernation. (It's
  219. possible to work around the hibernation-forces-disconnect problem by
  220. using the USB Persist facility.)
  221. The reset_resume method is used by the USB Persist facility (see
  222. Documentation/usb/persist.txt) and it can also be used under certain
  223. circumstances when CONFIG_USB_PERSIST is not enabled. Currently, if a
  224. device is reset during a resume and the driver does not have a
  225. reset_resume method, the driver won't receive any notification about
  226. the resume. Later kernels will call the driver's disconnect method;
  227. 2.6.23 doesn't do this.
  228. USB drivers are bound to interfaces, so their suspend and resume
  229. methods get called when the interfaces are suspended or resumed. In
  230. principle one might want to suspend some interfaces on a device (i.e.,
  231. force the drivers for those interface to stop all activity) without
  232. suspending the other interfaces. The USB core doesn't allow this; all
  233. interfaces are suspended when the device itself is suspended and all
  234. interfaces are resumed when the device is resumed. It isn't possible
  235. to suspend or resume some but not all of a device's interfaces. The
  236. closest you can come is to unbind the interfaces' drivers.
  237. The driver interface for autosuspend and autoresume
  238. ---------------------------------------------------
  239. To support autosuspend and autoresume, a driver should implement all
  240. three of the methods listed above. In addition, a driver indicates
  241. that it supports autosuspend by setting the .supports_autosuspend flag
  242. in its usb_driver structure. It is then responsible for informing the
  243. USB core whenever one of its interfaces becomes busy or idle. The
  244. driver does so by calling these three functions:
  245. int usb_autopm_get_interface(struct usb_interface *intf);
  246. void usb_autopm_put_interface(struct usb_interface *intf);
  247. int usb_autopm_set_interface(struct usb_interface *intf);
  248. The functions work by maintaining a counter in the usb_interface
  249. structure. When intf->pm_usage_count is > 0 then the interface is
  250. deemed to be busy, and the kernel will not autosuspend the interface's
  251. device. When intf->pm_usage_count is <= 0 then the interface is
  252. considered to be idle, and the kernel may autosuspend the device.
  253. (There is a similar pm_usage_count field in struct usb_device,
  254. associated with the device itself rather than any of its interfaces.
  255. This field is used only by the USB core.)
  256. The driver owns intf->pm_usage_count; it can modify the value however
  257. and whenever it likes. A nice aspect of the usb_autopm_* routines is
  258. that the changes they make are protected by the usb_device structure's
  259. PM mutex (udev->pm_mutex); however drivers may change pm_usage_count
  260. without holding the mutex.
  261. usb_autopm_get_interface() increments pm_usage_count and
  262. attempts an autoresume if the new value is > 0 and the
  263. device is suspended.
  264. usb_autopm_put_interface() decrements pm_usage_count and
  265. attempts an autosuspend if the new value is <= 0 and the
  266. device isn't suspended.
  267. usb_autopm_set_interface() leaves pm_usage_count alone.
  268. It attempts an autoresume if the value is > 0 and the device
  269. is suspended, and it attempts an autosuspend if the value is
  270. <= 0 and the device isn't suspended.
  271. There also are a couple of utility routines drivers can use:
  272. usb_autopm_enable() sets pm_usage_cnt to 1 and then calls
  273. usb_autopm_set_interface(), which will attempt an autoresume.
  274. usb_autopm_disable() sets pm_usage_cnt to 0 and then calls
  275. usb_autopm_set_interface(), which will attempt an autosuspend.
  276. The conventional usage pattern is that a driver calls
  277. usb_autopm_get_interface() in its open routine and
  278. usb_autopm_put_interface() in its close or release routine. But
  279. other patterns are possible.
  280. The autosuspend attempts mentioned above will often fail for one
  281. reason or another. For example, the power/level attribute might be
  282. set to "on", or another interface in the same device might not be
  283. idle. This is perfectly normal. If the reason for failure was that
  284. the device hasn't been idle for long enough, a delayed workqueue
  285. routine is automatically set up to carry out the operation when the
  286. autosuspend idle-delay has expired.
  287. Autoresume attempts also can fail. This will happen if power/level is
  288. set to "suspend" or if the device doesn't manage to resume properly.
  289. Unlike autosuspend, there's no delay for an autoresume.
  290. Other parts of the driver interface
  291. -----------------------------------
  292. Sometimes a driver needs to make sure that remote wakeup is enabled
  293. during autosuspend. For example, there's not much point
  294. autosuspending a keyboard if the user can't cause the keyboard to do a
  295. remote wakeup by typing on it. If the driver sets
  296. intf->needs_remote_wakeup to 1, the kernel won't autosuspend the
  297. device if remote wakeup isn't available or has been disabled through
  298. the power/wakeup attribute. (If the device is already autosuspended,
  299. though, setting this flag won't cause the kernel to autoresume it.
  300. Normally a driver would set this flag in its probe method, at which
  301. time the device is guaranteed not to be autosuspended.)
  302. The usb_autopm_* routines have to run in a sleepable process context;
  303. they must not be called from an interrupt handler or while holding a
  304. spinlock. In fact, the entire autosuspend mechanism is not well geared
  305. toward interrupt-driven operation. However there is one thing a
  306. driver can do in an interrupt handler:
  307. usb_mark_last_busy(struct usb_device *udev);
  308. This sets udev->last_busy to the current time. udev->last_busy is the
  309. field used for idle-delay calculations; updating it will cause any
  310. pending autosuspend to be moved back. The usb_autopm_* routines will
  311. also set the last_busy field to the current time.
  312. Calling urb_mark_last_busy() from within an URB completion handler is
  313. subject to races: The kernel may have just finished deciding the
  314. device has been idle for long enough but not yet gotten around to
  315. calling the driver's suspend method. The driver would have to be
  316. responsible for synchronizing its suspend method with its URB
  317. completion handler and causing the autosuspend to fail with -EBUSY if
  318. an URB had completed too recently.
  319. External suspend calls should never be allowed to fail in this way,
  320. only autosuspend calls. The driver can tell them apart by checking
  321. udev->auto_pm; this flag will be set to 1 for internal PM events
  322. (autosuspend or autoresume) and 0 for external PM events.
  323. Many of the ingredients in the autosuspend framework are oriented
  324. towards interfaces: The usb_interface structure contains the
  325. pm_usage_cnt field, and the usb_autopm_* routines take an interface
  326. pointer as their argument. But somewhat confusingly, a few of the
  327. pieces (usb_mark_last_busy() and udev->auto_pm) use the usb_device
  328. structure instead. Drivers need to keep this straight; they can call
  329. interface_to_usbdev() to find the device structure for a given
  330. interface.
  331. Locking requirements
  332. --------------------
  333. All three suspend/resume methods are always called while holding the
  334. usb_device's PM mutex. For external events -- but not necessarily for
  335. autosuspend or autoresume -- the device semaphore (udev->dev.sem) will
  336. also be held. This implies that external suspend/resume events are
  337. mutually exclusive with calls to probe, disconnect, pre_reset, and
  338. post_reset; the USB core guarantees that this is true of internal
  339. suspend/resume events as well.
  340. If a driver wants to block all suspend/resume calls during some
  341. critical section, it can simply acquire udev->pm_mutex. Note that
  342. calls to resume may be triggered indirectly. Block IO due to memory
  343. allocations can make the vm subsystem resume a device. Thus while
  344. holding this lock you must not allocate memory with GFP_KERNEL or
  345. GFP_NOFS.
  346. Alternatively, if the critical section might call some of the
  347. usb_autopm_* routines, the driver can avoid deadlock by doing:
  348. down(&udev->dev.sem);
  349. rc = usb_autopm_get_interface(intf);
  350. and at the end of the critical section:
  351. if (!rc)
  352. usb_autopm_put_interface(intf);
  353. up(&udev->dev.sem);
  354. Holding the device semaphore will block all external PM calls, and the
  355. usb_autopm_get_interface() will prevent any internal PM calls, even if
  356. it fails. (Exercise: Why?)
  357. The rules for locking order are:
  358. Never acquire any device semaphore while holding any PM mutex.
  359. Never acquire udev->pm_mutex while holding the PM mutex for
  360. a device that isn't a descendant of udev.
  361. In other words, PM mutexes should only be acquired going up the device
  362. tree, and they should be acquired only after locking all the device
  363. semaphores you need to hold. These rules don't matter to drivers very
  364. much; they usually affect just the USB core.
  365. Still, drivers do need to be careful. For example, many drivers use a
  366. private mutex to synchronize their normal I/O activities with their
  367. disconnect method. Now if the driver supports autosuspend then it
  368. must call usb_autopm_put_interface() from somewhere -- maybe from its
  369. close method. It should make the call while holding the private mutex,
  370. since a driver shouldn't call any of the usb_autopm_* functions for an
  371. interface from which it has been unbound.
  372. But the usb_autpm_* routines always acquire the device's PM mutex, and
  373. consequently the locking order has to be: private mutex first, PM
  374. mutex second. Since the suspend method is always called with the PM
  375. mutex held, it mustn't try to acquire the private mutex. It has to
  376. synchronize with the driver's I/O activities in some other way.
  377. Interaction between dynamic PM and system PM
  378. --------------------------------------------
  379. Dynamic power management and system power management can interact in
  380. a couple of ways.
  381. Firstly, a device may already be manually suspended or autosuspended
  382. when a system suspend occurs. Since system suspends are supposed to
  383. be as transparent as possible, the device should remain suspended
  384. following the system resume. The 2.6.23 kernel obeys this principle
  385. for manually suspended devices but not for autosuspended devices; they
  386. do get resumed when the system wakes up. (Presumably they will be
  387. autosuspended again after their idle-delay time expires.) In later
  388. kernels this behavior will be fixed.
  389. (There is an exception. If a device would undergo a reset-resume
  390. instead of a normal resume, and the device is enabled for remote
  391. wakeup, then the reset-resume takes place even if the device was
  392. already suspended when the system suspend began. The justification is
  393. that a reset-resume is a kind of remote-wakeup event. Or to put it
  394. another way, a device which needs a reset won't be able to generate
  395. normal remote-wakeup signals, so it ought to be resumed immediately.)
  396. Secondly, a dynamic power-management event may occur as a system
  397. suspend is underway. The window for this is short, since system
  398. suspends don't take long (a few seconds usually), but it can happen.
  399. For example, a suspended device may send a remote-wakeup signal while
  400. the system is suspending. The remote wakeup may succeed, which would
  401. cause the system suspend to abort. If the remote wakeup doesn't
  402. succeed, it may still remain active and thus cause the system to
  403. resume as soon as the system suspend is complete. Or the remote
  404. wakeup may fail and get lost. Which outcome occurs depends on timing
  405. and on the hardware and firmware design.
  406. More interestingly, a device might undergo a manual resume or
  407. autoresume during system suspend. With current kernels this shouldn't
  408. happen, because manual resumes must be initiated by userspace and
  409. autoresumes happen in response to I/O requests, but all user processes
  410. and I/O should be quiescent during a system suspend -- thanks to the
  411. freezer. However there are plans to do away with the freezer, which
  412. would mean these things would become possible. If and when this comes
  413. about, the USB core will carefully arrange matters so that either type
  414. of resume will block until the entire system has resumed.