2018-06-14 11:54:52 +10:00
|
|
|
# Do not edit this file, it will be overwritten on update
|
|
|
|
|
|
Implement a quirks system to replace the udev property parsing
Previously, we had all extra device information ("This is an Apple Touchpad",
"This touchpad causes pointer jumps", etc.) in the udev hwdb. The problem with
the hwdb is that updating it is nontrivial for the average user and debugging
when things go wrong is even harder. Plus, the hwdb has a matching scheme that
is unpredictable unless one is familiar with the implementation.
This patch set moves the hwdb entries into .ini style text files, with a
simple line-based parser. A new libinput list-quirks tool can list the quirks
applied to any given device, in --verbose mode it prints all matches as they
apply or not apply.
The data files are currently unused by libinput, that comes in a later patch.
They're installed though, the defaults point to the /usr/share/libinput
directory and for *temporary* local overrides the single file
/etc/libinput/local-overrides.quirks.
Failure to parse any file is a hard failure for the quirks system, but if the
local override file doesn't exist that's fine.
THIS IS NOT A CONFIGURATION INTERFACE! None of these settings are exposed via
the libinput_device_config_* calls. There is no API guarantee for these files,
think of them as source code.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-05-21 14:28:53 +10:00
|
|
|
[Dell Touchpads]
|
|
|
|
|
MatchName=* Touchpad
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:*
|
|
|
|
|
ModelTouchpadVisibleMarker=1
|
|
|
|
|
|
2018-08-22 14:13:33 +10:00
|
|
|
[Dell i2c Touchpads]
|
|
|
|
|
MatchBus=i2c
|
|
|
|
|
MatchUdevType=touchpad
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:*
|
|
|
|
|
AttrMscTimestamp=watch
|
|
|
|
|
|
2018-07-11 16:34:22 +10:00
|
|
|
[Dell Lattitude E6220 Touchpad]
|
Implement a quirks system to replace the udev property parsing
Previously, we had all extra device information ("This is an Apple Touchpad",
"This touchpad causes pointer jumps", etc.) in the udev hwdb. The problem with
the hwdb is that updating it is nontrivial for the average user and debugging
when things go wrong is even harder. Plus, the hwdb has a matching scheme that
is unpredictable unless one is familiar with the implementation.
This patch set moves the hwdb entries into .ini style text files, with a
simple line-based parser. A new libinput list-quirks tool can list the quirks
applied to any given device, in --verbose mode it prints all matches as they
apply or not apply.
The data files are currently unused by libinput, that comes in a later patch.
They're installed though, the defaults point to the /usr/share/libinput
directory and for *temporary* local overrides the single file
/etc/libinput/local-overrides.quirks.
Failure to parse any file is a hard failure for the quirks system, but if the
local override file doesn't exist that's fine.
THIS IS NOT A CONFIGURATION INTERFACE! None of these settings are exposed via
the libinput_device_config_* calls. There is no API guarantee for these files,
think of them as source code.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-05-21 14:28:53 +10:00
|
|
|
MatchName=*AlpsPS/2 ALPS GlidePoint
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeE6220:*
|
|
|
|
|
AttrPressureRange=100:90
|
|
|
|
|
|
2018-07-11 16:34:22 +10:00
|
|
|
[Dell XPS L322X Touchpad]
|
Implement a quirks system to replace the udev property parsing
Previously, we had all extra device information ("This is an Apple Touchpad",
"This touchpad causes pointer jumps", etc.) in the udev hwdb. The problem with
the hwdb is that updating it is nontrivial for the average user and debugging
when things go wrong is even harder. Plus, the hwdb has a matching scheme that
is unpredictable unless one is familiar with the implementation.
This patch set moves the hwdb entries into .ini style text files, with a
simple line-based parser. A new libinput list-quirks tool can list the quirks
applied to any given device, in --verbose mode it prints all matches as they
apply or not apply.
The data files are currently unused by libinput, that comes in a later patch.
They're installed though, the defaults point to the /usr/share/libinput
directory and for *temporary* local overrides the single file
/etc/libinput/local-overrides.quirks.
Failure to parse any file is a hard failure for the quirks system, but if the
local override file doesn't exist that's fine.
THIS IS NOT A CONFIGURATION INTERFACE! None of these settings are exposed via
the libinput_device_config_* calls. There is no API guarantee for these files,
think of them as source code.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-05-21 14:28:53 +10:00
|
|
|
MatchName=*CyPS/2 Cypress Trackpad
|
2018-09-17 21:04:52 +10:00
|
|
|
MatchDMIModalias=dmi:*svnDell*:*XPSL322X*
|
|
|
|
|
AttrPressureRange=30:20
|
Implement a quirks system to replace the udev property parsing
Previously, we had all extra device information ("This is an Apple Touchpad",
"This touchpad causes pointer jumps", etc.) in the udev hwdb. The problem with
the hwdb is that updating it is nontrivial for the average user and debugging
when things go wrong is even harder. Plus, the hwdb has a matching scheme that
is unpredictable unless one is familiar with the implementation.
This patch set moves the hwdb entries into .ini style text files, with a
simple line-based parser. A new libinput list-quirks tool can list the quirks
applied to any given device, in --verbose mode it prints all matches as they
apply or not apply.
The data files are currently unused by libinput, that comes in a later patch.
They're installed though, the defaults point to the /usr/share/libinput
directory and for *temporary* local overrides the single file
/etc/libinput/local-overrides.quirks.
Failure to parse any file is a hard failure for the quirks system, but if the
local override file doesn't exist that's fine.
THIS IS NOT A CONFIGURATION INTERFACE! None of these settings are exposed via
the libinput_device_config_* calls. There is no API guarantee for these files,
think of them as source code.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-05-21 14:28:53 +10:00
|
|
|
AttrPalmPressureThreshold=254
|
2018-06-14 10:04:35 +10:00
|
|
|
|
2018-07-11 16:34:22 +10:00
|
|
|
[Dell XPS13 9333 Touchpad]
|
2018-06-14 10:04:35 +10:00
|
|
|
MatchName=*Synaptics s3203
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:*pnXPS139333*
|
|
|
|
|
AttrPressureRange=15:10
|
|
|
|
|
AttrPalmPressureThreshold=150
|
2018-07-11 16:34:57 +10:00
|
|
|
|
|
|
|
|
[Dell Latitude D620 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeD620*
|
|
|
|
|
AttrTrackpointMultiplier=0.5
|
|
|
|
|
|
2019-07-11 11:20:32 +02:00
|
|
|
[Latitude E5480 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchUdevType=pointingstick
|
|
|
|
|
MatchDMIModalias=dmi:**bvnDellInc.:*:pnLatitude5480*
|
|
|
|
|
AttrTrackpointMultiplier=0.5
|
|
|
|
|
|
2019-07-27 20:26:16 -04:00
|
|
|
[Latitude 5580 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchUdevType=pointingstick
|
|
|
|
|
MatchDMIModalias=dmi:**bvnDellInc.:*:pnLatitude5580*
|
|
|
|
|
AttrTrackpointMultiplier=0.5
|
|
|
|
|
|
2018-07-11 16:34:57 +10:00
|
|
|
[Latitude E5570 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeE5570*
|
|
|
|
|
AttrTrackpointMultiplier=0.1
|
|
|
|
|
|
|
|
|
|
[Latitude E6320 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeE6320*
|
|
|
|
|
AttrTrackpointMultiplier=2.0
|
|
|
|
|
|
|
|
|
|
[Latitude E6400 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeE6400*
|
|
|
|
|
AttrTrackpointMultiplier=1.5
|
|
|
|
|
|
|
|
|
|
[Latitude E7470 Trackpoint]
|
|
|
|
|
MatchName=*DualPoint Stick
|
|
|
|
|
MatchDMIModalias=dmi:*svnDellInc.:pnLatitudeE7470*
|
2018-09-27 15:47:23 +10:00
|
|
|
AttrTrackpointMultiplier=0.125
|
2018-09-14 14:03:09 +10:00
|
|
|
|
|
|
|
|
# The touch device has the same vid/pid as the totem, the MatchName
|
|
|
|
|
# directive is required here
|
|
|
|
|
[Canvas Totem]
|
|
|
|
|
MatchName=*System Multi Axis
|
|
|
|
|
MatchBus=usb
|
|
|
|
|
MatchVendor=0x2575
|
|
|
|
|
MatchProduct=0x0204
|
|
|
|
|
ModelDellCanvasTotem=1
|