Home | History | Annotate | Line # | Download | only in dev
sbc.c revision 1.6.4.2
      1  1.6.4.2     jtc /*	$NetBSD: sbc.c,v 1.6.4.2 1996/06/20 00:40:19 jtc Exp $	*/
      2      1.1  scottr 
      3      1.1  scottr /*
      4      1.1  scottr  * Copyright (c) 1996 Scott Reynolds
      5      1.1  scottr  * All rights reserved.
      6      1.1  scottr  *
      7      1.1  scottr  * Redistribution and use in source and binary forms, with or without
      8      1.1  scottr  * modification, are permitted provided that the following conditions
      9      1.1  scottr  * are met:
     10      1.1  scottr  * 1. Redistributions of source code must retain the above copyright
     11      1.1  scottr  *    notice, this list of conditions and the following disclaimer.
     12      1.1  scottr  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  scottr  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  scottr  *    documentation and/or other materials provided with the distribution.
     15      1.1  scottr  * 3. The name of the authors may not be used to endorse or promote products
     16      1.1  scottr  *    derived from this software without specific prior written permission.
     17      1.1  scottr  * 4. All advertising materials mentioning features or use of this software
     18  1.6.4.2     jtc  *    must display the following acknowledgements:
     19  1.6.4.2     jtc  *      This product includes software developed by Scott Reynolds.
     20      1.1  scottr  *
     21      1.1  scottr  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
     22      1.1  scottr  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23      1.1  scottr  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24      1.1  scottr  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     25      1.1  scottr  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26      1.1  scottr  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27      1.1  scottr  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28      1.1  scottr  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29      1.1  scottr  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30      1.1  scottr  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31      1.1  scottr  */
     32      1.1  scottr 
     33      1.1  scottr /*
     34      1.1  scottr  * This file contains only the machine-dependent parts of the mac68k
     35      1.1  scottr  * NCR 5380 SCSI driver.  (Autoconfig stuff and PDMA functions.)
     36      1.1  scottr  * The machine-independent parts are in ncr5380sbc.c
     37      1.1  scottr  *
     38      1.1  scottr  * Supported hardware includes:
     39      1.1  scottr  * Macintosh II family 5380-based controller
     40      1.1  scottr  *
     41      1.1  scottr  * Credits, history:
     42      1.1  scottr  *
     43      1.1  scottr  * Scott Reynolds wrote this module, based on work by Allen Briggs
     44  1.6.4.2     jtc  * (mac68k), Gordon W. Ross and David Jones (sun3), and Leo Weppelman
     45  1.6.4.2     jtc  * (atari).  Thanks to Allen for supplying crucial interpretation of the
     46  1.6.4.2     jtc  * NetBSD/mac68k 1.1 'ncrscsi' driver.  Also, Allen, Gordon, and Jason
     47  1.6.4.2     jtc  * Thorpe all helped to refine this code, and were considerable sources
     48  1.6.4.2     jtc  * of moral support.
     49      1.1  scottr  */
     50      1.1  scottr 
     51      1.1  scottr #include <sys/types.h>
     52      1.1  scottr #include <sys/param.h>
     53      1.1  scottr #include <sys/systm.h>
     54      1.1  scottr #include <sys/kernel.h>
     55      1.1  scottr #include <sys/errno.h>
     56      1.1  scottr #include <sys/device.h>
     57      1.1  scottr #include <sys/buf.h>
     58      1.1  scottr #include <sys/proc.h>
     59      1.1  scottr #include <sys/user.h>
     60      1.1  scottr 
     61      1.1  scottr #include <scsi/scsi_all.h>
     62      1.1  scottr #include <scsi/scsi_debug.h>
     63      1.1  scottr #include <scsi/scsiconf.h>
     64      1.1  scottr 
     65      1.1  scottr #include <dev/ic/ncr5380reg.h>
     66      1.1  scottr #include <dev/ic/ncr5380var.h>
     67      1.1  scottr 
     68  1.6.4.1  scottr #include <machine/cpu.h>
     69      1.1  scottr #include <machine/viareg.h>
     70      1.1  scottr 
     71      1.2  scottr #include "sbcreg.h"
     72      1.1  scottr 
     73      1.1  scottr /*
     74      1.1  scottr  * Transfers smaller than this are done using PIO
     75      1.1  scottr  * (on assumption they're not worth PDMA overhead)
     76      1.1  scottr  */
     77      1.1  scottr #define	MIN_DMA_LEN 128
     78      1.1  scottr 
     79      1.1  scottr /*
     80      1.1  scottr  * Transfers larger than 8192 bytes need to be split up
     81      1.1  scottr  * due to the size of the PDMA space.
     82      1.1  scottr  */
     83      1.1  scottr #define	MAX_DMA_LEN 0x2000
     84      1.1  scottr 
     85      1.1  scottr /*
     86  1.6.4.1  scottr  * From Guide to the Macintosh Family Hardware, pp. 137-143
     87      1.1  scottr  * These are offsets from SCSIBase (see pmap_bootstrap.c)
     88      1.1  scottr  */
     89  1.6.4.1  scottr #define	SBC_REG_OFS		0x10000
     90  1.6.4.1  scottr #define	SBC_HSK_OFS		0x06000
     91  1.6.4.1  scottr #define	SBC_DMA_OFS		0x12000
     92  1.6.4.1  scottr 
     93  1.6.4.1  scottr #define	SBC_DMA_OFS_PB500	0x06000
     94  1.6.4.1  scottr 
     95  1.6.4.1  scottr #define	SBC_REG_OFS_IIFX	0x08000		/* Just guessing... */
     96  1.6.4.1  scottr #define	SBC_HSK_OFS_IIFX	0x0e000
     97  1.6.4.1  scottr #define	SBC_DMA_OFS_IIFX	0x0c000
     98      1.1  scottr 
     99      1.3  scottr #ifdef SBC_DEBUG
    100      1.3  scottr # define	SBC_DB_INTR	0x01
    101      1.3  scottr # define	SBC_DB_DMA	0x02
    102      1.3  scottr # define	SBC_DB_REG	0x04
    103      1.3  scottr # define	SBC_DB_BREAK	0x08
    104      1.3  scottr 
    105      1.3  scottr 	int	sbc_debug = 0 /* | SBC_DB_INTR | SBC_DB_DMA */;
    106      1.3  scottr 	int	sbc_link_flags = 0 /* | SDEV_DB2 */;
    107      1.1  scottr 
    108      1.3  scottr # ifndef DDB
    109      1.3  scottr #  define	Debugger()	printf("Debug: sbc.c:%d\n", __LINE__)
    110      1.3  scottr # endif
    111      1.3  scottr # define	SBC_BREAK \
    112      1.3  scottr 		do { if (sbc_debug & SBC_DB_BREAK) Debugger(); } while (0)
    113      1.3  scottr #else
    114      1.3  scottr # define	SBC_BREAK
    115      1.1  scottr #endif
    116      1.1  scottr 
    117      1.1  scottr /*
    118      1.1  scottr  * This structure is used to keep track of PDMA requests.
    119      1.1  scottr  */
    120      1.1  scottr struct sbc_pdma_handle {
    121      1.1  scottr 	int	dh_flags;	/* flags */
    122      1.3  scottr #define	SBC_DH_BUSY	0x01	/* This handle is in use */
    123      1.3  scottr #define	SBC_DH_OUT	0x02	/* PDMA data out (write) */
    124  1.6.4.1  scottr #define	SBC_DH_DONE	0x04	/* PDMA transfer is complete */
    125      1.1  scottr 	u_char	*dh_addr;	/* data buffer */
    126      1.1  scottr 	int	dh_len;		/* length of data buffer */
    127      1.1  scottr };
    128      1.1  scottr 
    129      1.1  scottr /*
    130      1.1  scottr  * The first structure member has to be the ncr5380_softc
    131      1.1  scottr  * so we can just cast to go back and forth between them.
    132      1.1  scottr  */
    133      1.1  scottr struct sbc_softc {
    134      1.1  scottr 	struct ncr5380_softc ncr_sc;
    135      1.1  scottr 	volatile struct sbc_regs *sc_regs;
    136  1.6.4.1  scottr 	volatile vm_offset_t	sc_drq_addr;
    137  1.6.4.1  scottr 	volatile vm_offset_t	sc_nodrq_addr;
    138  1.6.4.1  scottr 	volatile u_int8_t	*sc_ienable;
    139  1.6.4.1  scottr 	volatile u_int8_t	*sc_iflag;
    140  1.6.4.1  scottr 	int			sc_options;	/* options for this instance. */
    141      1.1  scottr 	struct sbc_pdma_handle sc_pdma[SCI_OPENINGS];
    142      1.1  scottr };
    143      1.1  scottr 
    144      1.1  scottr /*
    145      1.1  scottr  * Options.  By default, SCSI interrupts and reselect are disabled.
    146      1.1  scottr  * You may enable either of these features with the `flags' directive
    147      1.1  scottr  * in your kernel's configuration file.
    148      1.1  scottr  *
    149      1.1  scottr  * Alternatively, you can patch your kernel with DDB or some other
    150      1.1  scottr  * mechanism.  The sc_options member of the softc is OR'd with
    151      1.1  scottr  * the value in sbc_options.
    152  1.6.4.2     jtc  *
    153  1.6.4.2     jtc  * The options code is based on the sparc 'si' driver's version of
    154  1.6.4.2     jtc  * the same.
    155      1.1  scottr  */
    156      1.6  scottr #define	SBC_PDMA	0x01	/* Use PDMA for polled transfers */
    157      1.6  scottr #define	SBC_INTR	0x02	/* Allow SCSI IRQ/DRQ interrupts */
    158      1.6  scottr #define	SBC_RESELECT	0x04	/* Allow disconnect/reselect */
    159      1.6  scottr #define	SBC_OPTIONS_MASK	(SBC_RESELECT|SBC_INTR|SBC_PDMA)
    160      1.6  scottr #define	SBC_OPTIONS_BITS	"\10\3RESELECT\2INTR\1PDMA"
    161      1.6  scottr int sbc_options = SBC_PDMA;
    162      1.1  scottr 
    163      1.4  scottr static	int	sbc_match __P((struct device *, void *, void *));
    164      1.4  scottr static	void	sbc_attach __P((struct device *, struct device *, void *));
    165      1.6  scottr static	int	sbc_print __P((void *, char *));
    166      1.1  scottr static	void	sbc_minphys __P((struct buf *bp));
    167      1.1  scottr 
    168      1.1  scottr static	int	sbc_wait_busy __P((struct ncr5380_softc *));
    169      1.1  scottr static	int	sbc_ready __P((struct ncr5380_softc *));
    170      1.1  scottr static	int	sbc_wait_dreq __P((struct ncr5380_softc *));
    171      1.1  scottr static	int	sbc_pdma_in __P((struct ncr5380_softc *, int, int, u_char *));
    172      1.1  scottr static	int	sbc_pdma_out __P((struct ncr5380_softc *, int, int, u_char *));
    173      1.3  scottr #ifdef SBC_DEBUG
    174      1.3  scottr static	void	decode_5380_intr __P((struct ncr5380_softc *));
    175      1.3  scottr #endif
    176      1.1  scottr 
    177      1.1  scottr 	void	sbc_intr_enable __P((struct ncr5380_softc *));
    178      1.1  scottr 	void	sbc_intr_disable __P((struct ncr5380_softc *));
    179      1.1  scottr 	void	sbc_irq_intr __P((void *));
    180      1.1  scottr 	void	sbc_drq_intr __P((void *));
    181      1.1  scottr 	void	sbc_dma_alloc __P((struct ncr5380_softc *));
    182      1.1  scottr 	void	sbc_dma_free __P((struct ncr5380_softc *));
    183      1.1  scottr 	void	sbc_dma_poll __P((struct ncr5380_softc *));
    184      1.1  scottr 	void	sbc_dma_setup __P((struct ncr5380_softc *));
    185      1.1  scottr 	void	sbc_dma_start __P((struct ncr5380_softc *));
    186      1.1  scottr 	void	sbc_dma_eop __P((struct ncr5380_softc *));
    187      1.1  scottr 	void	sbc_dma_stop __P((struct ncr5380_softc *));
    188      1.1  scottr 
    189      1.1  scottr static struct scsi_adapter	sbc_ops = {
    190      1.1  scottr 	ncr5380_scsi_cmd,		/* scsi_cmd()		*/
    191      1.1  scottr 	sbc_minphys,			/* scsi_minphys()	*/
    192      1.1  scottr 	NULL,				/* open_target_lu()	*/
    193      1.1  scottr 	NULL,				/* close_target_lu()	*/
    194      1.1  scottr };
    195      1.1  scottr 
    196      1.1  scottr /* This is copied from julian's bt driver */
    197      1.1  scottr /* "so we have a default dev struct for our link struct." */
    198      1.1  scottr static struct scsi_device sbc_dev = {
    199      1.1  scottr 	NULL,		/* Use default error handler.	    */
    200      1.1  scottr 	NULL,		/* Use default start handler.		*/
    201      1.1  scottr 	NULL,		/* Use default async handler.	    */
    202      1.1  scottr 	NULL,		/* Use default "done" routine.	    */
    203      1.1  scottr };
    204      1.1  scottr 
    205      1.1  scottr struct cfattach sbc_ca = {
    206      1.1  scottr 	sizeof(struct sbc_softc), sbc_match, sbc_attach
    207      1.1  scottr };
    208      1.1  scottr 
    209      1.1  scottr struct cfdriver sbc_cd = {
    210      1.1  scottr 	NULL, "sbc", DV_DULL
    211      1.1  scottr };
    212      1.1  scottr 
    213      1.1  scottr 
    214      1.1  scottr static int
    215      1.1  scottr sbc_match(parent, match, args)
    216      1.6  scottr 	struct device *parent;
    217      1.6  scottr 	void *match, *args;
    218      1.1  scottr {
    219      1.1  scottr 	if (!mac68k_machine.scsi80)
    220      1.1  scottr 		return 0;
    221      1.1  scottr 	return 1;
    222      1.1  scottr }
    223      1.1  scottr 
    224      1.1  scottr static void
    225      1.1  scottr sbc_attach(parent, self, args)
    226      1.6  scottr 	struct device *parent, *self;
    227      1.6  scottr 	void *args;
    228      1.1  scottr {
    229      1.1  scottr 	struct sbc_softc *sc = (struct sbc_softc *) self;
    230      1.1  scottr 	struct ncr5380_softc *ncr_sc = (struct ncr5380_softc *) sc;
    231      1.1  scottr 	extern vm_offset_t SCSIBase;
    232      1.1  scottr 
    233      1.1  scottr 	/* Pull in the options flags. */
    234      1.6  scottr 	sc->sc_options = ((ncr_sc->sc_dev.dv_cfdata->cf_flags | sbc_options)
    235      1.6  scottr 	    & SBC_OPTIONS_MASK);
    236      1.1  scottr 
    237      1.1  scottr 	/*
    238  1.6.4.1  scottr 	 * Set up offsets to 5380 registers and GLUE I/O space, and turn
    239  1.6.4.1  scottr 	 * off options we know we can't support on certain models.
    240      1.1  scottr 	 */
    241  1.6.4.1  scottr 	switch (current_mac_model->machineid) {
    242  1.6.4.1  scottr 	case MACH_MACIIFX:	/* Note: the IIfx isn't (yet) supported. */
    243  1.6.4.1  scottr 		sc->sc_regs = (struct sbc_regs *)(SCSIBase + SBC_REG_OFS_IIFX);
    244  1.6.4.1  scottr 		sc->sc_drq_addr = (vm_offset_t)(SCSIBase + SBC_HSK_OFS_IIFX);
    245  1.6.4.1  scottr 		sc->sc_nodrq_addr = (vm_offset_t)(SCSIBase + SBC_DMA_OFS_IIFX);
    246  1.6.4.1  scottr 		sc->sc_options &= ~(SBC_INTR | SBC_RESELECT);
    247  1.6.4.1  scottr 		break;
    248  1.6.4.1  scottr 	case MACH_MACPB500:
    249  1.6.4.1  scottr 		sc->sc_regs = (struct sbc_regs *)(SCSIBase + SBC_REG_OFS);
    250  1.6.4.1  scottr 		sc->sc_drq_addr = (vm_offset_t)(SCSIBase + SBC_HSK_OFS); /*??*/
    251  1.6.4.1  scottr 		sc->sc_nodrq_addr = (vm_offset_t)(SCSIBase + SBC_DMA_OFS_PB500);
    252  1.6.4.1  scottr 		sc->sc_options &= ~(SBC_INTR | SBC_RESELECT);
    253  1.6.4.1  scottr 		break;
    254  1.6.4.1  scottr 	default:
    255  1.6.4.1  scottr 		sc->sc_regs = (struct sbc_regs *)(SCSIBase + SBC_REG_OFS);
    256  1.6.4.1  scottr 		sc->sc_drq_addr = (vm_offset_t)(SCSIBase + SBC_HSK_OFS);
    257  1.6.4.1  scottr 		sc->sc_nodrq_addr = (vm_offset_t)(SCSIBase + SBC_DMA_OFS);
    258  1.6.4.1  scottr 		break;
    259  1.6.4.1  scottr 	}
    260      1.1  scottr 
    261      1.1  scottr 	/*
    262      1.1  scottr 	 * Fill in the prototype scsi_link.
    263      1.1  scottr 	 */
    264      1.1  scottr 	ncr_sc->sc_link.adapter_softc = sc;
    265      1.1  scottr 	ncr_sc->sc_link.adapter_target = 7;
    266      1.1  scottr 	ncr_sc->sc_link.adapter = &sbc_ops;
    267      1.1  scottr 	ncr_sc->sc_link.device = &sbc_dev;
    268      1.1  scottr 
    269      1.1  scottr 	/*
    270      1.1  scottr 	 * Initialize fields used by the MI code
    271      1.1  scottr 	 */
    272      1.1  scottr 	ncr_sc->sci_r0 = &sc->sc_regs->sci_pr0.sci_reg;
    273      1.1  scottr 	ncr_sc->sci_r1 = &sc->sc_regs->sci_pr1.sci_reg;
    274      1.1  scottr 	ncr_sc->sci_r2 = &sc->sc_regs->sci_pr2.sci_reg;
    275      1.1  scottr 	ncr_sc->sci_r3 = &sc->sc_regs->sci_pr3.sci_reg;
    276      1.1  scottr 	ncr_sc->sci_r4 = &sc->sc_regs->sci_pr4.sci_reg;
    277      1.1  scottr 	ncr_sc->sci_r5 = &sc->sc_regs->sci_pr5.sci_reg;
    278      1.1  scottr 	ncr_sc->sci_r6 = &sc->sc_regs->sci_pr6.sci_reg;
    279      1.1  scottr 	ncr_sc->sci_r7 = &sc->sc_regs->sci_pr7.sci_reg;
    280      1.1  scottr 
    281      1.1  scottr 	/*
    282      1.1  scottr 	 * MD function pointers used by the MI code.
    283      1.1  scottr 	 */
    284  1.6.4.1  scottr 	if (sc->sc_options & SBC_PDMA) {
    285  1.6.4.1  scottr 		ncr_sc->sc_pio_out   = sbc_pdma_out;
    286  1.6.4.1  scottr 		ncr_sc->sc_pio_in    = sbc_pdma_in;
    287  1.6.4.1  scottr 	} else {
    288  1.6.4.1  scottr 		ncr_sc->sc_pio_out   = ncr5380_pio_out;
    289  1.6.4.1  scottr 		ncr_sc->sc_pio_in    = ncr5380_pio_in;
    290  1.6.4.1  scottr 	}
    291      1.1  scottr 	ncr_sc->sc_dma_alloc = NULL;
    292      1.1  scottr 	ncr_sc->sc_dma_free  = NULL;
    293      1.1  scottr 	ncr_sc->sc_dma_poll  = NULL;
    294      1.1  scottr 	ncr_sc->sc_intr_on   = NULL;
    295      1.1  scottr 	ncr_sc->sc_intr_off  = NULL;
    296      1.1  scottr 	ncr_sc->sc_dma_setup = NULL;
    297      1.1  scottr 	ncr_sc->sc_dma_start = NULL;
    298      1.1  scottr 	ncr_sc->sc_dma_eop   = NULL;
    299      1.1  scottr 	ncr_sc->sc_dma_stop  = NULL;
    300      1.1  scottr 	ncr_sc->sc_flags = 0;
    301      1.1  scottr 	ncr_sc->sc_min_dma_len = MIN_DMA_LEN;
    302      1.1  scottr 
    303  1.6.4.1  scottr 	if (sc->sc_options & SBC_INTR) {
    304      1.1  scottr 		if (sc->sc_options & SBC_RESELECT)
    305      1.1  scottr 			ncr_sc->sc_flags |= NCR5380_PERMIT_RESELECT;
    306      1.1  scottr 		ncr_sc->sc_dma_alloc = sbc_dma_alloc;
    307      1.1  scottr 		ncr_sc->sc_dma_free  = sbc_dma_free;
    308      1.1  scottr 		ncr_sc->sc_dma_poll  = sbc_dma_poll;
    309      1.1  scottr 		ncr_sc->sc_dma_setup = sbc_dma_setup;
    310      1.1  scottr 		ncr_sc->sc_dma_start = sbc_dma_start;
    311      1.1  scottr 		ncr_sc->sc_dma_eop   = sbc_dma_eop;
    312      1.1  scottr 		ncr_sc->sc_dma_stop  = sbc_dma_stop;
    313      1.1  scottr 		mac68k_register_scsi_drq(sbc_drq_intr, ncr_sc);
    314      1.1  scottr 		mac68k_register_scsi_irq(sbc_irq_intr, ncr_sc);
    315  1.6.4.1  scottr 	} else
    316  1.6.4.1  scottr 		ncr_sc->sc_flags |= NCR5380_FORCE_POLLING;
    317      1.1  scottr 
    318      1.1  scottr 	/*
    319      1.1  scottr 	 * Initialize fields used only here in the MD code.
    320      1.1  scottr 	 */
    321      1.1  scottr 	if (VIA2 == VIA2OFF) {
    322      1.1  scottr 		sc->sc_ienable = Via1Base + VIA2 * 0x2000 + vIER;
    323      1.1  scottr 		sc->sc_iflag   = Via1Base + VIA2 * 0x2000 + vIFR;
    324      1.1  scottr 	} else {
    325      1.1  scottr 		sc->sc_ienable = Via1Base + VIA2 * 0x2000 + rIER;
    326      1.1  scottr 		sc->sc_iflag   = Via1Base + VIA2 * 0x2000 + rIFR;
    327      1.1  scottr 	}
    328      1.1  scottr 
    329      1.1  scottr 	if (sc->sc_options)
    330      1.1  scottr 		printf(": options=%b", sc->sc_options, SBC_OPTIONS_BITS);
    331      1.1  scottr 	printf("\n");
    332      1.1  scottr 
    333      1.1  scottr 	/* Now enable SCSI interrupts through VIA2, if appropriate */
    334      1.1  scottr 	if (sc->sc_options & SBC_INTR)
    335      1.1  scottr 		sbc_intr_enable(ncr_sc);
    336      1.1  scottr 
    337      1.6  scottr #ifdef SBC_DEBUG
    338      1.1  scottr 	if (sbc_debug)
    339      1.4  scottr 		printf("%s: softc=%p regs=%p\n", ncr_sc->sc_dev.dv_xname,
    340      1.1  scottr 		    sc, sc->sc_regs);
    341      1.1  scottr 	ncr_sc->sc_link.flags |= sbc_link_flags;
    342      1.1  scottr #endif
    343      1.1  scottr 
    344      1.1  scottr 	/*
    345      1.1  scottr 	 *  Initialize the SCSI controller itself.
    346      1.1  scottr 	 */
    347      1.1  scottr 	ncr5380_init(ncr_sc);
    348      1.1  scottr 	ncr5380_reset_scsibus(ncr_sc);
    349      1.1  scottr 	config_found(self, &(ncr_sc->sc_link), sbc_print);
    350      1.1  scottr }
    351      1.1  scottr 
    352      1.6  scottr static int
    353      1.6  scottr sbc_print(aux, name)
    354      1.6  scottr 	void *aux;
    355      1.6  scottr 	char *name;
    356      1.6  scottr {
    357      1.6  scottr 	if (name != NULL)
    358      1.6  scottr 		printf("%s: scsibus ", name);
    359      1.6  scottr 	return UNCONF;
    360      1.6  scottr }
    361      1.1  scottr 
    362      1.1  scottr static void
    363      1.1  scottr sbc_minphys(struct buf *bp)
    364      1.1  scottr {
    365      1.1  scottr 	if (bp->b_bcount > MAX_DMA_LEN)
    366      1.1  scottr 		bp->b_bcount = MAX_DMA_LEN;
    367      1.1  scottr 	return (minphys(bp));
    368      1.1  scottr }
    369      1.1  scottr 
    370      1.1  scottr 
    371      1.1  scottr /***
    372      1.1  scottr  * General support for Mac-specific SCSI logic.
    373      1.1  scottr  ***/
    374      1.1  scottr 
    375      1.1  scottr /* These are used in the following inline functions. */
    376      1.1  scottr int sbc_wait_busy_timo = 1000 * 5000;	/* X2 = 10 S. */
    377      1.1  scottr int sbc_ready_timo = 1000 * 5000;	/* X2 = 10 S. */
    378      1.1  scottr int sbc_wait_dreq_timo = 1000 * 5000;	/* X2 = 10 S. */
    379      1.1  scottr 
    380      1.1  scottr /* Return zero on success. */
    381      1.1  scottr static __inline__ int
    382      1.1  scottr sbc_wait_busy(sc)
    383      1.1  scottr 	struct ncr5380_softc *sc;
    384      1.1  scottr {
    385      1.1  scottr 	register int timo = sbc_wait_busy_timo;
    386      1.1  scottr 	for (;;) {
    387      1.1  scottr 		if (SCI_BUSY(sc)) {
    388      1.1  scottr 			timo = 0;	/* return 0 */
    389      1.1  scottr 			break;
    390      1.1  scottr 		}
    391      1.1  scottr 		if (--timo < 0)
    392      1.1  scottr 			break;	/* return -1 */
    393      1.1  scottr 		delay(2);
    394      1.1  scottr 	}
    395      1.1  scottr 	return (timo);
    396      1.1  scottr }
    397      1.1  scottr 
    398      1.1  scottr static __inline__ int
    399      1.1  scottr sbc_ready(sc)
    400      1.1  scottr 	struct ncr5380_softc *sc;
    401      1.1  scottr {
    402      1.1  scottr 	register int timo = sbc_ready_timo;
    403      1.1  scottr 
    404      1.1  scottr 	for (;;) {
    405      1.1  scottr 		if ((*sc->sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH))
    406      1.1  scottr 		    == (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
    407      1.1  scottr 			timo = 0;
    408      1.1  scottr 			break;
    409      1.1  scottr 		}
    410      1.1  scottr 		if (((*sc->sci_csr & SCI_CSR_PHASE_MATCH) == 0)
    411      1.1  scottr 		    || (SCI_BUSY(sc) == 0)) {
    412      1.1  scottr 			timo = -1;
    413      1.1  scottr 			break;
    414      1.1  scottr 		}
    415      1.1  scottr 		if (--timo < 0)
    416      1.1  scottr 			break;	/* return -1 */
    417      1.1  scottr 		delay(2);
    418      1.1  scottr 	}
    419      1.1  scottr 	return (timo);
    420      1.1  scottr }
    421      1.1  scottr 
    422      1.1  scottr static __inline__ int
    423      1.1  scottr sbc_wait_dreq(sc)
    424      1.1  scottr 	struct ncr5380_softc *sc;
    425      1.1  scottr {
    426      1.1  scottr 	register int timo = sbc_wait_dreq_timo;
    427      1.1  scottr 
    428      1.1  scottr 	for (;;) {
    429      1.1  scottr 		if ((*sc->sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH))
    430      1.1  scottr 		    == (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
    431      1.1  scottr 			timo = 0;
    432      1.1  scottr 			break;
    433      1.1  scottr 		}
    434      1.1  scottr 		if (--timo < 0)
    435      1.1  scottr 			break;	/* return -1 */
    436      1.1  scottr 		delay(2);
    437      1.1  scottr 	}
    438      1.1  scottr 	return (timo);
    439      1.1  scottr }
    440      1.1  scottr 
    441      1.1  scottr 
    442      1.1  scottr /***
    443      1.1  scottr  * Macintosh SCSI interrupt support routines.
    444      1.1  scottr  ***/
    445      1.1  scottr 
    446      1.1  scottr void
    447      1.1  scottr sbc_intr_enable(ncr_sc)
    448      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    449      1.1  scottr {
    450      1.1  scottr 	register struct sbc_softc *sc = (struct sbc_softc *) ncr_sc;
    451      1.1  scottr 	int s;
    452      1.1  scottr 
    453      1.1  scottr 	s = splhigh();
    454      1.1  scottr 	*sc->sc_ienable = 0x80 | (V2IF_SCSIIRQ | V2IF_SCSIDRQ);
    455      1.1  scottr 	splx(s);
    456      1.1  scottr }
    457      1.1  scottr 
    458      1.1  scottr void
    459      1.1  scottr sbc_intr_disable(ncr_sc)
    460      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    461      1.1  scottr {
    462      1.1  scottr 	register struct sbc_softc *sc = (struct sbc_softc *) ncr_sc;
    463      1.1  scottr 	int s;
    464      1.1  scottr 
    465      1.1  scottr 	s = splhigh();
    466      1.1  scottr 	*sc->sc_ienable = (V2IF_SCSIIRQ | V2IF_SCSIDRQ);
    467      1.1  scottr 	splx(s);
    468      1.1  scottr }
    469      1.1  scottr 
    470      1.1  scottr void
    471      1.1  scottr sbc_irq_intr(p)
    472      1.1  scottr 	void *p;
    473      1.1  scottr {
    474      1.1  scottr 	register struct ncr5380_softc *ncr_sc = p;
    475      1.1  scottr 	register int claimed = 0;
    476      1.1  scottr 
    477      1.1  scottr 	/* How we ever arrive here without IRQ set is a mystery... */
    478      1.1  scottr 	if (*ncr_sc->sci_csr & SCI_CSR_INT) {
    479      1.3  scottr #ifdef SBC_DEBUG
    480      1.3  scottr 		if (sbc_debug & SBC_DB_INTR)
    481      1.3  scottr 			decode_5380_intr(ncr_sc);
    482      1.3  scottr #endif
    483      1.1  scottr 		claimed = ncr5380_intr(ncr_sc);
    484      1.1  scottr 		if (!claimed) {
    485      1.1  scottr 			if (((*ncr_sc->sci_csr & ~SCI_CSR_PHASE_MATCH) == SCI_CSR_INT)
    486      1.3  scottr 			    && ((*ncr_sc->sci_bus_csr & ~SCI_BUS_RST) == 0))
    487      1.1  scottr 				SCI_CLR_INTR(ncr_sc);	/* RST interrupt */
    488      1.1  scottr #ifdef SBC_DEBUG
    489      1.1  scottr 			else {
    490      1.1  scottr 				printf("%s: spurious intr\n",
    491      1.1  scottr 				    ncr_sc->sc_dev.dv_xname);
    492      1.3  scottr 				SBC_BREAK;
    493      1.1  scottr 			}
    494      1.1  scottr #endif
    495      1.1  scottr 		}
    496      1.1  scottr 	}
    497      1.1  scottr }
    498      1.1  scottr 
    499      1.3  scottr #ifdef SBC_DEBUG
    500      1.3  scottr void
    501      1.3  scottr decode_5380_intr(ncr_sc)
    502      1.3  scottr 	struct ncr5380_softc *ncr_sc;
    503      1.3  scottr {
    504      1.3  scottr 	register u_char csr = *ncr_sc->sci_csr;
    505      1.3  scottr 	register u_char bus_csr = *ncr_sc->sci_bus_csr;
    506      1.3  scottr 
    507      1.3  scottr 	if (((csr & ~(SCI_CSR_PHASE_MATCH | SCI_CSR_ATN)) == SCI_CSR_INT) &&
    508      1.3  scottr 	    ((bus_csr & ~(SCI_BUS_MSG | SCI_BUS_CD | SCI_BUS_IO | SCI_BUS_DBP)) == SCI_BUS_SEL)) {
    509      1.3  scottr 		if (csr & SCI_BUS_IO)
    510      1.3  scottr 			printf("%s: reselect\n", ncr_sc->sc_dev.dv_xname);
    511      1.3  scottr 		else
    512      1.3  scottr 			printf("%s: select\n", ncr_sc->sc_dev.dv_xname);
    513      1.3  scottr 	} else if (((csr & ~SCI_CSR_ACK) == (SCI_CSR_DONE | SCI_CSR_INT)) &&
    514      1.3  scottr 	    ((bus_csr & (SCI_BUS_RST | SCI_BUS_BSY | SCI_BUS_SEL)) == SCI_BUS_BSY))
    515      1.3  scottr 		printf("%s: dma eop\n", ncr_sc->sc_dev.dv_xname);
    516      1.3  scottr 	else if (((csr & ~SCI_CSR_PHASE_MATCH) == SCI_CSR_INT) &&
    517      1.3  scottr 	    ((bus_csr & ~SCI_BUS_RST) == 0))
    518      1.3  scottr 		printf("%s: bus reset\n", ncr_sc->sc_dev.dv_xname);
    519      1.3  scottr 	else if (((csr & ~(SCI_CSR_DREQ | SCI_CSR_ATN | SCI_CSR_ACK)) == (SCI_CSR_PERR | SCI_CSR_INT | SCI_CSR_PHASE_MATCH)) &&
    520      1.3  scottr 	    ((bus_csr & (SCI_BUS_RST | SCI_BUS_BSY | SCI_BUS_SEL)) == SCI_BUS_BSY))
    521      1.3  scottr 		printf("%s: parity error\n", ncr_sc->sc_dev.dv_xname);
    522      1.3  scottr 	else if (((csr & ~SCI_CSR_ATN) == SCI_CSR_INT) &&
    523      1.3  scottr 	    ((bus_csr & (SCI_BUS_RST | SCI_BUS_BSY | SCI_BUS_REQ | SCI_BUS_SEL)) == (SCI_BUS_BSY | SCI_BUS_REQ)))
    524      1.3  scottr 		printf("%s: phase mismatch\n", ncr_sc->sc_dev.dv_xname);
    525      1.3  scottr 	else if (((csr & ~SCI_CSR_PHASE_MATCH) == (SCI_CSR_INT | SCI_CSR_DISC)) &&
    526      1.3  scottr 	    (bus_csr == 0))
    527      1.3  scottr 		printf("%s: disconnect\n", ncr_sc->sc_dev.dv_xname);
    528      1.3  scottr 	else
    529      1.3  scottr 		printf("%s: unknown intr: csr=%x, bus_csr=%x\n",
    530      1.3  scottr 		    ncr_sc->sc_dev.dv_xname, csr, bus_csr);
    531      1.3  scottr }
    532      1.3  scottr #endif
    533      1.1  scottr 
    534  1.6.4.1  scottr 
    535      1.1  scottr /***
    536      1.1  scottr  * The following code implements polled PDMA.
    537      1.1  scottr  ***/
    538      1.1  scottr 
    539      1.1  scottr static	int
    540      1.1  scottr sbc_pdma_out(ncr_sc, phase, count, data)
    541      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    542      1.1  scottr 	int phase;
    543      1.1  scottr 	int count;
    544      1.1  scottr 	u_char *data;
    545      1.1  scottr {
    546      1.1  scottr 	struct sbc_softc *sc = (struct sbc_softc *)ncr_sc;
    547  1.6.4.1  scottr 	register volatile long *long_data = (long *) sc->sc_drq_addr;
    548  1.6.4.1  scottr 	register volatile u_char *byte_data = (u_char *) sc->sc_nodrq_addr;
    549      1.1  scottr 	register int len = count;
    550      1.1  scottr 
    551      1.6  scottr 	if (count < ncr_sc->sc_min_dma_len || (sc->sc_options & SBC_PDMA) == 0)
    552      1.1  scottr 		return ncr5380_pio_out(ncr_sc, phase, count, data);
    553      1.1  scottr 
    554      1.1  scottr 	if (sbc_wait_busy(ncr_sc) == 0) {
    555      1.1  scottr 		*ncr_sc->sci_mode |= SCI_MODE_DMA;
    556      1.1  scottr 		*ncr_sc->sci_icmd |= SCI_ICMD_DATA;
    557      1.1  scottr 		*ncr_sc->sci_dma_send = 0;
    558      1.1  scottr 
    559      1.1  scottr #define W1	*byte_data = *data++
    560      1.1  scottr #define W4	*long_data = *((long*)data)++
    561      1.1  scottr 		while (len >= 64) {
    562      1.1  scottr 			if (sbc_ready(ncr_sc))
    563      1.1  scottr 				goto timeout;
    564      1.1  scottr 			W1;
    565      1.1  scottr 			if (sbc_ready(ncr_sc))
    566      1.1  scottr 				goto timeout;
    567      1.1  scottr 			W1;
    568      1.1  scottr 			if (sbc_ready(ncr_sc))
    569      1.1  scottr 				goto timeout;
    570      1.1  scottr 			W1;
    571      1.1  scottr 			if (sbc_ready(ncr_sc))
    572      1.1  scottr 				goto timeout;
    573      1.1  scottr 			W1;
    574      1.1  scottr 			if (sbc_ready(ncr_sc))
    575      1.1  scottr 				goto timeout;
    576      1.1  scottr 			W4; W4; W4; W4;
    577      1.1  scottr 			W4; W4; W4; W4;
    578      1.1  scottr 			W4; W4; W4; W4;
    579      1.1  scottr 			W4; W4; W4;
    580      1.1  scottr 			len -= 64;
    581      1.1  scottr 		}
    582      1.1  scottr 		while (len) {
    583      1.1  scottr 			if (sbc_ready(ncr_sc))
    584      1.1  scottr 				goto timeout;
    585      1.1  scottr 			W1;
    586      1.1  scottr 			len--;
    587      1.1  scottr 		}
    588      1.1  scottr #undef  W1
    589      1.1  scottr #undef  W4
    590      1.1  scottr 		if (sbc_wait_dreq(ncr_sc))
    591      1.1  scottr 			printf("%s: timeout waiting for DREQ.\n",
    592      1.1  scottr 			    ncr_sc->sc_dev.dv_xname);
    593      1.1  scottr 
    594      1.1  scottr 		*byte_data = 0;
    595      1.1  scottr 
    596      1.1  scottr 		SCI_CLR_INTR(ncr_sc);
    597      1.1  scottr 		*ncr_sc->sci_mode &= ~SCI_MODE_DMA;
    598      1.1  scottr 		*ncr_sc->sci_icmd = 0;
    599      1.1  scottr 	}
    600      1.1  scottr 	return count - len;
    601      1.1  scottr 
    602      1.1  scottr timeout:
    603      1.1  scottr 	printf("%s: pdma_out: timeout len=%d count=%d\n",
    604      1.1  scottr 	    ncr_sc->sc_dev.dv_xname, len, count);
    605      1.1  scottr 	if ((*ncr_sc->sci_csr & SCI_CSR_PHASE_MATCH) == 0) {
    606      1.1  scottr 		*ncr_sc->sci_icmd &= ~SCI_ICMD_DATA;
    607      1.1  scottr 		--len;
    608      1.1  scottr 	}
    609      1.1  scottr 
    610      1.1  scottr 	SCI_CLR_INTR(ncr_sc);
    611      1.1  scottr 	*ncr_sc->sci_mode &= ~SCI_MODE_DMA;
    612      1.1  scottr 	*ncr_sc->sci_icmd = 0;
    613      1.1  scottr 	return count - len;
    614      1.1  scottr }
    615      1.1  scottr 
    616      1.1  scottr static	int
    617      1.1  scottr sbc_pdma_in(ncr_sc, phase, count, data)
    618      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    619      1.1  scottr 	int phase;
    620      1.1  scottr 	int count;
    621      1.1  scottr 	u_char *data;
    622      1.1  scottr {
    623      1.1  scottr 	struct sbc_softc *sc = (struct sbc_softc *)ncr_sc;
    624  1.6.4.1  scottr 	register volatile long *long_data = (long *) sc->sc_drq_addr;
    625  1.6.4.1  scottr 	register volatile u_char *byte_data = (u_char *) sc->sc_nodrq_addr;
    626      1.1  scottr 	register int len = count;
    627      1.1  scottr 
    628      1.6  scottr 	if (count < ncr_sc->sc_min_dma_len || (sc->sc_options & SBC_PDMA) == 0)
    629      1.1  scottr 		return ncr5380_pio_in(ncr_sc, phase, count, data);
    630      1.1  scottr 
    631      1.1  scottr 	if (sbc_wait_busy(ncr_sc) == 0) {
    632      1.1  scottr 		*ncr_sc->sci_mode |= SCI_MODE_DMA;
    633      1.1  scottr 		*ncr_sc->sci_icmd |= SCI_ICMD_DATA;
    634      1.1  scottr 		*ncr_sc->sci_irecv = 0;
    635      1.1  scottr 
    636      1.1  scottr #define R4	*((long *)data)++ = *long_data
    637      1.1  scottr #define R1	*data++ = *byte_data
    638      1.1  scottr 		while (len >= 1024) {
    639      1.1  scottr 			if (sbc_ready(ncr_sc))
    640      1.1  scottr 				goto timeout;
    641      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    642      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    643      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    644      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 128 */
    645      1.1  scottr 			if (sbc_ready(ncr_sc))
    646      1.1  scottr 				goto timeout;
    647      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    648      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    649      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    650      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 256 */
    651      1.1  scottr 			if (sbc_ready(ncr_sc))
    652      1.1  scottr 				goto timeout;
    653      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    654      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    655      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    656      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 384 */
    657      1.1  scottr 			if (sbc_ready(ncr_sc))
    658      1.1  scottr 				goto timeout;
    659      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    660      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    661      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    662      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 512 */
    663      1.1  scottr 			if (sbc_ready(ncr_sc))
    664      1.1  scottr 				goto timeout;
    665      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    666      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    667      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    668      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 640 */
    669      1.1  scottr 			if (sbc_ready(ncr_sc))
    670      1.1  scottr 				goto timeout;
    671      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    672      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    673      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    674      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 768 */
    675      1.1  scottr 			if (sbc_ready(ncr_sc))
    676      1.1  scottr 				goto timeout;
    677      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    678      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    679      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    680      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 896 */
    681      1.1  scottr 			if (sbc_ready(ncr_sc))
    682      1.1  scottr 				goto timeout;
    683      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    684      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    685      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    686      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 1024 */
    687      1.1  scottr 			len -= 1024;
    688      1.1  scottr 		}
    689      1.1  scottr 		while (len >= 128) {
    690      1.1  scottr 			if (sbc_ready(ncr_sc))
    691      1.1  scottr 				goto timeout;
    692      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    693      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    694      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;
    695      1.1  scottr 			R4; R4; R4; R4; R4; R4; R4; R4;		/* 128 */
    696      1.1  scottr 			len -= 128;
    697      1.1  scottr 		}
    698      1.1  scottr 		while (len) {
    699      1.1  scottr 			if (sbc_ready(ncr_sc))
    700      1.1  scottr 				goto timeout;
    701      1.1  scottr 			R1;
    702      1.1  scottr 			len--;
    703      1.1  scottr 		}
    704      1.1  scottr #undef R4
    705      1.1  scottr #undef R1
    706      1.1  scottr 		SCI_CLR_INTR(ncr_sc);
    707      1.1  scottr 		*ncr_sc->sci_mode &= ~SCI_MODE_DMA;
    708      1.1  scottr 		*ncr_sc->sci_icmd = 0;
    709      1.1  scottr 	}
    710      1.1  scottr 	return count - len;
    711      1.1  scottr 
    712      1.1  scottr timeout:
    713      1.1  scottr 	printf("%s: pdma_in: timeout len=%d count=%d\n",
    714      1.1  scottr 	    ncr_sc->sc_dev.dv_xname, len, count);
    715      1.1  scottr 
    716      1.1  scottr 	SCI_CLR_INTR(ncr_sc);
    717      1.1  scottr 	*ncr_sc->sci_mode &= ~SCI_MODE_DMA;
    718      1.1  scottr 	*ncr_sc->sci_icmd = 0;
    719      1.1  scottr 	return count - len;
    720      1.1  scottr }
    721      1.1  scottr 
    722      1.1  scottr 
    723      1.1  scottr /***
    724      1.1  scottr  * The following code implements interrupt-driven PDMA.
    725      1.1  scottr  ***/
    726      1.1  scottr 
    727      1.1  scottr /*
    728      1.1  scottr  * This is the meat of the PDMA transfer.
    729      1.1  scottr  * When we get here, we shove data as fast as the mac can take it.
    730      1.1  scottr  * We depend on several things:
    731      1.1  scottr  *   * All macs after the Mac Plus that have a 5380 chip should have a general
    732      1.1  scottr  *     logic IC that handshakes data for blind transfers.
    733      1.1  scottr  *   * If the SCSI controller finishes sending/receiving data before we do,
    734      1.1  scottr  *     the same general logic IC will generate a /BERR for us in short order.
    735      1.1  scottr  *   * The fault address for said /BERR minus the base address for the
    736      1.1  scottr  *     transfer will be the amount of data that was actually written.
    737      1.1  scottr  *
    738      1.1  scottr  * We use the nofault flag and the setjmp/longjmp in locore.s so we can
    739      1.1  scottr  * detect and handle the bus error for early termination of a command.
    740      1.1  scottr  * This is usually caused by a disconnecting target.
    741      1.1  scottr  */
    742      1.1  scottr void
    743      1.1  scottr sbc_drq_intr(p)
    744      1.1  scottr 	void *p;
    745      1.1  scottr {
    746      1.1  scottr 	extern	int		*nofault, mac68k_buserr_addr;
    747      1.1  scottr 	register struct sbc_softc *sc = (struct sbc_softc *) p;
    748      1.1  scottr 	register struct ncr5380_softc *ncr_sc = (struct ncr5380_softc *) p;
    749      1.1  scottr 	register struct sci_req *sr = ncr_sc->sc_current;
    750      1.1  scottr 	register struct sbc_pdma_handle *dh = sr->sr_dma_hand;
    751      1.1  scottr 	label_t			faultbuf;
    752      1.1  scottr 	volatile u_int32_t	*long_drq;
    753      1.1  scottr 	u_int32_t		*long_data;
    754      1.1  scottr 	volatile u_int8_t	*drq;
    755      1.1  scottr 	u_int8_t		*data;
    756      1.1  scottr 	register int		count;
    757      1.1  scottr 	int			dcount, resid;
    758  1.6.4.1  scottr 	u_int8_t		tmp;
    759      1.1  scottr 
    760      1.1  scottr 	/*
    761      1.1  scottr 	 * If we're not ready to xfer data, or have no more, just return.
    762      1.1  scottr 	 */
    763      1.3  scottr 	if ((*ncr_sc->sci_csr & SCI_CSR_DREQ) == 0 || dh->dh_len == 0)
    764      1.1  scottr 		return;
    765      1.1  scottr 
    766      1.1  scottr #ifdef SBC_DEBUG
    767      1.1  scottr 	if (sbc_debug & SBC_DB_INTR)
    768      1.1  scottr 		printf("%s: drq intr, dh_len=0x%x, dh_flags=0x%x\n",
    769      1.1  scottr 		    ncr_sc->sc_dev.dv_xname, dh->dh_len, dh->dh_flags);
    770      1.1  scottr #endif
    771      1.1  scottr 
    772      1.1  scottr 	/*
    773      1.1  scottr 	 * Setup for a possible bus error caused by SCSI controller
    774      1.1  scottr 	 * switching out of DATA-IN/OUT before we're done with the
    775      1.1  scottr 	 * current transfer.
    776      1.1  scottr 	 */
    777      1.1  scottr 	nofault = (int *) &faultbuf;
    778      1.1  scottr 
    779      1.1  scottr 	if (setjmp((label_t *) nofault)) {
    780      1.1  scottr 		nofault = (int *) 0;
    781  1.6.4.1  scottr 		if ((dh->dh_flags & SBC_DH_DONE) == 0) {
    782  1.6.4.1  scottr 			count = ((  (u_long) mac68k_buserr_addr
    783  1.6.4.1  scottr 				  - (u_long) sc->sc_drq_addr));
    784  1.6.4.1  scottr 
    785  1.6.4.1  scottr 			if ((count < 0) || (count > dh->dh_len)) {
    786  1.6.4.1  scottr 				printf("%s: complete=0x%x (pending 0x%x)\n",
    787  1.6.4.1  scottr 				    ncr_sc->sc_dev.dv_xname, count, dh->dh_len);
    788  1.6.4.1  scottr 				panic("something is wrong");
    789  1.6.4.1  scottr 			}
    790      1.1  scottr 
    791  1.6.4.1  scottr 			dh->dh_addr += count;
    792  1.6.4.1  scottr 			dh->dh_len -= count;
    793      1.1  scottr 		}
    794  1.6.4.1  scottr 
    795      1.1  scottr #ifdef SBC_DEBUG
    796      1.1  scottr 		if (sbc_debug & SBC_DB_INTR)
    797  1.6.4.1  scottr 			printf("%s: drq /berr, complete=0x%x (pending 0x%x)\n",
    798  1.6.4.1  scottr 			   ncr_sc->sc_dev.dv_xname, count, dh->dh_len);
    799      1.1  scottr #endif
    800      1.1  scottr 		mac68k_buserr_addr = 0;
    801      1.3  scottr 
    802      1.1  scottr 		return;
    803      1.1  scottr 	}
    804      1.1  scottr 
    805      1.1  scottr 	if (dh->dh_flags & SBC_DH_OUT) { /* Data Out */
    806  1.6.4.1  scottr #if notyet /* XXX */
    807      1.1  scottr 		/*
    808      1.1  scottr 		 * Get the source address aligned.
    809      1.1  scottr 		 */
    810      1.6  scottr 		resid =
    811      1.6  scottr 		    count = min(dh->dh_len, 4 - (((int) dh->dh_addr) & 0x3));
    812      1.1  scottr 		if (count && count < 4) {
    813  1.6.4.1  scottr 			drq = (volatile u_int8_t *) sc->sc_drq_addr;
    814      1.1  scottr 			data = (u_int8_t *) dh->dh_addr;
    815  1.6.4.1  scottr 
    816      1.1  scottr #define W1		*drq++ = *data++
    817      1.1  scottr 			while (count) {
    818      1.1  scottr 				W1; count--;
    819      1.1  scottr 			}
    820      1.1  scottr #undef W1
    821      1.1  scottr 			dh->dh_addr += resid;
    822      1.1  scottr 			dh->dh_len -= resid;
    823      1.1  scottr 		}
    824      1.1  scottr 
    825      1.1  scottr 		/*
    826  1.6.4.1  scottr 		 * Start the transfer.
    827      1.1  scottr 		 */
    828      1.1  scottr 		while (dh->dh_len) {
    829      1.1  scottr 			dcount = count = min(dh->dh_len, MAX_DMA_LEN);
    830      1.1  scottr 			long_drq = (volatile u_int32_t *) sc->sc_drq_addr;
    831      1.1  scottr 			long_data = (u_int32_t *) dh->dh_addr;
    832      1.1  scottr 
    833      1.1  scottr #define W4		*long_drq++ = *long_data++
    834      1.1  scottr 			while (count >= 64) {
    835      1.1  scottr 				W4; W4; W4; W4; W4; W4; W4; W4;
    836      1.1  scottr 				W4; W4; W4; W4; W4; W4; W4; W4; /*  64 */
    837      1.1  scottr 				count -= 64;
    838      1.1  scottr 			}
    839      1.1  scottr 			while (count >= 4) {
    840      1.1  scottr 				W4; count -= 4;
    841      1.1  scottr 			}
    842      1.1  scottr #undef W4
    843      1.1  scottr 			data = (u_int8_t *) long_data;
    844      1.1  scottr 			drq = (u_int8_t *) long_drq;
    845  1.6.4.1  scottr #else /* notyet */
    846  1.6.4.1  scottr 		/*
    847  1.6.4.1  scottr 		 * Start the transfer.
    848  1.6.4.1  scottr 		 */
    849  1.6.4.1  scottr 		while (dh->dh_len) {
    850  1.6.4.1  scottr 			dcount = count = min(dh->dh_len, MAX_DMA_LEN);
    851  1.6.4.1  scottr 			drq = (volatile u_int8_t *) sc->sc_drq_addr;
    852  1.6.4.1  scottr 			data = (u_int8_t *) dh->dh_addr;
    853  1.6.4.1  scottr #endif /* notyet */
    854  1.6.4.1  scottr 
    855      1.1  scottr #define W1		*drq++ = *data++
    856      1.1  scottr 			while (count) {
    857      1.1  scottr 				W1; count--;
    858      1.1  scottr 			}
    859      1.1  scottr #undef W1
    860      1.1  scottr 			dh->dh_len -= dcount;
    861      1.1  scottr 			dh->dh_addr += dcount;
    862      1.1  scottr 		}
    863  1.6.4.1  scottr 		dh->dh_flags |= SBC_DH_DONE;
    864  1.6.4.1  scottr 
    865  1.6.4.1  scottr 		/*
    866  1.6.4.1  scottr 		 * XXX -- Read a byte from the SBC to trigger a /BERR.
    867  1.6.4.1  scottr 		 * This seems to be necessary for us to notice that
    868  1.6.4.1  scottr 		 * the target has disconnected.  Ick.  06 jun 1996 (sr)
    869  1.6.4.1  scottr 		 */
    870  1.6.4.1  scottr 		if (dcount >= MAX_DMA_LEN) {
    871  1.6.4.1  scottr #if 0
    872  1.6.4.1  scottr 			while ((*ncr_sc->sci_csr & SCI_CSR_ACK) == 0)
    873  1.6.4.1  scottr 				;
    874  1.6.4.1  scottr #endif
    875  1.6.4.1  scottr 			drq = (volatile u_int8_t *) sc->sc_drq_addr;
    876  1.6.4.1  scottr 		}
    877  1.6.4.1  scottr 		tmp = *drq;
    878      1.1  scottr 	} else {	/* Data In */
    879      1.1  scottr 		/*
    880      1.1  scottr 		 * Get the dest address aligned.
    881      1.1  scottr 		 */
    882      1.6  scottr 		resid =
    883      1.6  scottr 		    count = min(dh->dh_len, 4 - (((int) dh->dh_addr) & 0x3));
    884      1.1  scottr 		if (count && count < 4) {
    885      1.1  scottr 			data = (u_int8_t *) dh->dh_addr;
    886  1.6.4.1  scottr 			drq = (volatile u_int8_t *) sc->sc_drq_addr;
    887  1.6.4.1  scottr 
    888      1.1  scottr #define R1		*data++ = *drq++
    889      1.1  scottr 			while (count) {
    890      1.1  scottr 				R1; count--;
    891      1.1  scottr 			}
    892      1.1  scottr #undef R1
    893      1.1  scottr 			dh->dh_addr += resid;
    894      1.1  scottr 			dh->dh_len -= resid;
    895      1.1  scottr 		}
    896      1.1  scottr 
    897      1.1  scottr 		/*
    898  1.6.4.1  scottr 		 * Start the transfer.
    899      1.1  scottr 		 */
    900      1.1  scottr 		while (dh->dh_len) {
    901      1.1  scottr 			dcount = count = min(dh->dh_len, MAX_DMA_LEN);
    902      1.1  scottr 			long_data = (u_int32_t *) dh->dh_addr;
    903  1.6.4.1  scottr 			long_drq = (volatile u_int32_t *) sc->sc_drq_addr;
    904      1.1  scottr 
    905      1.1  scottr #define R4		*long_data++ = *long_drq++
    906  1.6.4.1  scottr 			while (count >= 64) {
    907      1.1  scottr 				R4; R4; R4; R4; R4; R4; R4; R4;
    908      1.1  scottr 				R4; R4; R4; R4; R4; R4; R4; R4;	/* 64 */
    909  1.6.4.1  scottr 				count -= 64;
    910      1.1  scottr 			}
    911      1.1  scottr 			while (count >= 4) {
    912      1.1  scottr 				R4; count -= 4;
    913      1.1  scottr 			}
    914      1.1  scottr #undef R4
    915      1.1  scottr 			data = (u_int8_t *) long_data;
    916  1.6.4.1  scottr 			drq = (volatile u_int8_t *) long_drq;
    917  1.6.4.1  scottr 
    918      1.1  scottr #define R1		*data++ = *drq++
    919      1.1  scottr 			while (count) {
    920      1.1  scottr 				R1; count--;
    921      1.1  scottr 			}
    922      1.1  scottr #undef R1
    923      1.1  scottr 			dh->dh_len -= dcount;
    924      1.1  scottr 			dh->dh_addr += dcount;
    925      1.1  scottr 		}
    926  1.6.4.1  scottr 		dh->dh_flags |= SBC_DH_DONE;
    927      1.1  scottr 	}
    928      1.1  scottr 
    929      1.1  scottr 	/*
    930      1.1  scottr 	 * OK.  No bus error occurred above.  Clear the nofault flag
    931      1.1  scottr 	 * so we no longer short-circuit bus errors.
    932      1.1  scottr 	 */
    933      1.1  scottr 	nofault = (int *) 0;
    934  1.6.4.1  scottr 
    935  1.6.4.1  scottr #ifdef SBC_DEBUG
    936  1.6.4.1  scottr 	if (sbc_debug & (SBC_DB_REG | SBC_DB_INTR))
    937  1.6.4.1  scottr 		printf("%s: drq intr complete: csr=0x%x, bus_csr=0x%x\n",
    938  1.6.4.1  scottr 		    ncr_sc->sc_dev.dv_xname, *ncr_sc->sci_csr,
    939  1.6.4.1  scottr 		    *ncr_sc->sci_bus_csr);
    940  1.6.4.1  scottr #endif
    941      1.1  scottr }
    942      1.1  scottr 
    943      1.1  scottr void
    944      1.1  scottr sbc_dma_alloc(ncr_sc)
    945      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    946      1.1  scottr {
    947      1.1  scottr 	struct sbc_softc *sc = (struct sbc_softc *) ncr_sc;
    948      1.1  scottr 	struct sci_req *sr = ncr_sc->sc_current;
    949      1.1  scottr 	struct scsi_xfer *xs = sr->sr_xs;
    950      1.1  scottr 	struct sbc_pdma_handle *dh;
    951      1.1  scottr 	int		i, xlen;
    952      1.1  scottr 
    953      1.6  scottr #ifdef DIAGNOSTIC
    954      1.1  scottr 	if (sr->sr_dma_hand != NULL)
    955      1.1  scottr 		panic("sbc_dma_alloc: already have PDMA handle");
    956      1.1  scottr #endif
    957      1.1  scottr 
    958      1.1  scottr 	/* Polled transfers shouldn't allocate a PDMA handle. */
    959      1.1  scottr 	if (sr->sr_flags & SR_IMMED)
    960      1.1  scottr 		return;
    961      1.1  scottr 
    962      1.1  scottr 	xlen = ncr_sc->sc_datalen;
    963      1.1  scottr 
    964      1.1  scottr 	/* Make sure our caller checked sc_min_dma_len. */
    965      1.1  scottr 	if (xlen < MIN_DMA_LEN)
    966      1.1  scottr 		panic("sbc_dma_alloc: len=0x%x\n", xlen);
    967      1.1  scottr 
    968      1.1  scottr 	/*
    969      1.1  scottr 	 * Find free PDMA handle.  Guaranteed to find one since we
    970      1.1  scottr 	 * have as many PDMA handles as the driver has processes.
    971      1.1  scottr 	 * (instances?)
    972      1.1  scottr 	 */
    973      1.1  scottr 	 for (i = 0; i < SCI_OPENINGS; i++) {
    974      1.1  scottr 		if ((sc->sc_pdma[i].dh_flags & SBC_DH_BUSY) == 0)
    975      1.1  scottr 			goto found;
    976      1.1  scottr 	}
    977      1.1  scottr 	panic("sbc: no free PDMA handles");
    978      1.1  scottr found:
    979      1.1  scottr 	dh = &sc->sc_pdma[i];
    980      1.1  scottr 	dh->dh_flags = SBC_DH_BUSY;
    981      1.1  scottr 	dh->dh_addr = ncr_sc->sc_dataptr;
    982      1.1  scottr 	dh->dh_len = xlen;
    983      1.1  scottr 
    984      1.1  scottr 	/* Copy the 'write' flag for convenience. */
    985      1.1  scottr 	if (xs->flags & SCSI_DATA_OUT)
    986      1.1  scottr 		dh->dh_flags |= SBC_DH_OUT;
    987      1.1  scottr 
    988      1.1  scottr 	sr->sr_dma_hand = dh;
    989      1.1  scottr }
    990      1.1  scottr 
    991      1.1  scottr void
    992      1.1  scottr sbc_dma_free(ncr_sc)
    993      1.1  scottr 	struct ncr5380_softc *ncr_sc;
    994      1.1  scottr {
    995      1.1  scottr 	struct sci_req *sr = ncr_sc->sc_current;
    996      1.1  scottr 	struct sbc_pdma_handle *dh = sr->sr_dma_hand;
    997      1.1  scottr 
    998      1.6  scottr #ifdef DIAGNOSTIC
    999      1.1  scottr 	if (sr->sr_dma_hand == NULL)
   1000      1.1  scottr 		panic("sbc_dma_free: no DMA handle");
   1001      1.1  scottr #endif
   1002      1.1  scottr 
   1003      1.1  scottr 	if (ncr_sc->sc_state & NCR_DOINGDMA)
   1004      1.1  scottr 		panic("sbc_dma_free: free while in progress");
   1005      1.1  scottr 
   1006      1.1  scottr 	if (dh->dh_flags & SBC_DH_BUSY) {
   1007      1.1  scottr 		dh->dh_flags = 0;
   1008      1.1  scottr 		dh->dh_addr = NULL;
   1009      1.1  scottr 		dh->dh_len = 0;
   1010      1.1  scottr 	}
   1011      1.1  scottr 	sr->sr_dma_hand = NULL;
   1012      1.1  scottr }
   1013      1.1  scottr 
   1014      1.1  scottr void
   1015      1.1  scottr sbc_dma_poll(ncr_sc)
   1016      1.1  scottr 	struct ncr5380_softc *ncr_sc;
   1017      1.1  scottr {
   1018      1.1  scottr 	struct sci_req *sr = ncr_sc->sc_current;
   1019      1.1  scottr 
   1020      1.3  scottr 	/*
   1021      1.3  scottr 	 * We shouldn't arrive here; if SR_IMMED is set, then
   1022      1.3  scottr 	 * dma_alloc() should have refused to allocate a handle
   1023      1.3  scottr 	 * for the transfer.  This forces the polled PDMA code
   1024      1.3  scottr 	 * to handle the request...
   1025      1.3  scottr 	 */
   1026      1.6  scottr #ifdef SBC_DEBUG
   1027      1.1  scottr 	if (sbc_debug & SBC_DB_DMA)
   1028      1.3  scottr 		printf("%s: lost DRQ interrupt?\n", ncr_sc->sc_dev.dv_xname);
   1029      1.1  scottr #endif
   1030      1.3  scottr 	sr->sr_flags |= SR_OVERDUE;
   1031      1.1  scottr }
   1032      1.1  scottr 
   1033      1.1  scottr void
   1034      1.1  scottr sbc_dma_setup(ncr_sc)
   1035      1.1  scottr 	struct ncr5380_softc *ncr_sc;
   1036      1.1  scottr {
   1037      1.1  scottr 	/* Not needed; we don't have real DMA */
   1038      1.1  scottr }
   1039      1.1  scottr 
   1040      1.1  scottr void
   1041      1.1  scottr sbc_dma_start(ncr_sc)
   1042      1.1  scottr 	struct ncr5380_softc *ncr_sc;
   1043      1.1  scottr {
   1044  1.6.4.1  scottr 	register struct sbc_softc *sc = (struct sbc_softc *) ncr_sc;
   1045      1.1  scottr 	struct sci_req *sr = ncr_sc->sc_current;
   1046      1.1  scottr 	struct sbc_pdma_handle *dh = sr->sr_dma_hand;
   1047      1.1  scottr 
   1048      1.1  scottr 	/*
   1049  1.6.4.1  scottr 	 * Match bus phase, clear pending interrupts, set DMA mode, and
   1050  1.6.4.1  scottr 	 * assert data bus (for writing only), then start the transfer.
   1051      1.1  scottr 	 */
   1052      1.1  scottr 	if (dh->dh_flags & SBC_DH_OUT) {
   1053      1.1  scottr 		*ncr_sc->sci_tcmd = PHASE_DATA_OUT;
   1054      1.1  scottr 		SCI_CLR_INTR(ncr_sc);
   1055  1.6.4.1  scottr 		*sc->sc_iflag = 0x80 | (V2IF_SCSIIRQ | V2IF_SCSIDRQ);
   1056      1.1  scottr 		*ncr_sc->sci_mode |= SCI_MODE_DMA;
   1057      1.1  scottr 		*ncr_sc->sci_icmd = SCI_ICMD_DATA;
   1058      1.1  scottr 		*ncr_sc->sci_dma_send = 0;
   1059      1.1  scottr 	} else {
   1060      1.1  scottr 		*ncr_sc->sci_tcmd = PHASE_DATA_IN;
   1061      1.1  scottr 		SCI_CLR_INTR(ncr_sc);
   1062  1.6.4.1  scottr 		*sc->sc_iflag = 0x80 | (V2IF_SCSIIRQ | V2IF_SCSIDRQ);
   1063      1.1  scottr 		*ncr_sc->sci_mode |= SCI_MODE_DMA;
   1064      1.1  scottr 		*ncr_sc->sci_icmd = 0;
   1065      1.1  scottr 		*ncr_sc->sci_irecv = 0;
   1066      1.1  scottr 	}
   1067      1.3  scottr 	ncr_sc->sc_state |= NCR_DOINGDMA;
   1068      1.1  scottr 
   1069      1.6  scottr #ifdef SBC_DEBUG
   1070      1.1  scottr 	if (sbc_debug & SBC_DB_DMA)
   1071      1.1  scottr 		printf("%s: PDMA started, va=%p, len=0x%x\n",
   1072      1.1  scottr 		    ncr_sc->sc_dev.dv_xname, dh->dh_addr, dh->dh_len);
   1073      1.1  scottr #endif
   1074      1.1  scottr }
   1075      1.1  scottr 
   1076      1.1  scottr void
   1077      1.1  scottr sbc_dma_eop(ncr_sc)
   1078      1.1  scottr 	struct ncr5380_softc *ncr_sc;
   1079      1.1  scottr {
   1080      1.1  scottr 	/* Not used; the EOP pin is wired high (GMFH, pp. 389-390) */
   1081      1.1  scottr }
   1082      1.1  scottr 
   1083      1.1  scottr void
   1084      1.1  scottr sbc_dma_stop(ncr_sc)
   1085      1.1  scottr 	struct ncr5380_softc *ncr_sc;
   1086      1.1  scottr {
   1087  1.6.4.1  scottr 	register struct sbc_softc *sc = (struct sbc_softc *) ncr_sc;
   1088      1.1  scottr 	struct sci_req *sr = ncr_sc->sc_current;
   1089      1.1  scottr 	struct sbc_pdma_handle *dh = sr->sr_dma_hand;
   1090      1.1  scottr 	register int ntrans;
   1091      1.1  scottr 
   1092      1.1  scottr 	if ((ncr_sc->sc_state & NCR_DOINGDMA) == 0) {
   1093      1.1  scottr #ifdef SBC_DEBUG
   1094      1.1  scottr 		if (sbc_debug & SBC_DB_DMA)
   1095      1.1  scottr 			printf("%s: dma_stop: DMA not running\n",
   1096      1.1  scottr 			    ncr_sc->sc_dev.dv_xname);
   1097      1.1  scottr #endif
   1098      1.1  scottr 		return;
   1099      1.1  scottr 	}
   1100      1.1  scottr 	ncr_sc->sc_state &= ~NCR_DOINGDMA;
   1101      1.1  scottr 
   1102      1.3  scottr 	if ((ncr_sc->sc_state & NCR_ABORTING) == 0) {
   1103      1.1  scottr 		ntrans = ncr_sc->sc_datalen - dh->dh_len;
   1104      1.1  scottr 
   1105      1.1  scottr #ifdef SBC_DEBUG
   1106      1.1  scottr 		if (sbc_debug & SBC_DB_DMA)
   1107      1.1  scottr 			printf("%s: dma_stop: ntrans=0x%x\n",
   1108      1.1  scottr 			    ncr_sc->sc_dev.dv_xname, ntrans);
   1109      1.1  scottr #endif
   1110      1.1  scottr 
   1111      1.1  scottr 		if (ntrans > ncr_sc->sc_datalen)
   1112      1.1  scottr 			panic("sbc_dma_stop: excess transfer\n");
   1113      1.1  scottr 
   1114      1.1  scottr 		/* Adjust data pointer */
   1115      1.1  scottr 		ncr_sc->sc_dataptr += ntrans;
   1116      1.1  scottr 		ncr_sc->sc_datalen -= ntrans;
   1117      1.1  scottr 
   1118      1.1  scottr 		/* Clear any pending interrupts. */
   1119      1.1  scottr 		SCI_CLR_INTR(ncr_sc);
   1120  1.6.4.1  scottr 		*sc->sc_iflag = 0x80 | V2IF_SCSIIRQ;
   1121      1.1  scottr 	}
   1122      1.1  scottr 
   1123      1.1  scottr 	/* Put SBIC back into PIO mode. */
   1124      1.1  scottr 	*ncr_sc->sci_mode &= ~SCI_MODE_DMA;
   1125      1.1  scottr 	*ncr_sc->sci_icmd = 0;
   1126      1.1  scottr 
   1127      1.1  scottr #ifdef SBC_DEBUG
   1128      1.3  scottr 	if (sbc_debug & SBC_DB_REG)
   1129      1.3  scottr 		printf("%s: dma_stop: csr=0x%x, bus_csr=0x%x\n",
   1130      1.1  scottr 		    ncr_sc->sc_dev.dv_xname, *ncr_sc->sci_csr,
   1131      1.1  scottr 		    *ncr_sc->sci_bus_csr);
   1132      1.1  scottr #endif
   1133      1.1  scottr }
   1134