Synaptics Multitouch doesn't work

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
geminga

Synaptics Multitouch doesn't work

Post by geminga »

Hello people,

first of all, excuse me for my "buggy" english :D

I'm trying to get my Synaptics-Touchpad work but it just won't. There are no blue links in Google anymore, because all of them are purple and already read by me -.-
I will just give you the outputs of some commands I learned while working on this. I'm not a professional Linux user, it started 3 weeks ago.
I think the main problem is that the OS doesn't recognize the Touchpad as a Synaptics-Touchpad, but ImPS/2 wheel mouse -.- I don't have the skills to fix this for my own.
I changed my xorg.conf maybe 50 times, but i didn't work. Prebaked xorg snippets will not work, too. Help me pls :)

So, here we go.


cat /proc/bus/input/devices

Code: Select all

I: Bus=0019 Vendor=0000 Product=0005 Version=0000
N: Name="Lid Switch"
P: Phys=PNP0C0D/button/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
U: Uniq=
H: Handlers=event0 
B: EV=21
B: SW=1

I: Bus=0019 Vendor=0000 Product=0003 Version=0000
N: Name="Sleep Button"
P: Phys=PNP0C0E/button/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
U: Uniq=
H: Handlers=kbd event1 
B: EV=3
B: KEY=4000 0 0 0 0

I: Bus=0019 Vendor=0000 Product=0001 Version=0000
N: Name="Power Button"
P: Phys=LNXPWRBN/button/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
U: Uniq=
H: Handlers=kbd event2 
B: EV=3
B: KEY=100000 0 0 0

I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
S: Sysfs=/devices/platform/i8042/serio0/input/input3
U: Uniq=
H: Handlers=sysrq kbd event3 
B: EV=120013
B: KEY=10000 c0200 0 0 0 0 0 700f 2000003 3803078 f830f401 febfffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7

I: Bus=0019 Vendor=0000 Product=0006 Version=0000
N: Name="Video Bus"
P: Phys=LNXVIDEO/video/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input4
U: Uniq=
H: Handlers=kbd event4 
B: EV=3
B: KEY=3e000b 0 0 0 0 0 0 0

I: Bus=0003 Vendor=064e Product=a117 Version=0600
N: Name="HD Video WebCam"
P: Phys=usb-0000:00:1d.7-5/button
S: Sysfs=/devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input6
U: Uniq=
H: Handlers=kbd event6 
B: EV=3
B: KEY=100000 0 0 0 0 0 0

I: Bus=0011 Vendor=0002 Product=0005 Version=0000
N: Name="ImPS/2 Generic Wheel Mouse" 
P: Phys=isa0060/serio2/input0
S: Sysfs=/devices/platform/i8042/serio2/input/input7
U: Uniq=
H: Handlers=mouse1 event7 
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=103
cat /etc/X11/xorg.conf

Code: Select all

Section "Screen"
	Identifier	"Default Screen"
	DefaultDepth	24
EndSection

Section "Module"
	Load	"glx"
EndSection

Section "Device"
	Identifier	"Default Device"
	Driver	"nvidia"
	Option	"NoLogo"	"True"
EndSection
uname -r

Code: Select all

2.6.35-24-generic
xserver-xorg-input-synaptics is installed and with dmesg | grep Synaptics there is no output.

Thanks

geminga
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
dawgdoc

Re: Synaptics Multitouch doesn't work

Post by dawgdoc »

I'm not going to be of much help but I will throw a couple of things out until someone with some expertise shows up:

I have a Synaptics touchpad and is indicated as SynPS/2 Synaptics TouchPad when I run xinput list, is this how you determined yours is detected as a ImPS2 wheel mouse?

Running lsmod to determine any mouse or touchpad related modules that are in use all I receive from lsmod | grep "mou\|syn\|Syn" is psmouse 44653 0

When I check modprobe to see what modules/drivers are in the kernel, modprobe -l | grep "mous\|syna\|Syna" I receive

Code: Select all

dawgdoc-lmd@dv6000-laptop-lmd ~ $ /sbin/modprobe -l | grep "mous\|syna\|Syna"
kernel/drivers/usb/misc/idmouse.ko
kernel/drivers/input/mouse/synaptics_i2c.ko
kernel/drivers/input/mouse/sermouse.ko
kernel/drivers/input/mouse/pc110pad.ko
kernel/drivers/input/mouse/logibm.ko
kernel/drivers/input/mouse/bcm5974.ko
kernel/drivers/input/mouse/vsxxxaa.ko
kernel/drivers/input/mouse/appletouch.ko
kernel/drivers/input/mouse/psmouse.ko
kernel/drivers/input/mouse/inport.ko
(I added the /sbin/ in front of modprobe because I am using LMDE and have not modified $PATH)

The lines from that output that probably matter are

Code: Select all

kernel/drivers/input/mouse/synaptics_i2c.ko
kernel/drivers/input/mouse/psmouse.ko
I do not know if these two modules are significant or not

Code: Select all

kernel/drivers/usb/misc/idmouse.ko
kernel/drivers/input/mouse/sermouse.ko
kernel/drivers/input/mouse/pc110pad.ko
THIS post and the one two below it have links to, mostly ubuntu, sites for configuring and debugging ALPS and Synaptics touchpads. But you may have already seen the linked pages during your google searching.
Locked

Return to “Hardware Support”