Home | History | Annotate | Line # | Download | only in dev
sw.c revision 1.15
      1  1.15      uwe /*	$NetBSD: sw.c,v 1.15 2005/11/16 00:49:03 uwe Exp $	*/
      2   1.1       pk 
      3   1.1       pk /*-
      4   1.1       pk  * Copyright (c) 1996 The NetBSD Foundation, Inc.
      5   1.1       pk  * All rights reserved.
      6   1.1       pk  *
      7   1.1       pk  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1       pk  * by Adam Glass, David Jones, Gordon W. Ross, and Jason R. Thorpe.
      9   1.1       pk  *
     10   1.1       pk  * Redistribution and use in source and binary forms, with or without
     11   1.1       pk  * modification, are permitted provided that the following conditions
     12   1.1       pk  * are met:
     13   1.1       pk  * 1. Redistributions of source code must retain the above copyright
     14   1.1       pk  *    notice, this list of conditions and the following disclaimer.
     15   1.1       pk  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       pk  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       pk  *    documentation and/or other materials provided with the distribution.
     18   1.1       pk  * 3. All advertising materials mentioning features or use of this software
     19   1.1       pk  *    must display the following acknowledgement:
     20   1.1       pk  *        This product includes software developed by the NetBSD
     21   1.1       pk  *        Foundation, Inc. and its contributors.
     22   1.1       pk  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1       pk  *    contributors may be used to endorse or promote products derived
     24   1.1       pk  *    from this software without specific prior written permission.
     25   1.1       pk  *
     26   1.1       pk  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1       pk  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1       pk  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1       pk  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1       pk  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1       pk  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1       pk  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1       pk  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1       pk  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1       pk  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1       pk  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1       pk  */
     38   1.1       pk 
     39   1.1       pk /*
     40   1.1       pk  * This file contains only the machine-dependent parts of the
     41   1.1       pk  * Sun4 SCSI driver.  (Autoconfig stuff and DMA functions.)
     42   1.1       pk  * The machine-independent parts are in ncr5380sbc.c
     43   1.1       pk  *
     44   1.1       pk  * Supported hardware includes:
     45   1.1       pk  * Sun "SCSI Weird" on OBIO (sw: Sun 4/100-series)
     46   1.1       pk  * Sun SCSI-3 on VME (si: Sun 4/200-series, others)
     47   1.1       pk  *
     48   1.1       pk  * The VME variant has a bit to enable or disable the DMA engine,
     49   1.1       pk  * but that bit also gates the interrupt line from the NCR5380!
     50   1.1       pk  * Therefore, in order to get any interrupt from the 5380, (i.e.
     51   1.1       pk  * for reselect) one must clear the DMA engine transfer count and
     52   1.1       pk  * then enable DMA.  This has the further complication that you
     53   1.1       pk  * CAN NOT touch the NCR5380 while the DMA enable bit is set, so
     54   1.1       pk  * we have to turn DMA back off before we even look at the 5380.
     55   1.1       pk  *
     56   1.1       pk  * What wonderfully whacky hardware this is!
     57   1.1       pk  *
     58   1.1       pk  * David Jones wrote the initial version of this module for NetBSD/sun3,
     59   1.1       pk  * which included support for the VME adapter only. (no reselection).
     60   1.1       pk  *
     61   1.1       pk  * Gordon Ross added support for the Sun 3 OBIO adapter, and re-worked
     62   1.1       pk  * both the VME and OBIO code to support disconnect/reselect.
     63   1.1       pk  * (Required figuring out the hardware "features" noted above.)
     64   1.1       pk  *
     65   1.1       pk  * The autoconfiguration boilerplate came from Adam Glass.
     66   1.1       pk  *
     67   1.1       pk  * Jason R. Thorpe ported the autoconfiguration and VME portions to
     68   1.1       pk  * NetBSD/sparc, and added initial support for the 4/100 "SCSI Weird",
     69   1.1       pk  * a wacky OBIO variant of the VME SCSI-3.  Many thanks to Chuck Cranor
     70   1.1       pk  * for lots of helpful tips and suggestions.  Thanks also to Paul Kranenburg
     71   1.1       pk  * and Chris Torek for bits of insight needed along the way.  Thanks to
     72   1.1       pk  * David Gilbert and Andrew Gillham who risked filesystem life-and-limb
     73   1.1       pk  * for the sake of testing.  Andrew Gillham helped work out the bugs
     74   1.1       pk  * the 4/100 DMA code.
     75   1.1       pk  */
     76   1.1       pk 
     77   1.1       pk /*
     78   1.1       pk  * NOTE: support for the 4/100 "SCSI Weird" is not complete!  DMA
     79   1.1       pk  * works, but interrupts (and, thus, reselection) don't.  I don't know
     80   1.1       pk  * why, and I don't have a machine to test this on further.
     81   1.1       pk  *
     82   1.1       pk  * DMA, DMA completion interrupts, and reselection work fine on my
     83   1.1       pk  * 4/260 with modern SCSI-II disks attached.  I've had reports of
     84   1.1       pk  * reselection failing on Sun Shoebox-type configurations where
     85   1.1       pk  * there are multiple non-SCSI devices behind Emulex or Adaptec
     86   1.1       pk  * bridges.  These devices pre-date the SCSI-I spec, and might not
     87   1.1       pk  * bahve the way the 5380 code expects.  For this reason, only
     88   1.1       pk  * DMA is enabled by default in this driver.
     89   1.1       pk  *
     90  1.14   keihan  *	Jason R. Thorpe <thorpej (at) NetBSD.org>
     91   1.1       pk  *	December 8, 1995
     92   1.1       pk  */
     93  1.13    lukem 
     94  1.13    lukem #include <sys/cdefs.h>
     95  1.15      uwe __KERNEL_RCSID(0, "$NetBSD: sw.c,v 1.15 2005/11/16 00:49:03 uwe Exp $");
     96   1.1       pk 
     97   1.1       pk #include "opt_ddb.h"
     98   1.1       pk 
     99   1.1       pk #include <sys/types.h>
    100   1.1       pk #include <sys/param.h>
    101   1.1       pk #include <sys/systm.h>
    102   1.1       pk #include <sys/kernel.h>
    103   1.1       pk #include <sys/malloc.h>
    104   1.1       pk #include <sys/errno.h>
    105   1.1       pk #include <sys/device.h>
    106   1.1       pk #include <sys/buf.h>
    107   1.1       pk 
    108   1.1       pk #include <machine/bus.h>
    109   1.3       pk #include <machine/intr.h>
    110   1.1       pk #include <machine/autoconf.h>
    111   1.1       pk 
    112   1.1       pk #include <dev/scsipi/scsi_all.h>
    113   1.1       pk #include <dev/scsipi/scsipi_all.h>
    114   1.1       pk #include <dev/scsipi/scsipi_debug.h>
    115   1.1       pk #include <dev/scsipi/scsiconf.h>
    116   1.1       pk 
    117   1.1       pk #ifndef DDB
    118   1.1       pk #define	Debugger()
    119   1.1       pk #endif
    120   1.1       pk 
    121   1.1       pk #ifndef DEBUG
    122   1.1       pk #define DEBUG XXX
    123   1.1       pk #endif
    124   1.1       pk 
    125   1.1       pk #define COUNT_SW_LEFTOVERS	XXX	/* See sw DMA completion code */
    126   1.1       pk 
    127   1.1       pk #include <dev/ic/ncr5380reg.h>
    128   1.1       pk #include <dev/ic/ncr5380var.h>
    129   1.1       pk 
    130   1.1       pk #include <sparc/dev/swreg.h>
    131   1.1       pk 
    132   1.1       pk /*
    133   1.1       pk  * Transfers smaller than this are done using PIO
    134   1.1       pk  * (on assumption they're not worth DMA overhead)
    135   1.1       pk  */
    136   1.1       pk #define	MIN_DMA_LEN 128
    137   1.1       pk 
    138   1.1       pk /*
    139   1.1       pk  * Transfers lager than 65535 bytes need to be split-up.
    140   1.1       pk  * (Some of the FIFO logic has only 16 bits counters.)
    141   1.1       pk  * Make the size an integer multiple of the page size
    142   1.1       pk  * to avoid buf/cluster remap problems.  (paranoid?)
    143   1.1       pk  */
    144   1.1       pk #define	MAX_DMA_LEN 0xE000
    145   1.1       pk 
    146   1.1       pk #ifdef	DEBUG
    147   1.1       pk int sw_debug = 0;
    148   1.1       pk #endif
    149   1.1       pk 
    150   1.1       pk /*
    151   1.1       pk  * This structure is used to keep track of mapped DMA requests.
    152   1.1       pk  */
    153   1.1       pk struct sw_dma_handle {
    154   1.1       pk 	int 		dh_flags;
    155   1.1       pk #define	SIDH_BUSY	0x01		/* This DH is in use */
    156   1.1       pk #define	SIDH_OUT	0x02		/* DMA does data out (write) */
    157   1.1       pk 	u_char		*dh_addr;	/* KVA of start of buffer */
    158   1.1       pk 	int 		dh_maplen;	/* Original data length */
    159   1.1       pk 	long		dh_startingpa;	/* PA of buffer; for "sw" */
    160   1.1       pk 	bus_dmamap_t	dh_dmamap;
    161   1.1       pk #define dh_dvma	dh_dmamap->dm_segs[0].ds_addr /* VA of buffer in DVMA space */
    162   1.1       pk };
    163   1.1       pk 
    164   1.1       pk /*
    165   1.1       pk  * The first structure member has to be the ncr5380_softc
    166   1.1       pk  * so we can just cast to go back and fourth between them.
    167   1.1       pk  */
    168   1.1       pk struct sw_softc {
    169   1.1       pk 	struct ncr5380_softc	ncr_sc;
    170   1.1       pk 	bus_space_tag_t		sc_bustag;	/* bus tags */
    171   1.1       pk 	bus_dma_tag_t		sc_dmatag;
    172   1.1       pk 
    173   1.1       pk 	struct sw_dma_handle *sc_dma;
    174   1.1       pk 	int		sc_xlen;	/* length of current DMA segment. */
    175   1.1       pk 	int		sc_options;	/* options for this instance. */
    176   1.1       pk };
    177   1.1       pk 
    178   1.1       pk /*
    179   1.1       pk  * Options.  By default, DMA is enabled and DMA completion interrupts
    180   1.1       pk  * and reselect are disabled.  You may enable additional features
    181   1.1       pk  * the `flags' directive in your kernel's configuration file.
    182   1.1       pk  *
    183   1.1       pk  * Alternatively, you can patch your kernel with DDB or some other
    184   1.1       pk  * mechanism.  The sc_options member of the softc is OR'd with
    185   1.1       pk  * the value in sw_options.
    186   1.1       pk  *
    187   1.1       pk  * On the "sw", interrupts (and thus) reselection don't work, so they're
    188   1.1       pk  * disabled by default.  DMA is still a little dangerous, too.
    189   1.1       pk  *
    190   1.1       pk  * Note, there's a separate sw_options to make life easier.
    191   1.1       pk  */
    192   1.1       pk #define	SW_ENABLE_DMA	0x01	/* Use DMA (maybe polled) */
    193   1.1       pk #define	SW_DMA_INTR	0x02	/* DMA completion interrupts */
    194   1.1       pk #define	SW_DO_RESELECT	0x04	/* Allow disconnect/reselect */
    195   1.1       pk #define	SW_OPTIONS_MASK	(SW_ENABLE_DMA|SW_DMA_INTR|SW_DO_RESELECT)
    196   1.1       pk #define SW_OPTIONS_BITS	"\10\3RESELECT\2DMA_INTR\1DMA"
    197   1.1       pk int sw_options = SW_ENABLE_DMA;
    198   1.1       pk 
    199  1.15      uwe static int	sw_match(struct device *, struct cfdata *, void *);
    200  1.15      uwe static void	sw_attach(struct device *, struct device *, void *);
    201  1.15      uwe static int	sw_intr(void *);
    202  1.15      uwe static void	sw_reset_adapter(struct ncr5380_softc *);
    203  1.15      uwe static void	sw_minphys(struct buf *);
    204  1.15      uwe 
    205  1.15      uwe void	sw_dma_alloc(struct ncr5380_softc *);
    206  1.15      uwe void	sw_dma_free(struct ncr5380_softc *);
    207  1.15      uwe void	sw_dma_poll(struct ncr5380_softc *);
    208  1.15      uwe 
    209  1.15      uwe void	sw_dma_setup(struct ncr5380_softc *);
    210  1.15      uwe void	sw_dma_start(struct ncr5380_softc *);
    211  1.15      uwe void	sw_dma_eop(struct ncr5380_softc *);
    212  1.15      uwe void	sw_dma_stop(struct ncr5380_softc *);
    213   1.1       pk 
    214  1.15      uwe void	sw_intr_on(struct ncr5380_softc *);
    215  1.15      uwe void	sw_intr_off(struct ncr5380_softc *);
    216   1.1       pk 
    217   1.1       pk /* Shorthand bus space access */
    218   1.1       pk #define SWREG_READ(sc, index) \
    219   1.1       pk 	bus_space_read_4((sc)->sc_regt, (sc)->sc_regh, index)
    220   1.1       pk #define SWREG_WRITE(sc, index, v) \
    221   1.1       pk 	bus_space_write_4((sc)->sc_regt, (sc)->sc_regh, index, v)
    222   1.1       pk 
    223   1.1       pk 
    224   1.1       pk /* The Sun "SCSI Weird" 4/100 obio controller. */
    225   1.9  thorpej CFATTACH_DECL(sw, sizeof(struct sw_softc),
    226  1.10  thorpej     sw_match, sw_attach, NULL, NULL);
    227   1.1       pk 
    228   1.1       pk static int
    229  1.15      uwe sw_match(struct device *parent, struct cfdata *cf, void *aux)
    230   1.1       pk {
    231   1.1       pk 	union obio_attach_args *uoba = aux;
    232   1.1       pk 	struct obio4_attach_args *oba;
    233   1.1       pk 
    234   1.1       pk 	/* Nothing but a Sun 4/100 is going to have these devices. */
    235   1.1       pk 	if (cpuinfo.cpu_type != CPUTYP_4_100)
    236   1.1       pk 		return (0);
    237   1.1       pk 
    238   1.1       pk 	if (uoba->uoba_isobio4 == 0)
    239   1.1       pk 		return (0);
    240   1.1       pk 
    241   1.1       pk 	/* Make sure there is something there... */
    242   1.1       pk 	oba = &uoba->uoba_oba4;
    243   1.6       pk 	return (bus_space_probe(oba->oba_bustag, oba->oba_paddr,
    244   1.1       pk 				1,	/* probe size */
    245   1.1       pk 				1,	/* offset */
    246   1.1       pk 				0,	/* flags */
    247   1.1       pk 				NULL, NULL));
    248   1.1       pk }
    249   1.1       pk 
    250   1.1       pk static void
    251  1.15      uwe sw_attach(struct device *parent, struct device *self, void *aux)
    252   1.1       pk {
    253   1.1       pk 	struct sw_softc *sc = (struct sw_softc *) self;
    254   1.1       pk 	struct ncr5380_softc *ncr_sc = &sc->ncr_sc;
    255   1.1       pk 	union obio_attach_args *uoba = aux;
    256   1.1       pk 	struct obio4_attach_args *oba = &uoba->uoba_oba4;
    257   1.1       pk 	bus_space_handle_t bh;
    258   1.1       pk 	char bits[64];
    259   1.1       pk 	int i;
    260   1.1       pk 
    261   1.1       pk 	sc->sc_dmatag = oba->oba_dmatag;
    262   1.1       pk 
    263   1.1       pk 	/* Map the controller registers. */
    264   1.6       pk 	if (bus_space_map(oba->oba_bustag, oba->oba_paddr,
    265   1.6       pk 			  SWREG_BANK_SZ,
    266   1.6       pk 			  BUS_SPACE_MAP_LINEAR,
    267   1.6       pk 			  &bh) != 0) {
    268   1.1       pk 		printf("%s: cannot map registers\n", self->dv_xname);
    269   1.1       pk 		return;
    270   1.1       pk 	}
    271   1.1       pk 
    272   1.1       pk 	ncr_sc->sc_regt = oba->oba_bustag;
    273   1.1       pk 	ncr_sc->sc_regh = bh;
    274   1.1       pk 
    275   1.1       pk 	sc->sc_options = sw_options;
    276   1.1       pk 
    277   1.1       pk 	ncr_sc->sc_dma_setup = sw_dma_setup;
    278   1.1       pk 	ncr_sc->sc_dma_start = sw_dma_start;
    279   1.1       pk 	ncr_sc->sc_dma_eop   = sw_dma_stop;
    280   1.1       pk 	ncr_sc->sc_dma_stop  = sw_dma_stop;
    281   1.1       pk 	ncr_sc->sc_intr_on   = sw_intr_on;
    282   1.1       pk 	ncr_sc->sc_intr_off  = sw_intr_off;
    283   1.1       pk 
    284   1.1       pk 	/*
    285   1.1       pk 	 * Establish interrupt channel.
    286   1.1       pk 	 * Default interrupt priority always is 3.  At least, that's
    287   1.1       pk 	 * what my board seems to be at.  --thorpej
    288   1.1       pk 	 */
    289   1.1       pk 	if (oba->oba_pri == -1)
    290   1.1       pk 		oba->oba_pri = 3;
    291   1.1       pk 
    292  1.11       pk 	(void)bus_intr_establish(oba->oba_bustag, oba->oba_pri, IPL_BIO,
    293   1.1       pk 				 sw_intr, sc);
    294   1.1       pk 
    295   1.1       pk 	printf(" pri %d\n", oba->oba_pri);
    296   1.1       pk 
    297   1.1       pk 
    298   1.1       pk 	/*
    299   1.1       pk 	 * Pull in the options flags.  Allow the user to completely
    300   1.1       pk 	 * override the default values.
    301   1.1       pk 	 */
    302   1.1       pk 	if ((ncr_sc->sc_dev.dv_cfdata->cf_flags & SW_OPTIONS_MASK) != 0)
    303   1.1       pk 		sc->sc_options =
    304   1.1       pk 		    (ncr_sc->sc_dev.dv_cfdata->cf_flags & SW_OPTIONS_MASK);
    305   1.1       pk 
    306   1.1       pk 	/*
    307   1.1       pk 	 * Initialize fields used by the MI code
    308   1.1       pk 	 */
    309   1.1       pk 
    310   1.1       pk 	/* NCR5380 register bank offsets */
    311   1.1       pk 	ncr_sc->sci_r0 = 0;
    312   1.1       pk 	ncr_sc->sci_r1 = 1;
    313   1.1       pk 	ncr_sc->sci_r2 = 2;
    314   1.1       pk 	ncr_sc->sci_r3 = 3;
    315   1.1       pk 	ncr_sc->sci_r4 = 4;
    316   1.1       pk 	ncr_sc->sci_r5 = 5;
    317   1.1       pk 	ncr_sc->sci_r6 = 6;
    318   1.1       pk 	ncr_sc->sci_r7 = 7;
    319   1.1       pk 
    320   1.1       pk 	ncr_sc->sc_rev = NCR_VARIANT_NCR5380;
    321   1.1       pk 
    322   1.1       pk 	/*
    323   1.1       pk 	 * MD function pointers used by the MI code.
    324   1.1       pk 	 */
    325   1.1       pk 	ncr_sc->sc_pio_out = ncr5380_pio_out;
    326   1.1       pk 	ncr_sc->sc_pio_in =  ncr5380_pio_in;
    327   1.1       pk 	ncr_sc->sc_dma_alloc = sw_dma_alloc;
    328   1.1       pk 	ncr_sc->sc_dma_free  = sw_dma_free;
    329   1.1       pk 	ncr_sc->sc_dma_poll  = sw_dma_poll;
    330   1.1       pk 
    331   1.1       pk 	ncr_sc->sc_flags = 0;
    332   1.1       pk 	if ((sc->sc_options & SW_DO_RESELECT) == 0)
    333   1.1       pk 		ncr_sc->sc_no_disconnect = 0xFF;
    334   1.1       pk 	if ((sc->sc_options & SW_DMA_INTR) == 0)
    335   1.1       pk 		ncr_sc->sc_flags |= NCR5380_FORCE_POLLING;
    336   1.1       pk 	ncr_sc->sc_min_dma_len = MIN_DMA_LEN;
    337   1.1       pk 
    338   1.1       pk 
    339   1.1       pk 	/*
    340   1.1       pk 	 * Allocate DMA handles.
    341   1.1       pk 	 */
    342   1.1       pk 	i = SCI_OPENINGS * sizeof(struct sw_dma_handle);
    343   1.1       pk 	sc->sc_dma = (struct sw_dma_handle *)malloc(i, M_DEVBUF, M_NOWAIT);
    344   1.1       pk 	if (sc->sc_dma == NULL)
    345  1.12      wiz 		panic("sw: DMA handle malloc failed");
    346   1.1       pk 
    347   1.1       pk 	for (i = 0; i < SCI_OPENINGS; i++) {
    348   1.1       pk 		sc->sc_dma[i].dh_flags = 0;
    349   1.1       pk 
    350   1.1       pk 		/* Allocate a DMA handle */
    351   1.1       pk 		if (bus_dmamap_create(
    352   1.1       pk 				sc->sc_dmatag,	/* tag */
    353   1.1       pk 				MAXPHYS,	/* size */
    354   1.1       pk 				1,		/* nsegments */
    355   1.1       pk 				MAXPHYS,	/* maxsegsz */
    356   1.1       pk 				0,		/* boundary */
    357   1.1       pk 				BUS_DMA_NOWAIT,
    358   1.1       pk 				&sc->sc_dma[i].dh_dmamap) != 0) {
    359   1.1       pk 
    360   1.1       pk 			printf("%s: DMA buffer map create error\n",
    361   1.1       pk 				ncr_sc->sc_dev.dv_xname);
    362   1.1       pk 			return;
    363   1.1       pk 		}
    364   1.1       pk 	}
    365   1.1       pk 
    366   1.1       pk 	if (sc->sc_options) {
    367   1.1       pk 		printf("%s: options=%s\n", ncr_sc->sc_dev.dv_xname,
    368   1.1       pk 			bitmask_snprintf(sc->sc_options, SW_OPTIONS_BITS,
    369   1.1       pk 			    bits, sizeof(bits)));
    370   1.1       pk 	}
    371   1.1       pk 
    372   1.4   bouyer 	ncr_sc->sc_channel.chan_id = 7;
    373   1.4   bouyer 	ncr_sc->sc_adapter.adapt_minphys = sw_minphys;
    374   1.1       pk 
    375   1.1       pk 	/* Initialize sw board */
    376   1.1       pk 	sw_reset_adapter(ncr_sc);
    377   1.1       pk 
    378   1.1       pk 	/* Attach the ncr5380 chip driver */
    379   1.1       pk 	ncr5380_attach(ncr_sc);
    380   1.1       pk }
    381   1.1       pk 
    382   1.1       pk static void
    383   1.1       pk sw_minphys(struct buf *bp)
    384   1.1       pk {
    385   1.1       pk 	if (bp->b_bcount > MAX_DMA_LEN) {
    386   1.1       pk #ifdef DEBUG
    387   1.1       pk 		if (sw_debug) {
    388   1.1       pk 			printf("sw_minphys len = 0x%x.\n", MAX_DMA_LEN);
    389   1.1       pk 			Debugger();
    390   1.1       pk 		}
    391   1.1       pk #endif
    392   1.1       pk 		bp->b_bcount = MAX_DMA_LEN;
    393   1.1       pk 	}
    394   1.4   bouyer 	minphys(bp);
    395   1.1       pk }
    396   1.1       pk 
    397   1.1       pk #define CSR_WANT (SW_CSR_SBC_IP | SW_CSR_DMA_IP | \
    398   1.1       pk 	SW_CSR_DMA_CONFLICT | SW_CSR_DMA_BUS_ERR )
    399   1.1       pk 
    400   1.1       pk static int
    401   1.1       pk sw_intr(void *arg)
    402   1.1       pk {
    403   1.1       pk 	struct sw_softc *sc = arg;
    404   1.1       pk 	struct ncr5380_softc *ncr_sc = (struct ncr5380_softc *)arg;
    405   1.1       pk 	int dma_error, claimed;
    406   1.1       pk 	u_short csr;
    407   1.1       pk 
    408   1.1       pk 	claimed = 0;
    409   1.1       pk 	dma_error = 0;
    410   1.1       pk 
    411   1.1       pk 	/* SBC interrupt? DMA interrupt? */
    412   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    413   1.1       pk 
    414   1.1       pk 	NCR_TRACE("sw_intr: csr=0x%x\n", csr);
    415   1.1       pk 
    416   1.1       pk 	if (csr & SW_CSR_DMA_CONFLICT) {
    417   1.1       pk 		dma_error |= SW_CSR_DMA_CONFLICT;
    418   1.1       pk 		printf("sw_intr: DMA conflict\n");
    419   1.1       pk 	}
    420   1.1       pk 	if (csr & SW_CSR_DMA_BUS_ERR) {
    421   1.1       pk 		dma_error |= SW_CSR_DMA_BUS_ERR;
    422   1.1       pk 		printf("sw_intr: DMA bus error\n");
    423   1.1       pk 	}
    424   1.1       pk 	if (dma_error) {
    425   1.1       pk 		if (sc->ncr_sc.sc_state & NCR_DOINGDMA)
    426   1.1       pk 			sc->ncr_sc.sc_state |= NCR_ABORTING;
    427   1.1       pk 		/* Make sure we will call the main isr. */
    428   1.1       pk 		csr |= SW_CSR_DMA_IP;
    429   1.1       pk 	}
    430   1.1       pk 
    431   1.1       pk 	if (csr & (SW_CSR_SBC_IP | SW_CSR_DMA_IP)) {
    432   1.1       pk 		claimed = ncr5380_intr(&sc->ncr_sc);
    433   1.1       pk #ifdef DEBUG
    434   1.1       pk 		if (!claimed) {
    435   1.1       pk 			printf("sw_intr: spurious from SBC\n");
    436   1.1       pk 			if (sw_debug & 4) {
    437   1.1       pk 				Debugger();	/* XXX */
    438   1.1       pk 			}
    439   1.1       pk 		}
    440   1.1       pk #endif
    441   1.1       pk 	}
    442   1.1       pk 
    443   1.1       pk 	return (claimed);
    444   1.1       pk }
    445   1.1       pk 
    446   1.1       pk 
    447   1.1       pk static void
    448   1.1       pk sw_reset_adapter(struct ncr5380_softc *ncr_sc)
    449   1.1       pk {
    450   1.1       pk 
    451   1.1       pk #ifdef	DEBUG
    452   1.1       pk 	if (sw_debug) {
    453   1.1       pk 		printf("sw_reset_adapter\n");
    454   1.1       pk 	}
    455   1.1       pk #endif
    456   1.1       pk 
    457   1.1       pk 	/*
    458   1.1       pk 	 * The reset bits in the CSR are active low.
    459   1.1       pk 	 */
    460   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, 0);
    461   1.1       pk 	delay(10);
    462   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, SW_CSR_SCSI_RES);
    463   1.1       pk 
    464   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_ADDR, 0);
    465   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_CNT, 0);
    466   1.1       pk 	delay(10);
    467   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, SW_CSR_SCSI_RES | SW_CSR_INTR_EN);
    468   1.1       pk 
    469   1.1       pk 	SCI_CLR_INTR(ncr_sc);
    470   1.1       pk }
    471   1.1       pk 
    472   1.1       pk 
    473   1.1       pk /*****************************************************************
    474   1.1       pk  * Common functions for DMA
    475   1.1       pk  ****************************************************************/
    476   1.1       pk 
    477   1.1       pk /*
    478   1.1       pk  * Allocate a DMA handle and put it in sc->sc_dma.  Prepare
    479   1.1       pk  * for DMA transfer.  On the Sun4, this means mapping the buffer
    480   1.1       pk  * into DVMA space.
    481   1.1       pk  */
    482   1.1       pk void
    483  1.15      uwe sw_dma_alloc(struct ncr5380_softc *ncr_sc)
    484   1.1       pk {
    485   1.1       pk 	struct sw_softc *sc = (struct sw_softc *)ncr_sc;
    486   1.1       pk 	struct sci_req *sr = ncr_sc->sc_current;
    487   1.1       pk 	struct scsipi_xfer *xs = sr->sr_xs;
    488   1.1       pk 	struct sw_dma_handle *dh;
    489   1.1       pk 	int i, xlen;
    490   1.1       pk 	u_long addr;
    491   1.1       pk 
    492   1.1       pk #ifdef DIAGNOSTIC
    493   1.1       pk 	if (sr->sr_dma_hand != NULL)
    494   1.1       pk 		panic("sw_dma_alloc: already have DMA handle");
    495   1.1       pk #endif
    496   1.1       pk 
    497   1.1       pk #if 1	/* XXX - Temporary */
    498   1.1       pk 	/* XXX - In case we think DMA is completely broken... */
    499   1.1       pk 	if ((sc->sc_options & SW_ENABLE_DMA) == 0)
    500   1.1       pk 		return;
    501   1.1       pk #endif
    502   1.1       pk 
    503   1.1       pk 	addr = (u_long) ncr_sc->sc_dataptr;
    504   1.1       pk 	xlen = ncr_sc->sc_datalen;
    505   1.1       pk 
    506   1.1       pk 	/* If the DMA start addr is misaligned then do PIO */
    507   1.1       pk 	if ((addr & 1) || (xlen & 1)) {
    508   1.1       pk 		printf("sw_dma_alloc: misaligned.\n");
    509   1.1       pk 		return;
    510   1.1       pk 	}
    511   1.1       pk 
    512   1.1       pk 	/* Make sure our caller checked sc_min_dma_len. */
    513   1.1       pk 	if (xlen < MIN_DMA_LEN)
    514   1.7   provos 		panic("sw_dma_alloc: xlen=0x%x", xlen);
    515   1.1       pk 
    516   1.1       pk 	/* Find free DMA handle.  Guaranteed to find one since we have
    517   1.1       pk 	   as many DMA handles as the driver has processes. */
    518   1.1       pk 	for (i = 0; i < SCI_OPENINGS; i++) {
    519   1.1       pk 		if ((sc->sc_dma[i].dh_flags & SIDH_BUSY) == 0)
    520   1.1       pk 			goto found;
    521   1.1       pk 	}
    522   1.1       pk 	panic("sw: no free DMA handles.");
    523   1.1       pk 
    524   1.1       pk found:
    525   1.1       pk 	dh = &sc->sc_dma[i];
    526   1.1       pk 	dh->dh_flags = SIDH_BUSY;
    527   1.1       pk 	dh->dh_addr = (u_char *)addr;
    528   1.1       pk 	dh->dh_maplen  = xlen;
    529   1.1       pk 
    530   1.1       pk 	/* Copy the "write" flag for convenience. */
    531   1.1       pk 	if ((xs->xs_control & XS_CTL_DATA_OUT) != 0)
    532   1.1       pk 		dh->dh_flags |= SIDH_OUT;
    533   1.1       pk 
    534   1.1       pk 	/*
    535   1.1       pk 	 * Double-map the buffer into DVMA space.  If we can't re-map
    536   1.1       pk 	 * the buffer, we print a warning and fall back to PIO mode.
    537   1.1       pk 	 *
    538   1.1       pk 	 * NOTE: it is not safe to sleep here!
    539   1.1       pk 	 */
    540   1.1       pk 	if (bus_dmamap_load(sc->sc_dmatag, dh->dh_dmamap,
    541   1.1       pk 			    (caddr_t)addr, xlen, NULL, BUS_DMA_NOWAIT) != 0) {
    542   1.1       pk 		/* Can't remap segment */
    543   1.1       pk 		printf("sw_dma_alloc: can't remap 0x%lx/0x%x, doing PIO\n",
    544   1.1       pk 			addr, dh->dh_maplen);
    545   1.1       pk 		dh->dh_flags = 0;
    546   1.1       pk 		return;
    547   1.1       pk 	}
    548   1.1       pk 	bus_dmamap_sync(sc->sc_dmatag, dh->dh_dmamap, addr, xlen,
    549   1.1       pk 			(dh->dh_flags & SIDH_OUT)
    550   1.1       pk 				? BUS_DMASYNC_PREWRITE
    551   1.1       pk 				: BUS_DMASYNC_PREREAD);
    552   1.1       pk 
    553   1.1       pk 	/* success */
    554   1.1       pk 	sr->sr_dma_hand = dh;
    555   1.1       pk 
    556   1.1       pk 	return;
    557   1.1       pk }
    558   1.1       pk 
    559   1.1       pk 
    560   1.1       pk void
    561  1.15      uwe sw_dma_free(struct ncr5380_softc *ncr_sc)
    562   1.1       pk {
    563   1.1       pk 	struct sw_softc *sc = (struct sw_softc *)ncr_sc;
    564   1.1       pk 	struct sci_req *sr = ncr_sc->sc_current;
    565   1.1       pk 	struct sw_dma_handle *dh = sr->sr_dma_hand;
    566   1.1       pk 
    567   1.1       pk #ifdef DIAGNOSTIC
    568   1.1       pk 	if (dh == NULL)
    569   1.1       pk 		panic("sw_dma_free: no DMA handle");
    570   1.1       pk #endif
    571   1.1       pk 
    572   1.1       pk 	if (ncr_sc->sc_state & NCR_DOINGDMA)
    573   1.1       pk 		panic("sw_dma_free: free while in progress");
    574   1.1       pk 
    575   1.1       pk 	if (dh->dh_flags & SIDH_BUSY) {
    576   1.1       pk 		/* Give back the DVMA space. */
    577   1.1       pk 		bus_dmamap_sync(sc->sc_dmatag, dh->dh_dmamap,
    578   1.1       pk 				dh->dh_dvma, dh->dh_maplen,
    579   1.1       pk 				(dh->dh_flags & SIDH_OUT)
    580   1.1       pk 					? BUS_DMASYNC_POSTWRITE
    581   1.1       pk 					: BUS_DMASYNC_POSTREAD);
    582   1.1       pk 		bus_dmamap_unload(sc->sc_dmatag, dh->dh_dmamap);
    583   1.1       pk 		dh->dh_flags = 0;
    584   1.1       pk 	}
    585   1.1       pk 	sr->sr_dma_hand = NULL;
    586   1.1       pk }
    587   1.1       pk 
    588   1.1       pk 
    589   1.1       pk /*
    590   1.1       pk  * Poll (spin-wait) for DMA completion.
    591   1.1       pk  * Called right after xx_dma_start(), and
    592   1.1       pk  * xx_dma_stop() will be called next.
    593   1.1       pk  * Same for either VME or OBIO.
    594   1.1       pk  */
    595   1.1       pk void
    596  1.15      uwe sw_dma_poll(struct ncr5380_softc *ncr_sc)
    597   1.1       pk {
    598   1.1       pk 	struct sci_req *sr = ncr_sc->sc_current;
    599   1.1       pk 	int tmo, csr_mask, csr;
    600   1.1       pk 
    601   1.1       pk 	/* Make sure DMA started successfully. */
    602   1.1       pk 	if (ncr_sc->sc_state & NCR_ABORTING)
    603   1.1       pk 		return;
    604   1.1       pk 
    605   1.1       pk 	csr_mask = SW_CSR_SBC_IP | SW_CSR_DMA_IP |
    606   1.1       pk 		SW_CSR_DMA_CONFLICT | SW_CSR_DMA_BUS_ERR;
    607   1.1       pk 
    608   1.1       pk 	tmo = 50000;	/* X100 = 5 sec. */
    609   1.1       pk 	for (;;) {
    610   1.1       pk 		csr = SWREG_READ(ncr_sc, SWREG_CSR);
    611   1.1       pk 		if (csr & csr_mask)
    612   1.1       pk 			break;
    613   1.1       pk 		if (--tmo <= 0) {
    614   1.1       pk 			printf("%s: DMA timeout (while polling)\n",
    615   1.1       pk 			    ncr_sc->sc_dev.dv_xname);
    616   1.1       pk 			/* Indicate timeout as MI code would. */
    617   1.1       pk 			sr->sr_flags |= SR_OVERDUE;
    618   1.1       pk 			break;
    619   1.1       pk 		}
    620   1.1       pk 		delay(100);
    621   1.1       pk 	}
    622   1.1       pk 
    623   1.1       pk #ifdef	DEBUG
    624   1.1       pk 	if (sw_debug) {
    625   1.1       pk 		printf("sw_dma_poll: done, csr=0x%x\n", csr);
    626   1.1       pk 	}
    627   1.1       pk #endif
    628   1.1       pk }
    629   1.1       pk 
    630   1.1       pk 
    631   1.1       pk /*
    632   1.1       pk  * This is called when the bus is going idle,
    633   1.1       pk  * so we want to enable the SBC interrupts.
    634   1.1       pk  * That is controlled by the DMA enable!
    635   1.1       pk  * Who would have guessed!
    636   1.1       pk  * What a NASTY trick!
    637   1.1       pk  *
    638   1.1       pk  * XXX THIS MIGHT NOT WORK RIGHT!
    639   1.1       pk  */
    640   1.1       pk void
    641  1.15      uwe sw_intr_on(struct ncr5380_softc *ncr_sc)
    642   1.1       pk {
    643  1.15      uwe 	uint32_t csr;
    644   1.1       pk 
    645   1.1       pk 	sw_dma_setup(ncr_sc);
    646   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    647   1.1       pk 	csr |= SW_CSR_DMA_EN;	/* XXX - this bit is for vme only?! */
    648   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    649   1.1       pk }
    650   1.1       pk 
    651   1.1       pk /*
    652   1.1       pk  * This is called when the bus is idle and we are
    653   1.1       pk  * about to start playing with the SBC chip.
    654   1.1       pk  *
    655   1.1       pk  * XXX THIS MIGHT NOT WORK RIGHT!
    656   1.1       pk  */
    657   1.1       pk void
    658  1.15      uwe sw_intr_off(struct ncr5380_softc *ncr_sc)
    659   1.1       pk {
    660  1.15      uwe 	uint32_t csr;
    661   1.1       pk 
    662   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    663   1.1       pk 	csr &= ~SW_CSR_DMA_EN;
    664   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    665   1.1       pk }
    666   1.1       pk 
    667   1.1       pk 
    668   1.1       pk /*
    669   1.1       pk  * This function is called during the COMMAND or MSG_IN phase
    670   1.5      wiz  * that precedes a DATA_IN or DATA_OUT phase, in case we need
    671   1.1       pk  * to setup the DMA engine before the bus enters a DATA phase.
    672   1.1       pk  *
    673   1.1       pk  * On the OBIO version we just clear the DMA count and address
    674   1.1       pk  * here (to make sure it stays idle) and do the real setup
    675   1.1       pk  * later, in dma_start.
    676   1.1       pk  */
    677   1.1       pk void
    678  1.15      uwe sw_dma_setup(struct ncr5380_softc *ncr_sc)
    679   1.1       pk {
    680  1.15      uwe 	uint32_t csr;
    681   1.1       pk 
    682   1.1       pk 	/* No FIFO to reset on "sw". */
    683   1.1       pk 
    684   1.1       pk 	/* Set direction (assume recv here) */
    685   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    686   1.1       pk 	csr &= ~SW_CSR_SEND;
    687   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    688   1.1       pk 
    689   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_ADDR, 0);
    690   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_CNT, 0);
    691   1.1       pk }
    692   1.1       pk 
    693   1.1       pk 
    694   1.1       pk void
    695  1.15      uwe sw_dma_start(struct ncr5380_softc *ncr_sc)
    696   1.1       pk {
    697   1.1       pk 	struct sw_softc *sc = (struct sw_softc *)ncr_sc;
    698   1.1       pk 	struct sci_req *sr = ncr_sc->sc_current;
    699   1.1       pk 	struct sw_dma_handle *dh = sr->sr_dma_hand;
    700   1.1       pk 	u_long dva;
    701   1.1       pk 	int xlen, adj, adjlen;
    702   1.1       pk 	u_int mode;
    703  1.15      uwe 	uint32_t csr;
    704   1.1       pk 
    705   1.1       pk 	/*
    706   1.1       pk 	 * Get the DVMA mapping for this segment.
    707   1.1       pk 	 */
    708   1.1       pk 	dva = (u_long)(dh->dh_dvma);
    709   1.1       pk 	if (dva & 1)
    710   1.1       pk 		panic("sw_dma_start: bad dva=0x%lx", dva);
    711   1.1       pk 
    712   1.1       pk 	xlen = ncr_sc->sc_datalen;
    713   1.1       pk 	xlen &= ~1;
    714   1.1       pk 	sc->sc_xlen = xlen;	/* XXX: or less... */
    715   1.1       pk 
    716   1.1       pk #ifdef	DEBUG
    717   1.1       pk 	if (sw_debug & 2) {
    718   1.1       pk 		printf("sw_dma_start: dh=%p, dva=0x%lx, xlen=%d\n",
    719   1.1       pk 		    dh, dva, xlen);
    720   1.1       pk 	}
    721   1.1       pk #endif
    722   1.1       pk 
    723   1.1       pk 	/*
    724   1.1       pk 	 * Set up the DMA controller.
    725   1.1       pk 	 * Note that (dh->dh_len < sc_datalen)
    726   1.1       pk 	 */
    727   1.1       pk 
    728   1.1       pk 	/* Set direction (send/recv) */
    729   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    730   1.1       pk 	if (dh->dh_flags & SIDH_OUT) {
    731   1.1       pk 		csr |= SW_CSR_SEND;
    732   1.1       pk 	} else {
    733   1.1       pk 		csr &= ~SW_CSR_SEND;
    734   1.1       pk 	}
    735   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    736   1.1       pk 
    737   1.1       pk 	/*
    738   1.1       pk 	 * The "sw" needs longword aligned transfers.  We
    739   1.1       pk 	 * detect a shortword aligned transfer here, and adjust the
    740   1.1       pk 	 * DMA transfer by 2 bytes.  These two bytes are read/written
    741   1.1       pk 	 * in PIO mode just before the DMA is started.
    742   1.1       pk 	 */
    743   1.1       pk 	adj = 0;
    744   1.1       pk 	if (dva & 2) {
    745   1.1       pk 		adj = 2;
    746   1.1       pk #ifdef DEBUG
    747   1.1       pk 		if (sw_debug & 2)
    748   1.1       pk 			printf("sw_dma_start: adjusted up %d bytes\n", adj);
    749   1.1       pk #endif
    750   1.1       pk 	}
    751   1.1       pk 
    752   1.1       pk 	/* We have to frob the address on the "sw". */
    753   1.1       pk 	dh->dh_startingpa = (dva | 0xF00000);
    754   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_ADDR, (u_int)(dh->dh_startingpa + adj));
    755   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_CNT, xlen - adj);
    756   1.1       pk 
    757   1.1       pk 	/*
    758   1.1       pk 	 * Acknowledge the phase change.  (After DMA setup!)
    759   1.1       pk 	 * Put the SBIC into DMA mode, and start the transfer.
    760   1.1       pk 	 */
    761   1.1       pk 	if (dh->dh_flags & SIDH_OUT) {
    762   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_tcmd, PHASE_DATA_OUT);
    763   1.1       pk 		if (adj) {
    764   1.1       pk 			adjlen = ncr5380_pio_out(ncr_sc, PHASE_DATA_OUT,
    765   1.1       pk 			    adj, dh->dh_addr);
    766   1.1       pk 			if (adjlen != adj)
    767   1.1       pk 				printf("%s: bad outgoing adj, %d != %d\n",
    768   1.1       pk 				    ncr_sc->sc_dev.dv_xname, adjlen, adj);
    769   1.1       pk 		}
    770   1.1       pk 		SCI_CLR_INTR(ncr_sc);
    771   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_icmd, SCI_ICMD_DATA);
    772   1.1       pk 		mode = NCR5380_READ(ncr_sc, sci_mode);
    773   1.1       pk 		mode |= (SCI_MODE_DMA | SCI_MODE_DMA_IE);
    774   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_mode, mode);
    775   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_dma_send, 0); 	/* start it */
    776   1.1       pk 	} else {
    777   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_tcmd, PHASE_DATA_IN);
    778   1.1       pk 		if (adj) {
    779   1.1       pk 			adjlen = ncr5380_pio_in(ncr_sc, PHASE_DATA_IN,
    780   1.1       pk 			    adj, dh->dh_addr);
    781   1.1       pk 			if (adjlen != adj)
    782   1.1       pk 				printf("%s: bad incoming adj, %d != %d\n",
    783   1.1       pk 				    ncr_sc->sc_dev.dv_xname, adjlen, adj);
    784   1.1       pk 		}
    785   1.1       pk 		SCI_CLR_INTR(ncr_sc);
    786   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_icmd, 0);
    787   1.1       pk 		mode = NCR5380_READ(ncr_sc, sci_mode);
    788   1.1       pk 		mode |= (SCI_MODE_DMA | SCI_MODE_DMA_IE);
    789   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_mode, mode);
    790   1.1       pk 		NCR5380_WRITE(ncr_sc, sci_irecv, 0); 	/* start it */
    791   1.1       pk 	}
    792   1.1       pk 
    793   1.1       pk 	/* Let'er rip! */
    794   1.1       pk 	csr |= SW_CSR_DMA_EN;
    795   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    796   1.1       pk 
    797   1.1       pk 	ncr_sc->sc_state |= NCR_DOINGDMA;
    798   1.1       pk 
    799   1.1       pk #ifdef	DEBUG
    800   1.1       pk 	if (sw_debug & 2) {
    801   1.1       pk 		printf("sw_dma_start: started, flags=0x%x\n",
    802   1.1       pk 		    ncr_sc->sc_state);
    803   1.1       pk 	}
    804   1.1       pk #endif
    805   1.1       pk }
    806   1.1       pk 
    807   1.1       pk 
    808   1.1       pk void
    809  1.15      uwe sw_dma_eop(struct ncr5380_softc *ncr_sc)
    810   1.1       pk {
    811   1.1       pk 
    812   1.1       pk 	/* Not needed - DMA was stopped prior to examining sci_csr */
    813   1.1       pk }
    814   1.1       pk 
    815   1.1       pk #if (defined(DEBUG) || defined(DIAGNOSTIC)) && !defined(COUNT_SW_LEFTOVERS)
    816   1.1       pk #define COUNT_SW_LEFTOVERS
    817   1.1       pk #endif
    818   1.1       pk #ifdef COUNT_SW_LEFTOVERS
    819   1.1       pk /*
    820   1.1       pk  * Let's find out how often these occur.  Read these with DDB from time
    821   1.1       pk  * to time.
    822   1.1       pk  */
    823   1.1       pk int	sw_3_leftover = 0;
    824   1.1       pk int	sw_2_leftover = 0;
    825   1.1       pk int	sw_1_leftover = 0;
    826   1.1       pk int	sw_0_leftover = 0;
    827   1.1       pk #endif
    828   1.1       pk 
    829   1.1       pk void
    830  1.15      uwe sw_dma_stop(struct ncr5380_softc *ncr_sc)
    831   1.1       pk {
    832   1.1       pk 	struct sci_req *sr = ncr_sc->sc_current;
    833   1.1       pk 	struct sw_dma_handle *dh = sr->sr_dma_hand;
    834   1.1       pk 	int ntrans = 0, dva;
    835   1.1       pk 	u_int mode;
    836  1.15      uwe 	uint32_t csr;
    837   1.1       pk 
    838   1.1       pk 	if ((ncr_sc->sc_state & NCR_DOINGDMA) == 0) {
    839   1.1       pk #ifdef	DEBUG
    840  1.12      wiz 		printf("sw_dma_stop: DMA not running\n");
    841   1.1       pk #endif
    842   1.1       pk 		return;
    843   1.1       pk 	}
    844   1.1       pk 	ncr_sc->sc_state &= ~NCR_DOINGDMA;
    845   1.1       pk 
    846   1.1       pk 	/* First, halt the DMA engine. */
    847   1.1       pk 	csr = SWREG_READ(ncr_sc, SWREG_CSR);
    848   1.1       pk 	csr &= ~SW_CSR_DMA_EN;
    849   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_CSR, csr);
    850   1.1       pk 
    851   1.1       pk 	/*
    852   1.1       pk 	 * XXX HARDWARE BUG!
    853   1.1       pk 	 * Apparently, some early 4/100 SCSI controllers had a hardware
    854   1.1       pk 	 * bug that caused the controller to do illegal memory access.
    855   1.1       pk 	 * We see this as SW_CSR_DMA_BUS_ERR (makes sense).  To work around
    856   1.1       pk 	 * this, we simply need to clean up after ourselves ... there will
    857   1.1       pk 	 * be as many as 3 bytes left over.  Since we clean up "left-over"
    858   1.1       pk 	 * bytes on every read anyway, we just continue to chug along
    859   1.1       pk 	 * if SW_CSR_DMA_BUS_ERR is asserted.  (This was probably worked
    860   1.1       pk 	 * around in hardware later with the "left-over byte" indicator
    861   1.1       pk 	 * in the VME controller.)
    862   1.1       pk 	 */
    863   1.1       pk #if 0
    864   1.1       pk 	if (csr & (SW_CSR_DMA_CONFLICT | SW_CSR_DMA_BUS_ERR)) {
    865   1.1       pk #else
    866   1.1       pk 	if (csr & (SW_CSR_DMA_CONFLICT)) {
    867   1.1       pk #endif
    868   1.1       pk 		printf("sw: DMA error, csr=0x%x, reset\n", csr);
    869   1.1       pk 		sr->sr_xs->error = XS_DRIVER_STUFFUP;
    870   1.1       pk 		ncr_sc->sc_state |= NCR_ABORTING;
    871   1.1       pk 		sw_reset_adapter(ncr_sc);
    872   1.1       pk 	}
    873   1.1       pk 
    874   1.1       pk 	/* Note that timeout may have set the error flag. */
    875   1.1       pk 	if (ncr_sc->sc_state & NCR_ABORTING)
    876   1.1       pk 		goto out;
    877   1.1       pk 
    878   1.1       pk 	/*
    879   1.1       pk 	 * Now try to figure out how much actually transferred
    880   1.1       pk 	 *
    881   1.1       pk 	 * The "sw" doesn't have a FIFO or a bcr, so we've stored
    882   1.1       pk 	 * the starting PA of the transfer in the DMA handle,
    883   1.1       pk 	 * and subtract it from the ending PA left in the dma_addr
    884   1.1       pk 	 * register.
    885   1.1       pk 	 */
    886   1.1       pk 	dva = SWREG_READ(ncr_sc, SWREG_DMA_ADDR);
    887   1.1       pk 	ntrans = (dva - dh->dh_startingpa);
    888   1.1       pk 
    889   1.1       pk #ifdef	DEBUG
    890   1.1       pk 	if (sw_debug & 2) {
    891   1.1       pk 		printf("sw_dma_stop: ntrans=0x%x\n", ntrans);
    892   1.1       pk 	}
    893   1.1       pk #endif
    894   1.1       pk 
    895   1.1       pk 	if (ntrans > ncr_sc->sc_datalen)
    896   1.1       pk 		panic("sw_dma_stop: excess transfer");
    897   1.1       pk 
    898   1.1       pk 	/* Adjust data pointer */
    899   1.1       pk 	ncr_sc->sc_dataptr += ntrans;
    900   1.1       pk 	ncr_sc->sc_datalen -= ntrans;
    901   1.1       pk 
    902   1.1       pk 	/*
    903   1.1       pk 	 * After a read, we may need to clean-up
    904   1.1       pk 	 * "Left-over bytes"  (yuck!)  The "sw" doesn't
    905   1.1       pk 	 * have a "left-over" indicator, so we have to so
    906   1.1       pk 	 * this no matter what.  Ick.
    907   1.1       pk 	 */
    908   1.1       pk 	if ((dh->dh_flags & SIDH_OUT) == 0) {
    909   1.1       pk 		char *cp = ncr_sc->sc_dataptr;
    910  1.15      uwe 		uint32_t bpr;
    911   1.1       pk 
    912   1.1       pk 		bpr = SWREG_READ(ncr_sc, SWREG_BPR);
    913   1.1       pk 
    914   1.1       pk 		switch (dva & 3) {
    915   1.1       pk 		case 3:
    916   1.1       pk 			cp[0] = (bpr & 0xff000000) >> 24;
    917   1.1       pk 			cp[1] = (bpr & 0x00ff0000) >> 16;
    918   1.1       pk 			cp[2] = (bpr & 0x0000ff00) >> 8;
    919   1.1       pk #ifdef COUNT_SW_LEFTOVERS
    920   1.1       pk 			++sw_3_leftover;
    921   1.1       pk #endif
    922   1.1       pk 			break;
    923   1.1       pk 
    924   1.1       pk 		case 2:
    925   1.1       pk 			cp[0] = (bpr & 0xff000000) >> 24;
    926   1.1       pk 			cp[1] = (bpr & 0x00ff0000) >> 16;
    927   1.1       pk #ifdef COUNT_SW_LEFTOVERS
    928   1.1       pk 			++sw_2_leftover;
    929   1.1       pk #endif
    930   1.1       pk 			break;
    931   1.1       pk 
    932   1.1       pk 		case 1:
    933   1.1       pk 			cp[0] = (bpr & 0xff000000) >> 24;
    934   1.1       pk #ifdef COUNT_SW_LEFTOVERS
    935   1.1       pk 			++sw_1_leftover;
    936   1.1       pk #endif
    937   1.1       pk 			break;
    938   1.1       pk 
    939   1.1       pk #ifdef COUNT_SW_LEFTOVERS
    940   1.1       pk 		default:
    941   1.1       pk 			++sw_0_leftover;
    942   1.1       pk 			break;
    943   1.1       pk #endif
    944   1.1       pk 		}
    945   1.1       pk 	}
    946   1.1       pk 
    947   1.1       pk  out:
    948   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_ADDR, 0);
    949   1.1       pk 	SWREG_WRITE(ncr_sc, SWREG_DMA_CNT, 0);
    950   1.1       pk 
    951   1.1       pk 	/* Put SBIC back in PIO mode. */
    952   1.1       pk 	mode = NCR5380_READ(ncr_sc, sci_mode);
    953   1.1       pk 	mode &= ~(SCI_MODE_DMA | SCI_MODE_DMA_IE);
    954   1.1       pk 	NCR5380_WRITE(ncr_sc, sci_mode, mode);
    955   1.1       pk 	NCR5380_WRITE(ncr_sc, sci_icmd, 0);
    956   1.1       pk 
    957   1.1       pk #ifdef DEBUG
    958   1.1       pk 	if (sw_debug & 2) {
    959   1.1       pk 		printf("sw_dma_stop: ntrans=0x%x\n", ntrans);
    960   1.1       pk 	}
    961   1.1       pk #endif
    962   1.1       pk }
    963