diff options
-rw-r--r-- | Documentation/input/multi-touch-protocol.txt | 9 | ||||
-rw-r--r-- | include/linux/input.h | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/Documentation/input/multi-touch-protocol.txt b/Documentation/input/multi-touch-protocol.txt index bdcba154b83e..07215fa0c588 100644 --- a/Documentation/input/multi-touch-protocol.txt +++ b/Documentation/input/multi-touch-protocol.txt | |||
@@ -161,7 +161,8 @@ against the glass. The inner region will increase, and in general, the | |||
161 | ratio ABS_MT_TOUCH_MAJOR / ABS_MT_WIDTH_MAJOR, which is always smaller than | 161 | ratio ABS_MT_TOUCH_MAJOR / ABS_MT_WIDTH_MAJOR, which is always smaller than |
162 | unity, is related to the contact pressure. For pressure-based devices, | 162 | unity, is related to the contact pressure. For pressure-based devices, |
163 | ABS_MT_PRESSURE may be used to provide the pressure on the contact area | 163 | ABS_MT_PRESSURE may be used to provide the pressure on the contact area |
164 | instead. | 164 | instead. Devices capable of contact hovering can use ABS_MT_DISTANCE to |
165 | indicate the distance between the contact and the surface. | ||
165 | 166 | ||
166 | In addition to the MAJOR parameters, the oval shape of the contact can be | 167 | In addition to the MAJOR parameters, the oval shape of the contact can be |
167 | described by adding the MINOR parameters, such that MAJOR and MINOR are the | 168 | described by adding the MINOR parameters, such that MAJOR and MINOR are the |
@@ -213,6 +214,12 @@ The pressure, in arbitrary units, on the contact area. May be used instead | |||
213 | of TOUCH and WIDTH for pressure-based devices or any device with a spatial | 214 | of TOUCH and WIDTH for pressure-based devices or any device with a spatial |
214 | signal intensity distribution. | 215 | signal intensity distribution. |
215 | 216 | ||
217 | ABS_MT_DISTANCE | ||
218 | |||
219 | The distance, in surface units, between the contact and the surface. Zero | ||
220 | distance means the contact is touching the surface. A positive number means | ||
221 | the contact is hovering above the surface. | ||
222 | |||
216 | ABS_MT_ORIENTATION | 223 | ABS_MT_ORIENTATION |
217 | 224 | ||
218 | The orientation of the ellipse. The value should describe a signed quarter | 225 | The orientation of the ellipse. The value should describe a signed quarter |
diff --git a/include/linux/input.h b/include/linux/input.h index 6de145df4c1c..b3a1e02080c0 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
@@ -733,11 +733,12 @@ struct input_keymap_entry { | |||
733 | #define ABS_MT_BLOB_ID 0x38 /* Group a set of packets as a blob */ | 733 | #define ABS_MT_BLOB_ID 0x38 /* Group a set of packets as a blob */ |
734 | #define ABS_MT_TRACKING_ID 0x39 /* Unique ID of initiated contact */ | 734 | #define ABS_MT_TRACKING_ID 0x39 /* Unique ID of initiated contact */ |
735 | #define ABS_MT_PRESSURE 0x3a /* Pressure on contact area */ | 735 | #define ABS_MT_PRESSURE 0x3a /* Pressure on contact area */ |
736 | #define ABS_MT_DISTANCE 0x3b /* Contact hover distance */ | ||
736 | 737 | ||
737 | #ifdef __KERNEL__ | 738 | #ifdef __KERNEL__ |
738 | /* Implementation details, userspace should not care about these */ | 739 | /* Implementation details, userspace should not care about these */ |
739 | #define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR | 740 | #define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR |
740 | #define ABS_MT_LAST ABS_MT_PRESSURE | 741 | #define ABS_MT_LAST ABS_MT_DISTANCE |
741 | #endif | 742 | #endif |
742 | 743 | ||
743 | #define ABS_MAX 0x3f | 744 | #define ABS_MAX 0x3f |