Gentoo Archives: gentoo-user

From: Alexander Kapshuk <alexander.kapshuk@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] re: trouble with USB mouse on laptop
Date: Sat, 23 Aug 2014 12:51:52
Message-Id: 53F88E5C.4030409@gmail.com
In Reply to: Re: [gentoo-user] re: trouble with USB mouse on laptop by "J. Roeleveld"
1 On 08/08/2014 10:46 AM, J. Roeleveld wrote:
2 > On Friday, August 08, 2014 10:30:55 AM Alexander Kapshuk wrote:
3 >> Howdy,
4 >>
5 >> I've been having trouble with USB mice on my laptop, with the mouse
6 >> pointer and the scroll wheel not responding all the time. It's not until
7 >> I click either button that the mouse starts responding again.
8 >>
9 >> The output taken from /var/log/messages shown below does not seem out of
10 >> the ordinary:
11 >> Aug 8 09:32:56 localhost kernel: [ 5692.801085] usb 4-2: new low-speed
12 >> USB device number 6 using uhci_h
13 >> cd
14 >> Aug 8 09:32:56 localhost kernel: [ 5692.968100] usb 4-2: New USB device
15 >> found, idVendor=045e, idProduct
16 >> =0084
17 >> Aug 8 09:32:56 localhost kernel: [ 5692.968109] usb 4-2: New USB device
18 >> strings: Mfr=1, Product=2, Seri
19 >> alNumber=0
20 >> Aug 8 09:32:56 localhost kernel: [ 5692.968116] usb 4-2: Product:
21 >> Microsoft Basic Optical Mouse
22 >> Aug 8 09:32:56 localhost kernel: [ 5692.968121] usb 4-2: Manufacturer:
23 >> Microsoft
24 >> Aug 8 09:32:56 localhost kernel: [ 5692.995929] input: Microsoft
25 >> Microsoft Basic Optical Mouse as /devi
26 >> ces/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/0003:045E:0084.0005/input/input
27 >> 12 Aug 8 09:32:56 localhost kernel: [ 5692.996296] hid-generic
28 >> 0003:045E:0084.0005: input,hidraw0: USB HID
29 >> v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse] on
30 >> usb-0000:00:1a.1-2/input0
31 >> Aug 8 09:32:56 localhost mtp-probe: checking bus 4, device 6:
32 >> "/sys/devices/pci0000:00/0000:00:1a.1/usb4/4-2"
33 >> Aug 8 09:32:56 localhost mtp-probe: bus: 4, device: 6 was not an MTP device
34 >>
35 >> Your advice would be appreciated.
36 >>
37 >> Alexander Kapshuk.
38 > Looks like quite a few people have issues with that mouse. Googling for
39 > "idVendor=045e, idProduct=0084" brings up several hits with people describing
40 > what you are seeing.
41 >
42 > Basically, it looks like the latest firmware on the mouse seems to have some
43 > powersaving functions that don't work properly.
44 >
45 > Can you test with a different mouse to see if that one works?
46 > Alternatively, disable USB powersaving:
47 >
48 > # for i in /sys/bus/usb/devices/*/power/autosuspend;
49 > do echo 2 > $i;
50 > done
51 >
52 > # for foo in /sys/bus/usb/devices/*/power/level;
53 > do echo on > $foo;
54 > done
55 >
56 > --
57 > Joost
58 >
59 I've done as suggested above as well as set AUTOSUSPEND_USBID_BLACKLIST
60 in /etc/laptop-mode/conf.d/usb-autosuspend.conf to the ID of my USB
61 mouse. So far the mouse has been working OK.
62
63 Thanks for your help.

Replies

Subject Author
Re: [gentoo-user] re: trouble with USB mouse on laptop "J. Roeleveld" <joost@××××××××.org>