Lenovo TouchPad V15-IIL not working 10th gen intel

I have a Lenovo V15-IIL 82C500GCGE notebook, with an Intel Gen10 i5-1035G1 CPU and an Intel chipset. The system is Ubuntu is 20.04 with all updates. The touchpad is not working.

Is it possible to get a driver for the Intel Serial IO from/for the 10 Generation Intel Chipset?

If it helps you, in Windows 10 is the same problem, after installing a clean Windows 10 it is needed to install this driver to get it working: Intel Serial-IO (SIO) Driver for Windows 10 (64-bit) - V14-IIL, V15-IIL

3

2 Answers

Run sudo nano /etc/default/grub and append i8042.nopnp=1 pci=nocrs

To GRUB_CMDLINE_LINUX_DEFAULT line to be:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nopnp=1 pci=nocrs"

Save the file and run in a terminal

sudo update-grub

Reboot and the touchpad should work.

Source

2

SOLVED!

I have Ideapad 3 15IIL05 with i3, Ubuntu 22.04, kernel 5.15. Touchpad was not recognised at all!

What worked for me was:

  1. I downgraded my kernel to 5.13.0, followed link below.
  1. ONLY THEN solution on updating grub worked!!!

Open terminal and run following command:

sudo nano /etc/default/grub

then add i8042.nopnp=1 pci=nocrs to GRUB_CMDLINE_LINUX_DEFAULT line to be:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nopnp=1 pci=nocrs"

CTRL + X > Y > Enter to save and exit in nano, then in the terminal run:

sudo update-grub

Reboot

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like