This is related to the issue discussed in Wireless mouse temporarily freezes (sleeps) on battery power.
Summary: the mouse freezes when operating on battery since it is autosuspended after a certain time and needs more time to wake up.
Disabling USB autosuspend for the mouse's receiver in PowerTOP is a temporary solution, but it does not survive a reboot.
How can I permanently disable the USB autosuspend for only one specific device?
A solution that does not involve installing additional packages is preferred (after all, I want to disable something), but it is not required. Removing PowerTOP (which seems to be a solution for some) is not what I want - I like PowerTOP...
And installing laptop-mode-tools
to disable USB autosuspend altogether is not what I want, either, thus the new question.
Also: Will this affect the battery of my notebook? The Logitech unifying receiver for the mouse stays connected all the time, so if that prevents the autosuspend from happening for all devices that would probably be bad.
Ubuntu 16.04 (Xenial Xerus)
Find the USB device's input id - it should look like
1234:5678
.Edit the file
sudo vi /etc/default/tlp
and add your device's input ID toUSB_BLACKLIST
by adding the following line with your device's input id like so:Ubuntu 14.04 (Trusty Tahr)
As mentioned here at hecticgeek.com, the trick consists of two parts:
Using
lsusb
to ascertain the device IDs of the USB devices you wish to disable autosuspend for.And then adding them to
AUTOSUSPEND_USBID_BLACKLIST
in the/etc/laptop-mode/conf.d/runtime-pm.conf
(usb-autosuspend.conf
until Ubuntu 14.04) configuration file (details are well documented in there as well).I had a similar problem with PCs on an Avocent KVM, where laptop-mode-tools was not installed (and didn't want to solve it that way in any case). In my case, autosuspending the KVM made the keyboard and mouse behave erratically (after a few seconds idle, they'd suspend and lose input data for a while until enough clicks and shakes woke them up).
When I ran PowerTOP and toggled USB autosuspend off for the Avocent, PowerTOP told me the command to disable it from the command line was:
The '3-10' bit will be different on different systems. I'm not sure how to determine that other than running PowerTOP, but there's probably some way.
Instead, I used a udev rule to match the product id of my device:
trent+14.04:/etc/udev/rules.d$ cat 10-usb-avocent-kvm-pm.rules
To get the proper udev information I ran:
In
/etc/laptop-mode/conf.d/usb-autosuspend.conf
you will find:You should change it to
CONTROL_USB_AUTOSUSPEND="0"
.This will automatically make any USB device have the value "on" in
/sys/bus/usb/devices/"DEVICE ID"/power/control
. This will make the value of the autosuspend files inactive:The power options for a USB device are in
/sys/bus/usb/devices/n-n/power
. Unfortunately, what n-n is for a given device takes some sleuthing to find out, so I think this will prove a stumbling block when it comes to having a script that automatically doesto turn off autosuspend on that device. The magic n-n does actually appear in the output of
so I think udev will be your friend here; some kind of udev script keyed on a parameter that identifies your mouse, then runs a script that echos -1 into the relevant file.
I created my own udev rule:
In Ubuntu 16.04 LTS (Xenial Xerus), I found a solution in
/etc/laptop-mode/conf.d/runtime-pm.conf
:It was originally set for
2
for me. 30 minutes is far more reasonable.After the change, do:
I am still not sure how to fully disable it, but this is fine for me now.