176 lines
4.6 KiB
C
176 lines
4.6 KiB
C
/* $NetBSD: isa.c,v 1.102 1998/06/11 08:29:33 leo Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 1993, 1994 Charles Hannum. 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 Charles Hannum.
|
|
* 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 THE 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/kernel.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/device.h>
|
|
|
|
#include <machine/intr.h>
|
|
|
|
#include <dev/isa/isareg.h>
|
|
#include <dev/isa/isavar.h>
|
|
#include <dev/isa/isadmareg.h>
|
|
|
|
#include "isadma.h"
|
|
|
|
int isamatch __P((struct device *, struct cfdata *, void *));
|
|
void isaattach __P((struct device *, struct device *, void *));
|
|
int isaprint __P((void *, const char *));
|
|
|
|
struct cfattach isa_ca = {
|
|
sizeof(struct isa_softc), isamatch, isaattach
|
|
};
|
|
|
|
int isasearch __P((struct device *, struct cfdata *, void *));
|
|
|
|
int
|
|
isamatch(parent, cf, aux)
|
|
struct device *parent;
|
|
struct cfdata *cf;
|
|
void *aux;
|
|
{
|
|
struct isabus_attach_args *iba = aux;
|
|
|
|
if (strcmp(iba->iba_busname, cf->cf_driver->cd_name))
|
|
return (0);
|
|
|
|
/* XXX check other indicators */
|
|
|
|
return (1);
|
|
}
|
|
|
|
void
|
|
isaattach(parent, self, aux)
|
|
struct device *parent, *self;
|
|
void *aux;
|
|
{
|
|
struct isa_softc *sc = (struct isa_softc *)self;
|
|
struct isabus_attach_args *iba = aux;
|
|
|
|
isa_attach_hook(parent, self, iba);
|
|
printf("\n");
|
|
|
|
sc->sc_iot = iba->iba_iot;
|
|
sc->sc_memt = iba->iba_memt;
|
|
sc->sc_dmat = iba->iba_dmat;
|
|
sc->sc_ic = iba->iba_ic;
|
|
|
|
#if NISADMA > 0
|
|
/*
|
|
* Initialize our DMA state.
|
|
*/
|
|
isa_dmainit(sc->sc_ic, sc->sc_iot, sc->sc_dmat, self);
|
|
#endif
|
|
|
|
TAILQ_INIT(&sc->sc_subdevs);
|
|
|
|
config_search(isasearch, self, NULL);
|
|
}
|
|
|
|
int
|
|
isaprint(aux, isa)
|
|
void *aux;
|
|
const char *isa;
|
|
{
|
|
struct isa_attach_args *ia = aux;
|
|
|
|
if (ia->ia_iosize)
|
|
printf(" port 0x%x", ia->ia_iobase);
|
|
if (ia->ia_iosize > 1)
|
|
printf("-0x%x", ia->ia_iobase + ia->ia_iosize - 1);
|
|
if (ia->ia_msize)
|
|
printf(" iomem 0x%x", ia->ia_maddr);
|
|
if (ia->ia_msize > 1)
|
|
printf("-0x%x", ia->ia_maddr + ia->ia_msize - 1);
|
|
if (ia->ia_irq != IRQUNK)
|
|
printf(" irq %d", ia->ia_irq);
|
|
if (ia->ia_drq != DRQUNK)
|
|
printf(" drq %d", ia->ia_drq);
|
|
if (ia->ia_drq2 != DRQUNK)
|
|
printf(" drq2 %d", ia->ia_drq2);
|
|
return (UNCONF);
|
|
}
|
|
|
|
int
|
|
isasearch(parent, cf, aux)
|
|
struct device *parent;
|
|
struct cfdata *cf;
|
|
void *aux;
|
|
{
|
|
struct isa_softc *sc = (struct isa_softc *)parent;
|
|
struct isa_attach_args ia;
|
|
int tryagain;
|
|
|
|
do {
|
|
ia.ia_iot = sc->sc_iot;
|
|
ia.ia_memt = sc->sc_memt;
|
|
ia.ia_dmat = sc->sc_dmat;
|
|
ia.ia_ic = sc->sc_ic;
|
|
ia.ia_iobase = cf->cf_iobase;
|
|
ia.ia_iosize = 0x666; /* cf->cf_iosize; */
|
|
ia.ia_maddr = cf->cf_maddr;
|
|
ia.ia_msize = cf->cf_msize;
|
|
ia.ia_irq = cf->cf_irq == 2 ? 9 : cf->cf_irq;
|
|
ia.ia_drq = cf->cf_drq;
|
|
ia.ia_drq2 = cf->cf_drq2;
|
|
|
|
tryagain = 0;
|
|
if ((*cf->cf_attach->ca_match)(parent, cf, &ia) > 0) {
|
|
config_attach(parent, cf, &ia, isaprint);
|
|
tryagain = (cf->cf_fstate == FSTATE_STAR);
|
|
}
|
|
} while (tryagain);
|
|
|
|
return (0);
|
|
}
|
|
|
|
char *
|
|
isa_intr_typename(type)
|
|
int type;
|
|
{
|
|
|
|
switch (type) {
|
|
case IST_NONE :
|
|
return ("none");
|
|
case IST_PULSE:
|
|
return ("pulsed");
|
|
case IST_EDGE:
|
|
return ("edge-triggered");
|
|
case IST_LEVEL:
|
|
return ("level-triggered");
|
|
default:
|
|
panic("isa_intr_typename: invalid type %d", type);
|
|
}
|
|
}
|