touchpad not working on Lenovo Thinkbook 15-IIL

Looked a bit around and apparently these models are notorious for their buggy ACPI firmware. The fix might require an ACPI DSDT override. Exciting stuff :D

Some interesting resources while doing a shallow plunge on the topic:

Might be worth checking with the manufacturer for a bios update. cross fingers it might have sorted this mess out (unlikely)
 
Slightly different model, but might provide some clues for yours.

 
Hi,

Maybe you are facing the same issue I had with my thinkbook G6.

short version:
The motherboard supports several touchpad models (Synaptics, Elan, ...)
Consequently, the firmware defers the selection until runtime,
the _INI method is supposed query the embedded controller, but because
the ACPI ECDT Namepath is broken, nothing occurs and the touchpad never works.

You can easily check that by dumping the ECDT table:
Code:
% sudo acpidump -b -n ECDT && iasl -d ecdt.dat
% grep Namepath ecdt.dsl

If the result looks like this : Namepath : "_SB.PC00.LPCB.EC0"
(here the Namepath is supposed to start with a "\", you can try to use the module I wrote acpiprobe with the correct path.

Not sure if it works, but at least we try...

Cheers
-- rodrigo
 
Back
Top