Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.24 156 lines 7.5 kB view raw
1 USB device persistence during system suspend 2 3 Alan Stern <stern@rowland.harvard.edu> 4 5 September 2, 2006 (Updated May 29, 2007) 6 7 8 What is the problem? 9 10According to the USB specification, when a USB bus is suspended the 11bus must continue to supply suspend current (around 1-5 mA). This 12is so that devices can maintain their internal state and hubs can 13detect connect-change events (devices being plugged in or unplugged). 14The technical term is "power session". 15 16If a USB device's power session is interrupted then the system is 17required to behave as though the device has been unplugged. It's a 18conservative approach; in the absence of suspend current the computer 19has no way to know what has actually happened. Perhaps the same 20device is still attached or perhaps it was removed and a different 21device plugged into the port. The system must assume the worst. 22 23By default, Linux behaves according to the spec. If a USB host 24controller loses power during a system suspend, then when the system 25wakes up all the devices attached to that controller are treated as 26though they had disconnected. This is always safe and it is the 27"officially correct" thing to do. 28 29For many sorts of devices this behavior doesn't matter in the least. 30If the kernel wants to believe that your USB keyboard was unplugged 31while the system was asleep and a new keyboard was plugged in when the 32system woke up, who cares? It'll still work the same when you type on 33it. 34 35Unfortunately problems _can_ arise, particularly with mass-storage 36devices. The effect is exactly the same as if the device really had 37been unplugged while the system was suspended. If you had a mounted 38filesystem on the device, you're out of luck -- everything in that 39filesystem is now inaccessible. This is especially annoying if your 40root filesystem was located on the device, since your system will 41instantly crash. 42 43Loss of power isn't the only mechanism to worry about. Anything that 44interrupts a power session will have the same effect. For example, 45even though suspend current may have been maintained while the system 46was asleep, on many systems during the initial stages of wakeup the 47firmware (i.e., the BIOS) resets the motherboard's USB host 48controllers. Result: all the power sessions are destroyed and again 49it's as though you had unplugged all the USB devices. Yes, it's 50entirely the BIOS's fault, but that doesn't do _you_ any good unless 51you can convince the BIOS supplier to fix the problem (lots of luck!). 52 53On many systems the USB host controllers will get reset after a 54suspend-to-RAM. On almost all systems, no suspend current is 55available during hibernation (also known as swsusp or suspend-to-disk). 56You can check the kernel log after resuming to see if either of these 57has happened; look for lines saying "root hub lost power or was reset". 58 59In practice, people are forced to unmount any filesystems on a USB 60device before suspending. If the root filesystem is on a USB device, 61the system can't be suspended at all. (All right, it _can_ be 62suspended -- but it will crash as soon as it wakes up, which isn't 63much better.) 64 65 66 What is the solution? 67 68Setting CONFIG_USB_PERSIST will cause the kernel to work around these 69issues. It enables a mode in which the core USB device data 70structures are allowed to persist across a power-session disruption. 71It works like this. If the kernel sees that a USB host controller is 72not in the expected state during resume (i.e., if the controller was 73reset or otherwise had lost power) then it applies a persistence check 74to each of the USB devices below that controller for which the 75"persist" attribute is set. It doesn't try to resume the device; that 76can't work once the power session is gone. Instead it issues a USB 77port reset and then re-enumerates the device. (This is exactly the 78same thing that happens whenever a USB device is reset.) If the 79re-enumeration shows that the device now attached to that port has the 80same descriptors as before, including the Vendor and Product IDs, then 81the kernel continues to use the same device structure. In effect, the 82kernel treats the device as though it had merely been reset instead of 83unplugged. 84 85If no device is now attached to the port, or if the descriptors are 86different from what the kernel remembers, then the treatment is what 87you would expect. The kernel destroys the old device structure and 88behaves as though the old device had been unplugged and a new device 89plugged in, just as it would without the CONFIG_USB_PERSIST option. 90 91The end result is that the USB device remains available and usable. 92Filesystem mounts and memory mappings are unaffected, and the world is 93now a good and happy place. 94 95Note that even when CONFIG_USB_PERSIST is set, the "persist" feature 96will be applied only to those devices for which it is enabled. You 97can enable the feature by doing (as root): 98 99 echo 1 >/sys/bus/usb/devices/.../power/persist 100 101where the "..." should be filled in the with the device's ID. Disable 102the feature by writing 0 instead of 1. For hubs the feature is 103automatically and permanently enabled, so you only have to worry about 104setting it for devices where it really matters. 105 106 107 Is this the best solution? 108 109Perhaps not. Arguably, keeping track of mounted filesystems and 110memory mappings across device disconnects should be handled by a 111centralized Logical Volume Manager. Such a solution would allow you 112to plug in a USB flash device, create a persistent volume associated 113with it, unplug the flash device, plug it back in later, and still 114have the same persistent volume associated with the device. As such 115it would be more far-reaching than CONFIG_USB_PERSIST. 116 117On the other hand, writing a persistent volume manager would be a big 118job and using it would require significant input from the user. This 119solution is much quicker and easier -- and it exists now, a giant 120point in its favor! 121 122Furthermore, the USB_PERSIST option applies to _all_ USB devices, not 123just mass-storage devices. It might turn out to be equally useful for 124other device types, such as network interfaces. 125 126 127 WARNING: Using CONFIG_USB_PERSIST can be dangerous!! 128 129When recovering an interrupted power session the kernel does its best 130to make sure the USB device hasn't been changed; that is, the same 131device is still plugged into the port as before. But the checks 132aren't guaranteed to be 100% accurate. 133 134If you replace one USB device with another of the same type (same 135manufacturer, same IDs, and so on) there's an excellent chance the 136kernel won't detect the change. Serial numbers and other strings are 137not compared. In many cases it wouldn't help if they were, because 138manufacturers frequently omit serial numbers entirely in their 139devices. 140 141Furthermore it's quite possible to leave a USB device exactly the same 142while changing its media. If you replace the flash memory card in a 143USB card reader while the system is asleep, the kernel will have no 144way to know you did it. The kernel will assume that nothing has 145happened and will continue to use the partition tables, inodes, and 146memory mappings for the old card. 147 148If the kernel gets fooled in this way, it's almost certain to cause 149data corruption and to crash your system. You'll have no one to blame 150but yourself. 151 152YOU HAVE BEEN WARNED! USE AT YOUR OWN RISK! 153 154That having been said, most of the time there shouldn't be any trouble 155at all. The "persist" feature can be extremely useful. Make the most 156of it.