137 lines
3.9 KiB
C
137 lines
3.9 KiB
C
|
/* $NetBSD: lpt_supio.c,v 1.1 1997/09/27 22:44:18 is Exp $ */
|
||
|
|
||
|
/*-
|
||
|
* Copyright (c) 1997 Ignatios Souvatzis. 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.
|
||
|
* 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 Ignatios Souvatzis
|
||
|
* for the NetBSD project.
|
||
|
* 4. The name of the author may not be used to endorse or promote products
|
||
|
* derived from this software without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY AUTHOR ``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 AUTHOR 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/systm.h>
|
||
|
#include <sys/ioctl.h>
|
||
|
#include <sys/select.h>
|
||
|
#include <sys/tty.h>
|
||
|
#include <sys/proc.h>
|
||
|
#include <sys/user.h>
|
||
|
#include <sys/conf.h>
|
||
|
#include <sys/file.h>
|
||
|
#include <sys/uio.h>
|
||
|
#include <sys/kernel.h>
|
||
|
#include <sys/syslog.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/device.h>
|
||
|
|
||
|
#include <machine/intr.h>
|
||
|
#include <machine/bus.h>
|
||
|
|
||
|
#include <dev/ic/lptreg.h>
|
||
|
#include <dev/ic/lptvar.h>
|
||
|
|
||
|
#include <amiga/dev/supio.h>
|
||
|
|
||
|
struct lptsupio_softc {
|
||
|
struct lpt_softc sc_lpt;
|
||
|
struct isr sc_isr;
|
||
|
void (*sc_intack)__P((void *));
|
||
|
};
|
||
|
|
||
|
int lpt_supio_match __P((struct device *, struct cfdata *, void *));
|
||
|
void lpt_supio_attach __P((struct device *, struct device *, void *));
|
||
|
int lpt_supio_intr __P((void *p));
|
||
|
|
||
|
struct cfattach lpt_supio_ca = {
|
||
|
sizeof(struct lptsupio_softc), lpt_supio_match, lpt_supio_attach
|
||
|
};
|
||
|
|
||
|
int
|
||
|
lpt_supio_match(parent, match, aux)
|
||
|
struct device *parent;
|
||
|
struct cfdata *match;
|
||
|
void *aux;
|
||
|
{
|
||
|
struct supio_attach_args *supa = aux;
|
||
|
|
||
|
if (strcmp(supa->supio_name,"lpt"))
|
||
|
return 0;
|
||
|
|
||
|
return (1);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
lpt_supio_intr(p)
|
||
|
void *p;
|
||
|
{
|
||
|
struct lptsupio_softc *sc = (void *)p;
|
||
|
int rc;
|
||
|
|
||
|
rc = lptintr(&sc->sc_lpt);
|
||
|
if (sc->sc_intack)
|
||
|
(*sc->sc_intack)(p);
|
||
|
return (rc);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
lpt_supio_attach(parent, self, aux)
|
||
|
struct device *parent, *self;
|
||
|
void *aux;
|
||
|
{
|
||
|
struct lptsupio_softc *sc = (void *)self;
|
||
|
struct lpt_softc *lsc = &sc->sc_lpt;
|
||
|
int iobase;
|
||
|
bus_space_tag_t iot;
|
||
|
struct supio_attach_args *supa = aux;
|
||
|
u_int16_t needpsl;
|
||
|
|
||
|
/*
|
||
|
* We're living on a superio chip.
|
||
|
*/
|
||
|
iobase = supa->supio_iobase;
|
||
|
iot = lsc->sc_iot = supa->supio_iot;
|
||
|
sc->sc_intack = (void *)supa->supio_arg;
|
||
|
|
||
|
if (bus_space_map(iot, iobase, LPT_NPORTS, 0, &lsc->sc_ioh))
|
||
|
panic("lpt_supio_attach: io mapping failed");
|
||
|
|
||
|
printf(" port 0x%x ipl %d\n", iobase, supa->supio_ipl);
|
||
|
lpt_attach_subr(lsc);
|
||
|
|
||
|
/* XXX this should be really in the interupt stuff */
|
||
|
needpsl = PSL_S | (supa->supio_ipl << 8);
|
||
|
|
||
|
if (amiga_ttyspl < needpsl) {
|
||
|
printf("%s: raising amiga_ttyspl from 0x%x to 0x%x\n",
|
||
|
lsc->sc_dev.dv_xname, amiga_ttyspl, needpsl);
|
||
|
amiga_ttyspl = needpsl;
|
||
|
}
|
||
|
sc->sc_isr.isr_intr = lpt_supio_intr;
|
||
|
sc->sc_isr.isr_arg = sc;
|
||
|
sc->sc_isr.isr_ipl = supa->supio_ipl;
|
||
|
add_isr(&sc->sc_isr);
|
||
|
}
|