1998-11-20 00:43:00 +03:00
|
|
|
/* $NetBSD: atzsc.c,v 1.27 1998/11/19 21:44:34 thorpej Exp $ */
|
1994-10-26 05:01:24 +03:00
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Christian E. Hopps
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
#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-08 09:52:54 +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-08 09:52:54 +04:00
|
|
|
#include <amiga/dev/dmavar.h>
|
|
|
|
#include <amiga/dev/sbicreg.h>
|
|
|
|
#include <amiga/dev/sbicvar.h>
|
|
|
|
#include <amiga/dev/atzscreg.h>
|
1994-12-28 12:24:55 +03:00
|
|
|
#include <amiga/dev/zbusvar.h>
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
void atzscattach __P((struct device *, struct device *, void *));
|
1996-12-23 12:09:49 +03:00
|
|
|
int atzscmatch __P((struct device *, struct cfdata *, void *));
|
1994-05-08 09:52:54 +04:00
|
|
|
|
1995-09-04 17:04:40 +04:00
|
|
|
void atzsc_enintr __P((struct sbic_softc *));
|
1994-05-08 09:52:54 +04:00
|
|
|
void atzsc_dmastop __P((struct sbic_softc *));
|
|
|
|
int atzsc_dmanext __P((struct sbic_softc *));
|
1996-04-22 01:10:48 +04:00
|
|
|
int atzsc_dmaintr __P((void *));
|
1994-05-08 09:52:54 +04:00
|
|
|
int atzsc_dmago __P((struct sbic_softc *, char *, int, int));
|
|
|
|
|
1996-04-22 01:10:48 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
void atzsc_dump __P((void));
|
|
|
|
#endif
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_device atzsc_scsidev = {
|
1994-05-08 09:52:54 +04:00
|
|
|
NULL, /* use default error handler */
|
|
|
|
NULL, /* do not have a start functio */
|
|
|
|
NULL, /* have no async handler */
|
|
|
|
NULL, /* Use default done routine */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
int atzsc_dmadebug = 0;
|
|
|
|
#endif
|
|
|
|
|
1996-03-17 04:16:48 +03:00
|
|
|
struct cfattach atzsc_ca = {
|
|
|
|
sizeof(struct sbic_softc), atzscmatch, atzscattach
|
|
|
|
};
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
|
|
|
* if we are an A3000 we are here.
|
|
|
|
*/
|
|
|
|
int
|
1996-12-23 12:09:49 +03:00
|
|
|
atzscmatch(pdp, cfp, auxp)
|
1994-05-08 09:52:54 +04:00
|
|
|
struct device *pdp;
|
1996-12-23 12:09:49 +03:00
|
|
|
struct cfdata *cfp;
|
|
|
|
void *auxp;
|
1994-05-08 09:52:54 +04:00
|
|
|
{
|
1994-12-28 12:24:55 +03:00
|
|
|
struct zbus_args *zap;
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
zap = auxp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check manufacturer and product id.
|
|
|
|
* I was informed that older boards can be 2 also.
|
|
|
|
*/
|
|
|
|
if (zap->manid == 514 && (zap->prodid == 3 || zap->prodid == 2))
|
|
|
|
return(1);
|
|
|
|
else
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
atzscattach(pdp, dp, auxp)
|
|
|
|
struct device *pdp, *dp;
|
|
|
|
void *auxp;
|
|
|
|
{
|
|
|
|
volatile struct sdmac *rp;
|
|
|
|
struct sbic_softc *sc;
|
1994-12-28 12:24:55 +03:00
|
|
|
struct zbus_args *zap;
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
zap = auxp;
|
|
|
|
|
|
|
|
sc = (struct sbic_softc *)dp;
|
|
|
|
sc->sc_cregs = rp = zap->va;
|
|
|
|
/*
|
|
|
|
* disable ints and reset bank register
|
|
|
|
*/
|
|
|
|
rp->CNTR = CNTR_PDMD;
|
|
|
|
rp->DAWR = DAWR_ATZSC;
|
1995-09-04 17:04:40 +04:00
|
|
|
sc->sc_enintr = atzsc_enintr;
|
1994-05-08 09:52:54 +04:00
|
|
|
sc->sc_dmago = atzsc_dmago;
|
|
|
|
sc->sc_dmanext = atzsc_dmanext;
|
|
|
|
sc->sc_dmastop = atzsc_dmastop;
|
1994-05-11 23:06:40 +04:00
|
|
|
sc->sc_dmacmd = 0;
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
/*
|
1994-05-11 23:06:40 +04:00
|
|
|
* only 24 bit mem.
|
1994-05-08 09:52:54 +04:00
|
|
|
*/
|
1994-07-03 01:15:10 +04:00
|
|
|
sc->sc_flags |= SBICF_BADDMA;
|
1994-05-11 23:06:40 +04:00
|
|
|
sc->sc_dmamask = ~0x00ffffff;
|
1995-08-18 19:27:29 +04:00
|
|
|
#if 0
|
1995-02-12 22:18:33 +03:00
|
|
|
/*
|
1994-07-16 23:45:32 +04:00
|
|
|
* If the users kva space is not ztwo try and allocate a bounce buffer.
|
|
|
|
* XXX this needs to change if we move to multiple memory segments.
|
|
|
|
*/
|
|
|
|
if (kvtop(sc) & sc->sc_dmamask) {
|
1995-08-18 19:27:29 +04:00
|
|
|
sc->sc_dmabuffer = (char *)alloc_z2mem(MAXPHYS * 8); /* XXX */
|
1994-07-16 23:45:32 +04:00
|
|
|
if (isztwomem(sc->sc_dmabuffer))
|
1996-10-13 07:05:43 +04:00
|
|
|
printf(" bounce pa 0x%x", kvtop(sc->sc_dmabuffer));
|
1994-07-16 23:45:32 +04:00
|
|
|
else if (sc->sc_dmabuffer)
|
1996-10-13 07:05:43 +04:00
|
|
|
printf(" bounce pa 0x%x",
|
1994-07-16 23:45:32 +04:00
|
|
|
PREP_DMA_MEM(sc->sc_dmabuffer));
|
|
|
|
}
|
1995-08-18 19:27:29 +04:00
|
|
|
#endif
|
1998-08-21 23:13:27 +04:00
|
|
|
sc->sc_sbic.sbic_asr_p = (volatile unsigned char *)rp + 0x91;
|
|
|
|
sc->sc_sbic.sbic_value_p = (volatile unsigned char *)rp + 0x93;
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
sc->sc_clkfreq = sbic_clock_override ? sbic_clock_override : 77;
|
|
|
|
|
1996-10-13 07:05:43 +04:00
|
|
|
printf(": dmamask 0x%lx\n", ~sc->sc_dmamask);
|
1994-05-11 23:06:40 +04:00
|
|
|
|
1998-11-20 00:43:00 +03:00
|
|
|
sc->sc_adapter.scsipi_cmd = sbic_scsicmd;
|
|
|
|
sc->sc_adapter.scsipi_minphys = sbic_minphys;
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
|
1994-05-08 09:52:54 +04:00
|
|
|
sc->sc_link.adapter_softc = sc;
|
1997-08-27 15:22:52 +04:00
|
|
|
sc->sc_link.scsipi_scsi.adapter_target = 7;
|
1998-11-20 00:43:00 +03:00
|
|
|
sc->sc_link.adapter = &sc->sc_adapter;
|
1994-05-08 09:52:54 +04:00
|
|
|
sc->sc_link.device = &atzsc_scsidev;
|
1995-08-18 19:27:29 +04:00
|
|
|
sc->sc_link.openings = 2;
|
1997-08-27 15:22:52 +04:00
|
|
|
sc->sc_link.scsipi_scsi.max_target = 7;
|
|
|
|
sc->sc_link.type = BUS_SCSI;
|
1995-08-18 19:27:29 +04:00
|
|
|
|
|
|
|
sbicinit(sc);
|
1994-05-08 09:52:54 +04:00
|
|
|
|
1995-02-12 22:18:33 +03:00
|
|
|
sc->sc_isr.isr_intr = atzsc_dmaintr;
|
|
|
|
sc->sc_isr.isr_arg = sc;
|
|
|
|
sc->sc_isr.isr_ipl = 2;
|
|
|
|
add_isr (&sc->sc_isr);
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* attach all scsi units on us
|
|
|
|
*/
|
1996-08-28 22:59:15 +04:00
|
|
|
config_found(dp, &sc->sc_link, scsiprint);
|
1994-05-08 09:52:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-09-04 17:04:40 +04:00
|
|
|
atzsc_enintr(dev)
|
1994-05-08 09:52:54 +04:00
|
|
|
struct sbic_softc *dev;
|
|
|
|
{
|
|
|
|
volatile struct sdmac *sdp;
|
|
|
|
|
|
|
|
sdp = dev->sc_cregs;
|
|
|
|
|
1995-09-04 17:04:40 +04:00
|
|
|
dev->sc_flags |= SBICF_INTR;
|
|
|
|
sdp->CNTR = CNTR_PDMD | CNTR_INTEN;
|
1994-05-08 09:52:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
atzsc_dmago(dev, addr, count, flags)
|
|
|
|
struct sbic_softc *dev;
|
|
|
|
char *addr;
|
|
|
|
int count, flags;
|
|
|
|
{
|
|
|
|
volatile struct sdmac *sdp;
|
|
|
|
|
|
|
|
sdp = dev->sc_cregs;
|
|
|
|
/*
|
|
|
|
* Set up the command word based on flags
|
|
|
|
*/
|
|
|
|
dev->sc_dmacmd = CNTR_PDMD | CNTR_INTEN;
|
|
|
|
if ((flags & DMAGO_READ) == 0)
|
|
|
|
dev->sc_dmacmd |= CNTR_DDIR;
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (atzsc_dmadebug & DDB_IO)
|
1996-10-13 07:05:43 +04:00
|
|
|
printf("atzsc_dmago: cmd %x\n", dev->sc_dmacmd);
|
1994-05-08 09:52:54 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
dev->sc_flags |= SBICF_INTR;
|
|
|
|
sdp->CNTR = dev->sc_dmacmd;
|
|
|
|
sdp->ACR = (u_int) dev->sc_cur->dc_addr;
|
|
|
|
sdp->ST_DMA = 1;
|
1995-02-12 22:18:33 +03:00
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
return(dev->sc_tcnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
atzsc_dmastop(dev)
|
|
|
|
struct sbic_softc *dev;
|
|
|
|
{
|
|
|
|
volatile struct sdmac *sdp;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
sdp = dev->sc_cregs;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (atzsc_dmadebug & DDB_FOLLOW)
|
1996-10-13 07:05:43 +04:00
|
|
|
printf("atzsc_dmastop()\n");
|
1994-05-08 09:52:54 +04:00
|
|
|
#endif
|
|
|
|
if (dev->sc_dmacmd) {
|
|
|
|
s = splbio();
|
|
|
|
if ((dev->sc_dmacmd & (CNTR_TCEN | CNTR_DDIR)) == 0) {
|
|
|
|
/*
|
|
|
|
* only FLUSH if terminal count not enabled,
|
|
|
|
* and reading from peripheral
|
|
|
|
*/
|
|
|
|
sdp->FLUSH = 1;
|
|
|
|
while ((sdp->ISTR & ISTR_FE_FLG) == 0)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* clear possible interrupt and stop dma
|
|
|
|
*/
|
|
|
|
sdp->CINT = 1;
|
|
|
|
sdp->SP_DMA = 1;
|
|
|
|
dev->sc_dmacmd = 0;
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-04-22 01:10:48 +04:00
|
|
|
atzsc_dmaintr(arg)
|
|
|
|
void *arg;
|
1994-05-08 09:52:54 +04:00
|
|
|
{
|
1996-04-22 01:10:48 +04:00
|
|
|
struct sbic_softc *dev = arg;
|
1994-05-08 09:52:54 +04:00
|
|
|
volatile struct sdmac *sdp;
|
1995-02-12 22:18:33 +03:00
|
|
|
int stat, found;
|
|
|
|
|
|
|
|
sdp = dev->sc_cregs;
|
|
|
|
stat = sdp->ISTR;
|
|
|
|
|
|
|
|
if ((stat & (ISTR_INT_F|ISTR_INT_P)) == 0)
|
|
|
|
return (0);
|
1994-05-08 09:52:54 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
1995-02-12 22:18:33 +03:00
|
|
|
if (atzsc_dmadebug & DDB_FOLLOW)
|
1996-10-13 07:05:43 +04:00
|
|
|
printf("%s: dmaintr 0x%x\n", dev->sc_dev.dv_xname, stat);
|
1994-05-08 09:52:54 +04:00
|
|
|
#endif
|
|
|
|
|
1995-02-12 22:18:33 +03:00
|
|
|
/*
|
|
|
|
* both, SCSI and DMA interrupts arrive here. I chose
|
|
|
|
* arbitrarily that DMA interrupts should have higher
|
|
|
|
* precedence than SCSI interrupts.
|
|
|
|
*/
|
|
|
|
found = 0;
|
|
|
|
if (stat & ISTR_E_INT) {
|
|
|
|
found++;
|
|
|
|
|
|
|
|
sdp->CINT = 1; /* clear possible interrupt */
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
1995-02-12 22:18:33 +03:00
|
|
|
* check for SCSI ints in the same go and
|
|
|
|
* eventually save an interrupt
|
1994-05-08 09:52:54 +04:00
|
|
|
*/
|
|
|
|
}
|
1995-02-12 22:18:33 +03:00
|
|
|
|
|
|
|
if (dev->sc_flags & SBICF_INTR && stat & ISTR_INTS)
|
|
|
|
found += sbicintr(dev);
|
1994-05-08 09:52:54 +04:00
|
|
|
return(found);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
atzsc_dmanext(dev)
|
|
|
|
struct sbic_softc *dev;
|
|
|
|
{
|
|
|
|
volatile struct sdmac *sdp;
|
|
|
|
|
|
|
|
sdp = dev->sc_cregs;
|
|
|
|
|
|
|
|
if (dev->sc_cur > dev->sc_last) {
|
|
|
|
/* shouldn't happen !! */
|
1996-10-13 07:05:43 +04:00
|
|
|
printf("atzsc_dmanext at end !!!\n");
|
1994-05-08 09:52:54 +04:00
|
|
|
atzsc_dmastop(dev);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
if ((dev->sc_dmacmd & (CNTR_TCEN | CNTR_DDIR)) == 0) {
|
|
|
|
/*
|
|
|
|
* only FLUSH if terminal count not enabled,
|
|
|
|
* and reading from peripheral
|
|
|
|
*/
|
|
|
|
sdp->FLUSH = 1;
|
|
|
|
while ((sdp->ISTR & ISTR_FE_FLG) == 0)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* clear possible interrupt and stop dma
|
|
|
|
*/
|
|
|
|
sdp->CINT = 1; /* clear possible interrupt */
|
|
|
|
sdp->SP_DMA = 1; /* stop dma */
|
|
|
|
sdp->CNTR = dev->sc_dmacmd;
|
|
|
|
sdp->ACR = (u_int)dev->sc_cur->dc_addr;
|
|
|
|
sdp->ST_DMA = 1;
|
1995-02-12 22:18:33 +03:00
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
dev->sc_tcnt = dev->sc_cur->dc_count << 1;
|
|
|
|
return(dev->sc_tcnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
1995-09-04 17:04:40 +04:00
|
|
|
atzsc_dump()
|
1994-05-08 09:52:54 +04:00
|
|
|
{
|
1998-01-12 13:39:01 +03:00
|
|
|
extern struct cfdriver atzsc_cd;
|
1995-09-04 17:04:40 +04:00
|
|
|
int i;
|
1994-05-08 09:52:54 +04:00
|
|
|
|
1996-03-18 07:58:36 +03:00
|
|
|
for (i = 0; i < atzsc_cd.cd_ndevs; ++i)
|
|
|
|
if (atzsc_cd.cd_devs[i])
|
|
|
|
sbic_dump(atzsc_cd.cd_devs[i]);
|
1994-05-08 09:52:54 +04:00
|
|
|
}
|
|
|
|
#endif
|