NetBSD/sys/arch/i386/isa/mms.c

347 lines
7.4 KiB
C
Raw Normal View History

/* $NetBSD: mms.c,v 1.18 1995/04/17 12:07:19 cgd Exp $ */
1994-10-27 07:14:23 +03:00
1993-06-13 17:55:03 +04:00
/*-
1994-02-17 06:39:52 +03:00
* Copyright (c) 1993, 1994 Charles Hannum.
1993-06-13 17:55:03 +04:00
* 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.
*/
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/file.h>
#include <sys/select.h>
#include <sys/proc.h>
#include <sys/vnode.h>
1994-02-17 06:39:52 +03:00
#include <sys/device.h>
1994-02-17 06:39:52 +03:00
#include <machine/cpu.h>
#include <machine/pio.h>
1994-02-17 06:39:52 +03:00
#include <machine/mouse.h>
1993-06-13 17:55:03 +04:00
#include <dev/isa/isavar.h>
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
#define MMS_ADDR 0 /* offset for register select */
#define MMS_DATA 1 /* offset for InPort data */
#define MMS_IDENT 2 /* offset for identification register */
#define MMS_NPORTS 4
#define MMS_CHUNK 128 /* chunk size for read */
#define MMS_BSIZE 1020 /* buffer size */
struct mms_softc { /* driver status information */
struct device sc_dev;
void *sc_ih;
1994-02-17 06:39:52 +03:00
struct clist sc_q;
struct selinfo sc_rsel;
int sc_iobase; /* I/O port base */
1994-02-17 06:39:52 +03:00
u_char sc_state; /* mouse driver state */
#define MMS_OPEN 0x01 /* device is open */
#define MMS_ASLP 0x02 /* waiting for mouse data */
u_char sc_status; /* mouse button status */
int sc_x, sc_y; /* accumulated motion in the X,Y axis */
1994-03-29 08:35:37 +04:00
};
1993-06-13 17:55:03 +04:00
1994-11-04 02:08:27 +03:00
int mmsprobe __P((struct device *, void *, void *));
void mmsattach __P((struct device *, struct device *, void *));
int mmsintr __P((void *));
1993-06-13 17:55:03 +04:00
1994-03-29 08:35:37 +04:00
struct cfdriver mmscd = {
NULL, "mms", mmsprobe, mmsattach, DV_TTY, sizeof(struct mms_softc)
};
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
#define MMSUNIT(dev) (minor(dev))
int
1994-11-04 02:08:27 +03:00
mmsprobe(parent, match, aux)
struct device *parent;
void *match, *aux;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;
1993-06-13 17:55:03 +04:00
/* Read identification register to see if present */
1994-02-17 06:39:52 +03:00
if (inb(iobase + MMS_IDENT) != 0xde)
return 0;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Seems it was there; reset. */
outb(iobase + MMS_ADDR, 0x87);
1993-06-13 17:55:03 +04:00
1994-03-29 08:35:37 +04:00
ia->ia_iosize = MMS_NPORTS;
ia->ia_msize = 0;
return 1;
1993-06-13 17:55:03 +04:00
}
1994-03-29 08:35:37 +04:00
void
mmsattach(parent, self, aux)
struct device *parent, *self;
void *aux;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct mms_softc *sc = (void *)self;
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;
1993-06-13 17:55:03 +04:00
1994-03-30 04:54:43 +04:00
printf("\n");
1994-02-17 06:39:52 +03:00
/* Other initialization was done by mmsprobe. */
sc->sc_iobase = iobase;
sc->sc_state = 0;
sc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_PULSE, ISA_IPL_NONE,
mmsintr, sc);
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsopen(dev, flag)
dev_t dev;
int flag;
1993-06-13 17:55:03 +04:00
{
1993-06-14 06:26:17 +04:00
int unit = MMSUNIT(dev);
struct mms_softc *sc;
1993-06-13 17:55:03 +04:00
1994-03-29 08:35:37 +04:00
if (unit >= mmscd.cd_ndevs)
1994-02-17 06:39:52 +03:00
return ENXIO;
1994-03-29 08:35:37 +04:00
sc = mmscd.cd_devs[unit];
if (!sc)
1994-02-17 06:39:52 +03:00
return ENXIO;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if (sc->sc_state & MMS_OPEN)
return EBUSY;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if (clalloc(&sc->sc_q, MMS_BSIZE, 0) == -1)
return ENOMEM;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
sc->sc_state |= MMS_OPEN;
sc->sc_status = 0;
sc->sc_x = sc->sc_y = 0;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Enable interrupts. */
outb(sc->sc_iobase + MMS_ADDR, 0x07);
outb(sc->sc_iobase + MMS_DATA, 0x09);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
return 0;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsclose(dev, flag)
dev_t dev;
int flag;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct mms_softc *sc = mmscd.cd_devs[MMSUNIT(dev)];
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Disable interrupts. */
outb(sc->sc_iobase + MMS_ADDR, 0x87);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
sc->sc_state &= ~MMS_OPEN;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
clfree(&sc->sc_q);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
return 0;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsread(dev, uio, flag)
dev_t dev;
struct uio *uio;
int flag;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct mms_softc *sc = mmscd.cd_devs[MMSUNIT(dev)];
1994-02-17 06:39:52 +03:00
int s;
int error;
size_t length;
u_char buffer[MMS_CHUNK];
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Block until mouse activity occured. */
1993-06-13 17:55:03 +04:00
s = spltty();
1994-02-17 06:39:52 +03:00
while (sc->sc_q.c_cc == 0) {
if (flag & IO_NDELAY) {
1993-06-13 17:55:03 +04:00
splx(s);
1994-02-17 06:39:52 +03:00
return EWOULDBLOCK;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
sc->sc_state |= MMS_ASLP;
if (error = tsleep((caddr_t)sc, PZERO | PCATCH, "mmsrea", 0)) {
sc->sc_state &= ~MMS_ASLP;
1993-06-13 17:55:03 +04:00
splx(s);
1994-02-17 06:39:52 +03:00
return error;
1993-06-13 17:55:03 +04:00
}
}
1994-02-17 06:39:52 +03:00
splx(s);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Transfer as many chunks as possible. */
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
while (sc->sc_q.c_cc > 0 && uio->uio_resid > 0) {
length = min(sc->sc_q.c_cc, uio->uio_resid);
1993-06-13 17:55:03 +04:00
if (length > sizeof(buffer))
length = sizeof(buffer);
1994-02-17 06:39:52 +03:00
/* Remove a small chunk from the input queue. */
(void) q_to_b(&sc->sc_q, buffer, length);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Copy the data to the user process. */
if (error = uiomove(buffer, length, uio))
1993-06-13 17:55:03 +04:00
break;
}
1994-02-17 06:39:52 +03:00
return error;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsioctl(dev, cmd, addr, flag)
dev_t dev;
u_long cmd;
1994-02-17 06:39:52 +03:00
caddr_t addr;
int flag;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct mms_softc *sc = mmscd.cd_devs[MMSUNIT(dev)];
1993-06-13 17:55:03 +04:00
struct mouseinfo info;
1994-02-17 06:39:52 +03:00
int s;
int error;
1993-06-13 17:55:03 +04:00
switch (cmd) {
case MOUSEIOCREAD:
s = spltty();
1994-02-17 06:39:52 +03:00
info.status = sc->sc_status;
if (sc->sc_x || sc->sc_y)
1993-06-13 17:55:03 +04:00
info.status |= MOVEMENT;
1994-02-17 06:39:52 +03:00
if (sc->sc_x > 127)
1993-06-13 17:55:03 +04:00
info.xmotion = 127;
1994-02-17 06:39:52 +03:00
else if (sc->sc_x < -127)
/* Bounding at -127 avoids a bug in XFree86. */
info.xmotion = -127;
1993-06-13 17:55:03 +04:00
else
1994-02-17 06:39:52 +03:00
info.xmotion = sc->sc_x;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if (sc->sc_y > 127)
1993-06-13 17:55:03 +04:00
info.ymotion = 127;
1994-02-17 06:39:52 +03:00
else if (sc->sc_y < -127)
info.ymotion = -127;
1993-06-13 17:55:03 +04:00
else
1994-02-17 06:39:52 +03:00
info.ymotion = sc->sc_y;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Reset historical information. */
sc->sc_x = sc->sc_y = 0;
sc->sc_status &= ~BUTCHNGMASK;
ndflush(&sc->sc_q, sc->sc_q.c_cc);
1993-06-13 17:55:03 +04:00
splx(s);
error = copyout(&info, addr, sizeof(struct mouseinfo));
break;
default:
error = EINVAL;
break;
1994-02-17 06:39:52 +03:00
}
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
return error;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsintr(arg)
void *arg;
1993-06-13 17:55:03 +04:00
{
struct mms_softc *sc = arg;
int iobase = sc->sc_iobase;
1994-02-17 06:39:52 +03:00
u_char buttons, changed, status;
char dx, dy;
u_char buffer[5];
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if ((sc->sc_state & MMS_OPEN) == 0)
/* Interrupts are not expected. */
return 0;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Freeze InPort registers (disabling interrupts). */
outb(iobase + MMS_ADDR, 0x07);
outb(iobase + MMS_DATA, 0x29);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
outb(iobase + MMS_ADDR, 0x00);
status = inb(iobase + MMS_DATA);
1993-06-13 17:55:03 +04:00
if (status & 0x40) {
1994-02-17 06:39:52 +03:00
outb(iobase + MMS_ADDR, 1);
dx = inb(iobase + MMS_DATA);
dx = (dx == -128) ? -127 : dx;
outb(iobase + MMS_ADDR, 2);
dy = inb(iobase + MMS_DATA);
1993-06-13 17:55:03 +04:00
dy = (dy == -128) ? 127 : -dy;
1994-02-17 06:39:52 +03:00
} else
1993-06-13 17:55:03 +04:00
dx = dy = 0;
1994-02-17 06:39:52 +03:00
/* Unfreeze InPort registers (reenabling interrupts). */
outb(iobase + MMS_ADDR, 0x07);
outb(iobase + MMS_DATA, 0x09);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
buttons = status & BUTSTATMASK;
changed = status & BUTCHNGMASK;
sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if (dx || dy || changed) {
/* Update accumulated movements. */
sc->sc_x += dx;
sc->sc_y += dy;
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
/* Add this event to the queue. */
buffer[0] = 0x80 | (buttons ^ BUTSTATMASK);
buffer[1] = dx;
buffer[2] = dy;
buffer[3] = buffer[4] = 0;
(void) b_to_q(buffer, sizeof buffer, &sc->sc_q);
1993-06-13 17:55:03 +04:00
1994-02-17 06:39:52 +03:00
if (sc->sc_state & MMS_ASLP) {
sc->sc_state &= ~MMS_ASLP;
wakeup((caddr_t)sc);
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
selwakeup(&sc->sc_rsel);
}
return -1;
1993-06-13 17:55:03 +04:00
}
1994-02-17 06:39:52 +03:00
int
mmsselect(dev, rw, p)
dev_t dev;
int rw;
struct proc *p;
1993-06-13 17:55:03 +04:00
{
1994-03-29 08:35:37 +04:00
struct mms_softc *sc = mmscd.cd_devs[MMSUNIT(dev)];
1994-02-17 06:39:52 +03:00
int s;
int ret;
1993-06-13 17:55:03 +04:00
if (rw == FWRITE)
1994-02-17 06:39:52 +03:00
return 0;
1993-06-13 17:55:03 +04:00
s = spltty();
1994-02-17 06:39:52 +03:00
if (!sc->sc_q.c_cc) {
selrecord(p, &sc->sc_rsel);
1993-06-13 17:55:03 +04:00
ret = 0;
1994-02-17 06:39:52 +03:00
} else
ret = 1;
1993-06-13 17:55:03 +04:00
splx(s);
1994-02-17 06:39:52 +03:00
return ret;
1993-06-13 17:55:03 +04:00
}