Blame view

Documentation/usb/power-management.txt 22.4 KB
cd38c1e1a   Alan Stern   USB: documentatio...
1
2
3
  			Power Management for USB
  
  		 Alan Stern <stern@rowland.harvard.edu>
fcc4a01eb   Alan Stern   USB: use the runt...
4
  			    October 28, 2010
cd38c1e1a   Alan Stern   USB: documentatio...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  
  
  
  	What is Power Management?
  	-------------------------
  
  Power Management (PM) is the practice of saving energy by suspending
  parts of a computer system when they aren't being used.  While a
  component is "suspended" it is in a nonfunctional low-power state; it
  might even be turned off completely.  A suspended component can be
  "resumed" (returned to a functional full-power state) when the kernel
  needs to use it.  (There also are forms of PM in which components are
  placed in a less functional but still usable state instead of being
  suspended; an example would be reducing the CPU's clock rate.  This
  document will not discuss those other forms.)
  
  When the parts being suspended include the CPU and most of the rest of
  the system, we speak of it as a "system suspend".  When a particular
  device is turned off while the system as a whole remains running, we
  call it a "dynamic suspend" (also known as a "runtime suspend" or
  "selective suspend").  This document concentrates mostly on how
  dynamic PM is implemented in the USB subsystem, although system PM is
  covered to some extent (see Documentation/power/*.txt for more
  information about system PM).
  
  Note: Dynamic PM support for USB is present only if the kernel was
9bbdf1e0a   Alan Stern   USB: convert to t...
31
32
33
  built with CONFIG_USB_SUSPEND enabled (which depends on
  CONFIG_PM_RUNTIME).  System PM support is present only if the kernel
  was built with CONFIG_SUSPEND or CONFIG_HIBERNATION enabled.
cd38c1e1a   Alan Stern   USB: documentatio...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  
  
  	What is Remote Wakeup?
  	----------------------
  
  When a device has been suspended, it generally doesn't resume until
  the computer tells it to.  Likewise, if the entire computer has been
  suspended, it generally doesn't resume until the user tells it to, say
  by pressing a power button or opening the cover.
  
  However some devices have the capability of resuming by themselves, or
  asking the kernel to resume them, or even telling the entire computer
  to resume.  This capability goes by several names such as "Wake On
  LAN"; we will refer to it generically as "remote wakeup".  When a
  device is enabled for remote wakeup and it is suspended, it may resume
  itself (or send a request to be resumed) in response to some external
  event.  Examples include a suspended keyboard resuming when a key is
  pressed, or a suspended USB hub resuming when a device is plugged in.
  
  
  	When is a USB device idle?
  	--------------------------
  
  A device is idle whenever the kernel thinks it's not busy doing
  anything important and thus is a candidate for being suspended.  The
  exact definition depends on the device's driver; drivers are allowed
  to declare that a device isn't idle even when there's no actual
  communication taking place.  (For example, a hub isn't considered idle
  unless all the devices plugged into that hub are already suspended.)
  In addition, a device isn't considered idle so long as a program keeps
  its usbfs file open, whether or not any I/O is going on.
  
  If a USB device has no driver, its usbfs file isn't open, and it isn't
  being accessed through sysfs, then it definitely is idle.
  
  
  	Forms of dynamic PM
  	-------------------
baf67741b   Alan Stern   USB: power manage...
72
73
74
75
  Dynamic suspends occur when the kernel decides to suspend an idle
  device.  This is called "autosuspend" for short.  In general, a device
  won't be autosuspended unless it has been idle for some minimum period
  of time, the so-called idle-delay time.
cd38c1e1a   Alan Stern   USB: documentatio...
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  
  Of course, nothing the kernel does on its own initiative should
  prevent the computer or its devices from working properly.  If a
  device has been autosuspended and a program tries to use it, the
  kernel will automatically resume the device (autoresume).  For the
  same reason, an autosuspended device will usually have remote wakeup
  enabled, if the device supports remote wakeup.
  
  It is worth mentioning that many USB drivers don't support
  autosuspend.  In fact, at the time of this writing (Linux 2.6.23) the
  only drivers which do support it are the hub driver, kaweth, asix,
  usblp, usblcd, and usb-skeleton (which doesn't count).  If a
  non-supporting driver is bound to a device, the device won't be
  autosuspended.  In effect, the kernel pretends the device is never
  idle.
  
  We can categorize power management events in two broad classes:
  external and internal.  External events are those triggered by some
  agent outside the USB stack: system suspend/resume (triggered by
baf67741b   Alan Stern   USB: power manage...
95
96
97
98
99
  userspace), manual dynamic resume (also triggered by userspace), and
  remote wakeup (triggered by the device).  Internal events are those
  triggered within the USB stack: autosuspend and autoresume.  Note that
  all dynamic suspend events are internal; external agents are not
  allowed to issue dynamic suspends.
cd38c1e1a   Alan Stern   USB: documentatio...
100
101
102
103
104
105
106
107
  
  
  	The user interface for dynamic PM
  	---------------------------------
  
  The user interface for controlling dynamic PM is located in the power/
  subdirectory of each USB device's sysfs directory, that is, in
  /sys/bus/usb/devices/.../power/ where "..." is the device's ID.  The
fcc4a01eb   Alan Stern   USB: use the runt...
108
109
110
111
112
113
114
115
  relevant attribute files are: wakeup, control, and
  autosuspend_delay_ms.  (There may also be a file named "level"; this
  file was deprecated as of the 2.6.35 kernel and replaced by the
  "control" file.  In 2.6.38 the "autosuspend" file will be deprecated
  and replaced by the "autosuspend_delay_ms" file.  The only difference
  is that the newer file expresses the delay in milliseconds whereas the
  older file uses seconds.  Confusingly, both files are present in 2.6.37
  but only "autosuspend" works.)
cd38c1e1a   Alan Stern   USB: documentatio...
116
117
118
119
120
121
122
123
124
125
126
  
  	power/wakeup
  
  		This file is empty if the device does not support
  		remote wakeup.  Otherwise the file contains either the
  		word "enabled" or the word "disabled", and you can
  		write those words to the file.  The setting determines
  		whether or not remote wakeup will be enabled when the
  		device is next suspended.  (If the setting is changed
  		while the device is suspended, the change won't take
  		effect until the following suspend.)
a90309860   Alan Stern   USB: deprecate th...
127
  	power/control
cd38c1e1a   Alan Stern   USB: documentatio...
128

8e4ceb38e   Alan Stern   USB: prepare for ...
129
130
131
  		This file contains one of two words: "on" or "auto".
  		You can write those words to the file to change the
  		device's setting.
cd38c1e1a   Alan Stern   USB: documentatio...
132
133
134
135
136
137
138
  
  		"on" means that the device should be resumed and
  		autosuspend is not allowed.  (Of course, system
  		suspends are still allowed.)
  
  		"auto" is the normal state in which the kernel is
  		allowed to autosuspend and autoresume the device.
8e4ceb38e   Alan Stern   USB: prepare for ...
139
140
141
142
  		(In kernels up to 2.6.32, you could also specify
  		"suspend", meaning that the device should remain
  		suspended and autoresume was not allowed.  This
  		setting is no longer supported.)
cd38c1e1a   Alan Stern   USB: documentatio...
143

fcc4a01eb   Alan Stern   USB: use the runt...
144
  	power/autosuspend_delay_ms
cd38c1e1a   Alan Stern   USB: documentatio...
145
146
  
  		This file contains an integer value, which is the
fcc4a01eb   Alan Stern   USB: use the runt...
147
148
149
150
151
152
153
154
155
156
157
158
  		number of milliseconds the device should remain idle
  		before the kernel will autosuspend it (the idle-delay
  		time).  The default is 2000.  0 means to autosuspend
  		as soon as the device becomes idle, and negative
  		values mean never to autosuspend.  You can write a
  		number to the file to change the autosuspend
  		idle-delay time.
  
  Writing "-1" to power/autosuspend_delay_ms and writing "on" to
  power/control do essentially the same thing -- they both prevent the
  device from being autosuspended.  Yes, this is a redundancy in the
  API.
cd38c1e1a   Alan Stern   USB: documentatio...
159
160
161
162
  
  (In 2.6.21 writing "0" to power/autosuspend would prevent the device
  from being autosuspended; the behavior was changed in 2.6.22.  The
  power/autosuspend attribute did not exist prior to 2.6.21, and the
a90309860   Alan Stern   USB: deprecate th...
163
  power/level attribute did not exist prior to 2.6.22.  power/control
fcc4a01eb   Alan Stern   USB: use the runt...
164
165
  was added in 2.6.34, and power/autosuspend_delay_ms was added in
  2.6.37 but did not become functional until 2.6.38.)
cd38c1e1a   Alan Stern   USB: documentatio...
166
167
168
169
  
  
  	Changing the default idle-delay time
  	------------------------------------
fcc4a01eb   Alan Stern   USB: use the runt...
170
171
172
  The default autosuspend idle-delay time (in seconds) is controlled by
  a module parameter in usbcore.  You can specify the value when usbcore
  is loaded.  For example, to set it to 5 seconds instead of 2 you would
cd38c1e1a   Alan Stern   USB: documentatio...
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  do:
  
  	modprobe usbcore autosuspend=5
  
  Equivalently, you could add to /etc/modprobe.conf a line saying:
  
  	options usbcore autosuspend=5
  
  Some distributions load the usbcore module very early during the boot
  process, by means of a program or script running from an initramfs
  image.  To alter the parameter value you would have to rebuild that
  image.
  
  If usbcore is compiled into the kernel rather than built as a loadable
  module, you can add
  
  	usbcore.autosuspend=5
  
  to the kernel's boot command line.
  
  Finally, the parameter value can be changed while the system is
  running.  If you do:
  
  	echo 5 >/sys/module/usbcore/parameters/autosuspend
  
  then each new USB device will have its autosuspend idle-delay
  initialized to 5.  (The idle-delay values for already existing devices
  will not be affected.)
  
  Setting the initial default idle-delay to -1 will prevent any
  autosuspend of any USB device.  This is a simple alternative to
  disabling CONFIG_USB_SUSPEND and rebuilding the kernel, and it has the
  added benefit of allowing you to enable autosuspend for selected
  devices.
  
  
  	Warnings
  	--------
  
  The USB specification states that all USB devices must support power
  management.  Nevertheless, the sad fact is that many devices do not
  support it very well.  You can suspend them all right, but when you
  try to resume them they disconnect themselves from the USB bus or
  they stop working entirely.  This seems to be especially prevalent
  among printers and scanners, but plenty of other types of device have
  the same deficiency.
  
  For this reason, by default the kernel disables autosuspend (the
a90309860   Alan Stern   USB: deprecate th...
221
  power/control attribute is initialized to "on") for all devices other
cd38c1e1a   Alan Stern   USB: documentatio...
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
  than hubs.  Hubs, at least, appear to be reasonably well-behaved in
  this regard.
  
  (In 2.6.21 and 2.6.22 this wasn't the case.  Autosuspend was enabled
  by default for almost all USB devices.  A number of people experienced
  problems as a result.)
  
  This means that non-hub devices won't be autosuspended unless the user
  or a program explicitly enables it.  As of this writing there aren't
  any widespread programs which will do this; we hope that in the near
  future device managers such as HAL will take on this added
  responsibility.  In the meantime you can always carry out the
  necessary operations by hand or add them to a udev script.  You can
  also change the idle-delay time; 2 seconds is not the best choice for
  every device.
088f7fec8   Alan Stern   USB: implement us...
237
238
  If a driver knows that its device has proper suspend/resume support,
  it can enable autosuspend all by itself.  For example, the video
fcc4a01eb   Alan Stern   USB: use the runt...
239
240
241
  driver for a laptop's webcam might do this (in recent kernels they
  do), since these devices are rarely used and so should normally be
  autosuspended.
088f7fec8   Alan Stern   USB: implement us...
242

cd38c1e1a   Alan Stern   USB: documentatio...
243
  Sometimes it turns out that even when a device does work okay with
fcc4a01eb   Alan Stern   USB: use the runt...
244
245
246
247
248
249
250
  autosuspend there are still problems.  For example, the usbhid driver,
  which manages keyboards and mice, has autosuspend support.  Tests with
  a number of keyboards show that typing on a suspended keyboard, while
  causing the keyboard to do a remote wakeup all right, will nonetheless
  frequently result in lost keystrokes.  Tests with mice show that some
  of them will issue a remote-wakeup request in response to button
  presses but not to motion, and some in response to neither.
cd38c1e1a   Alan Stern   USB: documentatio...
251
252
253
  
  The kernel will not prevent you from enabling autosuspend on devices
  that can't handle it.  It is even possible in theory to damage a
fcc4a01eb   Alan Stern   USB: use the runt...
254
255
  device by suspending it at the wrong time.  (Highly unlikely, but
  possible.)  Take care.
cd38c1e1a   Alan Stern   USB: documentatio...
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
  
  
  	The driver interface for Power Management
  	-----------------------------------------
  
  The requirements for a USB driver to support external power management
  are pretty modest; the driver need only define
  
  	.suspend
  	.resume
  	.reset_resume
  
  methods in its usb_driver structure, and the reset_resume method is
  optional.  The methods' jobs are quite simple:
  
  	The suspend method is called to warn the driver that the
  	device is going to be suspended.  If the driver returns a
  	negative error code, the suspend will be aborted.  Normally
  	the driver will return 0, in which case it must cancel all
  	outstanding URBs (usb_kill_urb()) and not submit any more.
  
  	The resume method is called to tell the driver that the
  	device has been resumed and the driver can return to normal
  	operation.  URBs may once more be submitted.
  
  	The reset_resume method is called to tell the driver that
  	the device has been resumed and it also has been reset.
  	The driver should redo any necessary device initialization,
  	since the device has probably lost most or all of its state
  	(although the interfaces will be in the same altsettings as
  	before the suspend).
3c886c504   Alan Stern   USB: power-manage...
287
288
289
290
291
292
293
  If the device is disconnected or powered down while it is suspended,
  the disconnect method will be called instead of the resume or
  reset_resume method.  This is also quite likely to happen when
  waking up from hibernation, as many systems do not maintain suspend
  current to the USB host controllers during hibernation.  (It's
  possible to work around the hibernation-forces-disconnect problem by
  using the USB Persist facility.)
cd38c1e1a   Alan Stern   USB: documentatio...
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
  The reset_resume method is used by the USB Persist facility (see
  Documentation/usb/persist.txt) and it can also be used under certain
  circumstances when CONFIG_USB_PERSIST is not enabled.  Currently, if a
  device is reset during a resume and the driver does not have a
  reset_resume method, the driver won't receive any notification about
  the resume.  Later kernels will call the driver's disconnect method;
  2.6.23 doesn't do this.
  
  USB drivers are bound to interfaces, so their suspend and resume
  methods get called when the interfaces are suspended or resumed.  In
  principle one might want to suspend some interfaces on a device (i.e.,
  force the drivers for those interface to stop all activity) without
  suspending the other interfaces.  The USB core doesn't allow this; all
  interfaces are suspended when the device itself is suspended and all
  interfaces are resumed when the device is resumed.  It isn't possible
  to suspend or resume some but not all of a device's interfaces.  The
  closest you can come is to unbind the interfaces' drivers.
  
  
  	The driver interface for autosuspend and autoresume
  	---------------------------------------------------
  
  To support autosuspend and autoresume, a driver should implement all
  three of the methods listed above.  In addition, a driver indicates
  that it supports autosuspend by setting the .supports_autosuspend flag
  in its usb_driver structure.  It is then responsible for informing the
  USB core whenever one of its interfaces becomes busy or idle.  The
8e4ceb38e   Alan Stern   USB: prepare for ...
321
  driver does so by calling these six functions:
cd38c1e1a   Alan Stern   USB: documentatio...
322
323
324
  
  	int  usb_autopm_get_interface(struct usb_interface *intf);
  	void usb_autopm_put_interface(struct usb_interface *intf);
9ac39f28b   Alan Stern   USB: add asynchro...
325
326
  	int  usb_autopm_get_interface_async(struct usb_interface *intf);
  	void usb_autopm_put_interface_async(struct usb_interface *intf);
8e4ceb38e   Alan Stern   USB: prepare for ...
327
328
  	void usb_autopm_get_interface_no_resume(struct usb_interface *intf);
  	void usb_autopm_put_interface_no_suspend(struct usb_interface *intf);
cd38c1e1a   Alan Stern   USB: documentatio...
329

9bbdf1e0a   Alan Stern   USB: convert to t...
330
331
332
333
334
335
  The functions work by maintaining a usage counter in the
  usb_interface's embedded device structure.  When the counter is > 0
  then the interface is deemed to be busy, and the kernel will not
  autosuspend the interface's device.  When the usage counter is = 0
  then the interface is considered to be idle, and the kernel may
  autosuspend the device.
cd38c1e1a   Alan Stern   USB: documentatio...
336

9bbdf1e0a   Alan Stern   USB: convert to t...
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
  Drivers need not be concerned about balancing changes to the usage
  counter; the USB core will undo any remaining "get"s when a driver
  is unbound from its interface.  As a corollary, drivers must not call
  any of the usb_autopm_* functions after their diconnect() routine has
  returned.
  
  Drivers using the async routines are responsible for their own
  synchronization and mutual exclusion.
  
  	usb_autopm_get_interface() increments the usage counter and
  	does an autoresume if the device is suspended.  If the
  	autoresume fails, the counter is decremented back.
  
  	usb_autopm_put_interface() decrements the usage counter and
  	attempts an autosuspend if the new value is = 0.
cd38c1e1a   Alan Stern   USB: documentatio...
352

9ac39f28b   Alan Stern   USB: add asynchro...
353
354
  	usb_autopm_get_interface_async() and
  	usb_autopm_put_interface_async() do almost the same things as
9bbdf1e0a   Alan Stern   USB: convert to t...
355
356
  	their non-async counterparts.  The big difference is that they
  	use a workqueue to do the resume or suspend part of their
9ac39f28b   Alan Stern   USB: add asynchro...
357
358
  	jobs.  As a result they can be called in an atomic context,
  	such as an URB's completion handler, but when they return the
9bbdf1e0a   Alan Stern   USB: convert to t...
359
  	device will generally not yet be in the desired state.
9ac39f28b   Alan Stern   USB: add asynchro...
360

8e4ceb38e   Alan Stern   USB: prepare for ...
361
362
  	usb_autopm_get_interface_no_resume() and
  	usb_autopm_put_interface_no_suspend() merely increment or
9bbdf1e0a   Alan Stern   USB: convert to t...
363
364
365
  	decrement the usage counter; they do not attempt to carry out
  	an autoresume or an autosuspend.  Hence they can be called in
  	an atomic context.
81ab5b8ee   Geoff Levand   USB: Fix doc for ...
366

9bbdf1e0a   Alan Stern   USB: convert to t...
367
  The simplest usage pattern is that a driver calls
cd38c1e1a   Alan Stern   USB: documentatio...
368
  usb_autopm_get_interface() in its open routine and
9bbdf1e0a   Alan Stern   USB: convert to t...
369
370
  usb_autopm_put_interface() in its close or release routine.  But other
  patterns are possible.
cd38c1e1a   Alan Stern   USB: documentatio...
371
372
  
  The autosuspend attempts mentioned above will often fail for one
a90309860   Alan Stern   USB: deprecate th...
373
  reason or another.  For example, the power/control attribute might be
cd38c1e1a   Alan Stern   USB: documentatio...
374
375
  set to "on", or another interface in the same device might not be
  idle.  This is perfectly normal.  If the reason for failure was that
9bbdf1e0a   Alan Stern   USB: convert to t...
376
377
378
  the device hasn't been idle for long enough, a timer is scheduled to
  carry out the operation automatically when the autosuspend idle-delay
  has expired.
cd38c1e1a   Alan Stern   USB: documentatio...
379

baf67741b   Alan Stern   USB: power manage...
380
381
  Autoresume attempts also can fail, although failure would mean that
  the device is no longer present or operating properly.  Unlike
9bbdf1e0a   Alan Stern   USB: convert to t...
382
  autosuspend, there's no idle-delay for an autoresume.
cd38c1e1a   Alan Stern   USB: documentatio...
383
384
385
386
  
  
  	Other parts of the driver interface
  	-----------------------------------
088f7fec8   Alan Stern   USB: implement us...
387
388
389
390
391
392
  Drivers can enable autosuspend for their devices by calling
  
  	usb_enable_autosuspend(struct usb_device *udev);
  
  in their probe() routine, if they know that the device is capable of
  suspending and resuming correctly.  This is exactly equivalent to
a90309860   Alan Stern   USB: deprecate th...
393
  writing "auto" to the device's power/control attribute.  Likewise,
088f7fec8   Alan Stern   USB: implement us...
394
395
396
  drivers can disable autosuspend by calling
  
  	usb_disable_autosuspend(struct usb_device *udev);
a90309860   Alan Stern   USB: deprecate th...
397
  This is exactly the same as writing "on" to the power/control attribute.
088f7fec8   Alan Stern   USB: implement us...
398

cd38c1e1a   Alan Stern   USB: documentatio...
399
400
401
402
403
  Sometimes a driver needs to make sure that remote wakeup is enabled
  during autosuspend.  For example, there's not much point
  autosuspending a keyboard if the user can't cause the keyboard to do a
  remote wakeup by typing on it.  If the driver sets
  intf->needs_remote_wakeup to 1, the kernel won't autosuspend the
fcc4a01eb   Alan Stern   USB: use the runt...
404
405
406
407
408
  device if remote wakeup isn't available.  (If the device is already
  autosuspended, though, setting this flag won't cause the kernel to
  autoresume it.  Normally a driver would set this flag in its probe
  method, at which time the device is guaranteed not to be
  autosuspended.)
cd38c1e1a   Alan Stern   USB: documentatio...
409

9bbdf1e0a   Alan Stern   USB: convert to t...
410
411
412
413
  If a driver does its I/O asynchronously in interrupt context, it
  should call usb_autopm_get_interface_async() before starting output and
  usb_autopm_put_interface_async() when the output queue drains.  When
  it receives an input event, it should call
cd38c1e1a   Alan Stern   USB: documentatio...
414
415
  
  	usb_mark_last_busy(struct usb_device *udev);
fcc4a01eb   Alan Stern   USB: use the runt...
416
417
418
419
  in the event handler.  This tells the PM core that the device was just
  busy and therefore the next autosuspend idle-delay expiration should
  be pushed back.  Many of the usb_autopm_* routines also make this call,
  so drivers need to worry only when interrupt-driven input arrives.
9bbdf1e0a   Alan Stern   USB: convert to t...
420
421
  
  Asynchronous operation is always subject to races.  For example, a
fcc4a01eb   Alan Stern   USB: use the runt...
422
423
424
425
426
427
428
  driver may call the usb_autopm_get_interface_async() routine at a time
  when the core has just finished deciding the device has been idle for
  long enough but not yet gotten around to calling the driver's suspend
  method.  The suspend method must be responsible for synchronizing with
  the I/O request routine and the URB completion handler; it should
  cause autosuspends to fail with -EBUSY if the driver needs to use the
  device.
cd38c1e1a   Alan Stern   USB: documentatio...
429
430
  
  External suspend calls should never be allowed to fail in this way,
5b1b0b812   Alan Stern   PM / Runtime: Add...
431
432
433
434
  only autosuspend calls.  The driver can tell them apart by applying
  the PMSG_IS_AUTO() macro to the message argument to the suspend
  method; it will return True for internal PM events (autosuspend) and
  False for external PM events.
cd38c1e1a   Alan Stern   USB: documentatio...
435

cd38c1e1a   Alan Stern   USB: documentatio...
436

9bbdf1e0a   Alan Stern   USB: convert to t...
437
438
  	Mutual exclusion
  	----------------
cd38c1e1a   Alan Stern   USB: documentatio...
439

9bbdf1e0a   Alan Stern   USB: convert to t...
440
441
442
443
444
445
  For external events -- but not necessarily for autosuspend or
  autoresume -- the device semaphore (udev->dev.sem) will be held when a
  suspend or resume method is called.  This implies that external
  suspend/resume events are mutually exclusive with calls to probe,
  disconnect, pre_reset, and post_reset; the USB core guarantees that
  this is true of autosuspend/autoresume events as well.
cd38c1e1a   Alan Stern   USB: documentatio...
446
447
  
  If a driver wants to block all suspend/resume calls during some
9bbdf1e0a   Alan Stern   USB: convert to t...
448
449
450
451
452
  critical section, the best way is to lock the device and call
  usb_autopm_get_interface() (and do the reverse at the end of the
  critical section).  Holding the device semaphore will block all
  external PM calls, and the usb_autopm_get_interface() will prevent any
  internal PM calls, even if it fails.  (Exercise: Why?)
cd38c1e1a   Alan Stern   USB: documentatio...
453
454
455
456
457
458
459
  
  
  	Interaction between dynamic PM and system PM
  	--------------------------------------------
  
  Dynamic power management and system power management can interact in
  a couple of ways.
9bbdf1e0a   Alan Stern   USB: convert to t...
460
461
462
463
  Firstly, a device may already be autosuspended when a system suspend
  occurs.  Since system suspends are supposed to be as transparent as
  possible, the device should remain suspended following the system
  resume.  But this theory may not work out well in practice; over time
fcc4a01eb   Alan Stern   USB: use the runt...
464
465
466
  the kernel's behavior in this regard has changed.  As of 2.6.37 the
  policy is to resume all devices during a system resume and let them
  handle their own runtime suspends afterward.
cd38c1e1a   Alan Stern   USB: documentatio...
467
468
469
470
471
472
473
474
475
476
477
  
  Secondly, a dynamic power-management event may occur as a system
  suspend is underway.  The window for this is short, since system
  suspends don't take long (a few seconds usually), but it can happen.
  For example, a suspended device may send a remote-wakeup signal while
  the system is suspending.  The remote wakeup may succeed, which would
  cause the system suspend to abort.  If the remote wakeup doesn't
  succeed, it may still remain active and thus cause the system to
  resume as soon as the system suspend is complete.  Or the remote
  wakeup may fail and get lost.  Which outcome occurs depends on timing
  and on the hardware and firmware design.
c1045e87b   Andiry Xu   usbcore: add sysf...
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
  
  
  	xHCI hardware link PM
  	---------------------
  
  xHCI host controller provides hardware link power management to usb2.0
  (xHCI 1.0 feature) and usb3.0 devices which support link PM. By
  enabling hardware LPM, the host can automatically put the device into
  lower power state(L1 for usb2.0 devices, or U1/U2 for usb3.0 devices),
  which state device can enter and resume very quickly.
  
  The user interface for controlling USB2 hardware LPM is located in the
  power/ subdirectory of each USB device's sysfs directory, that is, in
  /sys/bus/usb/devices/.../power/ where "..." is the device's ID. The
  relevant attribute files is usb2_hardware_lpm.
  
  	power/usb2_hardware_lpm
  
  		When a USB2 device which support LPM is plugged to a
  		xHCI host root hub which support software LPM, the
  		host will run a software LPM test for it; if the device
  		enters L1 state and resume successfully and the host
  		supports USB2 hardware LPM, this file will show up and
  		driver will enable hardware LPM	for the device. You
  		can write y/Y/1 or n/N/0 to the file to	enable/disable
  		USB2 hardware LPM manually. This is for	test purpose mainly.