View previous topic :: View next topic |
Author |
Message |
molander Tux's lil' helper
Joined: 20 Jun 2003 Posts: 110 Location: St. Louis
|
Posted: Sat Feb 21, 2004 6:52 am Post subject: Mouse Scroll Wheel on Athlon64 |
|
|
I have tried to get my scroll wheel to work on my athlon64 but it is being very stubborn. Are there any tricks to get it working on this platform? I have used this on many other x86 systems with no difficulty.
Code: |
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Buttons" "5"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/mouse"
EndSection
|
This is an MS USB mouse that has never had any other problems. The mouse in X works great other than the lack of a scroll wheel. I have a gigabyte nforce3 150 if that makes any difference... |
|
Back to top |
|
|
lightvhawk0 Guru
Joined: 07 Nov 2003 Posts: 388
|
Posted: Sat Feb 21, 2004 7:13 am Post subject: |
|
|
My xf86config is:
Code: |
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/usbmouse"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
|
try switching the protocol and if that doesn't work try passing this option off to your kernel _________________ If God has made us in his image, we have returned him the favor. - Voltaire |
|
Back to top |
|
|
Corona688 Veteran
Joined: 10 Jan 2004 Posts: 1204
|
Posted: Sat Feb 21, 2004 3:44 pm Post subject: |
|
|
My XF86Config mouse settings are identical to the above ones except I didn't need to specify the number of buttons. The ZAxisMapping option is what got mousewheel working for me.
Hm. Maybye try commenting out the ZAxisMapping line? If it's working WITHOUT ZAxisMapping, maybye the mapping causes it to NOT work? |
|
Back to top |
|
|
molander Tux's lil' helper
Joined: 20 Jun 2003 Posts: 110 Location: St. Louis
|
Posted: Sat Feb 21, 2004 5:25 pm Post subject: |
|
|
Thanks for the ideas but neither seemed to work. I can't find my ps2 adapter for my mouse so when I do I suppose I will try that. I noticed this in dmesg though. I may be missing something in my kernel config
ohci1394: $Rev: 1097 $ Ben Collins <bcollins@debian.org>
ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[11]
MMIO=[fb008000-fb0087ff] Max Packet=[2048]
ohci1394: fw-host1: OHCI-1394 1.1 (PCI): IRQ=[9] MMIO=[fb00a000-fb00a7ff] Max Packet=[2048]
raw1394: /dev/raw1394 device initialized
sbp2: $Rev: 1096 $ Ben Collins <bcollins@debian.org>
Console: switching to colour frame buffer device 153x54 drivers/usb/core/usb.c: registered new driver usblp drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver Initializing USB Mass Storage driver...
drivers/usb/core/usb.c: registered new driver usb-storage
USB Mass Storage support registered.
drivers/usb/core/usb.c: registered new driver hiddev drivers/usb/core/usb.c: registered new driver hid drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
serio: i8042 AUX port at 0x60,0x64 irq 12
input: PS/2 Generic Mouse on isa0060/serio1
serio: i8042 KBD port at 0x60,0x64 irq 1
input: AT Translated Set 2 keyboard on isa0060/serio0
Sounds like the usb mouse is getting remapped as ps2 by the bios or the kernel. |
|
Back to top |
|
|
molander Tux's lil' helper
Joined: 20 Jun 2003 Posts: 110 Location: St. Louis
|
Posted: Sat Feb 21, 2004 5:40 pm Post subject: SOLVED |
|
|
Okay so yeah, gigabyte thought it would be good to enable USB mouse/keyboard support in the BIOS. Once I disabled that the scroll wheel worked. |
|
Back to top |
|
|
thumper Guru
Joined: 06 Dec 2002 Posts: 554 Location: Venice FL
|
Posted: Sat Feb 21, 2004 10:51 pm Post subject: |
|
|
After reading your post, I noticed my scroll mouse did not scroll either, I just never use it, so in the interest science, I thought I'd check into it. My Protocol was set to Auto, and there was no ZAxisMapping.
I chenged it to: Code: | Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ImPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection
|
And now the scroll works fine.
I'm using Kernel 2.6.3.
George |
|
Back to top |
|
|
|