Home | History | Annotate | Line # | Download | only in dev
dma.c revision 1.14.8.1
      1  1.14.8.1     kent /*	$NetBSD: dma.c,v 1.14.8.1 2005/04/29 11:28:25 kent Exp $ */
      2       1.1   jeremy 
      3       1.1   jeremy /*
      4       1.1   jeremy  * Copyright (c) 1994 Paul Kranenburg.  All rights reserved.
      5       1.1   jeremy  * Copyright (c) 1994 Peter Galbavy.  All rights reserved.
      6       1.1   jeremy  *
      7       1.1   jeremy  * Redistribution and use in source and binary forms, with or without
      8       1.1   jeremy  * modification, are permitted provided that the following conditions
      9       1.1   jeremy  * are met:
     10       1.1   jeremy  * 1. Redistributions of source code must retain the above copyright
     11       1.1   jeremy  *    notice, this list of conditions and the following disclaimer.
     12       1.1   jeremy  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1   jeremy  *    notice, this list of conditions and the following disclaimer in the
     14       1.1   jeremy  *    documentation and/or other materials provided with the distribution.
     15       1.1   jeremy  * 3. All advertising materials mentioning features or use of this software
     16       1.1   jeremy  *    must display the following acknowledgement:
     17       1.1   jeremy  *	This product includes software developed by Peter Galbavy.
     18       1.1   jeremy  * 4. The name of the author may not be used to endorse or promote products
     19       1.1   jeremy  *    derived from this software without specific prior written permission.
     20       1.1   jeremy  *
     21       1.1   jeremy  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1   jeremy  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1   jeremy  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1   jeremy  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1   jeremy  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1   jeremy  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1   jeremy  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1   jeremy  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1   jeremy  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1   jeremy  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1   jeremy  */
     32      1.14    lukem 
     33      1.14    lukem #include <sys/cdefs.h>
     34  1.14.8.1     kent __KERNEL_RCSID(0, "$NetBSD: dma.c,v 1.14.8.1 2005/04/29 11:28:25 kent Exp $");
     35       1.1   jeremy 
     36       1.1   jeremy #include <sys/types.h>
     37       1.1   jeremy #include <sys/param.h>
     38       1.1   jeremy #include <sys/systm.h>
     39       1.1   jeremy #include <sys/kernel.h>
     40       1.1   jeremy #include <sys/errno.h>
     41       1.1   jeremy #include <sys/device.h>
     42       1.1   jeremy #include <sys/malloc.h>
     43       1.1   jeremy 
     44       1.1   jeremy #include <machine/autoconf.h>
     45       1.1   jeremy #include <machine/dvma.h>
     46       1.1   jeremy 
     47       1.6   bouyer #include <dev/scsipi/scsi_all.h>
     48       1.6   bouyer #include <dev/scsipi/scsipi_all.h>
     49       1.6   bouyer #include <dev/scsipi/scsiconf.h>
     50       1.1   jeremy 
     51       1.4      gwr #include <dev/ic/ncr53c9xreg.h>
     52       1.4      gwr #include <dev/ic/ncr53c9xvar.h>
     53       1.4      gwr 
     54       1.8      gwr #include <sun3/dev/dmareg.h>
     55       1.8      gwr #include <sun3/dev/dmavar.h>
     56       1.1   jeremy 
     57      1.10      gwr #define MAX_DMA_SZ	0x01000000	/* 16MB */
     58      1.10      gwr 
     59  1.14.8.1     kent static int	dmamatch (struct device *, struct cfdata *, void *);
     60  1.14.8.1     kent static void	dmaattach(struct device *, struct device *, void *);
     61      1.10      gwr 
     62      1.12  thorpej CFATTACH_DECL(dma, sizeof(struct dma_softc),
     63      1.13  thorpej     dmamatch, dmaattach, NULL, NULL);
     64      1.10      gwr 
     65      1.10      gwr extern struct cfdriver dma_cd;
     66      1.10      gwr 
     67  1.14.8.1     kent static int
     68  1.14.8.1     kent dmamatch(struct device *parent, struct cfdata *cf, void *aux)
     69       1.1   jeremy {
     70      1.10      gwr 	struct confargs *ca = aux;
     71       1.1   jeremy 
     72       1.1   jeremy 	/*
     73      1.10      gwr 	 * Check for the DMA registers.
     74       1.1   jeremy 	 */
     75      1.10      gwr 	if (bus_peek(ca->ca_bustype, ca->ca_paddr, 4) == -1)
     76      1.10      gwr 		return (0);
     77      1.10      gwr 
     78      1.10      gwr 	/* If default ipl, fill it in. */
     79      1.10      gwr 	if (ca->ca_intpri == -1)
     80      1.10      gwr 		ca->ca_intpri = 2;
     81       1.1   jeremy 
     82      1.10      gwr 	return (1);
     83      1.10      gwr }
     84       1.1   jeremy 
     85  1.14.8.1     kent static void
     86  1.14.8.1     kent dmaattach(struct device *parent, struct device *self, void *aux)
     87      1.10      gwr {
     88      1.10      gwr 	struct confargs *ca = aux;
     89      1.10      gwr 	struct dma_softc *sc = (void *)self;
     90      1.10      gwr 	int id;
     91       1.4      gwr 
     92       1.4      gwr #if 0
     93       1.4      gwr 	/* indirect functions */
     94       1.4      gwr 	sc->intr = espdmaintr;
     95      1.10      gwr 	sc->setup = dma_setup;
     96       1.4      gwr 	sc->reset = dma_reset;
     97       1.4      gwr #endif
     98       1.4      gwr 
     99      1.10      gwr 	/*
    100      1.10      gwr 	 * Map in the registers.
    101      1.10      gwr 	 */
    102      1.10      gwr 	sc->sc_regs = bus_mapin(ca->ca_bustype, ca->ca_paddr,
    103      1.10      gwr 					  sizeof(struct dma_regs));
    104      1.10      gwr 	sc->sc_rev = DMACSR(sc) & D_DEV_ID;
    105      1.10      gwr 	id = (sc->sc_rev >> 28) & 0xf;
    106      1.10      gwr 	printf(": rev %d\n", id);
    107       1.4      gwr 
    108      1.10      gwr 	/*
    109      1.10      gwr 	 * Make sure the DMA chip is supported revision.
    110      1.10      gwr 	 * The Sun3/80 used only the old rev zero chip,
    111      1.10      gwr 	 * so the initialization has been simplified.
    112      1.10      gwr 	 */
    113       1.1   jeremy 	switch (sc->sc_rev) {
    114       1.1   jeremy 	case DMAREV_0:
    115       1.1   jeremy 	case DMAREV_1:
    116       1.1   jeremy 		break;
    117       1.1   jeremy 	default:
    118      1.10      gwr 		panic("unsupported dma rev");
    119       1.1   jeremy 	}
    120       1.4      gwr }
    121       1.1   jeremy 
    122      1.10      gwr /*
    123      1.10      gwr  * This is called by espattach to get our softc.
    124      1.10      gwr  */
    125      1.10      gwr struct dma_softc *
    126      1.10      gwr espdmafind(int unit)
    127      1.10      gwr {
    128      1.10      gwr 	if (unit < 0 || unit >= dma_cd.cd_ndevs ||
    129      1.10      gwr 		dma_cd.cd_devs[unit] == NULL)
    130      1.10      gwr 		panic("no dma");
    131      1.10      gwr 	return (dma_cd.cd_devs[unit]);
    132      1.10      gwr }
    133       1.1   jeremy 
    134       1.1   jeremy #define DMAWAIT(SC, COND, MSG, DONTPANIC) do if (COND) {		\
    135      1.10      gwr 	int count = 100000;						\
    136      1.10      gwr 	while ((COND) && --count > 0) DELAY(5);				\
    137       1.1   jeremy 	if (count == 0) {						\
    138      1.10      gwr 		printf("%s: line %d: CSR = 0x%x\n",			\
    139      1.10      gwr 			__FILE__, __LINE__, DMACSR(SC));		\
    140       1.1   jeremy 		if (DONTPANIC)						\
    141       1.1   jeremy 			printf(MSG);					\
    142       1.1   jeremy 		else							\
    143       1.1   jeremy 			panic(MSG);					\
    144       1.1   jeremy 	}								\
    145       1.1   jeremy } while (0)
    146       1.1   jeremy 
    147       1.1   jeremy #define DMA_DRAIN(sc, dontpanic) do {					\
    148       1.1   jeremy 	/*								\
    149       1.1   jeremy 	 * DMA rev0 & rev1: we are not allowed to touch the DMA "flush"	\
    150       1.1   jeremy 	 *     and "drain" bits while it is still thinking about a	\
    151       1.1   jeremy 	 *     request.							\
    152       1.1   jeremy 	 * other revs: D_R_PEND bit reads as 0				\
    153       1.1   jeremy 	 */								\
    154      1.10      gwr 	DMAWAIT(sc, DMACSR(sc) & D_R_PEND, "R_PEND", dontpanic);	\
    155       1.1   jeremy 	/*								\
    156      1.10      gwr 	 * Select drain bit (always rev 0,1)				\
    157       1.1   jeremy 	 * also clears errors and D_TC flag				\
    158       1.1   jeremy 	 */								\
    159      1.10      gwr 	DMACSR(sc) |= D_DRAIN;						\
    160       1.1   jeremy 	/*								\
    161       1.1   jeremy 	 * Wait for draining to finish					\
    162       1.1   jeremy 	 */								\
    163      1.10      gwr 	DMAWAIT(sc, DMACSR(sc) & D_PACKCNT, "DRAINING", dontpanic);	\
    164      1.10      gwr } while(0)
    165      1.10      gwr 
    166      1.10      gwr #define DMA_FLUSH(sc, dontpanic) do {					\
    167      1.10      gwr 	/*								\
    168      1.10      gwr 	 * DMA rev0 & rev1: we are not allowed to touch the DMA "flush"	\
    169      1.10      gwr 	 *     and "drain" bits while it is still thinking about a	\
    170      1.10      gwr 	 *     request.							\
    171      1.10      gwr 	 * other revs: D_R_PEND bit reads as 0				\
    172      1.10      gwr 	 */								\
    173      1.10      gwr 	DMAWAIT(sc, DMACSR(sc) & D_R_PEND, "R_PEND", dontpanic);	\
    174      1.10      gwr 	DMACSR(sc) &= ~(D_WRITE|D_EN_DMA);				\
    175      1.10      gwr 	DMACSR(sc) |= D_FLUSH;						\
    176       1.1   jeremy } while(0)
    177       1.1   jeremy 
    178  1.14.8.1     kent void
    179  1.14.8.1     kent dma_reset(struct dma_softc *sc)
    180       1.1   jeremy {
    181      1.10      gwr 
    182      1.10      gwr 	DMA_FLUSH(sc, 1);
    183      1.10      gwr 	DMACSR(sc) |= D_RESET;		/* reset DMA */
    184      1.10      gwr 	DELAY(200);			/* what should this be ? */
    185       1.1   jeremy 	/*DMAWAIT1(sc); why was this here? */
    186      1.10      gwr 	DMACSR(sc) &= ~D_RESET;		/* de-assert reset line */
    187      1.10      gwr 	DELAY(5);			/* allow a few ticks to settle */
    188       1.1   jeremy 
    189      1.10      gwr 	/*
    190      1.10      gwr 	 * Get transfer burst size from (?) and plug it into the
    191      1.10      gwr 	 * controller registers. This is needed on the Sun4m...
    192      1.10      gwr 	 * Do we need it too?  Apparently not, because the 3/80
    193      1.10      gwr 	 * always has the old, REV zero DMA chip.
    194      1.10      gwr 	 */
    195      1.10      gwr 	DMACSR(sc) |= D_INT_EN;		/* enable interrupts */
    196       1.1   jeremy 
    197      1.10      gwr 	sc->sc_active = 0;
    198       1.1   jeremy }
    199       1.1   jeremy 
    200       1.1   jeremy 
    201      1.10      gwr #define DMAMAX(a)	(MAX_DMA_SZ - ((a) & (MAX_DMA_SZ-1)))
    202       1.1   jeremy 
    203       1.1   jeremy /*
    204       1.1   jeremy  * setup a dma transfer
    205       1.1   jeremy  */
    206  1.14.8.1     kent int
    207  1.14.8.1     kent dma_setup(struct dma_softc *sc, caddr_t *addr, size_t *len, int datain,
    208  1.14.8.1     kent     size_t *dmasize)
    209       1.1   jeremy {
    210  1.14.8.1     kent 	uint32_t csr;
    211       1.1   jeremy 
    212      1.10      gwr 	DMA_FLUSH(sc, 0);
    213       1.1   jeremy 
    214       1.1   jeremy #if 0
    215       1.1   jeremy 	DMACSR(sc) &= ~D_INT_EN;
    216       1.1   jeremy #endif
    217       1.1   jeremy 	sc->sc_dmaaddr = addr;
    218       1.1   jeremy 	sc->sc_dmalen = len;
    219       1.1   jeremy 
    220       1.4      gwr 	NCR_DMA(("%s: start %d@%p,%d\n", sc->sc_dev.dv_xname,
    221       1.1   jeremy 		*sc->sc_dmalen, *sc->sc_dmaaddr, datain ? 1 : 0));
    222       1.1   jeremy 
    223       1.1   jeremy 	/*
    224       1.1   jeremy 	 * the rules say we cannot transfer more than the limit
    225       1.1   jeremy 	 * of this DMA chip (64k for old and 16Mb for new),
    226       1.1   jeremy 	 * and we cannot cross a 16Mb boundary.
    227       1.1   jeremy 	 */
    228       1.1   jeremy 	*dmasize = sc->sc_dmasize =
    229       1.1   jeremy 		min(*dmasize, DMAMAX((size_t) *sc->sc_dmaaddr));
    230       1.1   jeremy 
    231       1.4      gwr 	NCR_DMA(("dma_setup: dmasize = %d\n", sc->sc_dmasize));
    232       1.1   jeremy 
    233       1.1   jeremy 	/* Program the DMA address */
    234       1.1   jeremy 	if (sc->sc_dmasize) {
    235       1.1   jeremy 		/*
    236       1.1   jeremy 		 * Use dvma mapin routines to map the buffer into DVMA space.
    237       1.1   jeremy 		 */
    238       1.1   jeremy 		sc->sc_dvmaaddr = *sc->sc_dmaaddr;
    239       1.1   jeremy 		sc->sc_dvmakaddr = dvma_mapin(sc->sc_dvmaaddr,
    240       1.4      gwr 					       sc->sc_dmasize, 0);
    241       1.1   jeremy 		if (sc->sc_dvmakaddr == NULL)
    242       1.1   jeremy 			panic("dma: cannot allocate DVMA address");
    243       1.1   jeremy 		sc->sc_dmasaddr = dvma_kvtopa(sc->sc_dvmakaddr, BUS_OBIO);
    244       1.1   jeremy 		DMADDR(sc) = sc->sc_dmasaddr;
    245      1.10      gwr 	} else {
    246      1.10      gwr 		/* XXX: What is this about? -gwr */
    247  1.14.8.1     kent 		DMADDR(sc) = (uint32_t) *sc->sc_dmaaddr;
    248      1.10      gwr 	}
    249      1.10      gwr 
    250      1.10      gwr 	/* We never have DMAREV_ESC. */
    251       1.1   jeremy 
    252       1.1   jeremy 	/* Setup DMA control register */
    253       1.1   jeremy 	csr = DMACSR(sc);
    254       1.1   jeremy 	if (datain)
    255       1.1   jeremy 		csr |= D_WRITE;
    256       1.1   jeremy 	else
    257       1.1   jeremy 		csr &= ~D_WRITE;
    258       1.1   jeremy 	csr |= D_INT_EN;
    259       1.1   jeremy 	DMACSR(sc) = csr;
    260       1.1   jeremy 
    261       1.1   jeremy 	return 0;
    262       1.1   jeremy }
    263       1.1   jeremy 
    264       1.1   jeremy /*
    265       1.1   jeremy  * Pseudo (chained) interrupt from the esp driver to kick the
    266      1.10      gwr  * current running DMA transfer. I am relying on espintr() to
    267       1.1   jeremy  * pickup and clean errors for now
    268       1.1   jeremy  *
    269       1.1   jeremy  * return 1 if it was a DMA continue.
    270       1.1   jeremy  */
    271  1.14.8.1     kent int
    272  1.14.8.1     kent espdmaintr(struct dma_softc *sc)
    273       1.1   jeremy {
    274       1.4      gwr 	struct ncr53c9x_softc *nsc = sc->sc_esp;
    275       1.1   jeremy 	char bits[64];
    276       1.1   jeremy 	int trans, resid;
    277  1.14.8.1     kent 	uint32_t csr;
    278      1.10      gwr 
    279       1.1   jeremy 	csr = DMACSR(sc);
    280       1.1   jeremy 
    281      1.10      gwr 	NCR_DMA(("%s: intr: addr 0x%x, csr %s\n",
    282       1.4      gwr 		 sc->sc_dev.dv_xname, DMADDR(sc),
    283       1.4      gwr 		 bitmask_snprintf(csr, DMACSRBITS, bits, sizeof(bits))));
    284       1.1   jeremy 
    285       1.1   jeremy 	if (csr & D_ERR_PEND) {
    286       1.1   jeremy 		DMACSR(sc) &= ~D_EN_DMA;	/* Stop DMA */
    287      1.10      gwr 		DMACSR(sc) |= D_FLUSH;
    288       1.1   jeremy 		printf("%s: error: csr=%s\n", sc->sc_dev.dv_xname,
    289       1.1   jeremy 			bitmask_snprintf(csr, DMACSRBITS, bits, sizeof(bits)));
    290      1.10      gwr 		return (-1);
    291       1.1   jeremy 	}
    292       1.1   jeremy 
    293       1.1   jeremy 	/* This is an "assertion" :) */
    294       1.1   jeremy 	if (sc->sc_active == 0)
    295       1.1   jeremy 		panic("dmaintr: DMA wasn't active");
    296       1.1   jeremy 
    297       1.1   jeremy 	DMA_DRAIN(sc, 0);
    298       1.1   jeremy 
    299       1.1   jeremy 	/* DMA has stopped */
    300       1.1   jeremy 	DMACSR(sc) &= ~D_EN_DMA;
    301       1.1   jeremy 	sc->sc_active = 0;
    302       1.1   jeremy 
    303       1.1   jeremy 	if (sc->sc_dmasize == 0) {
    304       1.1   jeremy 		/* A "Transfer Pad" operation completed */
    305       1.4      gwr 		NCR_DMA(("dmaintr: discarded %d bytes (tcl=%d, tcm=%d)\n",
    306       1.4      gwr 			NCR_READ_REG(nsc, NCR_TCL) |
    307       1.4      gwr 				(NCR_READ_REG(nsc, NCR_TCM) << 8),
    308       1.4      gwr 			NCR_READ_REG(nsc, NCR_TCL),
    309       1.4      gwr 			NCR_READ_REG(nsc, NCR_TCM)));
    310       1.1   jeremy 		return 0;
    311       1.1   jeremy 	}
    312       1.1   jeremy 
    313       1.1   jeremy 	resid = 0;
    314       1.1   jeremy 	/*
    315       1.1   jeremy 	 * If a transfer onto the SCSI bus gets interrupted by the device
    316       1.1   jeremy 	 * (e.g. for a SAVEPOINTER message), the data in the FIFO counts
    317       1.1   jeremy 	 * as residual since the ESP counter registers get decremented as
    318       1.1   jeremy 	 * bytes are clocked into the FIFO.
    319       1.1   jeremy 	 */
    320       1.1   jeremy 	if (!(csr & D_WRITE) &&
    321       1.4      gwr 	    (resid = (NCR_READ_REG(nsc, NCR_FFLAG) & NCRFIFO_FF)) != 0) {
    322       1.4      gwr 		NCR_DMA(("dmaintr: empty esp FIFO of %d ", resid));
    323       1.1   jeremy 	}
    324       1.1   jeremy 
    325       1.4      gwr 	if ((nsc->sc_espstat & NCRSTAT_TC) == 0) {
    326       1.1   jeremy 		/*
    327       1.1   jeremy 		 * `Terminal count' is off, so read the residue
    328       1.1   jeremy 		 * out of the ESP counter registers.
    329       1.1   jeremy 		 */
    330       1.4      gwr 		resid += (NCR_READ_REG(nsc, NCR_TCL) |
    331       1.4      gwr 			  (NCR_READ_REG(nsc, NCR_TCM) << 8) |
    332       1.4      gwr 			   ((nsc->sc_cfg2 & NCRCFG2_FE)
    333       1.4      gwr 				? (NCR_READ_REG(nsc, NCR_TCH) << 16)
    334       1.1   jeremy 				: 0));
    335       1.1   jeremy 
    336       1.1   jeremy 		if (resid == 0 && sc->sc_dmasize == 65536 &&
    337       1.4      gwr 		    (nsc->sc_cfg2 & NCRCFG2_FE) == 0)
    338       1.1   jeremy 			/* A transfer of 64K is encoded as `TCL=TCM=0' */
    339       1.1   jeremy 			resid = 65536;
    340       1.1   jeremy 	}
    341       1.1   jeremy 
    342       1.1   jeremy 	trans = sc->sc_dmasize - resid;
    343       1.1   jeremy 	if (trans < 0) {			/* transferred < 0 ? */
    344      1.10      gwr #if 0
    345       1.5   jeremy 		/*
    346       1.5   jeremy 		 * This situation can happen in perfectly normal operation
    347       1.5   jeremy 		 * if the ESP is reselected while using DMA to select
    348       1.5   jeremy 		 * another target.  As such, don't print the warning.
    349       1.5   jeremy 		 */
    350       1.1   jeremy 		printf("%s: xfer (%d) > req (%d)\n",
    351       1.1   jeremy 		    sc->sc_dev.dv_xname, trans, sc->sc_dmasize);
    352       1.5   jeremy #endif
    353       1.1   jeremy 		trans = sc->sc_dmasize;
    354       1.1   jeremy 	}
    355       1.1   jeremy 
    356       1.4      gwr 	NCR_DMA(("dmaintr: tcl=%d, tcm=%d, tch=%d; trans=%d, resid=%d\n",
    357       1.4      gwr 		NCR_READ_REG(nsc, NCR_TCL),
    358       1.4      gwr 		NCR_READ_REG(nsc, NCR_TCM),
    359       1.4      gwr 		(nsc->sc_cfg2 & NCRCFG2_FE)
    360       1.4      gwr 			? NCR_READ_REG(nsc, NCR_TCH) : 0,
    361       1.1   jeremy 		trans, resid));
    362       1.1   jeremy 
    363       1.1   jeremy #ifdef	SUN3X_470_EVENTUALLY
    364       1.1   jeremy 	if (csr & D_WRITE)
    365       1.1   jeremy 		cache_flush(*sc->sc_dmaaddr, trans);
    366       1.1   jeremy #endif
    367       1.1   jeremy 
    368       1.1   jeremy 	if (sc->sc_dvmakaddr)
    369       1.1   jeremy 		dvma_mapout(sc->sc_dvmakaddr, sc->sc_dmasize);
    370       1.1   jeremy 
    371       1.1   jeremy 	*sc->sc_dmalen -= trans;
    372       1.1   jeremy 	*sc->sc_dmaaddr += trans;
    373       1.1   jeremy 
    374       1.1   jeremy #if 0	/* this is not normal operation just yet */
    375       1.1   jeremy 	if (*sc->sc_dmalen == 0 ||
    376       1.4      gwr 	    nsc->sc_phase != nsc->sc_prevphase)
    377       1.1   jeremy 		return 0;
    378       1.1   jeremy 
    379       1.1   jeremy 	/* and again */
    380       1.1   jeremy 	dma_start(sc, sc->sc_dmaaddr, sc->sc_dmalen, DMACSR(sc) & D_WRITE);
    381       1.1   jeremy 	return 1;
    382       1.1   jeremy #endif
    383       1.1   jeremy 	return 0;
    384       1.1   jeremy }
    385