diff options
author | Stelian Pop <stelian@popies.net> | 2005-09-08 04:19:48 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-12 15:23:39 -0400 |
commit | f7214ff4e8248513ec626212b2c1a3ca0b2a0888 (patch) | |
tree | ac9cc182c236857a4c7d2ef4c84b884f84d4f84f /drivers/usb/input/Kconfig | |
parent | 1bbb4f2035d94d86e52e9b5341c142dcb39bb879 (diff) |
[PATCH] USB: add apple usb touchpad driver
This is a driver for the USB touchpad which can be found on post-February 2005
Apple PowerBooks.
This driver is derived from Johannes Berg's appletrackpad driver [1],
but it has been improved in some areas:
* appletouch is a full kernel driver, no userspace program is necessary
* appletouch can be interfaced with the synaptics X11 driver[2], in order
to have touchpad acceleration, scrolling, two/three finger tap, etc.
This driver has been tested by the readers of the 'debian-powerpc' mailing
list for a few weeks now and I believe it is now ready for inclusion into the
mainline kernel.
Credits go to Johannes Berg for reverse-engineering the touchpad protocol,
Frank Arnold for further improvements, and Alex Harper for some additional
information about the inner workings of the touchpad sensors.
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/input/Kconfig')
-rw-r--r-- | drivers/usb/input/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/usb/input/Kconfig b/drivers/usb/input/Kconfig index 482c4be521f5..1e53934907c0 100644 --- a/drivers/usb/input/Kconfig +++ b/drivers/usb/input/Kconfig | |||
@@ -286,3 +286,23 @@ config USB_KEYSPAN_REMOTE | |||
286 | 286 | ||
287 | To compile this driver as a module, choose M here: the module will | 287 | To compile this driver as a module, choose M here: the module will |
288 | be called keyspan_remote. | 288 | be called keyspan_remote. |
289 | |||
290 | config USB_APPLETOUCH | ||
291 | tristate "Apple USB Touchpad support" | ||
292 | depends on USB && INPUT | ||
293 | ---help--- | ||
294 | Say Y here if you want to use an Apple USB Touchpad. | ||
295 | |||
296 | These are the touchpads that can be found on post-February 2005 | ||
297 | Apple Powerbooks (prior models have a Synaptics touchpad connected | ||
298 | to the ADB bus). | ||
299 | |||
300 | This driver provides a basic mouse driver but can be interfaced | ||
301 | with the synaptics X11 driver to provide acceleration and | ||
302 | scrolling in X11. | ||
303 | |||
304 | For further information, see | ||
305 | <file:Documentation/input/appletouch.txt>. | ||
306 | |||
307 | To compile this driver as a module, choose M here: the | ||
308 | module will be called appletouch. | ||