summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-08-10 09:34:12 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-08-26 09:25:15 +1000
commitddad6bb36d7592f087b1fe4b2d18425190bc5b30 (patch)
treecec36c6aa7b955dab874bf2935005abfdb653eb4
parent7d0eb15e54b266f91c0df45053dc4b03d9fe3721 (diff)
Add TPPS/2 IBM TrackPoint test device.
-rw-r--r--src/Makefile.am2
-rw-r--r--src/trackpoint.c75
2 files changed, 76 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index b392536..6443021 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -22,7 +22,7 @@ LIBNAME=libfakedev.a
AM_LDFLAGS = $(LIBNAME)
-noinst_PROGRAMS=btn0 absrel abs pen dummy synaptics allbtn wacom powermate waltop barcode btn0_left hdaps mouse alps
+noinst_PROGRAMS=btn0 absrel abs pen dummy synaptics allbtn wacom powermate waltop barcode btn0_left hdaps mouse alps trackpoint
noinst_LIBRARIES=$(LIBNAME)
libfakedev_a_SOURCES=fakedev.c fakedev.h
diff --git a/src/trackpoint.c b/src/trackpoint.c
new file mode 100644
index 0000000..b34a45f
--- /dev/null
+++ b/src/trackpoint.c
@@ -0,0 +1,75 @@
+/*
+ * Copyright © 2009 Red Hat, Inc.
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Red Hat
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission. Red
+ * Hat makes no representations about the suitability of this software
+ * for any purpose. It is provided "as is" without express or implied
+ * warranty.
+ *
+ * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Authors:
+ * Peter Hutterer (peter.hutterer@redhat.com)
+ */
+
+#include <stdio.h>
+#include <unistd.h>
+#include <linux/input.h>
+#include <linux/uinput.h>
+
+#include "fakedev.h"
+
+static int trackpoint_setup(struct uinput_user_dev *dev, int fd)
+{
+ if (ioctl(fd, UI_SET_EVBIT, EV_KEY) == -1) goto error;
+ if (ioctl(fd, UI_SET_EVBIT, EV_REL) == -1) goto error;
+ if (ioctl(fd, UI_SET_EVBIT, EV_SYN) == -1) goto error;
+
+ /* buttons */
+ if (ioctl(fd, UI_SET_KEYBIT, BTN_LEFT) == -1) goto error;
+ if (ioctl(fd, UI_SET_KEYBIT, BTN_MIDDLE) == -1) goto error;
+ if (ioctl(fd, UI_SET_KEYBIT, BTN_RIGHT) == -1) goto error;
+
+ /* axes */
+ if (ioctl(fd, UI_SET_RELBIT, REL_X) == -1) goto error;
+ if (ioctl(fd, UI_SET_RELBIT, REL_Y) == -1) goto error;
+
+ return 0;
+error:
+ perror("ioctl failed.");
+ return -1;
+}
+
+static int trackpoint_run(int fd)
+{
+ move(fd, -1, -1);
+ usleep(50000);
+ move(fd, 1, 1);
+ usleep(50000);
+ return 0;
+}
+
+static struct test_device trackpoint_dev = {
+ .name = "TPPS/2 IBM TrackPoint",
+ .setup = trackpoint_setup,
+ .run = trackpoint_run,
+};
+
+
+struct test_device* get_device(void)
+{
+ return &trackpoint_dev;
+}
+