I got a little problem setting up my new IBM Thinkpad X61 TABLET.
Everything runs fine. The only problem is the Wacom stylus.
I have set up a serial port for the wacom device via init script
Code: Select all
#!/bin/sh
/bin/setserial /dev/ttyS0 port 0x0200 irq 5 autoconfig
Code: Select all
wacdump /dev/ttyS0gives me some weird output, but when I do
Code: Select all
wacdump /dev/ttyS0 -f tpcmy xorg.conf looks like this:
Code: Select all
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Cursor" "SendCoreEvents"
InputDevice "Stylus" "SendCoreEvents"
EndSection
Section "Module"
[...]
Load "wacom"
EndSection
Section "InputDevice"
Identifier "Cursor"
Driver "wacom"
Option "Device" "/dev/ttyS0"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4"
Option "Mode" "Absolute"
EndSection
Section "InputDevice"
Identifier "Stylus"
Driver "wacom"
Option "Device" "/dev/ttyS0"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4"
EndSection
Section "InputDevice"
Identifier "Eraser"
Driver "wacom"
Option "Device" "/dev/ttyS0"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4"
EndSection
Code: Select all
tablet sege # grep -i wacom /var/log/Xorg.0.log
(II) LoadModule: "wacom"
(II) Loading /usr/lib64/xorg/modules/input//wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
(II) Wacom driver level: 47-0.8.0-1 $
(II) LoadModule: "wacom"
(II) Reloading /usr/lib64/xorg/modules/input//wacom_drv.so
(II) Wacom driver level: 47-0.8.0-1 $
(**) WACOM: suppress value is 2
(**) WACOM: suppress value is 2
(II) XINPUT: Adding extended input device "Stylus" (type: Wacom Stylus)
(II) XINPUT: Adding extended input device "Cursor" (type: Wacom Cursor)
Wacom unable to read ISDV4 control data after 3 tries
Wacom unable to read ISDV4 control data after 3 tries

