2002-01-28 12:56:43 +03:00
|
|
|
/* $NetBSD: mgnsc.c,v 1.33 2002/01/28 09:57:01 aymeric Exp $ */
|
1994-10-26 05:01:24 +03:00
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
1994-05-12 09:56:28 +04:00
|
|
|
* Copyright (c) 1994 Michael L. Hitch
|
1994-05-08 09:52:54 +04:00
|
|
|
* Copyright (c) 1982, 1990 The Regents of the University of California.
|
|
|
|
* 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 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.
|
|
|
|
*
|
|
|
|
* @(#)dma.c
|
|
|
|
*/
|
|
|
|
|
2002-01-28 12:56:43 +03:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__KERNEL_RCSID(0, "$NetBSD: mgnsc.c,v 1.33 2002/01/28 09:57:01 aymeric Exp $");
|
|
|
|
|
1994-05-12 09:56:28 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
1997-08-27 15:22:52 +04:00
|
|
|
#include <dev/scsipi/scsi_all.h>
|
|
|
|
#include <dev/scsipi/scsipi_all.h>
|
|
|
|
#include <dev/scsipi/scsiconf.h>
|
1994-05-12 09:56:28 +04:00
|
|
|
#include <amiga/amiga/custom.h>
|
|
|
|
#include <amiga/amiga/cc.h>
|
|
|
|
#include <amiga/amiga/device.h>
|
1995-02-12 22:18:33 +03:00
|
|
|
#include <amiga/amiga/isr.h>
|
1994-05-12 09:56:28 +04:00
|
|
|
#include <amiga/dev/siopreg.h>
|
|
|
|
#include <amiga/dev/siopvar.h>
|
1994-12-28 12:24:55 +03:00
|
|
|
#include <amiga/dev/zbusvar.h>
|
1994-05-12 09:56:28 +04:00
|
|
|
|
2002-01-26 16:40:52 +03:00
|
|
|
void mgnscattach(struct device *, struct device *, void *);
|
|
|
|
int mgnscmatch(struct device *, struct cfdata *, void *);
|
|
|
|
int mgnsc_dmaintr(void *);
|
1996-04-22 01:10:48 +04:00
|
|
|
#ifdef DEBUG
|
2002-01-26 16:40:52 +03:00
|
|
|
void mgnsc_dump(void);
|
1996-04-22 01:10:48 +04:00
|
|
|
#endif
|
1994-05-12 09:56:28 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#endif
|
|
|
|
|
1996-03-17 04:16:48 +03:00
|
|
|
struct cfattach mgnsc_ca = {
|
|
|
|
sizeof(struct siop_softc), mgnscmatch, mgnscattach
|
|
|
|
};
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
1994-05-12 09:56:28 +04:00
|
|
|
* if we are a CSA Magnum 40 SCSI
|
1994-05-08 09:52:54 +04:00
|
|
|
*/
|
1994-05-12 09:56:28 +04:00
|
|
|
int
|
2002-01-26 16:40:52 +03:00
|
|
|
mgnscmatch(struct device *pdp, struct cfdata *cfp, void *auxp)
|
1994-05-12 09:56:28 +04:00
|
|
|
{
|
1994-12-28 12:24:55 +03:00
|
|
|
struct zbus_args *zap;
|
1994-05-08 09:52:54 +04:00
|
|
|
|
1994-05-12 09:56:28 +04:00
|
|
|
zap = auxp;
|
|
|
|
if (zap->manid == 1058 && zap->prodid == 17)
|
|
|
|
return(1);
|
|
|
|
return(0);
|
|
|
|
}
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
void
|
2002-01-26 16:40:52 +03:00
|
|
|
mgnscattach(struct device *pdp, struct device *dp, void *auxp)
|
1994-05-12 09:56:28 +04:00
|
|
|
{
|
2001-04-25 21:53:04 +04:00
|
|
|
struct siop_softc *sc = (struct siop_softc *)dp;
|
1994-12-28 12:24:55 +03:00
|
|
|
struct zbus_args *zap;
|
1994-05-12 09:56:28 +04:00
|
|
|
siop_regmap_p rp;
|
2001-04-25 21:53:04 +04:00
|
|
|
struct scsipi_adapter *adapt = &sc->sc_adapter;
|
|
|
|
struct scsipi_channel *chan = &sc->sc_channel;
|
1994-05-12 09:56:28 +04:00
|
|
|
|
1996-10-13 07:05:43 +04:00
|
|
|
printf("\n");
|
1994-05-12 09:56:28 +04:00
|
|
|
zap = auxp;
|
1995-08-18 19:27:29 +04:00
|
|
|
|
1999-01-10 16:24:11 +03:00
|
|
|
sc->sc_siopp = rp = (siop_regmap_p)((caddr_t)zap->va + 0x8000);
|
1994-05-12 09:56:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* CTEST7 = TT1
|
|
|
|
*/
|
1995-09-16 20:11:03 +04:00
|
|
|
sc->sc_clock_freq = 33; /* Clock = 33Mhz */
|
1996-03-16 01:11:09 +03:00
|
|
|
sc->sc_ctest7 = SIOP_CTEST7_TT1;
|
|
|
|
sc->sc_dcntl = 0x00;
|
1995-08-18 19:27:29 +04:00
|
|
|
|
1995-04-03 00:38:09 +04:00
|
|
|
alloc_sicallback();
|
1994-05-12 09:56:28 +04:00
|
|
|
|
2001-04-25 21:53:04 +04:00
|
|
|
/*
|
|
|
|
* Fill in the scsipi_adapter.
|
|
|
|
*/
|
|
|
|
memset(adapt, 0, sizeof(*adapt));
|
|
|
|
adapt->adapt_dev = &sc->sc_dev;
|
|
|
|
adapt->adapt_nchannels = 1;
|
|
|
|
adapt->adapt_openings = 7;
|
|
|
|
adapt->adapt_max_periph = 1;
|
|
|
|
adapt->adapt_request = siop_scsipi_request;
|
|
|
|
adapt->adapt_minphys = siop_minphys;
|
1998-11-20 00:43:00 +03:00
|
|
|
|
2001-04-25 21:53:04 +04:00
|
|
|
/*
|
|
|
|
* Fill in the scsipi_channel.
|
|
|
|
*/
|
|
|
|
memset(chan, 0, sizeof(*chan));
|
|
|
|
chan->chan_adapter = adapt;
|
|
|
|
chan->chan_bustype = &scsi_bustype;
|
|
|
|
chan->chan_channel = 0;
|
|
|
|
chan->chan_ntargets = 8;
|
|
|
|
chan->chan_nluns = 8;
|
|
|
|
chan->chan_id = 7;
|
1995-08-18 19:27:29 +04:00
|
|
|
|
|
|
|
siopinitialize(sc);
|
1994-05-12 09:56:28 +04:00
|
|
|
|
1995-02-12 22:18:33 +03:00
|
|
|
sc->sc_isr.isr_intr = mgnsc_dmaintr;
|
|
|
|
sc->sc_isr.isr_arg = sc;
|
1995-03-05 16:01:24 +03:00
|
|
|
sc->sc_isr.isr_ipl = 6;
|
1995-02-12 22:18:33 +03:00
|
|
|
add_isr (&sc->sc_isr);
|
1994-05-12 09:56:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* attach all scsi units on us
|
|
|
|
*/
|
2001-04-25 21:53:04 +04:00
|
|
|
config_found(dp, chan, scsiprint);
|
1994-05-08 09:52:54 +04:00
|
|
|
}
|
|
|
|
|
1995-03-05 16:01:24 +03:00
|
|
|
/*
|
|
|
|
* Level 6 interrupt processing for the Magnum/40 SCSI. Because the
|
|
|
|
* level 6 interrupt is above splbio, the interrupt status is saved
|
|
|
|
* and an sicallback to the level 2 interrupt handler scheduled.
|
|
|
|
* This way, the actual processing of the interrupt can be deferred
|
|
|
|
* until splbio is unblocked.
|
|
|
|
*/
|
1995-04-03 00:38:09 +04:00
|
|
|
|
1994-05-12 09:56:28 +04:00
|
|
|
int
|
2002-01-26 16:40:52 +03:00
|
|
|
mgnsc_dmaintr(void *arg)
|
1994-05-12 09:56:28 +04:00
|
|
|
{
|
1996-04-22 01:10:48 +04:00
|
|
|
struct siop_softc *sc = arg;
|
1994-05-12 09:56:28 +04:00
|
|
|
siop_regmap_p rp;
|
|
|
|
u_char istat;
|
|
|
|
|
1995-08-18 19:27:29 +04:00
|
|
|
if (sc->sc_flags & SIOP_INTSOFF)
|
|
|
|
return (0); /* interrupts are not active */
|
1995-02-12 22:18:33 +03:00
|
|
|
rp = sc->sc_siopp;
|
|
|
|
istat = rp->siop_istat;
|
|
|
|
if ((istat & (SIOP_ISTAT_SIP | SIOP_ISTAT_DIP)) == 0)
|
|
|
|
return (0);
|
|
|
|
/*
|
|
|
|
* save interrupt status, DMA status, and SCSI status 0
|
|
|
|
* (may need to deal with stacked interrupts?)
|
|
|
|
*/
|
1995-08-18 19:27:29 +04:00
|
|
|
sc->sc_sstat0 = rp->siop_sstat0;
|
1995-02-12 22:18:33 +03:00
|
|
|
sc->sc_istat = istat;
|
|
|
|
sc->sc_dstat = rp->siop_dstat;
|
1995-08-18 19:27:29 +04:00
|
|
|
/*
|
|
|
|
* disable interrupts until the callback can process this
|
|
|
|
* interrupt.
|
|
|
|
*/
|
|
|
|
rp->siop_sien = 0;
|
|
|
|
rp->siop_dien = 0;
|
|
|
|
sc->sc_flags |= SIOP_INTDEFER | SIOP_INTSOFF;
|
1995-10-09 18:19:58 +03:00
|
|
|
add_sicallback((sifunc_t)siopintr, sc, NULL);
|
1995-02-12 22:18:33 +03:00
|
|
|
return (1);
|
1994-05-12 09:56:28 +04:00
|
|
|
}
|
1995-09-16 20:11:03 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
2002-01-26 16:40:52 +03:00
|
|
|
mgnsc_dump(void)
|
1995-09-16 20:11:03 +04:00
|
|
|
{
|
1998-01-12 13:39:01 +03:00
|
|
|
extern struct cfdriver mgnsc_cd;
|
1995-09-16 20:11:03 +04:00
|
|
|
int i;
|
|
|
|
|
1996-03-17 04:16:48 +03:00
|
|
|
for (i = 0; i < mgnsc_cd.cd_ndevs; ++i)
|
|
|
|
if (mgnsc_cd.cd_devs[i])
|
|
|
|
siop_dump(mgnsc_cd.cd_devs[i]);
|
1995-09-16 20:11:03 +04:00
|
|
|
}
|
|
|
|
#endif
|