NetBSD/sys/dev/pckbc/pms.c

657 lines
15 KiB
C
Raw Normal View History

/* $NetBSD: pms.c,v 1.7 2002/07/08 07:43:31 martin Exp $ */
/*-
* Copyright (c) 1994 Charles M. Hannum.
* Copyright (c) 1992, 1993 Erik Forsberg.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2001-11-13 10:24:43 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pms.c,v 1.7 2002/07/08 07:43:31 martin Exp $");
2001-11-13 10:24:43 +03:00
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/kthread.h>
#include <machine/bus.h>
#include <dev/ic/pckbcvar.h>
#include <dev/pckbc/pmsreg.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsmousevar.h>
2002-03-20 20:06:51 +03:00
#ifdef PMSDEBUG
int pmsdebug = 1;
#define DPRINTF(x) if (pmsdebug) printf x
#else
#define DPRINTF(x)
#endif
enum pms_type { PMS_UNKNOWN, PMS_STANDARD, PMS_SCROLL3, PMS_SCROLL5 };
struct pms_protocol {
int rates[3];
int response;
const char *name;
} pms_protocols[] = {
{ { 0, 0, 0 }, 0, "unknown protocol" },
{ { 0, 0, 0 }, 0, "no scroll wheel (3 buttons)" },
{ { 200, 100, 80 }, 3, "scroll wheel (3 buttons)" },
{ { 200, 200, 80 }, 4, "scroll wheel (5 buttons)" }
};
2002-03-20 20:06:51 +03:00
enum pms_type tries[] = {
PMS_SCROLL5, PMS_SCROLL3, PMS_STANDARD, PMS_UNKNOWN
};
1999-01-23 19:05:56 +03:00
struct pms_softc { /* driver status information */
struct device sc_dev;
pckbc_tag_t sc_kbctag;
int sc_kbcslot;
int sc_enabled; /* input enabled? */
#ifndef PMS_DISABLE_POWERHOOK
void *sc_powerhook; /* cookie from power hook */
#endif /* !PMS_DISABLE_POWERHOOK */
int inputstate; /* number of bytes received for this packet */
2002-03-20 20:06:51 +03:00
u_int buttons; /* mouse button status */
enum pms_type protocol;
unsigned char packet[4];
struct timeval last, current;
struct device *sc_wsmousedev;
struct proc *sc_event_thread;
};
1999-01-23 19:05:56 +03:00
int pmsprobe __P((struct device *, struct cfdata *, void *));
void pmsattach __P((struct device *, struct device *, void *));
void pmsinput __P((void *, int));
1999-01-23 19:05:56 +03:00
struct cfattach pms_ca = {
sizeof(struct pms_softc), pmsprobe, pmsattach,
};
static int pms_protocol __P((pckbc_tag_t, pckbc_slot_t));
static void do_enable __P((struct pms_softc *));
static void do_disable __P((struct pms_softc *));
static void pms_reset_thread __P((void*));
static void pms_spawn_reset_thread __P((void*));
1999-01-23 19:05:56 +03:00
int pms_enable __P((void *));
int pms_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
void pms_disable __P((void *));
#ifndef PMS_DISABLE_POWERHOOK
void pms_power __P((int, void *));
#endif /* !PMS_DISABLE_POWERHOOK */
1999-01-23 19:05:56 +03:00
const struct wsmouse_accessops pms_accessops = {
pms_enable,
pms_ioctl,
pms_disable,
};
static int
pms_protocol(tag, slot)
pckbc_tag_t tag;
pckbc_slot_t slot;
{
u_char cmd[2], resp[1];
int i, j, res;
2002-03-20 20:06:51 +03:00
struct pms_protocol *p;
for (j = 0; j < sizeof(tries) / sizeof(tries[0]); ++j) {
p = &pms_protocols[tries[j]];
if (!p->rates[0])
break;
cmd[0] = PMS_SET_SAMPLE;
for (i = 0; i < 3; i++) {
2002-03-20 20:06:51 +03:00
cmd[1] = p->rates[i];
res = pckbc_enqueue_cmd(tag, slot, cmd, 2, 0, 1, 0);
if (res)
2002-03-20 20:06:51 +03:00
return PMS_STANDARD;
}
cmd[0] = PMS_SEND_DEV_ID;
res = pckbc_enqueue_cmd(tag, slot, cmd, 1, 1, 1, resp);
if (res)
return 0;
2002-03-20 20:06:51 +03:00
if (resp[0] == p->response) {
DPRINTF(("pms_protocol: found mouse protocol %d\n",
tries[j]));
return tries[j];
}
}
2002-03-20 20:06:51 +03:00
DPRINTF(("pms_protocol: standard PS/2 protocol (no scroll wheel)\n"));
return PMS_STANDARD;
}
int
1999-01-23 19:05:56 +03:00
pmsprobe(parent, match, aux)
struct device *parent;
struct cfdata *match;
void *aux;
{
struct pckbc_attach_args *pa = aux;
u_char cmd[1], resp[2];
int res;
if (pa->pa_slot != PCKBC_AUX_SLOT)
return (0);
/* Flush any garbage. */
pckbc_flush(pa->pa_tag, pa->pa_slot);
/* reset the device */
cmd[0] = PMS_RESET;
res = pckbc_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 2, resp, 1);
if (res) {
#ifdef DEBUG
1999-01-23 19:05:56 +03:00
printf("pmsprobe: reset error %d\n", res);
#endif
return (0);
}
if (resp[0] != PMS_RSTDONE) {
1999-01-23 19:05:56 +03:00
printf("pmsprobe: reset response 0x%x\n", resp[0]);
return (0);
}
/* get type number (0 = mouse) */
if (resp[1] != 0) {
#ifdef DEBUG
1999-01-23 19:05:56 +03:00
printf("pmsprobe: type 0x%x\n", resp[1]);
#endif
return (0);
}
return (10);
}
void
1999-01-23 19:05:56 +03:00
pmsattach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
1999-01-23 19:05:56 +03:00
struct pms_softc *sc = (void *)self;
struct pckbc_attach_args *pa = aux;
struct wsmousedev_attach_args a;
u_char cmd[1], resp[2];
int res;
sc->sc_kbctag = pa->pa_tag;
sc->sc_kbcslot = pa->pa_slot;
2002-03-20 20:06:51 +03:00
printf("\n");
/* Flush any garbage. */
pckbc_flush(pa->pa_tag, pa->pa_slot);
/* reset the device */
cmd[0] = PMS_RESET;
res = pckbc_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 2, resp, 1);
#ifdef DEBUG
if (res || resp[0] != PMS_RSTDONE || resp[1] != 0) {
1999-01-23 19:05:56 +03:00
printf("pmsattach: reset error\n");
return;
}
#endif
sc->inputstate = 0;
2002-03-20 20:06:51 +03:00
sc->buttons = 0;
sc->protocol = PMS_UNKNOWN;
pckbc_set_inputhandler(sc->sc_kbctag, sc->sc_kbcslot,
pmsinput, sc, sc->sc_dev.dv_xname);
1999-01-23 19:05:56 +03:00
a.accessops = &pms_accessops;
a.accesscookie = sc;
/*
* Attach the wsmouse, saving a handle to it.
* Note that we don't need to check this pointer against NULL
1999-01-23 19:05:56 +03:00
* here or in pmsintr, because if this fails pms_enable() will
* never be called, so pmsinput() will never be called.
*/
sc->sc_wsmousedev = config_found(self, &a, wsmousedevprint);
/* no interrupts until enabled */
cmd[0] = PMS_DEV_DISABLE;
res = pckbc_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 0, 0, 0);
if (res)
1999-01-23 19:05:56 +03:00
printf("pmsattach: disable error\n");
pckbc_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 0);
kthread_create(pms_spawn_reset_thread, sc);
#ifndef PMS_DISABLE_POWERHOOK
sc->sc_powerhook = powerhook_establish(pms_power, sc);
#endif /* !PMS_DISABLE_POWERHOOK */
}
static void
do_enable(sc)
struct pms_softc *sc;
{
u_char cmd[1];
int res;
sc->inputstate = 0;
2002-03-20 20:06:51 +03:00
sc->buttons = 0;
pckbc_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 1);
cmd[0] = PMS_DEV_ENABLE;
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1, 0, 1, 0);
if (res)
2002-03-20 20:06:51 +03:00
printf("pms_enable: command error %d\n", res);
if (sc->protocol == PMS_UNKNOWN)
sc->protocol = pms_protocol(sc->sc_kbctag, sc->sc_kbcslot);
2002-03-20 20:06:51 +03:00
DPRINTF(("pms_enable: using %s protocol\n",
pms_protocols[sc->protocol].name));
#if 0
{
u_char scmd[2];
scmd[0] = PMS_SET_RES;
scmd[1] = 3; /* 8 counts/mm */
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
2, 0, 1, 0);
if (res)
1999-01-23 19:05:56 +03:00
printf("pms_enable: setup error1 (%d)\n", res);
scmd[0] = PMS_SET_SCALE21;
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
1, 0, 1, 0);
if (res)
1999-01-23 19:05:56 +03:00
printf("pms_enable: setup error2 (%d)\n", res);
scmd[0] = PMS_SET_SAMPLE;
scmd[1] = 100; /* 100 samples/sec */
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
2, 0, 1, 0);
if (res)
1999-01-23 19:05:56 +03:00
printf("pms_enable: setup error3 (%d)\n", res);
}
#endif
}
static void
do_disable(sc)
struct pms_softc *sc;
{
u_char cmd[1];
int res;
cmd[0] = PMS_DEV_DISABLE;
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1, 0, 1, 0);
if (res)
1999-01-23 19:05:56 +03:00
printf("pms_disable: command error\n");
pckbc_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 0);
}
int
pms_enable(v)
void *v;
{
struct pms_softc *sc = v;
int s;
if (sc->sc_enabled)
return EBUSY;
do_enable(sc);
s = spltty();
sc->sc_enabled = 1;
splx(s);
return 0;
}
void
pms_disable(v)
void *v;
{
struct pms_softc *sc = v;
int s;
do_disable(sc);
s = spltty();
sc->sc_enabled = 0;
splx(s);
}
#ifndef PMS_DISABLE_POWERHOOK
void
pms_power(why, v)
int why;
void *v;
{
struct pms_softc *sc = v;
switch (why) {
case PWR_SUSPEND:
case PWR_STANDBY:
if (sc->sc_enabled)
do_disable(sc);
break;
case PWR_RESUME:
if (sc->sc_enabled) {
sc->protocol = PMS_UNKNOWN; /* recheck protocol & init mouse */
do_enable(sc);
}
case PWR_SOFTSUSPEND:
case PWR_SOFTSTANDBY:
case PWR_SOFTRESUME:
break;
}
}
#endif /* !PMS_DISABLE_POWERHOOK */
int
1999-01-23 19:05:56 +03:00
pms_ioctl(v, cmd, data, flag, p)
void *v;
u_long cmd;
caddr_t data;
int flag;
struct proc *p;
{
1999-01-23 19:05:56 +03:00
struct pms_softc *sc = v;
u_char kbcmd[2];
int i;
switch (cmd) {
case WSMOUSEIO_GTYPE:
*(u_int *)data = WSMOUSE_TYPE_PS2;
break;
case WSMOUSEIO_SRES:
i = (*(u_int *)data - 12) / 25;
if (i < 0)
i = 0;
if (i > 3)
i = 3;
kbcmd[0] = PMS_SET_RES;
kbcmd[1] = i;
i = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, kbcmd,
2, 0, 1, 0);
if (i)
printf("pms_ioctl: SET_RES command error\n");
break;
default:
return (EPASSTHROUGH);
}
return (0);
}
static void
pms_spawn_reset_thread(arg)
void *arg;
{
struct pms_softc *sc = arg;
kthread_create1(pms_reset_thread, sc, &sc->sc_event_thread,
sc->sc_dev.dv_xname);
}
static void
pms_reset_thread(arg)
void *arg;
{
struct pms_softc *sc = arg;
u_char cmd[1], resp[2];
int res;
int save_protocol;
for (;;) {
tsleep(&sc->sc_enabled, PWAIT, "pmsreset", 0);
#ifdef PMSDEBUG
if (pmsdebug)
#endif
#if defined(PMSDEBUG) || defined(DIAGNOSTIC)
printf("%s: resetting mouse interface\n",
sc->sc_dev.dv_xname);
#endif
save_protocol = sc->protocol;
pms_disable(sc);
cmd[0] = PMS_RESET;
res = pckbc_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1,
2, 1, resp);
if (res)
DPRINTF(("%s: reset error %d\n", sc->sc_dev.dv_xname,
res));
sc->protocol = PMS_UNKNOWN;
pms_enable(sc);
if (sc->protocol != save_protocol) {
#if defined(PMSDEBUG) || defined(DIAGNOSTIC)
printf("%s: protocol change, sleeping and retrying\n",
sc->sc_dev.dv_xname);
#endif
pms_disable(sc);
cmd[0] = PMS_RESET;
res = pckbc_enqueue_cmd(sc->sc_kbctag,
sc->sc_kbcslot, cmd, 1, 2, 1, resp);
if (res)
DPRINTF(("%s: reset error %d\n",
sc->sc_dev.dv_xname, res));
tsleep(pms_reset_thread, PWAIT, "pmsreset", hz);
cmd[0] = PMS_RESET;
res = pckbc_enqueue_cmd(sc->sc_kbctag,
sc->sc_kbcslot, cmd, 1, 2, 1, resp);
if (res)
DPRINTF(("%s: reset error %d\n",
sc->sc_dev.dv_xname, res));
sc->protocol = PMS_UNKNOWN; /* reprobe protocol */
pms_enable(sc);
#if defined(PMSDEBUG) || defined(DIAGNOSTIC)
if (sc->protocol != save_protocol) {
printf("%s: protocol changed.\n",
sc->sc_dev.dv_xname);
}
#endif
}
}
}
/* Masks for the first byte of a packet */
2002-03-20 20:06:51 +03:00
#define PMS_LBUTMASK 0x01
#define PMS_RBUTMASK 0x02
#define PMS_MBUTMASK 0x04
#define PMS_4BUTMASK 0x10
#define PMS_5BUTMASK 0x20
void
pmsinput(vsc, data)
void *vsc;
int data;
{
1999-01-23 19:05:56 +03:00
struct pms_softc *sc = vsc;
u_int changed;
2002-03-20 20:06:51 +03:00
int dx, dy, dz = 0;
int newbuttons = 0;
if (!sc->sc_enabled) {
/* Interrupts are not expected. Discard the byte. */
return;
}
microtime(&sc->current);
if (sc->inputstate > 0) {
struct timeval diff;
timersub(&sc->current, &sc->last, &diff);
2002-03-20 20:06:51 +03:00
/*
* Empirically, the delay should be about 1700us on a standard
* PS/2 port. I have seen delays as large as 4500us (rarely)
* in regular use. When using a confused mouse, I generally
* see delays at least as large as 30,000us. This serves as
* a rough geometric compromise. -seebs
*
* The thinkpad trackball returns at 22-23ms. So we use
* 25ms. In the future, I'll implement adaptable timeout
* by increasing the timeout if the mouse reset happens
* too frequently -christos
2002-03-20 20:06:51 +03:00
*/
if (diff.tv_sec > 0 || diff.tv_usec > 25000) {
DPRINTF(("pms_input: unusual delay (%ld.%06ld s), "
"scheduling reset\n",
(long)diff.tv_sec, (long)diff.tv_usec));
sc->inputstate = 0;
2002-03-20 20:06:51 +03:00
sc->sc_enabled = 0;
wakeup(&sc->sc_enabled);
return;
}
}
sc->last = sc->current;
if (sc->inputstate == 0) {
/*
* Some devices (seen on trackballs anytime, and on some mice shortly after
* reset) output garbage bytes between packets.
* Just ignore them.
*/
if ((data & 0xc0) != 0)
return; /* not in sync yet, discard input */
}
2002-03-20 20:06:51 +03:00
sc->packet[sc->inputstate++] = data & 0xff;
switch (sc->inputstate) {
case 0:
2002-03-20 20:06:51 +03:00
/* no useful processing can be done yet */
break;
case 1:
/*
* Why should we test for bit 0x8 and insist on it here?
* The old (psm.c and psm_intelli.c) drivers didn't do
* it, and there are devices where it does harm (that's
* why it is not used if using PMS_STANDARD protocol).
* Anyway, it does not to cause any harm to accept packets
* without this bit.
*/
#if 0
if (sc->protocol == PMS_STANDARD)
break;
2002-03-20 20:06:51 +03:00
if (!(sc->packet[0] & 0x8)) {
DPRINTF(("pmsinput: 0x8 not set in first byte "
"[0x%02x], resetting\n", sc->packet[0]));
sc->inputstate = 0;
sc->sc_enabled = 0;
wakeup(&sc->sc_enabled);
2002-03-20 20:06:51 +03:00
return;
}
#endif
break;
case 2:
break;
2002-03-20 20:06:51 +03:00
case 4:
/* Case 4 is a superset of case 3. This is *not* an accident. */
if (sc->protocol == PMS_SCROLL3) {
dz = sc->packet[3];
if (dz >= 128)
dz -= 256;
if (dz == -128)
dz = -127;
} else if (sc->protocol == PMS_SCROLL5) {
dz = sc->packet[3] & 0xf;
if (dz >= 8)
dz -= 16;
if (sc->packet[3] & PMS_4BUTMASK)
newbuttons |= 0x8;
if (sc->packet[3] & PMS_5BUTMASK)
newbuttons |= 0x10;
} else {
DPRINTF(("pmsinput: why am I looking at this byte?\n"));
dz = 0;
}
/* FALLTHROUGH */
case 3:
2002-03-20 20:06:51 +03:00
/*
* This is only an endpoint for scroll protocols with 4
* bytes, or the standard protocol with 3.
*/
if (sc->protocol != PMS_STANDARD && sc->inputstate == 3)
break;
newbuttons |= ((sc->packet[0] & PMS_LBUTMASK) ? 0x1 : 0) |
((sc->packet[0] & PMS_MBUTMASK) ? 0x2 : 0) |
((sc->packet[0] & PMS_RBUTMASK) ? 0x4 : 0);
dx = sc->packet[1];
if (dx >= 128)
dx -= 256;
if (dx == -128)
dx = -127;
dy = sc->packet[2];
if (dy >= 128)
dy -= 256;
if (dy == -128)
dy = -127;
sc->inputstate = 0;
2002-03-20 20:06:51 +03:00
changed = (sc->buttons ^ newbuttons);
sc->buttons = newbuttons;
#ifdef PMSDEBUG
if (sc->protocol == PMS_STANDARD) {
DPRINTF(("pms: packet: 0x%02x%02x%02x\n",
sc->packet[0], sc->packet[1], sc->packet[2]));
} else {
2002-03-28 18:21:50 +03:00
DPRINTF(("pms: packet: 0x%02x%02x%02x%02x\n",
2002-03-20 20:06:51 +03:00
sc->packet[0], sc->packet[1], sc->packet[2],
sc->packet[3]));
}
#endif
2002-03-20 20:06:51 +03:00
if (dx || dy || dz || changed) {
#ifdef PMSDEBUG
2002-03-28 18:21:50 +03:00
DPRINTF(("pms: x %+03d y %+03d z %+03d "
2002-03-20 20:06:51 +03:00
"buttons 0x%02x\n", dx, dy, dz, sc->buttons));
#endif
wsmouse_input(sc->sc_wsmousedev,
2002-03-20 20:06:51 +03:00
sc->buttons, dx, dy, dz,
WSMOUSE_INPUT_DELTA);
}
2002-03-20 20:06:51 +03:00
memset(sc->packet, 0, 4);
break;
2002-03-20 20:06:51 +03:00
/* If we get here, we have problems. */
default:
printf("pmsinput: very confused. resetting.\n");
sc->inputstate = 0;
sc->sc_enabled = 0;
wakeup(&sc->sc_enabled);
2002-03-20 20:06:51 +03:00
return;
}
}