Lenovo Thinkpad 13 上指点杆的内核驱动程序

Lenovo Thinkpad 13 上指点杆的内核驱动程序

在其他 ThinkPad 上,我已使用 udev 成功配置了轨迹点这个方法但在我的新 Lenovo Thinkpad 13 上这是不可能的:

这个命令:

find /sys/devices/platform/i8042 -name name | xargs grep -Fl TrackPoint | sed 's/\/input\/input[0-9]*\/name$//'

...输出:

/sys/devices/platform/i8042/serio1

但该文件夹或任何子文件夹都不包含文件sensitivityspeed。同样的问题已得到证实ThinkPad 13 所有者使用另一个内核和发行版

我猜测内核驱动程序没有正确检测到该设备实际上是一个跟踪点。这个假设得到了支持(信息不是很丰富)Ubuntu 的硬件评估。

配置轨迹点的另一种方法是使用 xinput,但是当我的发行版 - Debian - har 切换到 libinput 时,这本身就是一个令人头痛的问题,因为这个错误(这显然也影响了 Fedora。)

我真的很希望能够通过 udev 和上面的方法配置跟踪点,但我不知道如何进一步调试。

Ubuntu的硬件评估是否意味着这是一个无法解决的硬件问题?

或者这是一个内核错误?

我怎么知道?

一些系统输出:

# uname -a
Linux debian 4.5.0-2-amd64 #1 SMP Debian 4.5.3-2 (2016-05-08) x86_64 GNU/Linux

# xinput list
Virtual core pointer                        id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ ETPS/2 Elantech Touchpad                  id=13   [slave  pointer  (2)]
⎜   ↳ Elantech PS/2 TrackPoint                  id=14   [slave  pointer  (2)]
⎣ Virtual core keyboard                       id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard                 id=5    [slave  keyboard (3)]
    ↳ Power Button                                id=6    [slave  keyboard (3)]
    ↳ Video Bus                                   id=7    [slave  keyboard (3)]
    ↳ Power Button                                id=8    [slave  keyboard (3)]
    ↳ Sleep Button                                id=9    [slave  keyboard (3)]
    ↳ Integrated Camera                           id=11   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard                id=12   [slave  keyboard (3)]
    ↳ ThinkPad Extra Buttons                      id=15   [slave  keyboard (3)]

# xinput list-props 14
Device 'Elantech PS/2 TrackPoint':
    Device Enabled (136):   1
    Coordinate Transformation Matrix (138): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (274): 1.000000
    libinput Accel Speed Default (275): 0.000000
    libinput Accel Profiles Available (276):    1, 1
    libinput Accel Profile Enabled (277):   1, 0
    libinput Accel Profile Enabled Default (278):   1, 0
    libinput Natural Scrolling Enabled (279):   0
    libinput Natural Scrolling Enabled Default (280):   0
    libinput Send Events Modes Available (258): 1, 0
    libinput Send Events Mode Enabled (259):    0, 0
    libinput Send Events Mode Enabled Default (260):    0, 0
    libinput Left Handed Enabled (281): 0
    libinput Left Handed Enabled Default (282): 0
    libinput Scroll Methods Available (283):    0, 0, 1
    libinput Scroll Method Enabled (284):   0, 0, 1
    libinput Scroll Method Enabled Default (285):   0, 0, 1
    libinput Button Scrolling Button (286): 2
    libinput Button Scrolling Button Default (287): 274
    libinput Middle Emulation Enabled (288):    0
    libinput Middle Emulation Enabled Default (289):    0
    Device Node (261):  "/dev/input/event1"
    Device Product ID (262):    2, 14
    libinput Drag Lock Buttons (290):   <no items>
    libinput Horizonal Scroll Enabled (263):    1 

相关内容