split pccons driver into "pccons" and "opms",

also split into bus-dependent frontend and bus-independent backend.
This commit is contained in:
soda 2001-06-13 15:05:43 +00:00
parent fd0e7b0c41
commit b7abba7794
11 changed files with 1273 additions and 642 deletions

416
sys/arch/arc/dev/opms.c Normal file
View File

@ -0,0 +1,416 @@
/* $NetBSD: opms.c,v 1.1 2001/06/13 15:05:43 soda Exp $ */
/* $OpenBSD: pccons.c,v 1.22 1999/01/30 22:39:37 imp Exp $ */
/* NetBSD: pms.c,v 1.21 1995/04/18 02:25:18 mycroft Exp */
/*-
* Copyright (c) 1993, 1994, 1995 Charles M. Hannum. All rights reserved.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* William Jolitz and Don Ahn.
*
* Copyright (c) 1994 Charles M. Hannum.
* Copyright (c) 1992, 1993 Erik Forsberg.
*
* 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.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 THE REGENTS OR CONTRIBUTORS 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.
*
* @(#)pccons.c 5.11 (Berkeley) 5/21/91
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/vnode.h>
#include <sys/poll.h>
#include <sys/tty.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/kbdreg.h>
#include <machine/mouse.h>
#include <arc/dev/pcconsvar.h>
#include <arc/dev/opmsvar.h>
#define PMSUNIT(dev) (minor(dev))
/* status bits */
#define PMS_OBUF_FULL 0x01
#define PMS_IBUF_FULL 0x02
/* controller commands */
#define PMS_INT_ENABLE 0x47 /* enable controller interrupts */
#define PMS_INT_DISABLE 0x65 /* disable controller interrupts */
#define PMS_AUX_ENABLE 0xa7 /* enable auxiliary port */
#define PMS_AUX_DISABLE 0xa8 /* disable auxiliary port */
#define PMS_MAGIC_1 0xa9 /* XXX */
#define PMS_8042_CMD 0x65
/* mouse commands */
#define PMS_SET_SCALE11 0xe6 /* set scaling 1:1 */
#define PMS_SET_SCALE21 0xe7 /* set scaling 2:1 */
#define PMS_SET_RES 0xe8 /* set resolution */
#define PMS_GET_SCALE 0xe9 /* get scaling factor */
#define PMS_SET_STREAM 0xea /* set streaming mode */
#define PMS_SET_SAMPLE 0xf3 /* set sampling rate */
#define PMS_DEV_ENABLE 0xf4 /* mouse on */
#define PMS_DEV_DISABLE 0xf5 /* mouse off */
#define PMS_RESET 0xff /* reset */
#define PMS_CHUNK 128 /* chunk size for read */
#define PMS_BSIZE 1020 /* buffer size */
#define FLUSHQ(q) { if((q)->c_cc) ndflush(q, (q)->c_cc); }
extern struct cfdriver opms_cd;
int opmsopen __P((dev_t, int));
int opmsclose __P((dev_t, int));
int opmsread __P((dev_t, struct uio *, int));
int opmsioctl __P((dev_t, u_long, caddr_t, int));
int opmsselect __P((dev_t, int, struct proc *));
int opmspoll __P((dev_t, int, struct proc *));
static __inline void pms_dev_cmd __P((u_char));
static __inline void pms_aux_cmd __P((u_char));
static __inline void pms_pit_cmd __P((u_char));
static __inline void
pms_dev_cmd(value)
u_char value;
{
kbd_flush_input();
kbd_cmd_write_1(0xd4);
kbd_flush_input();
kbd_data_write_1(value);
}
static __inline void
pms_aux_cmd(value)
u_char value;
{
kbd_flush_input();
kbd_cmd_write_1(value);
}
static __inline void
pms_pit_cmd(value)
u_char value;
{
kbd_flush_input();
kbd_cmd_write_1(0x60);
kbd_flush_input();
kbd_data_write_1(value);
}
int opms_common_match(kbd_iot, config)
bus_space_tag_t kbd_iot;
struct pccons_config *config;
{
u_char x;
kbd_context_init(kbd_iot, config);
pms_dev_cmd(KBC_RESET);
pms_aux_cmd(PMS_MAGIC_1);
delay(10000);
x = kbd_data_read_1();
pms_pit_cmd(PMS_INT_DISABLE);
if (x & 0x04)
return 0;
return 1;
}
void
opms_common_attach(sc, opms_iot, config)
struct opms_softc *sc;
bus_space_tag_t opms_iot;
struct pccons_config *config;
{
kbd_context_init(opms_iot, config);
/* Other initialization was done by opmsprobe. */
sc->sc_state = 0;
}
int
opmsopen(dev, flag)
dev_t dev;
int flag;
{
int unit = PMSUNIT(dev);
struct opms_softc *sc;
if (unit >= opms_cd.cd_ndevs)
return ENXIO;
sc = opms_cd.cd_devs[unit];
if (!sc)
return ENXIO;
if (sc->sc_state & PMS_OPEN)
return EBUSY;
if (clalloc(&sc->sc_q, PMS_BSIZE, 0) == -1)
return ENOMEM;
sc->sc_state |= PMS_OPEN;
sc->sc_status = 0;
sc->sc_x = sc->sc_y = 0;
/* Enable interrupts. */
pms_dev_cmd(PMS_DEV_ENABLE);
pms_aux_cmd(PMS_AUX_ENABLE);
pms_dev_cmd(PMS_SET_RES);
pms_dev_cmd(3); /* 8 counts/mm */
pms_dev_cmd(PMS_SET_SCALE21);
#if 0
pms_dev_cmd(PMS_SET_SAMPLE);
pms_dev_cmd(100); /* 100 samples/sec */
pms_dev_cmd(PMS_SET_STREAM);
#endif
pms_pit_cmd(PMS_INT_ENABLE);
return 0;
}
int
opmsclose(dev, flag)
dev_t dev;
int flag;
{
struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
/* Disable interrupts. */
pms_dev_cmd(PMS_DEV_DISABLE);
pms_pit_cmd(PMS_INT_DISABLE);
pms_aux_cmd(PMS_AUX_DISABLE);
sc->sc_state &= ~PMS_OPEN;
clfree(&sc->sc_q);
return 0;
}
int
opmsread(dev, uio, flag)
dev_t dev;
struct uio *uio;
int flag;
{
struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
int s;
int error = 0;
size_t length;
u_char buffer[PMS_CHUNK];
/* Block until mouse activity occured. */
s = spltty();
while (sc->sc_q.c_cc == 0) {
if (flag & IO_NDELAY) {
splx(s);
return EWOULDBLOCK;
}
sc->sc_state |= PMS_ASLP;
error = tsleep((caddr_t)sc, PZERO | PCATCH, "pmsrea", 0);
if (error) {
sc->sc_state &= ~PMS_ASLP;
splx(s);
return error;
}
}
splx(s);
/* Transfer as many chunks as possible. */
while (sc->sc_q.c_cc > 0 && uio->uio_resid > 0) {
length = min(sc->sc_q.c_cc, uio->uio_resid);
if (length > sizeof(buffer))
length = sizeof(buffer);
/* Remove a small chunk from the input queue. */
(void) q_to_b(&sc->sc_q, buffer, length);
/* Copy the data to the user process. */
error = uiomove(buffer, length, uio);
if (error)
break;
}
return error;
}
int
opmsioctl(dev, cmd, addr, flag)
dev_t dev;
u_long cmd;
caddr_t addr;
int flag;
{
struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
struct mouseinfo info;
int s;
int error;
switch (cmd) {
case MOUSEIOCREAD:
s = spltty();
info.status = sc->sc_status;
if (sc->sc_x || sc->sc_y)
info.status |= MOVEMENT;
if (sc->sc_x > 127)
info.xmotion = 127;
else if (sc->sc_x < -127)
/* Bounding at -127 avoids a bug in XFree86. */
info.xmotion = -127;
else
info.xmotion = sc->sc_x;
if (sc->sc_y > 127)
info.ymotion = 127;
else if (sc->sc_y < -127)
info.ymotion = -127;
else
info.ymotion = sc->sc_y;
/* Reset historical information. */
sc->sc_x = sc->sc_y = 0;
sc->sc_status &= ~BUTCHNGMASK;
ndflush(&sc->sc_q, sc->sc_q.c_cc);
splx(s);
error = copyout(&info, addr, sizeof(struct mouseinfo));
break;
default:
error = EINVAL;
break;
}
return error;
}
/* Masks for the first byte of a packet */
#define PS2LBUTMASK 0x01
#define PS2RBUTMASK 0x02
#define PS2MBUTMASK 0x04
int
opmsintr(arg)
void *arg;
{
struct opms_softc *sc = arg;
static int state = 0;
static u_char buttons;
u_char changed;
static char dx, dy;
u_char buffer[5];
if ((sc->sc_state & PMS_OPEN) == 0) {
/* Interrupts are not expected. Discard the byte. */
kbd_flush_input();
return 0;
}
switch (state) {
case 0:
buttons = kbd_data_read_1();
if ((buttons & 0xc0) == 0)
++state;
break;
case 1:
dx = kbd_data_read_1();
/* Bounding at -127 avoids a bug in XFree86. */
dx = (dx == -128) ? -127 : dx;
++state;
break;
case 2:
dy = kbd_data_read_1();
dy = (dy == -128) ? -127 : dy;
state = 0;
buttons = ((buttons & PS2LBUTMASK) << 2) |
((buttons & (PS2RBUTMASK | PS2MBUTMASK)) >> 1);
changed = ((buttons ^ sc->sc_status) & BUTSTATMASK) << 3;
sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
if (dx || dy || changed) {
/* Update accumulated movements. */
sc->sc_x += dx;
sc->sc_y += dy;
/* Add this event to the queue. */
buffer[0] = 0x80 | (buttons & BUTSTATMASK);
if(dx < 0)
buffer[0] |= 0x10;
buffer[1] = dx & 0x7f;
if(dy < 0)
buffer[0] |= 0x20;
buffer[2] = dy & 0x7f;
buffer[3] = buffer[4] = 0;
(void) b_to_q(buffer, sizeof buffer, &sc->sc_q);
if (sc->sc_state & PMS_ASLP) {
sc->sc_state &= ~PMS_ASLP;
wakeup((caddr_t)sc);
}
selwakeup(&sc->sc_rsel);
}
break;
}
return -1;
}
int
opmspoll(dev, events, p)
dev_t dev;
int events;
struct proc *p;
{
struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
int revents = 0;
int s = spltty();
if (events & (POLLIN | POLLRDNORM)) {
if (sc->sc_q.c_cc > 0)
revents |= events & (POLLIN | POLLRDNORM);
else
selrecord(p, &sc->sc_rsel);
}
splx(s);
return (revents);
}

View File

@ -0,0 +1,66 @@
/* $NetBSD: opmsvar.h,v 1.1 2001/06/13 15:05:44 soda Exp $ */
/* $OpenBSD: pccons.c,v 1.22 1999/01/30 22:39:37 imp Exp $ */
/* NetBSD: pms.c,v 1.21 1995/04/18 02:25:18 mycroft Exp */
/*-
* Copyright (c) 1993, 1994, 1995 Charles M. Hannum. All rights reserved.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* William Jolitz and Don Ahn.
*
* Copyright (c) 1994 Charles M. Hannum.
* Copyright (c) 1992, 1993 Erik Forsberg.
*
* 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.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 THE REGENTS OR CONTRIBUTORS 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.
*
* @(#)pccons.c 5.11 (Berkeley) 5/21/91
*/
struct opms_softc { /* driver status information */
struct device sc_dev;
struct clist sc_q;
struct selinfo sc_rsel;
u_char sc_state; /* mouse driver state */
#define PMS_OPEN 0x01 /* device is open */
#define PMS_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 */
#if 0
struct pccons_kbd_context *sc_pkc; /* pckbd device software context */
#endif
};
int opms_common_match __P((bus_space_tag_t, struct pccons_config *));
void opms_common_attach __P((struct opms_softc *, bus_space_tag_t,
struct pccons_config *));
int opmsintr __P((void *));

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,113 @@
/* $NetBSD: pcconsvar.h,v 1.1 2001/06/13 15:05:43 soda Exp $ */
/* $OpenBSD: pccons.c,v 1.22 1999/01/30 22:39:37 imp Exp $ */
/* NetBSD: pccons.c,v 1.89 1995/05/04 19:35:20 cgd Exp */
/*-
* Copyright (c) 1993, 1994, 1995 Charles M. Hannum. All rights reserved.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* William Jolitz and Don Ahn.
*
* Copyright (c) 1994 Charles M. Hannum.
* Copyright (c) 1992, 1993 Erik Forsberg.
*
* 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.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 THE REGENTS OR CONTRIBUTORS 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.
*
* @(#)pccons.c 5.11 (Berkeley) 5/21/91
*/
struct pccons_config {
bus_addr_t pc_mono_iobase, pc_mono_memaddr;
bus_addr_t pc_cga_iobase, pc_cga_memaddr;
bus_addr_t pc_kbd_cmdp, pc_kbd_datap;
void (*pc_init) __P((void));
};
struct pccons_kbd_context {
bus_space_tag_t pkc_iot;
bus_space_handle_t pkc_cmd_ioh, pkc_data_ioh;
int pkc_initialized;
};
struct pccons_context {
struct pccons_kbd_context pc_pkc;
bus_space_tag_t pc_crt_iot, pc_crt_memt;
bus_space_handle_t pc_6845_ioh, pc_crt_memh;
bus_space_handle_t pc_mono_ioh, pc_mono_memh;
bus_space_handle_t pc_cga_ioh, pc_cga_memh;
struct pccons_config *pc_config;
int pc_initialized;
};
struct tty;
struct pc_softc {
struct device sc_dev;
struct tty *sc_tty;
#if 0
struct pccons_context *sc_pc; /* pccons device software context */
#endif
};
#define kbd_cmd_read_1() \
bus_space_read_1(pccons_console_context.pc_pkc.pkc_iot, \
pccons_console_context.pc_pkc.pkc_cmd_ioh, 0)
#define kbd_data_read_1() \
bus_space_read_1(pccons_console_context.pc_pkc.pkc_iot, \
pccons_console_context.pc_pkc.pkc_data_ioh, 0)
#define kbd_cmd_write_1(cmd) \
bus_space_write_1(pccons_console_context.pc_pkc.pkc_iot, \
pccons_console_context.pc_pkc.pkc_cmd_ioh, 0, cmd)
#define kbd_data_write_1(data) \
bus_space_write_1(pccons_console_context.pc_pkc.pkc_iot, \
pccons_console_context.pc_pkc.pkc_data_ioh, 0, data)
extern struct pccons_context pccons_console_context;
void kbd_context_init __P((bus_space_tag_t, struct pccons_config *));
int kbc_put8042cmd __P((u_char));
void kbd_flush_input __P((void));
int pccons_common_match __P((bus_space_tag_t,
bus_space_tag_t, bus_space_tag_t, struct pccons_config *));
void pccons_common_attach __P((struct pc_softc *, bus_space_tag_t,
bus_space_tag_t, bus_space_tag_t, struct pccons_config *));
void pccons_common_cnattach __P((bus_space_tag_t, bus_space_tag_t,
bus_space_tag_t, struct pccons_config *));
int pcintr __P((void *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: pccons.h,v 1.5 2001/05/11 21:15:12 tsutsui Exp $ */
/* $NetBSD: pccons.h,v 1.6 2001/06/13 15:05:47 soda Exp $ */
/* $OpenBSD: pccons.h,v 1.2 1996/09/01 16:50:12 deraadt Exp $ */
/* NetBSD: pccons.h,v 1.4 1996/02/02 18:06:06 mycroft Exp */
@ -43,8 +43,4 @@ typedef struct {
#define CONSOLE_GET_KEYMAP _IOR('t',128,pccons_keymap_t[KB_NUM_KEYS])
#define CONSOLE_SET_KEYMAP _IOW('t',129,pccons_keymap_t[KB_NUM_KEYS])
#ifdef _KERNEL
void pccnattach(void);
#endif
#endif /* _PCCONS_H_ */

105
sys/arch/arc/isa/opms_isa.c Normal file
View File

@ -0,0 +1,105 @@
/* $NetBSD: opms_isa.c,v 1.1 2001/06/13 15:05:45 soda Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/tty.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <dev/isa/isareg.h>
#include <dev/isa/isavar.h>
#include <arc/dev/pcconsvar.h>
#include <arc/dev/opmsvar.h>
int opms_isa_match __P((struct device *, struct cfdata *, void *));
void opms_isa_attach __P((struct device *, struct device *, void *));
struct cfattach opms_isa_ca = {
sizeof(struct opms_softc), opms_isa_match, opms_isa_attach,
};
struct pccons_config *pccons_isa_conf; /* share stroage with pccons_isa.c */
int
opms_isa_match(parent, match, aux)
struct device *parent;
struct cfdata *match;
void *aux;
{
struct isa_attach_args *ia = aux;
bus_addr_t iobase = IO_KBD;
bus_size_t iosize = IO_KBDSIZE;
int irq = 12;
if (ia->ia_iobase != IOBASEUNK)
iobase = ia->ia_iobase;
#if 0 /* XXX isa.c */
if (ia->ia_iosize != 0)
iosize = ia->ia_iosize;
#endif
if (ia->ia_irq != IRQUNK)
irq = ia->ia_irq;
#if 0
/* If values are hardwired to something that they can't be, punt. */
if (iobase != IO_KBD || iosize != IO_KBDSIZE ||
ia->ia_maddr != MADDRUNK || ia->ia_msize != 0 ||
ia->ia_irq != 1 || ia->ia_drq != DRQUNK)
return (0);
#endif
if (pccons_isa_conf == NULL)
return (0);
if (!opms_common_match(ia->ia_iot, pccons_isa_conf))
return (0);
ia->ia_iobase = iobase;
ia->ia_iosize = iosize;
ia->ia_msize = 0;
return (1);
}
void
opms_isa_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct opms_softc *sc = (struct opms_softc *)self;
struct isa_attach_args *ia = aux;
printf("\n");
isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE, IPL_TTY,
pcintr, self);
opms_common_attach(sc, ia->ia_iot, pccons_isa_conf);
}

View File

@ -0,0 +1,122 @@
/* $NetBSD: pccons_isa.c,v 1.1 2001/06/13 15:05:45 soda Exp $ */
/* NetBSD: vga_isa.c,v 1.4 2000/08/14 20:14:51 thorpej Exp */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <dev/isa/isavar.h>
#include <arc/dev/pcconsvar.h>
#include <arc/isa/pccons_isavar.h>
int pccons_isa_match __P((struct device *, struct cfdata *, void *));
void pccons_isa_attach __P((struct device *, struct device *, void *));
struct cfattach pc_isa_ca = {
sizeof(struct pc_softc), pccons_isa_match, pccons_isa_attach,
};
struct pccons_config *pccons_isa_conf;
int
pccons_isa_match(parent, match, aux)
struct device *parent;
struct cfdata *match;
void *aux;
{
struct isa_attach_args *ia = aux;
bus_addr_t iobase = 0x3b0; /* XXX mono 0x3b0 color 0x3c0 */
bus_size_t iosize = 0x30; /* XXX 0x20 */
bus_addr_t maddr = 0xa0000;
bus_size_t msize = 0x20000;
int irq = 1;
if (ia->ia_iobase != IOBASEUNK)
iobase = ia->ia_iobase;
#if 0 /* XXX isa.c */
if (ia->ia_iosize != 0)
iosize = ia->ia_iosize;
#endif
if (ia->ia_maddr != MADDRUNK)
maddr = ia->ia_maddr;
if (ia->ia_msize != 0)
msize = ia->ia_msize;
if (ia->ia_irq != IRQUNK)
irq = ia->ia_irq;
#if 0
/* If values are hardwired to something that they can't be, punt. */
if (iobase != 0x3b0 || iosize != 0x30 ||
maddr != 0xa0000 || msize != 0x20000 ||
ia->ia_irq != 1 || ia->ia_drq != DRQUNK)
return (0);
#endif
if (pccons_isa_conf == NULL)
return (0);
if (!pccons_common_match(ia->ia_iot, ia->ia_memt, ia->ia_iot,
pccons_isa_conf))
return (0);
ia->ia_iobase = iobase;
ia->ia_iosize = iosize;
ia->ia_maddr = maddr;
ia->ia_msize = msize;
return (1);
}
void
pccons_isa_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct pc_softc *sc = (struct pc_softc *)self;
struct isa_attach_args *ia = aux;
isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE, IPL_TTY,
pcintr, self);
pccons_common_attach(sc, ia->ia_iot, ia->ia_memt, ia->ia_iot,
pccons_isa_conf);
}
int
pccons_isa_cnattach(iot, memt)
bus_space_tag_t iot, memt;
{
if (pccons_isa_conf == NULL)
return (ENXIO);
pccons_common_cnattach(iot, memt, iot, pccons_isa_conf);
return (0);
}

View File

@ -0,0 +1,33 @@
/* $NetBSD: pccons_isavar.h,v 1.1 2001/06/13 15:05:45 soda Exp $ */
/* NetBSD: vga_isavar.h,v 1.1 1998/03/22 15:14:36 drochner Exp */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
int pccons_isa_cnattach __P((bus_space_tag_t, bus_space_tag_t));
extern struct pccons_config *pccons_isa_conf;

View File

@ -0,0 +1,80 @@
/* $NetBSD: opms_jazzio.c,v 1.1 2001/06/13 15:05:46 soda Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/tty.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
#include <arc/dev/pcconsvar.h>
#include <arc/dev/opmsvar.h>
#include <arc/jazz/jazziovar.h>
#include <arc/jazz/pccons_jazziovar.h>
int opms_jazzio_match __P((struct device *, struct cfdata *, void *));
void opms_jazzio_attach __P((struct device *, struct device *, void *));
struct cfattach opms_jazzio_ca = {
sizeof(struct opms_softc),
opms_jazzio_match, opms_jazzio_attach,
};
int
opms_jazzio_match(parent, match, aux)
struct device *parent;
struct cfdata *match;
void *aux;
{
struct jazzio_attach_args *ja = aux;
if (strcmp(ja->ja_name, "pms") != 0)
return (0);
if (!opms_common_match(ja->ja_bust, &pccons_jazzio_conf))
return (0);
return (1);
}
void
opms_jazzio_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct opms_softc *sc = (struct opms_softc *)self;
struct jazzio_attach_args *ja = aux;
printf("\n");
jazzio_intr_establish(ja->ja_intr, opmsintr, self);
opms_common_attach(sc, ja->ja_bust, &pccons_jazzio_conf);
}

View File

@ -0,0 +1,166 @@
/* $NetBSD: pccons_jazzio.c,v 1.1 2001/06/13 15:05:46 soda Exp $ */
/* NetBSD: vga_isa.c,v 1.4 2000/08/14 20:14:51 thorpej Exp */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <uvm/uvm_extern.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
#include <mips/pte.h>
#include <arc/arc/wired_map.h>
#include <arc/dev/pcconsvar.h>
#include <arc/jazz/jazziovar.h>
#include <arc/jazz/pica.h>
#include <arc/jazz/pccons_jazziovar.h>
#define PCKBD_INTR 6 /* XXX - should be obtained from firmware */
int pccons_jazzio_match __P((struct device *, struct cfdata *, void *));
void pccons_jazzio_attach __P((struct device *, struct device *, void *));
struct cfattach pc_jazzio_ca = {
sizeof(struct pc_softc),
pccons_jazzio_match, pccons_jazzio_attach,
};
/*
* chipset-dependent pccons configuration
*/
void pccons_jazzio_init __P((void));
struct pccons_config pccons_jazzio_conf = {
0x3b4, 0xb0000, /* mono: iobase, memaddr */
0x3d4, 0xb8000, /* cga: iobase, memaddr */
PICA_SYS_KBD + 0x61, PICA_SYS_KBD + 0x60, /* kbdc: cmdport, dataport */
pccons_jazzio_init
};
void
pccons_jazzio_init()
{
/* nothing to do */
}
int pccons_jazzio_init_tag __P((char*, bus_space_tag_t*,bus_space_tag_t*));
int
pccons_jazzio_init_tag(name, iotp, memtp)
char *name;
bus_space_tag_t *iotp, *memtp;
{
static int initialized = 0;
static struct arc_bus_space vga_io, vga_mem;
if (strcmp(name, "ALI_S3") != 0)
return(ENXIO);
if (!initialized) {
initialized = 1;
arc_bus_space_init(&vga_io, "vga_jazzio_io",
PICA_P_LOCAL_VIDEO_CTRL, PICA_V_LOCAL_VIDEO_CTRL,
0, PICA_S_LOCAL_VIDEO_CTRL);
arc_bus_space_init(&vga_mem, "vga_jazzio_mem",
PICA_P_LOCAL_VIDEO, PICA_V_LOCAL_VIDEO,
0, PICA_S_LOCAL_VIDEO);
arc_enter_wired(PICA_V_LOCAL_VIDEO_CTRL,
PICA_P_LOCAL_VIDEO_CTRL,
PICA_P_LOCAL_VIDEO_CTRL + PICA_S_LOCAL_VIDEO_CTRL/2,
MIPS3_PG_SIZE_1M);
arc_enter_wired(PICA_V_LOCAL_VIDEO,
PICA_P_LOCAL_VIDEO,
PICA_P_LOCAL_VIDEO + PICA_S_LOCAL_VIDEO/2,
MIPS3_PG_SIZE_4M);
#if 0
arc_enter_wired(PICA_V_EXTND_VIDEO_CTRL,
PICA_P_EXTND_VIDEO_CTRL,
PICA_P_EXTND_VIDEO_CTRL + PICA_S_EXTND_VIDEO_CTRL/2,
MIPS3_PG_SIZE_1M);
#endif
}
*iotp = &vga_io;
*memtp = &vga_mem;
return (0);
}
int
pccons_jazzio_match(parent, match, aux)
struct device *parent;
struct cfdata *match;
void *aux;
{
struct jazzio_attach_args *ja = aux;
bus_space_tag_t crt_iot, crt_memt;
if (pccons_jazzio_init_tag(ja->ja_name, &crt_iot, &crt_memt))
return (0);
if (!pccons_common_match(crt_iot, crt_memt, ja->ja_bust,
&pccons_jazzio_conf))
return (0);
return (1);
}
void
pccons_jazzio_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct pc_softc *sc = (struct pc_softc *)self;
struct jazzio_attach_args *ja = aux;
bus_space_tag_t crt_iot, crt_memt;
pccons_jazzio_init_tag(ja->ja_name, &crt_iot, &crt_memt);
jazzio_intr_establish(PCKBD_INTR, pcintr, self);
pccons_common_attach(sc, crt_iot, crt_memt, ja->ja_bust,
&pccons_jazzio_conf);
}
int
pccons_jazzio_cnattach(name, kbd_iot)
char *name;
bus_space_tag_t kbd_iot;
{
bus_space_tag_t crt_iot, crt_memt;
if (pccons_jazzio_init_tag(name, &crt_iot, &crt_memt))
return (ENXIO);
pccons_common_cnattach(crt_iot, crt_memt, kbd_iot,
&pccons_jazzio_conf);
return (0);
}

View File

@ -0,0 +1,33 @@
/* $NetBSD: pccons_jazziovar.h,v 1.1 2001/06/13 15:05:46 soda Exp $ */
/* NetBSD: vga_isavar.h,v 1.1 1998/03/22 15:14:36 drochner Exp */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
int pccons_jazzio_cnattach __P((char *name, bus_space_tag_t));
extern struct pccons_config pccons_jazzio_conf;