2006-11-26 11:13:41 -07:00
|
|
|
|
/*
|
2007-11-24 10:55:21 -07:00
|
|
|
|
* TSLIB based touchscreen driver for KDrive
|
|
|
|
|
* Porting to new input API and event queueing by Daniel Stone.
|
2006-11-26 11:13:41 -07:00
|
|
|
|
* Derived from ts.c by Keith Packard
|
|
|
|
|
* Derived from ps2.c by Jim Gettys
|
|
|
|
|
*
|
|
|
|
|
* Copyright <EFBFBD> 1999 Keith Packard
|
|
|
|
|
* Copyright <EFBFBD> 2000 Compaq Computer Corporation
|
|
|
|
|
* Copyright <EFBFBD> 2002 MontaVista Software Inc.
|
|
|
|
|
* Copyright <EFBFBD> 2005 OpenedHand Ltd.
|
2007-11-24 10:55:21 -07:00
|
|
|
|
* Copyright <EFBFBD> 2006 Nokia Corporation
|
2006-11-26 11:13:41 -07:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2007-11-24 10:55:21 -07:00
|
|
|
|
* documentation, and that the name of the authors and/or copyright holders
|
|
|
|
|
* not be used in advertising or publicity pertaining to distribution of the
|
|
|
|
|
* software without specific, written prior permission. The authors and/or
|
|
|
|
|
* copyright holders make no representations about the suitability of this
|
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
|
* implied warranty.
|
2006-11-26 11:13:41 -07:00
|
|
|
|
*
|
2007-11-24 10:55:21 -07:00
|
|
|
|
* THE AUTHORS AND/OR COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD
|
|
|
|
|
* TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
|
* AND FITNESS, IN NO EVENT SHALL THE AUTHORS AND/OR COPYRIGHT HOLDERS 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.
|
2006-11-26 11:13:41 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
#ifdef HAVE_KDRIVE_CONFIG_H
|
2006-11-26 11:13:41 -07:00
|
|
|
|
#include <kdrive-config.h>
|
|
|
|
|
#endif
|
2007-11-24 10:55:21 -07:00
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
|
#define NEED_EVENTS
|
|
|
|
|
#include <X11/X.h>
|
|
|
|
|
#include <X11/Xproto.h>
|
|
|
|
|
#include <X11/Xpoll.h>
|
|
|
|
|
#include "inputstr.h"
|
|
|
|
|
#include "scrnintstr.h"
|
|
|
|
|
#include "kdrive.h"
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <tslib.h>
|
2007-11-24 10:55:21 -07:00
|
|
|
|
#include <dirent.h>
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
|
|
struct TslibPrivate {
|
|
|
|
|
int fd;
|
|
|
|
|
int lastx, lasty;
|
|
|
|
|
struct tsdev *tsDev;
|
|
|
|
|
void (*raw_event_hook)(int x, int y, int pressure, void *closure);
|
|
|
|
|
void *raw_event_closure;
|
|
|
|
|
int phys_screen;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2007-11-24 10:55:21 -07:00
|
|
|
|
TsRead (int fd, void *closure)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
2007-11-24 10:55:21 -07:00
|
|
|
|
KdPointerInfo *pi = closure;
|
|
|
|
|
struct TslibPrivate *private = pi->driverPrivate;
|
|
|
|
|
struct ts_sample event;
|
|
|
|
|
long x = 0, y = 0;
|
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
|
|
if (private->raw_event_hook) {
|
|
|
|
|
while (ts_read_raw(private->tsDev, &event, 1) == 1)
|
|
|
|
|
private->raw_event_hook (event.x, event.y, event.pressure,
|
|
|
|
|
private->raw_event_closure);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
while (ts_read(private->tsDev, &event, 1) == 1) {
|
|
|
|
|
if (event.pressure) {
|
|
|
|
|
flags = KD_BUTTON_1;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Here we test for the touch screen driver actually being on the
|
|
|
|
|
* touch screen, if it is we send absolute coordinates. If not,
|
|
|
|
|
* then we send delta's so that we can track the entire vga screen.
|
|
|
|
|
*/
|
|
|
|
|
if (KdCurScreen == private->phys_screen) {
|
|
|
|
|
x = event.x;
|
|
|
|
|
y = event.y;
|
|
|
|
|
} else {
|
|
|
|
|
flags |= KD_MOUSE_DELTA;
|
|
|
|
|
if ((private->lastx == 0) || (private->lasty == 0)) {
|
|
|
|
|
x = event.x;
|
|
|
|
|
y = event.y;
|
|
|
|
|
} else {
|
|
|
|
|
x = event.x - private->lastx;
|
|
|
|
|
y = event.y - private->lasty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private->lastx = x;
|
|
|
|
|
private->lasty = y;
|
|
|
|
|
} else {
|
|
|
|
|
flags = 0;
|
|
|
|
|
x = private->lastx;
|
|
|
|
|
y = private->lasty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
KdEnqueuePointerEvent (pi, flags, x, y, event.pressure);
|
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
static Status
|
|
|
|
|
TslibEnable (KdPointerInfo *pi)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
2007-11-24 10:55:21 -07:00
|
|
|
|
struct TslibPrivate *private = pi->driverPrivate;
|
|
|
|
|
|
|
|
|
|
private->raw_event_hook = NULL;
|
|
|
|
|
private->raw_event_closure = NULL;
|
|
|
|
|
private->tsDev = ts_open(pi->path, 0);
|
|
|
|
|
private->fd = ts_fd(private->tsDev);
|
|
|
|
|
if (!private->tsDev || ts_config(private->tsDev) || private->fd < 0) {
|
|
|
|
|
ErrorF("[tslib/TslibEnable] failed to open %s\n", pi->path);
|
|
|
|
|
if (private->fd >= 0)
|
|
|
|
|
close(private->fd);
|
|
|
|
|
return BadAlloc;
|
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
KdRegisterFd(private->fd, TsRead, pi);
|
|
|
|
|
|
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
TslibDisable (KdPointerInfo *pi)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
2007-11-24 10:55:21 -07:00
|
|
|
|
struct TslibPrivate *private = pi->driverPrivate;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
if (private->fd)
|
|
|
|
|
KdUnregisterFd(pi, private->fd, TRUE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
if (private->tsDev)
|
|
|
|
|
ts_close(private->tsDev);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
private->fd = 0;
|
|
|
|
|
private->tsDev = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
static Status
|
|
|
|
|
TslibInit (KdPointerInfo *pi)
|
|
|
|
|
{
|
|
|
|
|
int fd = 0, i = 0;
|
|
|
|
|
DIR *inputdir = NULL;
|
|
|
|
|
struct dirent *inputent = NULL;
|
|
|
|
|
struct tsdev *tsDev = NULL;
|
|
|
|
|
struct TslibPrivate *private = NULL;
|
|
|
|
|
|
|
|
|
|
if (!pi || !pi->dixdev)
|
|
|
|
|
return !Success;
|
|
|
|
|
|
|
|
|
|
pi->driverPrivate = (struct TslibPrivate *)
|
|
|
|
|
xcalloc(sizeof(struct TslibPrivate), 1);
|
|
|
|
|
if (!pi->driverPrivate)
|
|
|
|
|
return !Success;
|
|
|
|
|
|
|
|
|
|
private = pi->driverPrivate;
|
|
|
|
|
/* hacktastic */
|
|
|
|
|
private->phys_screen = 0;
|
|
|
|
|
pi->nAxes = 3;
|
|
|
|
|
pi->name = KdSaveString("Touchscreen");
|
|
|
|
|
pi->inputClass = KD_TOUCHSCREEN;
|
|
|
|
|
|
|
|
|
|
return Success;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
|
static void
|
2007-11-24 10:55:21 -07:00
|
|
|
|
TslibFini (KdPointerInfo *pi)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
{
|
2007-11-24 10:55:21 -07:00
|
|
|
|
if (pi->driverPrivate) {
|
|
|
|
|
xfree(pi->driverPrivate);
|
|
|
|
|
pi->driverPrivate = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
|
|
|
|
|
|
KdPointerDriver TsDriver = {
|
|
|
|
|
"tslib",
|
2006-11-26 11:13:41 -07:00
|
|
|
|
TslibInit,
|
2007-11-24 10:55:21 -07:00
|
|
|
|
TslibEnable,
|
|
|
|
|
TslibDisable,
|
|
|
|
|
TslibFini,
|
|
|
|
|
NULL,
|
2006-11-26 11:13:41 -07:00
|
|
|
|
};
|