Home | History | Annotate | Line # | Download | only in dev
mac68k5380.c revision 1.32.2.2
      1  1.32.2.2    bouyer /*	$NetBSD: mac68k5380.c,v 1.32.2.2 1997/08/14 11:06:01 bouyer Exp $	*/
      2       1.1    briggs 
      3       1.1    briggs /*
      4       1.1    briggs  * Copyright (c) 1995 Allen Briggs
      5       1.1    briggs  * All rights reserved.
      6       1.1    briggs  *
      7       1.1    briggs  * Redistribution and use in source and binary forms, with or without
      8       1.1    briggs  * modification, are permitted provided that the following conditions
      9       1.1    briggs  * are met:
     10       1.1    briggs  * 1. Redistributions of source code must retain the above copyright
     11       1.1    briggs  *    notice, this list of conditions and the following disclaimer.
     12       1.1    briggs  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1    briggs  *    notice, this list of conditions and the following disclaimer in the
     14       1.1    briggs  *    documentation and/or other materials provided with the distribution.
     15       1.1    briggs  * 3. All advertising materials mentioning features or use of this software
     16       1.1    briggs  *    must display the following acknowledgement:
     17       1.1    briggs  *      This product includes software developed by Allen Briggs
     18       1.1    briggs  * 4. The name of the author may not be used to endorse or promote products
     19       1.1    briggs  *    derived from this software without specific prior written permission
     20       1.1    briggs  *
     21       1.1    briggs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1    briggs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1    briggs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1    briggs  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1    briggs  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1    briggs  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1    briggs  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1    briggs  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1    briggs  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1    briggs  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1    briggs  *
     32       1.1    briggs  * Derived from atari5380.c for the mac68k port of NetBSD.
     33       1.1    briggs  *
     34       1.1    briggs  */
     35       1.1    briggs 
     36       1.1    briggs #include <sys/param.h>
     37       1.1    briggs #include <sys/systm.h>
     38       1.1    briggs #include <sys/kernel.h>
     39       1.1    briggs #include <sys/device.h>
     40      1.10    briggs #include <sys/dkstat.h>
     41       1.1    briggs #include <sys/syslog.h>
     42       1.1    briggs #include <sys/buf.h>
     43  1.32.2.1    bouyer #include <dev/scsipi/scsi_all.h>
     44  1.32.2.1    bouyer #include <dev/scsipi/scsipi_all.h>
     45  1.32.2.1    bouyer #include <dev/scsipi/scsi_message.h>
     46  1.32.2.1    bouyer #include <dev/scsipi/scsiconf.h>
     47       1.1    briggs 
     48       1.1    briggs /*
     49       1.1    briggs  * Include the driver definitions
     50       1.1    briggs  */
     51      1.23    briggs #include "ncr5380reg.h"
     52       1.1    briggs 
     53       1.1    briggs #include <machine/stdarg.h>
     54      1.22    briggs #include <machine/viareg.h>
     55       1.1    briggs 
     56  1.32.2.2    bouyer #include <mac68k/dev/ncr5380var.h>
     57      1.23    briggs 
     58       1.1    briggs /*
     59       1.1    briggs  * Set the various driver options
     60       1.1    briggs  */
     61       1.1    briggs #define	NREQ		18	/* Size of issue queue			*/
     62       1.1    briggs #define	AUTO_SENSE	1	/* Automatically issue a request-sense 	*/
     63       1.1    briggs 
     64       1.1    briggs #define	DRNAME		ncrscsi	/* used in various prints	*/
     65       1.1    briggs #undef	DBG_SEL			/* Show the selection process		*/
     66       1.1    briggs #undef	DBG_REQ			/* Show enqueued/ready requests		*/
     67       1.1    briggs #undef	DBG_NOWRITE		/* Do not allow writes to the targets	*/
     68       1.1    briggs #undef	DBG_PIO			/* Show the polled-I/O process		*/
     69       1.1    briggs #undef	DBG_INF			/* Show information transfer process	*/
     70       1.1    briggs #define	DBG_NOSTATIC		/* No static functions, all in DDB trace*/
     71      1.18    briggs #define	DBG_PID		25	/* Keep track of driver			*/
     72      1.18    briggs #ifdef DBG_NOSTATIC
     73      1.18    briggs #	define	static
     74      1.18    briggs #endif
     75      1.18    briggs #ifdef DBG_SEL
     76      1.27  christos #	define	DBG_SELPRINT(a,b)	printf(a,b)
     77      1.18    briggs #else
     78      1.18    briggs #	define DBG_SELPRINT(a,b)
     79      1.18    briggs #endif
     80      1.18    briggs #ifdef DBG_PIO
     81      1.27  christos #	define DBG_PIOPRINT(a,b,c) 	printf(a,b,c)
     82      1.18    briggs #else
     83      1.18    briggs #	define DBG_PIOPRINT(a,b,c)
     84      1.18    briggs #endif
     85      1.18    briggs #ifdef DBG_INF
     86      1.18    briggs #	define DBG_INFPRINT(a,b,c)	a(b,c)
     87      1.18    briggs #else
     88      1.18    briggs #	define DBG_INFPRINT(a,b,c)
     89      1.18    briggs #endif
     90      1.18    briggs #ifdef DBG_PID
     91      1.18    briggs 	/* static	char	*last_hit = NULL, *olast_hit = NULL; */
     92      1.18    briggs 	static char *last_hit[DBG_PID];
     93      1.18    briggs #	define	PID(a)	\
     94      1.18    briggs 	{ int i; \
     95      1.18    briggs 	  for (i=0; i< DBG_PID-1; i++) \
     96      1.18    briggs 		last_hit[i] = last_hit[i+1]; \
     97      1.18    briggs 	  last_hit[DBG_PID-1] = a; }
     98      1.18    briggs #else
     99      1.18    briggs #	define	PID(a)
    100      1.18    briggs #endif
    101      1.18    briggs 
    102       1.1    briggs #undef 	REAL_DMA		/* Use DMA if sensible			*/
    103      1.19    briggs #define scsi_ipending()		(GET_5380_REG(NCR5380_DMSTAT) & SC_IRQ_SET)
    104       1.1    briggs #define fair_to_keep_dma()	1
    105       1.1    briggs #define claimed_dma()		1
    106       1.1    briggs #define reconsider_dma()
    107       1.1    briggs #define	USE_PDMA	1	/* Use special pdma-transfer function	*/
    108      1.10    briggs #define MIN_PHYS	0x2000	/* pdma space w/ /DSACK is only 0x2000  */
    109       1.1    briggs 
    110       1.1    briggs #define	ENABLE_NCR5380(sc)	cur_softc = sc;
    111       1.1    briggs 
    112       1.1    briggs /*
    113       1.1    briggs  * softc of currently active controller (well, we only have one for now).
    114       1.1    briggs  */
    115       1.1    briggs 
    116       1.1    briggs static struct ncr_softc	*cur_softc;
    117       1.1    briggs 
    118       1.1    briggs struct scsi_5380 {
    119       1.1    briggs 	volatile u_char	scsi_5380[8*16]; /* 8 regs, 1 every 16th byte. */
    120       1.1    briggs };
    121       1.1    briggs 
    122       1.1    briggs extern vm_offset_t	SCSIBase;
    123       1.1    briggs static volatile u_char	*ncr		= (volatile u_char *) 0x10000;
    124       1.1    briggs static volatile u_char	*ncr_5380_with_drq	= (volatile u_char *)  0x6000;
    125       1.1    briggs static volatile u_char	*ncr_5380_without_drq	= (volatile u_char *) 0x12000;
    126       1.1    briggs 
    127       1.1    briggs #define SCSI_5380		((struct scsi_5380 *) ncr)
    128       1.1    briggs #define GET_5380_REG(rnum)	SCSI_5380->scsi_5380[((rnum)<<4)]
    129       1.1    briggs #define SET_5380_REG(rnum,val)	(SCSI_5380->scsi_5380[((rnum)<<4)] = (val))
    130       1.1    briggs 
    131      1.24    briggs static void	ncr5380_irq_intr(void *);
    132      1.24    briggs static void	ncr5380_drq_intr(void *);
    133      1.24    briggs static void	do_ncr5380_drq_intr __P((void *));
    134       1.4    briggs 
    135      1.23    briggs static __inline__ void	scsi_clr_ipend __P((void));
    136      1.23    briggs static		  void	scsi_mach_init __P((struct ncr_softc *sc));
    137      1.28    scottr static		  int	machine_match __P((struct device *parent,
    138      1.28    scottr 			    struct cfdata *cf, void *aux,
    139      1.28    scottr 			    struct cfdriver *cd));
    140      1.23    briggs static __inline__ int	pdma_ready __P((void));
    141      1.23    briggs static		  int	transfer_pdma __P((u_char *phasep, u_char *data,
    142      1.23    briggs 					u_long *count));
    143      1.23    briggs 
    144       1.1    briggs static __inline__ void
    145       1.1    briggs scsi_clr_ipend()
    146       1.1    briggs {
    147       1.1    briggs 	int	tmp;
    148       1.1    briggs 
    149       1.1    briggs 	tmp = GET_5380_REG(NCR5380_IRCV);
    150      1.24    briggs 	scsi_clear_irq();
    151       1.1    briggs }
    152       1.1    briggs 
    153       1.1    briggs static void
    154       1.1    briggs scsi_mach_init(sc)
    155       1.1    briggs 	struct ncr_softc	*sc;
    156       1.1    briggs {
    157       1.1    briggs 	static int	initted = 0;
    158       1.1    briggs 
    159       1.1    briggs 	if (initted++)
    160       1.1    briggs 		panic("scsi_mach_init called again.\n");
    161       1.1    briggs 
    162       1.1    briggs 	ncr		= (volatile u_char *)
    163       1.1    briggs 			  (SCSIBase + (u_long) ncr);
    164       1.1    briggs 	ncr_5380_with_drq	= (volatile u_char *)
    165       1.1    briggs 			  (SCSIBase + (u_int) ncr_5380_with_drq);
    166       1.1    briggs 	ncr_5380_without_drq	= (volatile u_char *)
    167       1.1    briggs 			  (SCSIBase + (u_int) ncr_5380_without_drq);
    168       1.4    briggs 
    169      1.24    briggs 	if (VIA2 == VIA2OFF) {
    170       1.4    briggs 		scsi_enable = Via1Base + VIA2 * 0x2000 + vIER;
    171      1.24    briggs 		scsi_flag   = Via1Base + VIA2 * 0x2000 + vIFR;
    172      1.24    briggs 	} else {
    173       1.4    briggs 		scsi_enable = Via1Base + VIA2 * 0x2000 + rIER;
    174      1.24    briggs 		scsi_flag   = Via1Base + VIA2 * 0x2000 + rIFR;
    175      1.24    briggs 	}
    176       1.4    briggs 
    177      1.29    scottr 	via2_register_irq(VIA2_SCSIIRQ, ncr5380_irq_intr, sc);
    178      1.29    scottr 	via2_register_irq(VIA2_SCSIDRQ, ncr5380_drq_intr, sc);
    179       1.1    briggs }
    180       1.1    briggs 
    181       1.1    briggs static int
    182      1.28    scottr machine_match(parent, cf, aux, cd)
    183      1.28    scottr 	struct device *parent;
    184      1.28    scottr 	struct cfdata *cf;
    185      1.28    scottr 	void *aux;
    186      1.28    scottr 	struct cfdriver *cd;
    187       1.1    briggs {
    188       1.1    briggs 	if (!mac68k_machine.scsi80)
    189       1.1    briggs 		return 0;
    190       1.1    briggs 	return 1;
    191       1.1    briggs }
    192       1.1    briggs 
    193       1.1    briggs #if USE_PDMA
    194       1.4    briggs int	pdma_5380_dir = 0;
    195       1.1    briggs 
    196       1.4    briggs u_char	*pending_5380_data;
    197       1.4    briggs u_long	pending_5380_count;
    198       1.1    briggs 
    199      1.17    briggs #define NCR5380_PDMA_DEBUG 1 	/* Maybe we try with this off eventually. */
    200      1.10    briggs 
    201      1.17    briggs #if NCR5380_PDMA_DEBUG
    202       1.1    briggs int		pdma_5380_sends = 0;
    203       1.2    briggs int		pdma_5380_bytes = 0;
    204       1.1    briggs 
    205       1.1    briggs void
    206       1.1    briggs pdma_stat()
    207       1.1    briggs {
    208      1.27  christos 	printf("PDMA SCSI: %d xfers completed for %d bytes.\n",
    209       1.4    briggs 		pdma_5380_sends, pdma_5380_bytes);
    210      1.27  christos 	printf("pdma_5380_dir = %d\t",
    211       1.4    briggs 		pdma_5380_dir);
    212      1.27  christos 	printf("datap = %p, remainder = %ld.\n",
    213       1.1    briggs 		pending_5380_data, pending_5380_count);
    214      1.17    briggs 	scsi_show();
    215       1.1    briggs }
    216       1.1    briggs #endif
    217       1.1    briggs 
    218       1.1    briggs void
    219       1.2    briggs pdma_cleanup(void)
    220       1.2    briggs {
    221       1.2    briggs 	SC_REQ	*reqp = connected;
    222      1.23    briggs 	int	s;
    223       1.2    briggs 
    224       1.2    briggs 	s = splbio();
    225      1.18    briggs 	PID("pdma_cleanup0");
    226       1.2    briggs 
    227       1.4    briggs 	pdma_5380_dir = 0;
    228       1.2    briggs 
    229      1.17    briggs #if NCR5380_PDMA_DEBUG
    230       1.2    briggs 	pdma_5380_sends++;
    231       1.2    briggs 	pdma_5380_bytes+=(reqp->xdata_len - pending_5380_count);
    232       1.2    briggs #endif
    233       1.2    briggs 
    234       1.2    briggs 	/*
    235       1.2    briggs 	 * Update pointers.
    236       1.2    briggs 	 */
    237       1.2    briggs 	reqp->xdata_ptr += reqp->xdata_len - pending_5380_count;
    238       1.2    briggs 	reqp->xdata_len  = pending_5380_count;
    239       1.2    briggs 
    240       1.2    briggs 	/*
    241       1.2    briggs 	 * Reset DMA mode.
    242       1.2    briggs 	 */
    243       1.2    briggs 	SET_5380_REG(NCR5380_MODE, GET_5380_REG(NCR5380_MODE) & ~SC_M_DMA);
    244       1.2    briggs 
    245       1.2    briggs 	/*
    246      1.10    briggs 	 * Clear any pending interrupts.
    247      1.10    briggs 	 */
    248      1.10    briggs 	scsi_clr_ipend();
    249      1.10    briggs 
    250      1.10    briggs 	/*
    251       1.2    briggs 	 * Tell interrupt functions that DMA has ended.
    252       1.2    briggs 	 */
    253       1.2    briggs 	reqp->dr_flag &= ~DRIVER_IN_DMA;
    254       1.2    briggs 
    255       1.2    briggs 	SET_5380_REG(NCR5380_MODE, IMODE_BASE);
    256       1.2    briggs 	SET_5380_REG(NCR5380_ICOM, 0);
    257       1.2    briggs 
    258       1.2    briggs 	splx(s);
    259       1.2    briggs 
    260       1.2    briggs 	/*
    261       1.2    briggs 	 * Back for more punishment.
    262       1.2    briggs 	 */
    263      1.18    briggs 	PID("pdma_cleanup1");
    264       1.2    briggs 	run_main(cur_softc);
    265      1.18    briggs 	PID("pdma_cleanup2");
    266       1.2    briggs }
    267      1.11    briggs #endif
    268       1.2    briggs 
    269       1.4    briggs static __inline__ int
    270       1.8    briggs pdma_ready()
    271       1.1    briggs {
    272      1.11    briggs #if USE_PDMA
    273      1.11    briggs 	SC_REQ	*reqp = connected;
    274      1.11    briggs 	int	dmstat, idstat;
    275      1.11    briggs extern	u_char	ncr5380_no_parchk;
    276      1.11    briggs 
    277      1.18    briggs 	PID("pdma_ready0");
    278       1.4    briggs 	if (pdma_5380_dir) {
    279      1.25    briggs 		PID("pdma_ready1.");
    280       1.1    briggs 		/*
    281       1.1    briggs 		 * For a phase mis-match, ATN is a "don't care," IRQ is 1 and
    282       1.1    briggs 		 * all other bits in the Bus & Status Register are 0.  Also,
    283       1.1    briggs 		 * the current SCSI Bus Status Register has a 1 for BSY and
    284       1.1    briggs 		 * REQ.  Since we're just checking that this interrupt isn't a
    285       1.1    briggs 		 * reselection or a reset, we just check for either.
    286       1.1    briggs 		 */
    287      1.24    briggs 		dmstat = GET_5380_REG(NCR5380_DMSTAT);
    288      1.11    briggs 		idstat = GET_5380_REG(NCR5380_IDSTAT);
    289      1.11    briggs 		if (   ((dmstat & (0xff & ~SC_ATN_STAT)) == SC_IRQ_SET)
    290      1.11    briggs 		    && ((idstat & (SC_S_BSY|SC_S_REQ))
    291      1.11    briggs 			== (SC_S_BSY | SC_S_REQ)) ) {
    292      1.24    briggs 			PID("pdma_ready2");
    293      1.11    briggs 			pdma_cleanup();
    294      1.11    briggs 			return 1;
    295      1.11    briggs 		} else if (PH_IN(reqp->phase) && (dmstat & SC_PAR_ERR)) {
    296      1.11    briggs 			if (!(ncr5380_no_parchk & (1 << reqp->targ_id)))
    297      1.11    briggs 				/* XXX: Should be parity error ???? */
    298      1.11    briggs 				reqp->xs->error = XS_DRIVER_STUFFUP;
    299      1.24    briggs 			PID("pdma_ready3");
    300      1.11    briggs 			/* XXX: is this the right reaction? */
    301      1.11    briggs 			pdma_cleanup();
    302      1.11    briggs 			return 1;
    303      1.11    briggs 		} else if (   !(idstat & SC_S_REQ)
    304      1.11    briggs 			   || (((idstat>>2) & 7) != reqp->phase)) {
    305      1.11    briggs #ifdef DIAGNOSTIC
    306      1.11    briggs 			/* XXX: is this the right reaction? Can this happen? */
    307      1.11    briggs 			scsi_show();
    308      1.27  christos 			printf("Unexpected phase change.\n");
    309      1.11    briggs #endif
    310      1.11    briggs 			reqp->xs->error = XS_DRIVER_STUFFUP;
    311       1.2    briggs 			pdma_cleanup();
    312       1.3    briggs 			return 1;
    313       1.2    briggs 		} else {
    314       1.2    briggs 			scsi_show();
    315       1.2    briggs 			panic("Spurious interrupt during PDMA xfer.\n");
    316       1.1    briggs 		}
    317      1.18    briggs 	} else
    318      1.24    briggs 		PID("pdma_ready4");
    319      1.11    briggs #endif
    320       1.3    briggs 	return 0;
    321       1.3    briggs }
    322       1.3    briggs 
    323      1.24    briggs static void
    324       1.6    briggs ncr5380_irq_intr(p)
    325       1.6    briggs 	void	*p;
    326       1.3    briggs {
    327      1.18    briggs 	PID("irq");
    328      1.24    briggs 
    329      1.11    briggs #if USE_PDMA
    330       1.8    briggs 	if (pdma_ready()) {
    331       1.3    briggs 		return;
    332       1.1    briggs 	}
    333      1.11    briggs #endif
    334      1.24    briggs 	scsi_idisable();
    335      1.24    briggs 	ncr_ctrl_intr(cur_softc);
    336       1.1    briggs }
    337       1.1    briggs 
    338       1.4    briggs /*
    339      1.10    briggs  * This is the meat of the PDMA transfer.
    340      1.10    briggs  * When we get here, we shove data as fast as the mac can take it.
    341      1.10    briggs  * We depend on several things:
    342      1.10    briggs  *   * All macs after the Mac Plus that have a 5380 chip should have a general
    343      1.10    briggs  *     logic IC that handshakes data for blind transfers.
    344      1.10    briggs  *   * If the SCSI controller finishes sending/receiving data before we do,
    345      1.10    briggs  *     the same general logic IC will generate a /BERR for us in short order.
    346      1.10    briggs  *   * The fault address for said /BERR minus the base address for the
    347      1.10    briggs  *     transfer will be the amount of data that was actually written.
    348      1.10    briggs  *
    349      1.10    briggs  * We use the nofault flag and the setjmp/longjmp in locore.s so we can
    350      1.10    briggs  * detect and handle the bus error for early termination of a command.
    351      1.10    briggs  * This is usually caused by a disconnecting target.
    352       1.4    briggs  */
    353      1.24    briggs static void
    354      1.24    briggs do_ncr5380_drq_intr(p)
    355       1.6    briggs 	void	*p;
    356       1.1    briggs {
    357      1.10    briggs #if USE_PDMA
    358      1.32    scottr extern	int			*nofault, m68k_fault_addr;
    359      1.10    briggs 	label_t			faultbuf;
    360      1.10    briggs 	register int		count;
    361      1.10    briggs 	volatile u_int32_t	*long_drq;
    362      1.10    briggs 	u_int32_t		*long_data;
    363      1.24    briggs 	volatile u_int8_t	*drq, tmp_data;
    364      1.10    briggs 	u_int8_t		*data;
    365      1.10    briggs 
    366      1.18    briggs #if DBG_PID
    367      1.18    briggs 	if (pdma_5380_dir == 2) {
    368      1.18    briggs 		PID("drq (in)");
    369      1.18    briggs 	} else {
    370      1.18    briggs 		PID("drq (out)");
    371      1.18    briggs 	}
    372       1.1    briggs #endif
    373      1.10    briggs 
    374      1.10    briggs 	/*
    375      1.10    briggs 	 * Setup for a possible bus error caused by SCSI controller
    376      1.10    briggs 	 * switching out of DATA-IN/OUT before we're done with the
    377      1.10    briggs 	 * current transfer.
    378      1.10    briggs 	 */
    379      1.10    briggs 	nofault = (int *) &faultbuf;
    380      1.10    briggs 
    381      1.10    briggs 	if (setjmp((label_t *) nofault)) {
    382      1.18    briggs 		PID("drq berr");
    383      1.10    briggs 		nofault = (int *) 0;
    384      1.32    scottr 		count = (  (u_long) m68k_fault_addr
    385      1.10    briggs 			 - (u_long) ncr_5380_with_drq);
    386      1.10    briggs 		if ((count < 0) || (count > pending_5380_count)) {
    387      1.27  christos 			printf("pdma %s: cnt = %d (0x%x) (pending cnt %ld)\n",
    388      1.15    briggs 				(pdma_5380_dir == 2) ? "in" : "out",
    389      1.15    briggs 				count, count, pending_5380_count);
    390      1.10    briggs 			panic("something is wrong");
    391      1.10    briggs 		}
    392      1.10    briggs 
    393      1.10    briggs 		pending_5380_data += count;
    394      1.10    briggs 		pending_5380_count -= count;
    395      1.10    briggs 
    396      1.32    scottr 		m68k_fault_addr = 0;
    397      1.24    briggs 
    398      1.18    briggs 		PID("end drq early");
    399      1.24    briggs 
    400      1.10    briggs 		return;
    401      1.10    briggs 	}
    402      1.10    briggs 
    403       1.4    briggs 	if (pdma_5380_dir == 2) { /* Data In */
    404      1.10    briggs 		int	resid;
    405      1.10    briggs 
    406      1.10    briggs 		/*
    407      1.10    briggs 		 * Get the dest address aligned.
    408      1.10    briggs 		 */
    409      1.17    briggs 		resid = count = min(pending_5380_count,
    410      1.17    briggs 				    4 - (((int) pending_5380_data) & 0x3));
    411      1.17    briggs 		if (count && (count < 4)) {
    412      1.10    briggs 			data = (u_int8_t *) pending_5380_data;
    413      1.10    briggs 			drq = (u_int8_t *) ncr_5380_with_drq;
    414      1.10    briggs 			while (count) {
    415      1.10    briggs #define R1	*data++ = *drq++
    416      1.10    briggs 				R1; count--;
    417      1.10    briggs #undef R1
    418      1.10    briggs 			}
    419      1.10    briggs 			pending_5380_data += resid;
    420      1.10    briggs 			pending_5380_count -= resid;
    421      1.10    briggs 		}
    422      1.10    briggs 
    423       1.4    briggs 		/*
    424      1.10    briggs 		 * Get ready to start the transfer.
    425       1.4    briggs 		 */
    426      1.11    briggs 		while (pending_5380_count) {
    427      1.11    briggs 		int dcount;
    428      1.11    briggs 
    429      1.11    briggs 		dcount = count = min(pending_5380_count, MIN_PHYS);
    430      1.10    briggs 		long_drq = (volatile u_int32_t *) ncr_5380_with_drq;
    431      1.13    briggs 		long_data = (u_int32_t *) pending_5380_data;
    432      1.10    briggs 
    433      1.10    briggs #define R4	*long_data++ = *long_drq++
    434      1.30    briggs 		while ( count > 64 ) {
    435      1.10    briggs 			R4; R4; R4; R4; R4; R4; R4; R4;
    436      1.10    briggs 			R4; R4; R4; R4; R4; R4; R4; R4;	/* 64 */
    437      1.24    briggs 			count -= 64;
    438      1.10    briggs 		}
    439      1.30    briggs 		while (count > 8) {
    440      1.30    briggs 			R4; R4; count -= 8;
    441      1.10    briggs 		}
    442      1.10    briggs #undef R4
    443      1.10    briggs 		data = (u_int8_t *) long_data;
    444      1.10    briggs 		drq = (u_int8_t *) long_drq;
    445      1.10    briggs 		while (count) {
    446      1.10    briggs #define R1	*data++ = *drq++
    447      1.10    briggs 			R1; count--;
    448      1.10    briggs #undef R1
    449      1.10    briggs 		}
    450      1.11    briggs 		pending_5380_count -= dcount;
    451      1.13    briggs 		pending_5380_data += dcount;
    452      1.11    briggs 		}
    453      1.10    briggs 	} else {
    454      1.10    briggs 		int	resid;
    455      1.10    briggs 
    456      1.10    briggs 		/*
    457      1.10    briggs 		 * Get the source address aligned.
    458      1.10    briggs 		 */
    459      1.17    briggs 		resid = count = min(pending_5380_count,
    460      1.17    briggs 				    4 - (((int) pending_5380_data) & 0x3));
    461      1.17    briggs 		if (count && (count < 4)) {
    462      1.10    briggs 			data = (u_int8_t *) pending_5380_data;
    463      1.10    briggs 			drq = (u_int8_t *) ncr_5380_with_drq;
    464      1.10    briggs 			while (count) {
    465      1.10    briggs #define W1	*drq++ = *data++
    466      1.10    briggs 				W1; count--;
    467      1.10    briggs #undef W1
    468      1.10    briggs 			}
    469      1.10    briggs 			pending_5380_data += resid;
    470      1.10    briggs 			pending_5380_count -= resid;
    471      1.10    briggs 		}
    472      1.10    briggs 
    473       1.4    briggs 		/*
    474      1.10    briggs 		 * Get ready to start the transfer.
    475       1.4    briggs 		 */
    476      1.11    briggs 		while (pending_5380_count) {
    477      1.11    briggs 		int dcount;
    478      1.11    briggs 
    479      1.11    briggs 		dcount = count = min(pending_5380_count, MIN_PHYS);
    480      1.10    briggs 		long_drq = (volatile u_int32_t *) ncr_5380_with_drq;
    481      1.13    briggs 		long_data = (u_int32_t *) pending_5380_data;
    482      1.10    briggs 
    483      1.10    briggs #define W4	*long_drq++ = *long_data++
    484      1.30    briggs 		while ( count > 64 ) {
    485      1.10    briggs 			W4; W4; W4; W4; W4; W4; W4; W4;
    486      1.11    briggs 			W4; W4; W4; W4; W4; W4; W4; W4; /*  64 */
    487      1.10    briggs 			count -= 64;
    488      1.10    briggs 		}
    489      1.30    briggs 		while ( count > 8 ) {
    490      1.30    briggs 			W4; W4;
    491      1.30    briggs 			count -= 8;
    492      1.10    briggs 		}
    493      1.10    briggs #undef W4
    494      1.10    briggs 		data = (u_int8_t *) long_data;
    495      1.10    briggs 		drq = (u_int8_t *) long_drq;
    496      1.10    briggs 		while (count) {
    497      1.10    briggs #define W1	*drq++ = *data++
    498      1.10    briggs 			W1; count--;
    499      1.11    briggs #undef W1
    500      1.11    briggs 		}
    501      1.11    briggs 		pending_5380_count -= dcount;
    502      1.13    briggs 		pending_5380_data += dcount;
    503       1.4    briggs 		}
    504      1.30    briggs 
    505      1.24    briggs 		PID("write complete");
    506      1.24    briggs 
    507      1.24    briggs 		drq = (volatile u_int8_t *) ncr_5380_with_drq;
    508      1.24    briggs 		tmp_data = *drq;
    509      1.24    briggs 
    510      1.30    briggs 		PID("read a byte to force a phase change");
    511      1.10    briggs 	}
    512      1.31    briggs 
    513      1.31    briggs 	/*
    514      1.31    briggs 	 * OK.  No bus error occurred above.  Clear the nofault flag
    515      1.31    briggs 	 * so we no longer short-circuit bus errors.
    516      1.31    briggs 	 */
    517      1.31    briggs 	nofault = (int *) 0;
    518      1.10    briggs 
    519      1.18    briggs 	PID("end drq");
    520      1.24    briggs 	return;
    521      1.24    briggs #else
    522      1.24    briggs 	return;
    523       1.4    briggs #endif	/* if USE_PDMA */
    524       1.1    briggs }
    525      1.24    briggs 
    526      1.24    briggs static void
    527      1.24    briggs ncr5380_drq_intr(p)
    528      1.24    briggs 	void	*p;
    529      1.24    briggs {
    530      1.24    briggs 	while (GET_5380_REG(NCR5380_DMSTAT) & SC_DMA_REQ) {
    531      1.24    briggs 		do_ncr5380_drq_intr(p);
    532      1.24    briggs 		scsi_clear_drq();
    533      1.24    briggs 	}
    534      1.24    briggs }
    535       1.1    briggs 
    536       1.4    briggs #if USE_PDMA
    537       1.4    briggs 
    538       1.1    briggs #define SCSI_TIMEOUT_VAL	10000000
    539       1.1    briggs 
    540       1.1    briggs static int
    541       1.1    briggs transfer_pdma(phasep, data, count)
    542       1.1    briggs 	u_char	*phasep;
    543       1.1    briggs 	u_char	*data;
    544       1.1    briggs 	u_long	*count;
    545       1.1    briggs {
    546       1.1    briggs 	SC_REQ	*reqp = connected;
    547      1.23    briggs 	int	len = *count, s, scsi_timeout = SCSI_TIMEOUT_VAL;
    548       1.1    briggs 
    549       1.4    briggs 	if (pdma_5380_dir) {
    550       1.1    briggs 		panic("ncrscsi: transfer_pdma called when operation already "
    551       1.1    briggs 			"pending.\n");
    552       1.1    briggs 	}
    553      1.18    briggs 	PID("transfer_pdma0")
    554       1.1    briggs 
    555       1.2    briggs 	/*
    556      1.10    briggs  	 * Don't bother with PDMA if we can't sleep or for small transfers.
    557       1.2    briggs  	 */
    558       1.9    briggs 	if (reqp->dr_flag & DRIVER_NOINT) {
    559      1.18    briggs 		PID("pdma, falling back to transfer_pio.")
    560       1.7    briggs 		transfer_pio(phasep, data, count, 0);
    561       1.2    briggs 		return -1;
    562       1.1    briggs 	}
    563       1.1    briggs 
    564       1.1    briggs 	/*
    565      1.10    briggs 	 * We are probably already at spl2(), so this is likely a no-op.
    566      1.10    briggs 	 * Paranoia.
    567       1.1    briggs 	 */
    568      1.10    briggs 	s = splbio();
    569      1.10    briggs 
    570      1.10    briggs 	scsi_idisable();
    571       1.2    briggs 
    572       1.2    briggs 	/*
    573      1.10    briggs 	 * Match phases with target.
    574       1.2    briggs 	 */
    575      1.10    briggs 	SET_5380_REG(NCR5380_TCOM, *phasep);
    576       1.2    briggs 
    577       1.2    briggs 	/*
    578       1.2    briggs 	 * Clear pending interrupts.
    579       1.2    briggs 	 */
    580       1.1    briggs 	scsi_clr_ipend();
    581       1.1    briggs 
    582       1.1    briggs 	/*
    583       1.1    briggs 	 * Wait until target asserts BSY.
    584       1.1    briggs 	 */
    585      1.10    briggs 	while (    ((GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY) == 0)
    586      1.10    briggs 		&& (--scsi_timeout) );
    587       1.1    briggs 	if (!scsi_timeout) {
    588       1.1    briggs #if DIAGNOSTIC
    589      1.27  christos 		printf("scsi timeout: waiting for BSY in %s.\n",
    590      1.10    briggs 			(*phasep == PH_DATAOUT) ? "pdma_out" : "pdma_in");
    591       1.1    briggs #endif
    592       1.1    briggs 		goto scsi_timeout_error;
    593       1.1    briggs 	}
    594       1.1    briggs 
    595       1.1    briggs 	/*
    596       1.2    briggs 	 * Tell the driver that we're in DMA mode.
    597       1.2    briggs 	 */
    598       1.2    briggs 	reqp->dr_flag |= DRIVER_IN_DMA;
    599       1.2    briggs 
    600       1.2    briggs 	/*
    601       1.4    briggs 	 * Load transfer values for DRQ interrupt handlers.
    602       1.1    briggs 	 */
    603       1.4    briggs 	pending_5380_data = data;
    604       1.1    briggs 	pending_5380_count = len;
    605       1.1    briggs 
    606       1.1    briggs 	/*
    607       1.1    briggs 	 * Set the transfer function to be called on DRQ interrupts.
    608       1.2    briggs 	 * And note that we're waiting.
    609       1.1    briggs 	 */
    610       1.4    briggs 	switch (*phasep) {
    611       1.4    briggs 	default:
    612       1.4    briggs 		panic("Unexpected phase in transfer_pdma.\n");
    613       1.4    briggs 	case PH_DATAOUT:
    614       1.4    briggs 		pdma_5380_dir = 1;
    615      1.17    briggs 		SET_5380_REG(NCR5380_ICOM, GET_5380_REG(NCR5380_ICOM)|SC_ADTB);
    616      1.17    briggs 		SET_5380_REG(NCR5380_MODE, GET_5380_REG(NCR5380_MODE)|SC_M_DMA);
    617      1.10    briggs 		SET_5380_REG(NCR5380_DMSTAT, 0);
    618       1.4    briggs 		break;
    619       1.4    briggs 	case PH_DATAIN:
    620       1.4    briggs 		pdma_5380_dir = 2;
    621      1.17    briggs 		SET_5380_REG(NCR5380_ICOM, 0);
    622      1.17    briggs 		SET_5380_REG(NCR5380_MODE, GET_5380_REG(NCR5380_MODE)|SC_M_DMA);
    623      1.10    briggs 		SET_5380_REG(NCR5380_IRCV, 0);
    624       1.4    briggs 		break;
    625       1.1    briggs 	}
    626      1.17    briggs 
    627      1.18    briggs 	PID("waiting for interrupt.")
    628       1.1    briggs 
    629       1.1    briggs 	/*
    630       1.1    briggs 	 * Now that we're set up, enable interrupts and drop processor
    631       1.2    briggs 	 * priority back down.
    632       1.1    briggs 	 */
    633       1.1    briggs 	scsi_ienable();
    634       1.1    briggs 	splx(s);
    635       1.2    briggs 	return 0;
    636       1.1    briggs 
    637       1.1    briggs scsi_timeout_error:
    638       1.1    briggs 	/*
    639       1.1    briggs 	 * Clear the DMA mode.
    640       1.1    briggs 	 */
    641       1.1    briggs 	SET_5380_REG(NCR5380_MODE, GET_5380_REG(NCR5380_MODE) & ~SC_M_DMA);
    642       1.1    briggs 	return -1;
    643       1.1    briggs }
    644       1.1    briggs #endif /* if USE_PDMA */
    645       1.1    briggs 
    646       1.1    briggs /* Include general routines. */
    647       1.5    briggs #include <mac68k/dev/ncr5380.c>
    648