Multitouch

Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2010-03-11 19:15:25
Size: 4670
Editor: pool-74-107-129-37
Comment:
Revision 9 as of 2010-03-11 19:24:09
Size: 4818
Editor: 79-70-113-22
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
 * '''Created''':
 * '''Contributors''':
 * '''Packages affected''':
 * '''Created''': 2010-03-07
 * '''Contributors''': BryceHarrington, AndyWhitcroft
 * '''Packages affected''': linux, xserver-xorg-input-evdev, xserver-xorg-input-evtouch, xserver-xorg-input-wacom
 * '''See also''': [[https://wiki.ubuntu.com/X/Blueprints/Touchscreen|Touchscreen Blueprint]]
Line 8: Line 9:
Integrates low-level support for certain models of touchscreen devices and enables basic multitouch functionality on them. Integrates low-level support for certain models of touchscreen devices and exposes basic multitouch functionality on them to allow Ubuntu to be used as a proving ground for multitouch and touch gesture experimentation.
Line 15: Line 16:
Ultimately, we'd like to ensure that Ubuntu works with the current generation of touch screens. We have looked at general touchscreen enablement previously in the [[X/Blueprints/Touchscreen|Touchscreen]] blueprint), but the there is an overwhelming amount of work needed. Certainly, solving the entire breadth of the problem is way beyond what we can do for Lucid, but if we focus on a small subset of the problem we can make some progress. Ultimately, we'd like to ensure that Ubuntu works with the current generation of multitouch capable touch screens. We have looked at general touchscreen enablement previously in the [[X/Blueprints/Touchscreen|Touchscreen]] blueprint), but the there is an overwhelming amount of work needed. Certainly, solving the entire breadth of the problem is way beyond what we can do for Lucid, but if we focus on a small subset of the problem we can make some progress.  Our goal is that Ubuntu can provide a solid foundation for experimentation in touch, multitouch, and touch gesture interfaces.
Line 66: Line 67:
=== Tasks Xorg ===
 * (DONE) Obtain an -evdev patch against upstream git: http://people.canonical.com/~bryce/evdev-multitouch.patch
 * Backport the multitouch patch to Lucid's -evdev, and post to a PPA
 * Decide whether the evdev multitouch patch is acceptable for including in Lucid, and if so upload it

=== Tasks Kernel ===
=== Tasks ===

Summary

Integrates low-level support for certain models of touchscreen devices and exposes basic multitouch functionality on them to allow Ubuntu to be used as a proving ground for multitouch and touch gesture experimentation.

The packages implementing this functionality will be staged in a PPA for evaluation. Depending on the outcome of the evaluation we may then move some or all into Lucid proper.

Rationale

Ultimately, we'd like to ensure that Ubuntu works with the current generation of multitouch capable touch screens. We have looked at general touchscreen enablement previously in the Touchscreen blueprint), but the there is an overwhelming amount of work needed. Certainly, solving the entire breadth of the problem is way beyond what we can do for Lucid, but if we focus on a small subset of the problem we can make some progress. Our goal is that Ubuntu can provide a solid foundation for experimentation in touch, multitouch, and touch gesture interfaces.

The subset which makes the most sense to focus on as the top priority is the intersection of hardware that can be supported with the -evdev driver, and with whom Canonical has some level of business relationship with in case we have questions (e.g. hardware the OEM team expects to be supporting in the coming year or so).

Overview

The intended stack would be (upside down):

  • kernel driver (mine or others)
  • /dev/input/eventX
  • X.org evdev driver (the one patched by Benjamin, for instance)

  • X.org MPX/XInput2 API
  • multitouchd daemon
  • Qt or GTK+ or other

The current status of the above stack is "multi-pointer only", that is multi-touch without any gesture recognition. There have been debates as to where to put gesture recognition in the stack. Very few people have worked on multitouch gestures.

Multitouch in X is currently limited by the lack of multitouch events in the protocol. Benjamin's patch is a way around it to get multitouch-like features through a multipointer system. Upstream (Peter Hutterer) has indicated a preference to seeing this done via a single-pointer, because then clients would need to deal with a single touch event, instead of one event for each finger. But there are pros and cons to each approach and it's not clear there is yet a consensus about this. See discussion on xorg-devel@ for more background.

Benjamin's patch makes some simplifying assumptions that may not address the full spectrum of possible multi-touch use cases. For instance, multi-user collaboration using inputs from multiple hands going to multiple windows that support both multi-pointer and multi-touch awareness. It is likely some significant API redesign beyond Benjamin's proposed patch would be needed to address all possible cases. Thus, clients which implement support on top of Benjamin's patch would likely need reimplementation for what eventually is officially adopted by upstream.

Kernel

Multitouch support first appears in any form in v2.6.30 bringing finger tracking to the events protocol. There does not appear to be any actual drivers supporting it at that point. In v2.6.31 the n-trig driver seems to have been converted over to expose multi-touch support (with appropriate firmware only). In v2.6.32 and v2.6.33 the support is apparently unchanged, limited to n-trig. A number of drivers appear to be merging in v2.6.34-rc1 as do a number of fixes for the existing n-trig driver.

The v2.6.34-rc1 HID drivers seems to support multitouch for the following devices:

Manufacturer

USB IDs

Driver

3M 1968

0x0596, 0x0500

hid-3m-pct.c

Asus T91MT

0x0486, 0x0185

hid-mosart.c

N-Trig Touch Screen

0x1b96, 0x0001

hid-ntrig.c

Quanta Optical Touch

0x0408, 0x3000

hid-quanta.c

Quanta Pixart Optical Touch

0x0408, 0x3001

hid-quanta.c

Stantum MTP

0x1f87, 0x0002

hid-stantum.c

It seems that to have any sort of support for multitouch at the kernel level we would need to backport the drivers from at least v2.6.34-rc1 to even get n-trig support in a workable state. We would need access to H/W to test the drivers.

We need to evaluate these drivers for backport and then put them into a PPA kernel for testing.

Tasks

See the blueprint whiteboard.

X/Blueprints/Multitouch (last edited 2010-03-22 23:54:32 by SEASNet-62-02)