Home | History | Annotate | Line # | Download | only in dev
esp.c revision 1.9
      1  1.9  thorpej /*	$NetBSD: esp.c,v 1.9 1998/11/19 21:47:39 thorpej Exp $	*/
      2  1.1      dbj 
      3  1.1      dbj /*-
      4  1.5  mycroft  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5  1.1      dbj  * All rights reserved.
      6  1.1      dbj  *
      7  1.1      dbj  * This code is derived from software contributed to The NetBSD Foundation
      8  1.6  mycroft  * by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
      9  1.6  mycroft  * Simulation Facility, NASA Ames Research Center.
     10  1.1      dbj  *
     11  1.1      dbj  * Redistribution and use in source and binary forms, with or without
     12  1.1      dbj  * modification, are permitted provided that the following conditions
     13  1.1      dbj  * are met:
     14  1.1      dbj  * 1. Redistributions of source code must retain the above copyright
     15  1.1      dbj  *    notice, this list of conditions and the following disclaimer.
     16  1.1      dbj  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1      dbj  *    notice, this list of conditions and the following disclaimer in the
     18  1.1      dbj  *    documentation and/or other materials provided with the distribution.
     19  1.1      dbj  * 3. All advertising materials mentioning features or use of this software
     20  1.1      dbj  *    must display the following acknowledgement:
     21  1.1      dbj  *	This product includes software developed by the NetBSD
     22  1.1      dbj  *	Foundation, Inc. and its contributors.
     23  1.1      dbj  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1      dbj  *    contributors may be used to endorse or promote products derived
     25  1.1      dbj  *    from this software without specific prior written permission.
     26  1.1      dbj  *
     27  1.1      dbj  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1      dbj  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1      dbj  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1      dbj  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1      dbj  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1      dbj  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1      dbj  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1      dbj  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1      dbj  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1      dbj  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1      dbj  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1      dbj  */
     39  1.1      dbj 
     40  1.1      dbj /*
     41  1.1      dbj  * Copyright (c) 1994 Peter Galbavy
     42  1.1      dbj  * All rights reserved.
     43  1.1      dbj  *
     44  1.1      dbj  * Redistribution and use in source and binary forms, with or without
     45  1.1      dbj  * modification, are permitted provided that the following conditions
     46  1.1      dbj  * are met:
     47  1.1      dbj  * 1. Redistributions of source code must retain the above copyright
     48  1.1      dbj  *    notice, this list of conditions and the following disclaimer.
     49  1.1      dbj  * 2. Redistributions in binary form must reproduce the above copyright
     50  1.1      dbj  *    notice, this list of conditions and the following disclaimer in the
     51  1.1      dbj  *    documentation and/or other materials provided with the distribution.
     52  1.1      dbj  * 3. All advertising materials mentioning features or use of this software
     53  1.1      dbj  *    must display the following acknowledgement:
     54  1.1      dbj  *	This product includes software developed by Peter Galbavy
     55  1.1      dbj  * 4. The name of the author may not be used to endorse or promote products
     56  1.1      dbj  *    derived from this software without specific prior written permission.
     57  1.1      dbj  *
     58  1.1      dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     59  1.1      dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     60  1.1      dbj  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     61  1.1      dbj  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     62  1.1      dbj  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     63  1.1      dbj  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     64  1.1      dbj  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65  1.1      dbj  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     66  1.1      dbj  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     67  1.1      dbj  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     68  1.1      dbj  * POSSIBILITY OF SUCH DAMAGE.
     69  1.1      dbj  */
     70  1.1      dbj 
     71  1.1      dbj /*
     72  1.1      dbj  * Based on aic6360 by Jarle Greipsland
     73  1.1      dbj  *
     74  1.1      dbj  * Acknowledgements: Many of the algorithms used in this driver are
     75  1.1      dbj  * inspired by the work of Julian Elischer (julian (at) tfs.com) and
     76  1.1      dbj  * Charles Hannum (mycroft (at) duality.gnu.ai.mit.edu).  Thanks a million!
     77  1.1      dbj  */
     78  1.1      dbj 
     79  1.1      dbj /*
     80  1.1      dbj  * Grabbed from the sparc port at revision 1.73 for the NeXT.
     81  1.1      dbj  * Darrin B. Jewell <dbj (at) netbsd.org>  Sat Jul  4 15:41:32 1998
     82  1.1      dbj  */
     83  1.1      dbj 
     84  1.1      dbj #include <sys/types.h>
     85  1.1      dbj #include <sys/param.h>
     86  1.1      dbj #include <sys/systm.h>
     87  1.1      dbj #include <sys/kernel.h>
     88  1.1      dbj #include <sys/errno.h>
     89  1.1      dbj #include <sys/ioctl.h>
     90  1.1      dbj #include <sys/device.h>
     91  1.1      dbj #include <sys/buf.h>
     92  1.1      dbj #include <sys/proc.h>
     93  1.1      dbj #include <sys/user.h>
     94  1.1      dbj #include <sys/queue.h>
     95  1.1      dbj 
     96  1.1      dbj #include <dev/scsipi/scsi_all.h>
     97  1.1      dbj #include <dev/scsipi/scsipi_all.h>
     98  1.1      dbj #include <dev/scsipi/scsiconf.h>
     99  1.1      dbj #include <dev/scsipi/scsi_message.h>
    100  1.1      dbj 
    101  1.1      dbj #include <machine/bus.h>
    102  1.1      dbj #include <machine/autoconf.h>
    103  1.1      dbj #include <machine/cpu.h>
    104  1.1      dbj 
    105  1.1      dbj #include <dev/ic/ncr53c9xreg.h>
    106  1.1      dbj #include <dev/ic/ncr53c9xvar.h>
    107  1.1      dbj 
    108  1.1      dbj #include <next68k/next68k/isr.h>
    109  1.1      dbj 
    110  1.1      dbj #include <next68k/dev/nextdmareg.h>
    111  1.1      dbj #include <next68k/dev/nextdmavar.h>
    112  1.1      dbj 
    113  1.1      dbj #include "espreg.h"
    114  1.1      dbj #include "espvar.h"
    115  1.1      dbj 
    116  1.4      dbj #if 1
    117  1.4      dbj #define ESP_DEBUG
    118  1.4      dbj #endif
    119  1.4      dbj 
    120  1.4      dbj #ifdef ESP_DEBUG
    121  1.4      dbj #define DPRINTF(x) printf x;
    122  1.4      dbj #else
    123  1.4      dbj #define DPRINTF(x)
    124  1.4      dbj #endif
    125  1.4      dbj 
    126  1.4      dbj 
    127  1.1      dbj void	espattach_intio	__P((struct device *, struct device *, void *));
    128  1.1      dbj int	espmatch_intio	__P((struct device *, struct cfdata *, void *));
    129  1.1      dbj 
    130  1.2      dbj /* DMA callbacks */
    131  1.2      dbj bus_dmamap_t esp_dmacb_continue __P((void *arg));
    132  1.2      dbj void esp_dmacb_completed __P((bus_dmamap_t map, void *arg));
    133  1.2      dbj void esp_dmacb_shutdown __P((void *arg));
    134  1.2      dbj 
    135  1.1      dbj /* Linkup to the rest of the kernel */
    136  1.1      dbj struct cfattach esp_ca = {
    137  1.1      dbj 	sizeof(struct esp_softc), espmatch_intio, espattach_intio
    138  1.1      dbj };
    139  1.1      dbj 
    140  1.1      dbj struct scsipi_device esp_dev = {
    141  1.1      dbj 	NULL,			/* Use default error handler */
    142  1.1      dbj 	NULL,			/* have a queue, served by this */
    143  1.1      dbj 	NULL,			/* have no async handler */
    144  1.1      dbj 	NULL,			/* Use default 'done' routine */
    145  1.1      dbj };
    146  1.1      dbj 
    147  1.1      dbj /*
    148  1.1      dbj  * Functions and the switch for the MI code.
    149  1.1      dbj  */
    150  1.1      dbj u_char	esp_read_reg __P((struct ncr53c9x_softc *, int));
    151  1.1      dbj void	esp_write_reg __P((struct ncr53c9x_softc *, int, u_char));
    152  1.1      dbj int	esp_dma_isintr __P((struct ncr53c9x_softc *));
    153  1.1      dbj void	esp_dma_reset __P((struct ncr53c9x_softc *));
    154  1.1      dbj int	esp_dma_intr __P((struct ncr53c9x_softc *));
    155  1.1      dbj int	esp_dma_setup __P((struct ncr53c9x_softc *, caddr_t *,
    156  1.1      dbj 	    size_t *, int, size_t *));
    157  1.1      dbj void	esp_dma_go __P((struct ncr53c9x_softc *));
    158  1.1      dbj void	esp_dma_stop __P((struct ncr53c9x_softc *));
    159  1.1      dbj int	esp_dma_isactive __P((struct ncr53c9x_softc *));
    160  1.1      dbj 
    161  1.1      dbj struct ncr53c9x_glue esp_glue = {
    162  1.1      dbj 	esp_read_reg,
    163  1.1      dbj 	esp_write_reg,
    164  1.1      dbj 	esp_dma_isintr,
    165  1.1      dbj 	esp_dma_reset,
    166  1.1      dbj 	esp_dma_intr,
    167  1.1      dbj 	esp_dma_setup,
    168  1.1      dbj 	esp_dma_go,
    169  1.1      dbj 	esp_dma_stop,
    170  1.1      dbj 	esp_dma_isactive,
    171  1.1      dbj 	NULL,			/* gl_clear_latched_intr */
    172  1.1      dbj };
    173  1.1      dbj 
    174  1.1      dbj int
    175  1.1      dbj espmatch_intio(parent, cf, aux)
    176  1.1      dbj 	struct device *parent;
    177  1.1      dbj 	struct cfdata *cf;
    178  1.1      dbj 	void *aux;
    179  1.1      dbj {
    180  1.1      dbj   /* should probably probe here */
    181  1.1      dbj   /* Should also probably set up data from config */
    182  1.1      dbj 
    183  1.3      dbj #if 1
    184  1.1      dbj /* this code isn't working yet, don't match on it */
    185  1.1      dbj 	return(0);
    186  1.3      dbj #else
    187  1.3      dbj 	return(1);
    188  1.3      dbj #endif
    189  1.1      dbj }
    190  1.1      dbj 
    191  1.1      dbj void
    192  1.1      dbj espattach_intio(parent, self, aux)
    193  1.1      dbj 	struct device *parent, *self;
    194  1.1      dbj 	void *aux;
    195  1.1      dbj {
    196  1.1      dbj 	struct esp_softc *esc = (void *)self;
    197  1.1      dbj 	struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
    198  1.1      dbj 
    199  1.1      dbj 	esc->sc_bst = NEXT68K_INTIO_BUS_SPACE;
    200  1.1      dbj 	if (bus_space_map(esc->sc_bst, NEXT_P_SCSI,
    201  1.1      dbj 			ESP_DEVICE_SIZE, 0, &esc->sc_bsh)) {
    202  1.3      dbj     panic("\n%s: can't map ncr53c90 registers",
    203  1.1      dbj 				sc->sc_dev.dv_xname);
    204  1.1      dbj 	}
    205  1.1      dbj 
    206  1.1      dbj 	sc->sc_id = 7;
    207  1.1      dbj 	sc->sc_freq = 20;							/* Mhz */
    208  1.1      dbj 
    209  1.1      dbj 	/*
    210  1.1      dbj 	 * Set up glue for MI code early; we use some of it here.
    211  1.1      dbj 	 */
    212  1.1      dbj 	sc->sc_glue = &esp_glue;
    213  1.1      dbj 
    214  1.1      dbj 	/*
    215  1.1      dbj 	 * XXX More of this should be in ncr53c9x_attach(), but
    216  1.1      dbj 	 * XXX should we really poke around the chip that much in
    217  1.1      dbj 	 * XXX the MI code?  Think about this more...
    218  1.1      dbj 	 */
    219  1.1      dbj 
    220  1.1      dbj 	/*
    221  1.1      dbj 	 * It is necessary to try to load the 2nd config register here,
    222  1.1      dbj 	 * to find out what rev the esp chip is, else the ncr53c9x_reset
    223  1.1      dbj 	 * will not set up the defaults correctly.
    224  1.1      dbj 	 */
    225  1.1      dbj 	sc->sc_cfg1 = sc->sc_id | NCRCFG1_PARENB;
    226  1.1      dbj 	sc->sc_cfg2 = NCRCFG2_SCSI2 | NCRCFG2_RPE;
    227  1.1      dbj 	sc->sc_cfg3 = NCRCFG3_CDB;
    228  1.1      dbj 	NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
    229  1.1      dbj 
    230  1.1      dbj 	if ((NCR_READ_REG(sc, NCR_CFG2) & ~NCRCFG2_RSVD) !=
    231  1.1      dbj 	    (NCRCFG2_SCSI2 | NCRCFG2_RPE)) {
    232  1.1      dbj 		sc->sc_rev = NCR_VARIANT_ESP100;
    233  1.1      dbj 	} else {
    234  1.1      dbj 		sc->sc_cfg2 = NCRCFG2_SCSI2;
    235  1.1      dbj 		NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
    236  1.1      dbj 		sc->sc_cfg3 = 0;
    237  1.1      dbj 		NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    238  1.1      dbj 		sc->sc_cfg3 = (NCRCFG3_CDB | NCRCFG3_FCLK);
    239  1.1      dbj 		NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    240  1.1      dbj 		if (NCR_READ_REG(sc, NCR_CFG3) !=
    241  1.1      dbj 		    (NCRCFG3_CDB | NCRCFG3_FCLK)) {
    242  1.1      dbj 			sc->sc_rev = NCR_VARIANT_ESP100A;
    243  1.1      dbj 		} else {
    244  1.1      dbj 			/* NCRCFG2_FE enables > 64K transfers */
    245  1.1      dbj 			sc->sc_cfg2 |= NCRCFG2_FE;
    246  1.1      dbj 			sc->sc_cfg3 = 0;
    247  1.1      dbj 			NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
    248  1.1      dbj 			sc->sc_rev = NCR_VARIANT_ESP200;
    249  1.1      dbj 		}
    250  1.1      dbj 	}
    251  1.1      dbj 
    252  1.1      dbj 	/*
    253  1.1      dbj 	 * XXX minsync and maxxfer _should_ be set up in MI code,
    254  1.1      dbj 	 * XXX but it appears to have some dependency on what sort
    255  1.1      dbj 	 * XXX of DMA we're hooked up to, etc.
    256  1.1      dbj 	 */
    257  1.1      dbj 
    258  1.1      dbj 	/*
    259  1.1      dbj 	 * This is the value used to start sync negotiations
    260  1.1      dbj 	 * Note that the NCR register "SYNCTP" is programmed
    261  1.1      dbj 	 * in "clocks per byte", and has a minimum value of 4.
    262  1.1      dbj 	 * The SCSI period used in negotiation is one-fourth
    263  1.1      dbj 	 * of the time (in nanoseconds) needed to transfer one byte.
    264  1.1      dbj 	 * Since the chip's clock is given in MHz, we have the following
    265  1.1      dbj 	 * formula: 4 * period = (1000 / freq) * 4
    266  1.1      dbj 	 */
    267  1.1      dbj 	sc->sc_minsync = 1000 / sc->sc_freq;
    268  1.1      dbj 
    269  1.1      dbj 	/*
    270  1.1      dbj 	 * Alas, we must now modify the value a bit, because it's
    271  1.1      dbj 	 * only valid when can switch on FASTCLK and FASTSCSI bits
    272  1.1      dbj 	 * in config register 3...
    273  1.1      dbj 	 */
    274  1.1      dbj 	switch (sc->sc_rev) {
    275  1.1      dbj 	case NCR_VARIANT_ESP100:
    276  1.1      dbj 		sc->sc_maxxfer = 64 * 1024;
    277  1.1      dbj 		sc->sc_minsync = 0;	/* No synch on old chip? */
    278  1.1      dbj 		break;
    279  1.1      dbj 
    280  1.1      dbj 	case NCR_VARIANT_ESP100A:
    281  1.1      dbj 		sc->sc_maxxfer = 64 * 1024;
    282  1.1      dbj 		/* Min clocks/byte is 5 */
    283  1.1      dbj 		sc->sc_minsync = ncr53c9x_cpb2stp(sc, 5);
    284  1.1      dbj 		break;
    285  1.1      dbj 
    286  1.1      dbj 	case NCR_VARIANT_ESP200:
    287  1.1      dbj 		sc->sc_maxxfer = 16 * 1024 * 1024;
    288  1.1      dbj 		/* XXX - do actually set FAST* bits */
    289  1.1      dbj 		break;
    290  1.1      dbj 	}
    291  1.1      dbj 
    292  1.3      dbj 	/* @@@ Some ESP_DCTL bits probably need setting */
    293  1.3      dbj 	NCR_WRITE_REG(sc, ESP_DCTL,
    294  1.3      dbj 			ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_RESET);
    295  1.3      dbj 	DELAY(10);
    296  1.3      dbj 	NCR_WRITE_REG(sc, ESP_DCTL, ESPDCTL_20MHZ | ESPDCTL_INTENB);
    297  1.3      dbj 	DELAY(10);
    298  1.3      dbj 
    299  1.3      dbj 	/* Set up SCSI DMA */
    300  1.3      dbj 	{
    301  1.3      dbj 		esc->sc_scsi_dma.nd_bst = NEXT68K_INTIO_BUS_SPACE;
    302  1.3      dbj 
    303  1.3      dbj 		if (bus_space_map(esc->sc_scsi_dma.nd_bst, NEXT_P_SCSI_CSR,
    304  1.3      dbj 				sizeof(struct dma_dev),0, &esc->sc_scsi_dma.nd_bsh)) {
    305  1.3      dbj 			panic("\n%s: can't map scsi DMA registers",
    306  1.3      dbj 					sc->sc_dev.dv_xname);
    307  1.3      dbj 		}
    308  1.3      dbj 
    309  1.3      dbj 		esc->sc_scsi_dma.nd_intr = NEXT_I_SCSI_DMA;
    310  1.3      dbj 		esc->sc_scsi_dma.nd_chaining_flag = 0;
    311  1.3      dbj 		esc->sc_scsi_dma.nd_shutdown_cb  = &esp_dmacb_shutdown;
    312  1.3      dbj 		esc->sc_scsi_dma.nd_continue_cb  = &esp_dmacb_continue;
    313  1.3      dbj 		esc->sc_scsi_dma.nd_completed_cb = &esp_dmacb_completed;
    314  1.3      dbj 		esc->sc_scsi_dma.nd_cb_arg       = sc;
    315  1.3      dbj 		nextdma_config(&esc->sc_scsi_dma);
    316  1.3      dbj 		nextdma_init(&esc->sc_scsi_dma);
    317  1.3      dbj 
    318  1.3      dbj 		{
    319  1.3      dbj 			int error;
    320  1.3      dbj 			if ((error = bus_dmamap_create(esc->sc_scsi_dma.nd_dmat,
    321  1.3      dbj 					sc->sc_maxxfer, 1, sc->sc_maxxfer,
    322  1.3      dbj 					0, BUS_DMA_ALLOCNOW, &esc->sc_dmamap)) != 0) {
    323  1.3      dbj 				panic("%s: can't create i/o DMA map, error = %d",
    324  1.3      dbj 						sc->sc_dev.dv_xname,error);
    325  1.3      dbj 			}
    326  1.3      dbj 		}
    327  1.3      dbj 	}
    328  1.1      dbj 
    329  1.1      dbj #if 0
    330  1.1      dbj 	/* Turn on target selection using the `dma' method */
    331  1.1      dbj 	ncr53c9x_dmaselect = 1;
    332  1.3      dbj #else
    333  1.3      dbj 	ncr53c9x_dmaselect = 0;
    334  1.3      dbj #endif
    335  1.1      dbj 
    336  1.3      dbj 	esc->sc_slop_bgn_addr = 0;
    337  1.3      dbj 	esc->sc_slop_bgn_size = 0;
    338  1.3      dbj 	esc->sc_slop_end_addr = 0;
    339  1.3      dbj 	esc->sc_slop_end_size = 0;
    340  1.3      dbj 	esc->sc_datain = -1;
    341  1.1      dbj 
    342  1.3      dbj 	/* Establish interrupt channel */
    343  1.3      dbj 	isrlink_autovec((int(*)__P((void*)))ncr53c9x_intr, sc,
    344  1.3      dbj 			NEXT_I_IPL(NEXT_I_SCSI), 0);
    345  1.3      dbj 	INTR_ENABLE(NEXT_I_SCSI);
    346  1.4      dbj 
    347  1.4      dbj 	/* register interrupt stats */
    348  1.4      dbj 	evcnt_attach(&sc->sc_dev, "intr", &sc->sc_intrcnt);
    349  1.4      dbj 
    350  1.4      dbj 	/* Do the common parts of attachment. */
    351  1.9  thorpej 	sc->sc_adapter.scsipi_cmd = ncr53c9x_scsi_cmd;
    352  1.9  thorpej 	sc->sc_adapter.scsipi_minphys = minphys;
    353  1.9  thorpej 	ncr53c9x_attach(sc, &esp_dev);
    354  1.1      dbj }
    355  1.1      dbj 
    356  1.1      dbj /*
    357  1.1      dbj  * Glue functions.
    358  1.1      dbj  */
    359  1.1      dbj 
    360  1.1      dbj u_char
    361  1.1      dbj esp_read_reg(sc, reg)
    362  1.1      dbj 	struct ncr53c9x_softc *sc;
    363  1.1      dbj 	int reg;
    364  1.1      dbj {
    365  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    366  1.1      dbj 
    367  1.1      dbj 	return(bus_space_read_1(esc->sc_bst, esc->sc_bsh, reg));
    368  1.1      dbj }
    369  1.1      dbj 
    370  1.1      dbj void
    371  1.1      dbj esp_write_reg(sc, reg, val)
    372  1.1      dbj 	struct ncr53c9x_softc *sc;
    373  1.1      dbj 	int reg;
    374  1.1      dbj 	u_char val;
    375  1.1      dbj {
    376  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    377  1.1      dbj 
    378  1.1      dbj 	bus_space_write_1(esc->sc_bst, esc->sc_bsh, reg, val);
    379  1.1      dbj }
    380  1.1      dbj 
    381  1.1      dbj int
    382  1.1      dbj esp_dma_isintr(sc)
    383  1.1      dbj 	struct ncr53c9x_softc *sc;
    384  1.1      dbj {
    385  1.4      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    386  1.4      dbj 
    387  1.4      dbj 	int r = (INTR_OCCURRED(NEXT_I_SCSI));
    388  1.4      dbj 
    389  1.4      dbj 	if (r) {
    390  1.4      dbj 		DPRINTF(("esp_dma_isintr = %d\n",r));
    391  1.4      dbj 
    392  1.4      dbj 		if (esc->sc_datain) {
    393  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    394  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMARD);
    395  1.4      dbj 		} else {
    396  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    397  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB);
    398  1.4      dbj 		}
    399  1.4      dbj 	}
    400  1.4      dbj 
    401  1.4      dbj 	return (r);
    402  1.1      dbj }
    403  1.1      dbj 
    404  1.1      dbj void
    405  1.1      dbj esp_dma_reset(sc)
    406  1.1      dbj 	struct ncr53c9x_softc *sc;
    407  1.1      dbj {
    408  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    409  1.3      dbj 
    410  1.4      dbj 	nextdma_reset(&esc->sc_scsi_dma);
    411  1.4      dbj 
    412  1.3      dbj 	if (esc->sc_dmamap->dm_mapsize != 0) {
    413  1.3      dbj 		bus_dmamap_unload(esc->sc_scsi_dma.nd_dmat, esc->sc_dmamap);
    414  1.3      dbj 	}
    415  1.3      dbj 
    416  1.3      dbj 	esc->sc_slop_bgn_addr = 0;
    417  1.3      dbj 	esc->sc_slop_bgn_size = 0;
    418  1.3      dbj 	esc->sc_slop_end_addr = 0;
    419  1.3      dbj 	esc->sc_slop_end_size = 0;
    420  1.3      dbj 	esc->sc_datain = -1;
    421  1.1      dbj }
    422  1.1      dbj 
    423  1.1      dbj int
    424  1.1      dbj esp_dma_intr(sc)
    425  1.1      dbj 	struct ncr53c9x_softc *sc;
    426  1.1      dbj {
    427  1.4      dbj 	int trans;
    428  1.4      dbj 	int resid;
    429  1.4      dbj 	int datain;
    430  1.4      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    431  1.4      dbj 
    432  1.4      dbj 	datain = esc->sc_datain;
    433  1.4      dbj 
    434  1.4      dbj 	DPRINTF(("esp_dma_intr resetting dma\n"));
    435  1.4      dbj 
    436  1.4      dbj 	/* If the dma hasn't finished when we are in a scsi
    437  1.4      dbj 	 * interrupt. Then, "Houston, we have a problem."
    438  1.4      dbj 	 * Stop DMA and figure out how many bytes were transferred
    439  1.4      dbj 	 */
    440  1.4      dbj 	esp_dma_reset(sc);
    441  1.4      dbj 
    442  1.4      dbj 	resid = 0;
    443  1.4      dbj 
    444  1.4      dbj 	/*
    445  1.4      dbj 	 * If a transfer onto the SCSI bus gets interrupted by the device
    446  1.4      dbj 	 * (e.g. for a SAVEPOINTER message), the data in the FIFO counts
    447  1.4      dbj 	 * as residual since the ESP counter registers get decremented as
    448  1.4      dbj 	 * bytes are clocked into the FIFO.
    449  1.2      dbj 	 */
    450  1.4      dbj 
    451  1.4      dbj 	if (! datain) {
    452  1.4      dbj 		resid = (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF);
    453  1.4      dbj 		if (resid) {
    454  1.4      dbj 			NCR_DMA(("dmaintr: empty esp FIFO of %d ", resid));
    455  1.4      dbj 			NCRCMD(sc, NCRCMD_FLUSH);
    456  1.4      dbj 			DELAY(1);
    457  1.4      dbj 		}
    458  1.4      dbj 	}
    459  1.4      dbj 
    460  1.4      dbj 	if ((sc->sc_espstat & NCRSTAT_TC) == 0) {
    461  1.4      dbj 		/*
    462  1.4      dbj 		 * `Terminal count' is off, so read the residue
    463  1.4      dbj 		 * out of the ESP counter registers.
    464  1.4      dbj 		 */
    465  1.4      dbj 		resid += (NCR_READ_REG(sc, NCR_TCL) |
    466  1.4      dbj 			  (NCR_READ_REG(sc, NCR_TCM) << 8) |
    467  1.4      dbj 			   ((sc->sc_cfg2 & NCRCFG2_FE)
    468  1.4      dbj 				? (NCR_READ_REG(sc, NCR_TCH) << 16)
    469  1.4      dbj 				: 0));
    470  1.4      dbj 
    471  1.4      dbj 		if (resid == 0 && esc->sc_dmasize == 65536 &&
    472  1.4      dbj 		    (sc->sc_cfg2 & NCRCFG2_FE) == 0)
    473  1.4      dbj 			/* A transfer of 64K is encoded as `TCL=TCM=0' */
    474  1.4      dbj 			resid = 65536;
    475  1.4      dbj 	}
    476  1.4      dbj 
    477  1.4      dbj 	trans = esc->sc_dmasize - resid;
    478  1.4      dbj 	if (trans < 0) {			/* transferred < 0 ? */
    479  1.4      dbj #if 0
    480  1.4      dbj 		/*
    481  1.4      dbj 		 * This situation can happen in perfectly normal operation
    482  1.4      dbj 		 * if the ESP is reselected while using DMA to select
    483  1.4      dbj 		 * another target.  As such, don't print the warning.
    484  1.4      dbj 		 */
    485  1.4      dbj 		printf("%s: xfer (%d) > req (%d)\n",
    486  1.4      dbj 		    esc->sc_dev.dv_xname, trans, esc->sc_dmasize);
    487  1.4      dbj #endif
    488  1.4      dbj 		trans = esc->sc_dmasize;
    489  1.4      dbj 	}
    490  1.4      dbj 
    491  1.4      dbj 	NCR_DMA(("dmaintr: tcl=%d, tcm=%d, tch=%d; trans=%d, resid=%d\n",
    492  1.4      dbj 		NCR_READ_REG(sc, NCR_TCL),
    493  1.4      dbj 		NCR_READ_REG(sc, NCR_TCM),
    494  1.4      dbj 		(sc->sc_cfg2 & NCRCFG2_FE)
    495  1.4      dbj 			? NCR_READ_REG(sc, NCR_TCH) : 0,
    496  1.4      dbj 		trans, resid));
    497  1.4      dbj 
    498  1.4      dbj 	*esc->sc_dmalen -= trans;
    499  1.4      dbj 	*esc->sc_dmaaddr += trans;
    500  1.4      dbj 
    501  1.4      dbj 	return 0;
    502  1.1      dbj }
    503  1.1      dbj 
    504  1.1      dbj int
    505  1.1      dbj esp_dma_setup(sc, addr, len, datain, dmasize)
    506  1.1      dbj 	struct ncr53c9x_softc *sc;
    507  1.1      dbj 	caddr_t *addr;
    508  1.1      dbj 	size_t *len;
    509  1.1      dbj 	int datain;
    510  1.1      dbj 	size_t *dmasize;
    511  1.1      dbj {
    512  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    513  1.2      dbj 
    514  1.4      dbj 	/* Save these in case we have to abort DMA */
    515  1.4      dbj 	esc->sc_dmaaddr = addr;
    516  1.4      dbj 	esc->sc_dmalen = len;
    517  1.4      dbj 	esc->sc_dmasize = *dmasize;
    518  1.4      dbj 
    519  1.4      dbj 	DPRINTF(("esp_dma_setup(0x%08lx,0x%08lx)\n",*addr,*dmasize));
    520  1.4      dbj 
    521  1.2      dbj #ifdef DIAGNOSTIC
    522  1.3      dbj 	if ((esc->sc_datain != -1) ||
    523  1.3      dbj 			(esc->sc_dmamap->dm_mapsize != 0)) {
    524  1.3      dbj 		panic("%s: map already loaded in esp_dma_setup\n"
    525  1.3      dbj 				"\tdatain = %d\n\tmapsize=%d",
    526  1.3      dbj 				sc->sc_dev.dv_xname,esc->sc_datain,esc->sc_dmamap->dm_mapsize);
    527  1.2      dbj 	}
    528  1.2      dbj #endif
    529  1.2      dbj 
    530  1.3      dbj 	/* Deal with DMA alignment issues, by stuffing the FIFO.
    531  1.3      dbj 	 * This assumes that if bus_dmamap_load is given an aligned
    532  1.3      dbj 	 * buffer, then it will generate aligned hardware addresses
    533  1.3      dbj 	 * to give to the device.  Perhaps that is not a good assumption,
    534  1.3      dbj 	 * but it is probably true. [dbj (at) netbsd.org:19980719.0135EDT]
    535  1.3      dbj 	 */
    536  1.2      dbj 	{
    537  1.3      dbj 		int slop_bgn_size; /* # bytes to be fifo'd at beginning */
    538  1.3      dbj 		int slop_end_size; /* # bytes to be fifo'd at end */
    539  1.3      dbj 
    540  1.3      dbj 		{
    541  1.3      dbj 			u_long bgn = (u_long)(*addr);
    542  1.3      dbj 			u_long end = (u_long)(*addr+*dmasize);
    543  1.3      dbj 
    544  1.3      dbj 			slop_bgn_size = DMA_BEGINALIGNMENT-(bgn % DMA_BEGINALIGNMENT);
    545  1.4      dbj 			if (slop_bgn_size == DMA_BEGINALIGNMENT) slop_bgn_size = 0;
    546  1.3      dbj 			slop_end_size = end % DMA_ENDALIGNMENT;
    547  1.3      dbj 		}
    548  1.3      dbj 
    549  1.3      dbj 		/* Check to make sure we haven't counted the slop twice
    550  1.3      dbj 		 * as would happen for a very short dma buffer */
    551  1.3      dbj 		if (slop_bgn_size+slop_end_size > *dmasize) {
    552  1.3      dbj #if defined(DIAGNOSTIC)
    553  1.3      dbj 			if ((slop_bgn_size != *dmasize) ||
    554  1.3      dbj 					(slop_end_size != *dmasize)) {
    555  1.3      dbj 				panic("%s: confused alignment calculation\n"
    556  1.3      dbj 						"\tslop_bgn_size %d\n\tslop_end_size %d\n\tdmasize %d",
    557  1.3      dbj 						sc->sc_dev.dv_xname,slop_bgn_size,slop_end_size,*dmasize);
    558  1.3      dbj 			}
    559  1.3      dbj #endif
    560  1.3      dbj 			slop_end_size = 0;
    561  1.2      dbj 		}
    562  1.3      dbj 
    563  1.3      dbj 		if (slop_bgn_size+slop_end_size < *dmasize) {
    564  1.3      dbj 			int error;
    565  1.3      dbj 			error = bus_dmamap_load(esc->sc_scsi_dma.nd_dmat,
    566  1.3      dbj 					esc->sc_dmamap,
    567  1.3      dbj 					*addr+slop_bgn_size,
    568  1.3      dbj 					*dmasize-(slop_bgn_size+slop_end_size),
    569  1.3      dbj 					NULL, BUS_DMA_NOWAIT);
    570  1.3      dbj 			if (error) {
    571  1.4      dbj 				panic("%s: can't load dma map. error = %d",
    572  1.4      dbj 						sc->sc_dev.dv_xname, error);
    573  1.3      dbj 			}
    574  1.3      dbj 
    575  1.3      dbj 		} else {
    576  1.3      dbj 			/* If there's no DMA, then coalesce the fifo buffers */
    577  1.3      dbj 			slop_bgn_size += slop_end_size;
    578  1.3      dbj 			slop_end_size = 0;
    579  1.3      dbj 		}
    580  1.3      dbj 
    581  1.3      dbj 		esc->sc_slop_bgn_addr = *addr;
    582  1.3      dbj 		esc->sc_slop_bgn_size = slop_bgn_size;
    583  1.3      dbj 		esc->sc_slop_end_addr = (*addr+*dmasize)-slop_end_size;
    584  1.3      dbj 		esc->sc_slop_end_size = slop_end_size;
    585  1.2      dbj 	}
    586  1.2      dbj 
    587  1.2      dbj 	esc->sc_datain = datain;
    588  1.2      dbj 
    589  1.1      dbj 	return (0);
    590  1.1      dbj }
    591  1.1      dbj 
    592  1.1      dbj void
    593  1.1      dbj esp_dma_go(sc)
    594  1.1      dbj 	struct ncr53c9x_softc *sc;
    595  1.1      dbj {
    596  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    597  1.3      dbj 
    598  1.4      dbj 	DPRINTF(("esp_dma_go(datain = %d)\n",esc->sc_datain));
    599  1.4      dbj 
    600  1.4      dbj 	DPRINTF(("\tbgn slop = %d\n\tend slop = %d\n\tmapsize = %d\n",
    601  1.4      dbj 			esc->sc_slop_bgn_size,esc->sc_slop_end_size,
    602  1.4      dbj 			esc->sc_dmamap->dm_mapsize));
    603  1.4      dbj 
    604  1.4      dbj 	DPRINTF(("esp fifo size = %d\n",
    605  1.4      dbj 			(NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF)));
    606  1.4      dbj 
    607  1.4      dbj 	if (esc->sc_datain) {
    608  1.4      dbj 		NCR_WRITE_REG(sc, ESP_DCTL,
    609  1.4      dbj 				ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMARD);
    610  1.4      dbj 	} else {
    611  1.4      dbj 		NCR_WRITE_REG(sc, ESP_DCTL,
    612  1.4      dbj 				ESPDCTL_20MHZ | ESPDCTL_INTENB);
    613  1.4      dbj 	}
    614  1.4      dbj 
    615  1.4      dbj 	if (esc->sc_datain) {
    616  1.4      dbj 		int i;
    617  1.4      dbj #ifdef DIAGNOSTIC
    618  1.4      dbj #if 0  /* This is a fine thing to happen */
    619  1.4      dbj 		int n = (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF);
    620  1.4      dbj 		if (n != esc->sc_slop_bgn_size) {
    621  1.4      dbj 			panic("%s: Unexpected data in fifo n = %d, expecting %d ",
    622  1.4      dbj 					sc->sc_dev.dv_xname, n, esc->sc_slop_bgn_size);
    623  1.4      dbj 		}
    624  1.4      dbj #endif
    625  1.4      dbj #endif
    626  1.4      dbj 		for(i=0;i<esc->sc_slop_bgn_size;i++) {
    627  1.4      dbj 			esc->sc_slop_bgn_addr[i]=NCR_READ_REG(sc, NCR_FIFO);
    628  1.4      dbj 		}
    629  1.4      dbj 
    630  1.4      dbj 	} else {
    631  1.4      dbj 		int i;
    632  1.4      dbj 		for(i=0;i<esc->sc_slop_bgn_size;i++) {
    633  1.4      dbj 			NCR_WRITE_REG(sc, NCR_FIFO, esc->sc_slop_bgn_addr[i]);
    634  1.4      dbj 		}
    635  1.4      dbj 
    636  1.4      dbj 		DPRINTF(("esp fifo size = %d\n",
    637  1.4      dbj 				(NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF)));
    638  1.4      dbj 	}
    639  1.3      dbj 
    640  1.3      dbj 	if (esc->sc_dmamap->dm_mapsize != 0) {
    641  1.4      dbj 		if (esc->sc_datain) {
    642  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    643  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMAMOD | ESPDCTL_DMARD);
    644  1.4      dbj 		} else {
    645  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    646  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMAMOD);
    647  1.4      dbj 		}
    648  1.4      dbj 
    649  1.4      dbj 
    650  1.3      dbj 		nextdma_start(&esc->sc_scsi_dma,
    651  1.3      dbj 				(esc->sc_datain ? DMACSR_READ : DMACSR_WRITE));
    652  1.3      dbj 	} else {
    653  1.3      dbj #if defined(DIAGNOSTIC)
    654  1.4      dbj 		/* verify that end slop is 0, since the shutdown
    655  1.3      dbj 		 * callback will not be called.
    656  1.3      dbj 		 */
    657  1.4      dbj 		if (esc->sc_slop_end_size != 0) {
    658  1.4      dbj 			panic("%s: Unexpected end slop with no DMA, slop = %d",
    659  1.4      dbj 					sc->sc_dev.dv_xname, esc->sc_slop_end_size);
    660  1.4      dbj 		}
    661  1.3      dbj #endif
    662  1.4      dbj #if 0
    663  1.4      dbj 		if (esc->sc_datain) {
    664  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    665  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMARD | ESPDCTL_FLUSH);
    666  1.4      dbj 		} else {
    667  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL, ESPDCTL_20MHZ | ESPDCTL_INTENB);
    668  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL, ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_FLUSH);
    669  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL, ESPDCTL_20MHZ | ESPDCTL_INTENB);
    670  1.4      dbj 		}
    671  1.4      dbj #endif
    672  1.4      dbj 
    673  1.4      dbj 		esc->sc_datain = -1;
    674  1.3      dbj 		esc->sc_slop_bgn_addr = 0;
    675  1.3      dbj 		esc->sc_slop_bgn_size = 0;
    676  1.3      dbj 		esc->sc_slop_end_addr = 0;
    677  1.3      dbj 		esc->sc_slop_end_size = 0;
    678  1.4      dbj 
    679  1.4      dbj 		DPRINTF(("esp fifo size = %d\n",
    680  1.4      dbj 				(NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF)));
    681  1.3      dbj 	}
    682  1.1      dbj }
    683  1.1      dbj 
    684  1.1      dbj void
    685  1.1      dbj esp_dma_stop(sc)
    686  1.1      dbj 	struct ncr53c9x_softc *sc;
    687  1.1      dbj {
    688  1.1      dbj 	panic("Not yet implemented");
    689  1.1      dbj }
    690  1.1      dbj 
    691  1.1      dbj int
    692  1.1      dbj esp_dma_isactive(sc)
    693  1.1      dbj 	struct ncr53c9x_softc *sc;
    694  1.1      dbj {
    695  1.1      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    696  1.2      dbj 	return(	!nextdma_finished(&esc->sc_scsi_dma));
    697  1.2      dbj }
    698  1.2      dbj 
    699  1.2      dbj /****************************************************************/
    700  1.2      dbj 
    701  1.2      dbj /* Internal dma callback routines */
    702  1.2      dbj bus_dmamap_t
    703  1.2      dbj esp_dmacb_continue(arg)
    704  1.2      dbj 	void *arg;
    705  1.2      dbj {
    706  1.2      dbj 	struct ncr53c9x_softc *sc = (struct ncr53c9x_softc *)arg;
    707  1.2      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    708  1.2      dbj 
    709  1.4      dbj 	DPRINTF(("esp dma continue\n"));
    710  1.4      dbj 
    711  1.2      dbj   bus_dmamap_sync(esc->sc_scsi_dma.nd_dmat, esc->sc_dmamap,
    712  1.2      dbj 			0, esc->sc_dmamap->dm_mapsize,
    713  1.2      dbj 			(esc->sc_datain ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE));
    714  1.2      dbj 
    715  1.2      dbj #ifdef DIAGNOSTIC
    716  1.2      dbj 	if ((esc->sc_datain < 0) || (esc->sc_datain > 1)) {
    717  1.2      dbj 		panic("%s: map not loaded in dma continue callback, datain = %d",
    718  1.2      dbj 				sc->sc_dev.dv_xname,esc->sc_datain);
    719  1.2      dbj 	}
    720  1.2      dbj #endif
    721  1.2      dbj 
    722  1.2      dbj 	return(esc->sc_dmamap);
    723  1.2      dbj }
    724  1.2      dbj 
    725  1.2      dbj void
    726  1.2      dbj esp_dmacb_completed(map, arg)
    727  1.2      dbj 	bus_dmamap_t map;
    728  1.2      dbj 	void *arg;
    729  1.2      dbj {
    730  1.2      dbj 	struct ncr53c9x_softc *sc = (struct ncr53c9x_softc *)arg;
    731  1.2      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    732  1.2      dbj 
    733  1.4      dbj 	DPRINTF(("esp dma completed\n"));
    734  1.4      dbj 
    735  1.2      dbj #ifdef DIAGNOSTIC
    736  1.2      dbj 	if ((esc->sc_datain < 0) || (esc->sc_datain > 1)) {
    737  1.2      dbj 		panic("%s: map not loaded in dma completed callback, datain = %d",
    738  1.2      dbj 				sc->sc_dev.dv_xname,esc->sc_datain);
    739  1.2      dbj 	}
    740  1.2      dbj 	if (map != esc->sc_dmamap) {
    741  1.2      dbj 		panic("%s: unexpected tx completed map", sc->sc_dev.dv_xname);
    742  1.2      dbj 	}
    743  1.2      dbj #endif
    744  1.2      dbj 
    745  1.4      dbj 	/* @@@ Flush the fifo? */
    746  1.4      dbj 
    747  1.2      dbj   bus_dmamap_sync(esc->sc_scsi_dma.nd_dmat, esc->sc_dmamap,
    748  1.2      dbj 			0, esc->sc_dmamap->dm_mapsize,
    749  1.2      dbj 			(esc->sc_datain ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE));
    750  1.2      dbj }
    751  1.2      dbj 
    752  1.2      dbj void
    753  1.2      dbj esp_dmacb_shutdown(arg)
    754  1.2      dbj 	void *arg;
    755  1.2      dbj {
    756  1.2      dbj 	struct ncr53c9x_softc *sc = (struct ncr53c9x_softc *)arg;
    757  1.2      dbj 	struct esp_softc *esc = (struct esp_softc *)sc;
    758  1.2      dbj 
    759  1.4      dbj 	DPRINTF(("esp dma shutdown\n"));
    760  1.4      dbj 
    761  1.2      dbj #ifdef DIAGNOSTIC
    762  1.2      dbj 	if ((esc->sc_datain < 0) || (esc->sc_datain > 1)) {
    763  1.2      dbj 		panic("%s: map not loaded in dma shutdown callback, datain = %d",
    764  1.2      dbj 				sc->sc_dev.dv_xname,esc->sc_datain);
    765  1.2      dbj 	}
    766  1.2      dbj #endif
    767  1.2      dbj 
    768  1.2      dbj 	bus_dmamap_unload(esc->sc_scsi_dma.nd_dmat, esc->sc_dmamap);
    769  1.3      dbj 
    770  1.4      dbj 	/* Stuff the end slop into fifo */
    771  1.4      dbj 
    772  1.4      dbj 	{
    773  1.4      dbj 		if (esc->sc_datain) {
    774  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    775  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB | ESPDCTL_DMARD);
    776  1.4      dbj 		} else {
    777  1.4      dbj 			NCR_WRITE_REG(sc, ESP_DCTL,
    778  1.4      dbj 					ESPDCTL_20MHZ | ESPDCTL_INTENB);
    779  1.4      dbj 		}
    780  1.4      dbj 
    781  1.4      dbj 		if (esc->sc_datain) {
    782  1.4      dbj 			int i;
    783  1.4      dbj #ifdef DIAGNOSTIC
    784  1.4      dbj 			int n = (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF);
    785  1.4      dbj 			if (n != esc->sc_slop_end_size) {
    786  1.4      dbj 				panic("%s: Unexpected data in fifo n = %d, expecting %d at end",
    787  1.4      dbj 						sc->sc_dev.dv_xname, n, esc->sc_slop_end_size);
    788  1.4      dbj 			}
    789  1.4      dbj #endif
    790  1.4      dbj 			for(i=0;i<esc->sc_slop_end_size;i++) {
    791  1.4      dbj 				esc->sc_slop_end_addr[i]=NCR_READ_REG(sc, NCR_FIFO);
    792  1.4      dbj 			}
    793  1.4      dbj 
    794  1.4      dbj 		} else {
    795  1.4      dbj 			int i;
    796  1.4      dbj 			for(i=0;i<esc->sc_slop_end_size;i++) {
    797  1.4      dbj 				NCR_WRITE_REG(sc, NCR_FIFO, esc->sc_slop_end_addr[i]);
    798  1.4      dbj 			}
    799  1.4      dbj 		}
    800  1.4      dbj 	}
    801  1.4      dbj 
    802  1.3      dbj 
    803  1.2      dbj 	esc->sc_datain = -1;
    804  1.3      dbj 	esc->sc_slop_bgn_addr = 0;
    805  1.3      dbj 	esc->sc_slop_bgn_size = 0;
    806  1.3      dbj 	esc->sc_slop_end_addr = 0;
    807  1.3      dbj 	esc->sc_slop_end_size = 0;
    808  1.1      dbj }
    809