You are not logged in.

#1 2015-03-16 13:39:50

Witz
Member
Registered: 2015-03-16
Posts: 1

Touchpad do not work after suspend

Hi,

my touchpad do not work on my Fujitsu UH552 laptop on wakeup from suspend.
I have added i8042.notimeout and i8042.nomux to boot parameters to get the touchpad to get it to work and that fixes the problem when I boot the computer. But after a suspend the touchpad dose not work.

I have tried synclient TouchpadOff=0 and Xinput disable and enable.

I would be glad for some help,

Fredrik Adolfsson

Offline

#2 2015-03-24 14:27:13

wakkadojo
Member
Registered: 2009-05-31
Posts: 50

Re: Touchpad do not work after suspend

One possibility is that the kernel modules are dropping on suspend, and that you need to reload them. I had the same issue with my yoga 3 11 and touch screen modules with suspending.

The way that problem was solved was by creating a custom systemctl service that reloads the modules on resume. I

Make a file named touchpad-fix.service in /etc/systemd/service/

[Unit]
Description=Fix touchpad after resuming suspend
After=suspend.target

[Service]
Type=oneshot
ExecStart=/usr/bin/rmmod <your kernel modules here>
ExecStart=/usr/bin/modprobe <the same kernel modules>

[Install]
WantedBy=suspend.target

And then enable the module with

# systemctl enable touchpad-fix.service

Fingers crossed, good luck!

Last edited by wakkadojo (2015-03-24 14:30:06)

Offline

Board footer

Powered by FluxBB