1998-01-12 13:39:01 +03:00
|
|
|
/* $NetBSD: drsupio.c,v 1.4 1998/01/12 10:39:22 thorpej Exp $ */
|
1997-08-27 23:32:47 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DraCo multi-io chip bus space stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/conf.h>
|
|
|
|
|
|
|
|
#include <amiga/include/cpu.h>
|
|
|
|
|
|
|
|
#include <amiga/amiga/device.h>
|
|
|
|
#include <amiga/amiga/drcustom.h>
|
|
|
|
|
|
|
|
#include <amiga/dev/supio.h>
|
|
|
|
|
|
|
|
struct drsupio_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
struct bus_space_tag sc_bst;
|
|
|
|
};
|
|
|
|
|
|
|
|
int drsupiomatch __P((struct device *, struct cfdata *, void *));
|
|
|
|
void drsupioattach __P((struct device *, struct device *, void *));
|
|
|
|
int drsupprint __P((void *auxp, const char *));
|
1997-09-28 02:44:11 +04:00
|
|
|
void drlptintack __P((void *));
|
1997-08-27 23:32:47 +04:00
|
|
|
|
|
|
|
struct cfattach drsupio_ca = {
|
|
|
|
sizeof(struct drsupio_softc), drsupiomatch, drsupioattach
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
drsupiomatch(parent, cfp, auxp)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cfp;
|
|
|
|
void *auxp;
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Exactly one of us lives on the DraCo */
|
|
|
|
|
|
|
|
if (is_draco() && matchname(auxp, "drsupio") && (cfp->cf_unit == 0))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct drsupio_devs {
|
|
|
|
char *name;
|
|
|
|
int off;
|
1997-09-17 00:34:23 +04:00
|
|
|
int arg;
|
1997-08-27 23:32:47 +04:00
|
|
|
} drsupiodevs[] = {
|
1997-09-17 00:34:23 +04:00
|
|
|
{ "com", 0x3f8, 115200 * 16 },
|
|
|
|
{ "com", 0x2f8, 115200 * 16 },
|
1997-09-28 02:44:11 +04:00
|
|
|
{ "lpt", 0x278, (int)drlptintack },
|
1997-09-17 00:34:23 +04:00
|
|
|
{ "fdc", 0x3f0, 0 },
|
1997-08-27 23:32:47 +04:00
|
|
|
/* WD port? */
|
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
drsupioattach(parent, self, auxp)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *auxp;
|
|
|
|
{
|
|
|
|
struct drsupio_softc *drsc;
|
|
|
|
struct drsupio_devs *drsd;
|
1997-09-28 02:44:11 +04:00
|
|
|
struct drioct *ioct;
|
1997-08-27 23:32:47 +04:00
|
|
|
struct supio_attach_args supa;
|
|
|
|
|
|
|
|
drsc = (struct drsupio_softc *)self;
|
|
|
|
drsd = drsupiodevs;
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
drsc->sc_bst.base = DRCCADDR + NBPG * DRSUPIOPG + 1;
|
|
|
|
drsc->sc_bst.stride = 2;
|
|
|
|
|
|
|
|
supa.supio_iot = &drsc->sc_bst;
|
1997-09-17 00:34:23 +04:00
|
|
|
supa.supio_ipl = 5;
|
1997-08-27 23:32:47 +04:00
|
|
|
|
|
|
|
while (drsd->name) {
|
|
|
|
supa.supio_name = drsd->name;
|
|
|
|
supa.supio_iobase = drsd->off;
|
1997-09-17 00:34:23 +04:00
|
|
|
supa.supio_arg = drsd->arg;
|
1997-08-27 23:32:47 +04:00
|
|
|
config_found(self, &supa, drsupprint); /* XXX */
|
|
|
|
++drsd;
|
|
|
|
}
|
1997-09-28 02:44:11 +04:00
|
|
|
|
|
|
|
drlptintack(0);
|
|
|
|
ioct = (struct drioct *)(DRCCADDR + NBPG * DRIOCTLPG);
|
|
|
|
ioct->io_status2 |= DRSTAT2_PARIRQENA;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
drlptintack(p)
|
|
|
|
void *p;
|
|
|
|
{
|
|
|
|
struct drioct *ioct;
|
|
|
|
|
|
|
|
(void)p;
|
|
|
|
ioct = (struct drioct *)(DRCCADDR + NBPG * DRIOCTLPG);
|
|
|
|
|
|
|
|
ioct->io_parrst = 0; /* any value works */
|
1997-08-27 23:32:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
drsupprint(auxp, pnp)
|
|
|
|
void *auxp;
|
|
|
|
const char *pnp;
|
|
|
|
{
|
|
|
|
struct supio_attach_args *supa;
|
|
|
|
supa = auxp;
|
|
|
|
|
|
|
|
if (pnp == NULL)
|
|
|
|
return(QUIET);
|
|
|
|
|
|
|
|
printf("%s at %s port 0x%02x",
|
|
|
|
supa->supio_name, pnp, supa->supio_iobase);
|
|
|
|
|
|
|
|
return(UNCONF);
|
|
|
|
}
|