Gentoo Archives: gentoo-user

From: "J. Roeleveld" <joost@××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] re: trouble with USB mouse on laptop
Date: Fri, 08 Aug 2014 07:46:28
Message-Id: 18046920.RXTPoANqhl@andromeda
In Reply to: [gentoo-user] re: trouble with USB mouse on laptop by Alexander Kapshuk
1 On Friday, August 08, 2014 10:30:55 AM Alexander Kapshuk wrote:
2 > Howdy,
3 >
4 > I've been having trouble with USB mice on my laptop, with the mouse
5 > pointer and the scroll wheel not responding all the time. It's not until
6 > I click either button that the mouse starts responding again.
7 >
8 > The output taken from /var/log/messages shown below does not seem out of
9 > the ordinary:
10 > Aug 8 09:32:56 localhost kernel: [ 5692.801085] usb 4-2: new low-speed
11 > USB device number 6 using uhci_h
12 > cd
13 > Aug 8 09:32:56 localhost kernel: [ 5692.968100] usb 4-2: New USB device
14 > found, idVendor=045e, idProduct
15 > =0084
16 > Aug 8 09:32:56 localhost kernel: [ 5692.968109] usb 4-2: New USB device
17 > strings: Mfr=1, Product=2, Seri
18 > alNumber=0
19 > Aug 8 09:32:56 localhost kernel: [ 5692.968116] usb 4-2: Product:
20 > Microsoft Basic Optical Mouse
21 > Aug 8 09:32:56 localhost kernel: [ 5692.968121] usb 4-2: Manufacturer:
22 > Microsoft
23 > Aug 8 09:32:56 localhost kernel: [ 5692.995929] input: Microsoft
24 > Microsoft Basic Optical Mouse as /devi
25 > ces/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/0003:045E:0084.0005/input/input
26 > 12 Aug 8 09:32:56 localhost kernel: [ 5692.996296] hid-generic
27 > 0003:045E:0084.0005: input,hidraw0: USB HID
28 > v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse] on
29 > usb-0000:00:1a.1-2/input0
30 > Aug 8 09:32:56 localhost mtp-probe: checking bus 4, device 6:
31 > "/sys/devices/pci0000:00/0000:00:1a.1/usb4/4-2"
32 > Aug 8 09:32:56 localhost mtp-probe: bus: 4, device: 6 was not an MTP device
33 >
34 > Your advice would be appreciated.
35 >
36 > Alexander Kapshuk.
37
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

Replies

Subject Author
Re: [gentoo-user] re: trouble with USB mouse on laptop Alexander Kapshuk <alexander.kapshuk@×××××.com>
Re: [gentoo-user] re: trouble with USB mouse on laptop Alexander Kapshuk <alexander.kapshuk@×××××.com>