Home | History | Annotate | Line # | Download | only in dev
atari5380.c revision 1.52
      1  1.52   tsutsui /*	$NetBSD: atari5380.c,v 1.52 2009/07/08 12:23:09 tsutsui Exp $	*/
      2   1.1       leo 
      3   1.1       leo /*
      4   1.1       leo  * Copyright (c) 1995 Leo Weppelman.
      5   1.1       leo  * All rights reserved.
      6   1.1       leo  *
      7   1.1       leo  * Redistribution and use in source and binary forms, with or without
      8   1.1       leo  * modification, are permitted provided that the following conditions
      9   1.1       leo  * are met:
     10   1.1       leo  * 1. Redistributions of source code must retain the above copyright
     11   1.1       leo  *    notice, this list of conditions and the following disclaimer.
     12   1.1       leo  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       leo  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       leo  *    documentation and/or other materials provided with the distribution.
     15   1.1       leo  * 3. All advertising materials mentioning features or use of this software
     16   1.1       leo  *    must display the following acknowledgement:
     17   1.1       leo  *      This product includes software developed by Leo Weppelman.
     18   1.1       leo  * 4. The name of the author may not be used to endorse or promote products
     19   1.1       leo  *    derived from this software without specific prior written permission
     20   1.1       leo  *
     21   1.1       leo  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1       leo  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1       leo  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1       leo  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1       leo  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1       leo  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1       leo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1       leo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1       leo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1       leo  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1       leo  */
     32  1.36     lukem 
     33  1.36     lukem #include <sys/cdefs.h>
     34  1.52   tsutsui __KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.52 2009/07/08 12:23:09 tsutsui Exp $");
     35  1.32       leo 
     36  1.32       leo #include "opt_atariscsi.h"
     37   1.1       leo 
     38   1.1       leo #include <sys/param.h>
     39   1.1       leo #include <sys/systm.h>
     40   1.1       leo #include <sys/kernel.h>
     41   1.1       leo #include <sys/device.h>
     42   1.1       leo #include <sys/buf.h>
     43  1.28    bouyer #include <dev/scsipi/scsi_all.h>
     44  1.28    bouyer #include <dev/scsipi/scsipi_all.h>
     45  1.28    bouyer #include <dev/scsipi/scsi_message.h>
     46  1.28    bouyer #include <dev/scsipi/scsiconf.h>
     47  1.34   thorpej 
     48  1.34   thorpej #include <uvm/uvm_extern.h>
     49   1.1       leo 
     50  1.18       leo #include <m68k/asm_single.h>
     51  1.26       leo #include <m68k/cpu.h>
     52  1.26       leo #include <m68k/cacheops.h>
     53  1.18       leo 
     54  1.11       leo #include <atari/atari/stalloc.h>
     55  1.11       leo 
     56   1.1       leo /*
     57   1.1       leo  * Include the driver definitions
     58   1.1       leo  */
     59   1.1       leo #include <atari/dev/ncr5380reg.h>
     60   1.1       leo 
     61   1.1       leo #include <machine/stdarg.h>
     62   1.1       leo #include <machine/iomap.h>
     63   1.1       leo #include <machine/mfp.h>
     64  1.52   tsutsui #include <machine/intr.h>
     65  1.24       leo 
     66   1.1       leo #if defined(FALCON_SCSI)
     67   1.1       leo #include <machine/dma.h>
     68   1.1       leo #endif
     69   1.1       leo 
     70   1.1       leo /*
     71   1.1       leo  * Set the various driver options
     72   1.1       leo  */
     73   1.1       leo #define	NREQ		18	/* Size of issue queue			*/
     74   1.1       leo #define	AUTO_SENSE	1	/* Automatically issue a request-sense 	*/
     75   1.1       leo 
     76   1.2       leo #define	DRNAME		ncrscsi	/* used in various prints		*/
     77   1.1       leo #undef	DBG_SEL			/* Show the selection process		*/
     78   1.1       leo #undef	DBG_REQ			/* Show enqueued/ready requests		*/
     79   1.2       leo #undef	DBG_ERR_RET		/* Show requests with != 0 return code	*/
     80   1.1       leo #undef	DBG_NOWRITE		/* Do not allow writes to the targets	*/
     81   1.1       leo #undef	DBG_PIO			/* Show the polled-I/O process		*/
     82   1.1       leo #undef	DBG_INF			/* Show information transfer process	*/
     83   1.1       leo #define	DBG_NOSTATIC		/* No static functions, all in DDB trace*/
     84  1.14       leo #define	DBG_PID		15	/* Keep track of driver			*/
     85   1.1       leo #define	REAL_DMA		/* Use DMA if sensible			*/
     86  1.17       leo #if defined(FALCON_SCSI)
     87   1.1       leo #define	REAL_DMA_POLL	1	/* 1: Poll for end of DMA-transfer	*/
     88   1.1       leo #else
     89   1.1       leo #define	REAL_DMA_POLL	0	/* 1: Poll for end of DMA-transfer	*/
     90   1.1       leo #endif
     91   1.1       leo #undef	USE_PDMA		/* Use special pdma-transfer function	*/
     92   1.4       leo #define MIN_PHYS	65536	/*BARF!!!!*/
     93   1.1       leo 
     94   1.1       leo /*
     95   1.8       leo  * Include more driver definitions
     96   1.8       leo  */
     97   1.8       leo #include <atari/dev/ncr5380var.h>
     98   1.8       leo 
     99   1.8       leo /*
    100   1.1       leo  * The atari specific driver options
    101   1.1       leo  */
    102   1.1       leo #undef	NO_TTRAM_DMA		/* Do not use DMA to TT-ram. This	*/
    103   1.1       leo 				/*    fails on older atari's		*/
    104   1.1       leo #define	ENABLE_NCR5380(sc)	cur_softc = sc;
    105   1.1       leo 
    106  1.48       dsl static u_char	*alloc_bounceb(u_long);
    107  1.48       dsl static void	free_bounceb(u_char *);
    108  1.48       dsl static int	machine_match(struct device *, void *, void *,
    109  1.48       dsl 							struct cfdriver *);
    110  1.48       dsl        void	scsi_ctrl(int);
    111  1.48       dsl        void	scsi_dma(int);
    112   1.9       leo 
    113   1.3       leo /*
    114   1.3       leo  * Functions that do nothing on the atari
    115   1.3       leo  */
    116   1.3       leo #define	pdma_ready()		0
    117   1.1       leo 
    118   1.1       leo #if defined(TT_SCSI)
    119  1.18       leo 
    120  1.48       dsl void	ncr5380_drq_intr(int);
    121  1.18       leo 
    122   1.1       leo /*
    123   1.1       leo  * Define all the things we need of the DMA-controller
    124   1.1       leo  */
    125   1.1       leo #define	SCSI_DMA	((struct scsi_dma *)AD_SCSI_DMA)
    126   1.1       leo #define	SCSI_5380	((struct scsi_5380 *)AD_NCR5380)
    127   1.1       leo 
    128   1.1       leo struct scsi_dma {
    129   1.1       leo 	volatile u_char		s_dma_ptr[8];	/* use only the odd bytes */
    130   1.1       leo 	volatile u_char		s_dma_cnt[8];	/* use only the odd bytes */
    131   1.1       leo 	volatile u_char		s_dma_res[4];	/* data residue register  */
    132   1.1       leo 	volatile u_char		s_dma_gap;	/* not used		  */
    133   1.1       leo 	volatile u_char		s_dma_ctrl;	/* control register	  */
    134  1.18       leo 	volatile u_char		s_dma_gap2;	/* not used		  */
    135  1.18       leo 	volatile u_char		s_hdma_ctrl;	/* Hades control register */
    136   1.1       leo };
    137   1.1       leo 
    138  1.47   tsutsui static inline void set_scsi_dma(volatile u_char *, u_long);
    139  1.47   tsutsui static inline u_long get_scsi_dma(volatile u_char *);
    140  1.47   tsutsui 
    141  1.47   tsutsui static inline void
    142  1.47   tsutsui set_scsi_dma(volatile u_char *addr, u_long val)
    143  1.47   tsutsui {
    144  1.47   tsutsui 	volatile u_char *address;
    145  1.47   tsutsui 
    146  1.47   tsutsui 	address = addr + 1;
    147  1.47   tsutsui 	__asm("movepl	%0, %1@(0)": :"d" (val), "a" (address));
    148  1.47   tsutsui }
    149  1.47   tsutsui 
    150  1.47   tsutsui static inline u_long
    151  1.47   tsutsui get_scsi_dma(volatile u_char *addr)
    152  1.47   tsutsui {
    153  1.47   tsutsui 	volatile u_char	*address;
    154  1.47   tsutsui 	u_long	nval;
    155  1.47   tsutsui 
    156  1.47   tsutsui 	address = addr + 1;
    157  1.47   tsutsui 	__asm("movepl	%1@(0), %0": "=d" (nval) : "a" (address));
    158  1.47   tsutsui 
    159  1.47   tsutsui 	return nval;
    160  1.47   tsutsui }
    161   1.1       leo 
    162   1.1       leo /*
    163   1.1       leo  * Defines for TT-DMA control register
    164   1.1       leo  */
    165   1.1       leo #define	SD_BUSERR	0x80		/* 1 = transfer caused bus error*/
    166   1.1       leo #define	SD_ZERO		0x40		/* 1 = byte counter is zero	*/
    167   1.1       leo #define	SD_ENABLE	0x02		/* 1 = Enable DMA		*/
    168   1.1       leo #define	SD_OUT		0x01		/* Direction: memory to SCSI	*/
    169   1.1       leo #define	SD_IN		0x00		/* Direction: SCSI to memory	*/
    170   1.1       leo 
    171   1.1       leo /*
    172  1.18       leo  * Defines for Hades-DMA control register
    173  1.18       leo  */
    174  1.18       leo #define	SDH_BUSERR	0x02		/* 1 = Bus error		*/
    175  1.18       leo #define SDH_EOP		0x01		/* 1 = Signal EOP on 5380	*/
    176  1.18       leo #define	SDH_ZERO	0x40		/* 1 = Byte counter is zero	*/
    177  1.18       leo 
    178  1.18       leo /*
    179   1.1       leo  * Define the 5380 register set
    180   1.1       leo  */
    181   1.1       leo struct scsi_5380 {
    182   1.1       leo 	volatile u_char	scsi_5380[16];	/* use only the odd bytes	*/
    183   1.1       leo };
    184   1.1       leo #endif /* TT_SCSI */
    185   1.1       leo 
    186   1.1       leo /**********************************************
    187   1.1       leo  * Variables present for both TT and Falcon.  *
    188   1.1       leo  **********************************************/
    189   1.1       leo 
    190   1.1       leo /*
    191   1.1       leo  * Softc of currently active controller (a bit of fake; we only have one)
    192   1.1       leo  */
    193   1.1       leo static struct ncr_softc	*cur_softc;
    194   1.1       leo 
    195   1.1       leo #if defined(TT_SCSI) && !defined(FALCON_SCSI)
    196   1.1       leo /*
    197   1.1       leo  * We can be more efficient for some functions when only TT_SCSI is selected
    198   1.1       leo  */
    199   1.1       leo #define	GET_5380_REG(rnum)	SCSI_5380->scsi_5380[(rnum << 1) | 1]
    200   1.1       leo #define	SET_5380_REG(rnum,val)	(SCSI_5380->scsi_5380[(rnum << 1) | 1] = val)
    201   1.1       leo 
    202   1.1       leo #define scsi_mach_init(sc)	scsi_tt_init(sc)
    203   1.1       leo #define scsi_ienable()		scsi_tt_ienable()
    204   1.1       leo #define scsi_idisable()		scsi_tt_idisable()
    205   1.1       leo #define	scsi_clr_ipend()	scsi_tt_clr_ipend()
    206   1.7       leo #define scsi_ipending()		(GET_5380_REG(NCR5380_DMSTAT) & SC_IRQ_SET)
    207   1.1       leo #define scsi_dma_setup(r,p,m)	scsi_tt_dmasetup(r, p, m)
    208   1.1       leo #define wrong_dma_range(r,d)	tt_wrong_dma_range(r, d)
    209   1.1       leo #define poll_edma(reqp)		tt_poll_edma(reqp)
    210   1.1       leo #define get_dma_result(r, b)	tt_get_dma_result(r, b)
    211  1.16       leo #define	can_access_5380()	1
    212  1.18       leo #define emulated_dma()		((machineid & ATARI_HADES) ? 1 : 0)
    213   1.1       leo 
    214   1.1       leo #define fair_to_keep_dma()	1
    215   1.1       leo #define claimed_dma()		1
    216   1.1       leo #define reconsider_dma()
    217   1.1       leo 
    218   1.1       leo #endif /* defined(TT_SCSI) && !defined(FALCON_SCSI) */
    219   1.1       leo 
    220   1.1       leo #if defined(TT_SCSI)
    221   1.1       leo 
    222   1.1       leo /*
    223   1.9       leo  * Prototype functions defined below
    224   1.9       leo  */
    225   1.9       leo #ifdef NO_TTRAM_DMA
    226  1.48       dsl static int tt_wrong_dma_range(SC_REQ *, struct dma_chain *);
    227   1.9       leo #endif
    228  1.48       dsl static void	scsi_tt_init(struct ncr_softc *);
    229  1.48       dsl static u_char	get_tt_5380_reg(u_short);
    230  1.48       dsl static void	set_tt_5380_reg(u_short, u_short);
    231  1.48       dsl static void	scsi_tt_dmasetup(SC_REQ *, u_int, u_char);
    232  1.48       dsl static int	tt_poll_edma(SC_REQ *);
    233  1.48       dsl static u_char	*ptov(SC_REQ *, u_long*);
    234  1.48       dsl static int	tt_get_dma_result(SC_REQ *, u_long *);
    235  1.48       dsl        void	scsi_tt_ienable(void);
    236  1.48       dsl        void	scsi_tt_idisable(void);
    237  1.48       dsl        void	scsi_tt_clr_ipend(void);
    238   1.9       leo 
    239   1.9       leo /*
    240   1.1       leo  * Define these too, so we can use them locally...
    241   1.1       leo  */
    242   1.1       leo #define	GET_TT_REG(rnum)	SCSI_5380->scsi_5380[(rnum << 1) | 1]
    243   1.1       leo #define	SET_TT_REG(rnum,val)	(SCSI_5380->scsi_5380[(rnum << 1) | 1] = val)
    244   1.1       leo 
    245   1.1       leo #ifdef NO_TTRAM_DMA
    246   1.9       leo static int
    247  1.49       dsl tt_wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
    248   1.1       leo {
    249   1.1       leo 	if (dm->dm_addr & 0xff000000) {
    250   1.1       leo 		reqp->dr_flag |= DRIVER_BOUNCING;
    251   1.1       leo 		return(1);
    252   1.1       leo 	}
    253   1.1       leo 	return(0);
    254   1.1       leo }
    255   1.1       leo #else
    256   1.1       leo #define	tt_wrong_dma_range(reqp, dm)	0
    257   1.1       leo #endif
    258   1.1       leo 
    259   1.9       leo static void
    260   1.9       leo scsi_tt_init(struct ncr_softc *sc)
    261   1.1       leo {
    262   1.1       leo 	/*
    263   1.1       leo 	 * Enable SCSI-related interrupts
    264   1.1       leo 	 */
    265   1.1       leo 	MFP2->mf_aer  |= 0x80;		/* SCSI IRQ goes HIGH!!!!!	*/
    266   1.1       leo 
    267  1.18       leo 	if (machineid & ATARI_TT) {
    268  1.35       wiz 		/* SCSI-DMA interrupts		*/
    269  1.18       leo 		MFP2->mf_ierb |= IB_SCDM;
    270  1.30       leo 		MFP2->mf_iprb  = (u_int8_t)~IB_SCDM;
    271  1.18       leo 		MFP2->mf_imrb |= IB_SCDM;
    272  1.18       leo 	}
    273  1.24       leo 	else if (machineid & ATARI_HADES) {
    274  1.24       leo 		SCSI_DMA->s_hdma_ctrl = 0;
    275  1.24       leo 
    276  1.24       leo 		if (intr_establish(2, AUTO_VEC, 0,
    277  1.24       leo 					(hw_ifun_t)ncr5380_drq_intr,
    278  1.24       leo 					NULL) == NULL)
    279  1.24       leo 		panic("scsi_tt_init: Can't establish drq-interrupt");
    280  1.24       leo 	}
    281  1.24       leo 	else panic("scsi_tt_init: should not come here");
    282   1.1       leo 
    283   1.1       leo 	MFP2->mf_iera |= IA_SCSI;	/* SCSI-5380 interrupts		*/
    284  1.30       leo 	MFP2->mf_ipra  = (u_int8_t)~IA_SCSI;
    285   1.1       leo 	MFP2->mf_imra |= IA_SCSI;
    286   1.1       leo 
    287   1.1       leo 	/*
    288  1.46       abs 	 * LWP: DMA transfers to TT-ram causes data to be garbled
    289  1.46       abs 	 * without notice on some TT-mainboard revisions.
    290  1.46       abs 	 * If programs generate mysterious Segmentations faults,
    291  1.46       abs 	 * try enabling NO_TTRAM_DMA.
    292   1.1       leo 	 */
    293   1.1       leo #ifdef NO_TTRAM_DMA
    294  1.20  christos 	printf(": DMA to TT-RAM is disabled!");
    295   1.1       leo #endif
    296   1.1       leo }
    297   1.1       leo 
    298   1.9       leo static u_char
    299   1.9       leo get_tt_5380_reg(u_short rnum)
    300   1.1       leo {
    301   1.1       leo 	return(SCSI_5380->scsi_5380[(rnum << 1) | 1]);
    302   1.1       leo }
    303   1.1       leo 
    304   1.9       leo static void
    305   1.9       leo set_tt_5380_reg(u_short rnum, u_short val)
    306   1.1       leo {
    307   1.1       leo 	SCSI_5380->scsi_5380[(rnum << 1) | 1] = val;
    308   1.1       leo }
    309   1.1       leo 
    310  1.40     perry extern inline void
    311   1.9       leo scsi_tt_ienable(void)
    312   1.1       leo {
    313  1.18       leo 	if (machineid & ATARI_TT)
    314  1.18       leo 		single_inst_bset_b(MFP2->mf_imrb, IB_SCDM);
    315  1.18       leo 	single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
    316   1.1       leo }
    317   1.1       leo 
    318  1.40     perry extern inline void
    319   1.9       leo scsi_tt_idisable(void)
    320   1.1       leo {
    321  1.18       leo 	if (machineid & ATARI_TT)
    322  1.18       leo 		single_inst_bclr_b(MFP2->mf_imrb, IB_SCDM);
    323  1.18       leo 	single_inst_bclr_b(MFP2->mf_imra, IA_SCSI);
    324   1.1       leo }
    325   1.1       leo 
    326  1.40     perry extern inline void
    327   1.9       leo scsi_tt_clr_ipend(void)
    328   1.1       leo {
    329   1.1       leo 	int	tmp;
    330   1.1       leo 
    331   1.1       leo 	SCSI_DMA->s_dma_ctrl = 0;
    332   1.1       leo 	tmp = GET_TT_REG(NCR5380_IRCV);
    333  1.18       leo 	if (machineid & ATARI_TT)
    334  1.30       leo 		MFP2->mf_iprb = (u_int8_t)~IB_SCDM;
    335  1.30       leo 	MFP2->mf_ipra = (u_int8_t)~IA_SCSI;
    336  1.21       leo 
    337  1.21       leo 	/*
    338  1.21       leo 	 * Remove interrupts already scheduled.
    339  1.21       leo 	 */
    340  1.21       leo 	rem_sicallback((si_farg)ncr_ctrl_intr);
    341  1.21       leo 	rem_sicallback((si_farg)ncr_dma_intr);
    342   1.1       leo }
    343   1.1       leo 
    344   1.9       leo static void
    345   1.9       leo scsi_tt_dmasetup(SC_REQ *reqp, u_int phase, u_char	mode)
    346   1.1       leo {
    347   1.1       leo 	if (PH_IN(phase)) {
    348   1.1       leo 		SCSI_DMA->s_dma_ctrl = SD_IN;
    349  1.18       leo 		if (machineid & ATARI_HADES)
    350  1.18       leo 		    SCSI_DMA->s_hdma_ctrl &= ~(SDH_BUSERR|SDH_EOP);
    351  1.44   tsutsui 		set_scsi_dma(SCSI_DMA->s_dma_ptr, reqp->dm_cur->dm_addr);
    352  1.44   tsutsui 		set_scsi_dma(SCSI_DMA->s_dma_cnt, reqp->dm_cur->dm_count);
    353   1.1       leo 		SET_TT_REG(NCR5380_ICOM, 0);
    354   1.1       leo 		SET_TT_REG(NCR5380_MODE, mode);
    355   1.1       leo 		SCSI_DMA->s_dma_ctrl = SD_ENABLE;
    356   1.1       leo 		SET_TT_REG(NCR5380_IRCV, 0);
    357   1.1       leo 	}
    358   1.1       leo 	else {
    359   1.1       leo 		SCSI_DMA->s_dma_ctrl = SD_OUT;
    360  1.18       leo 		if (machineid & ATARI_HADES)
    361  1.18       leo 		    SCSI_DMA->s_hdma_ctrl &= ~(SDH_BUSERR|SDH_EOP);
    362  1.44   tsutsui 		set_scsi_dma(SCSI_DMA->s_dma_ptr, reqp->dm_cur->dm_addr);
    363  1.44   tsutsui 		set_scsi_dma(SCSI_DMA->s_dma_cnt, reqp->dm_cur->dm_count);
    364   1.1       leo 		SET_TT_REG(NCR5380_MODE, mode);
    365   1.1       leo 		SET_TT_REG(NCR5380_ICOM, SC_ADTB);
    366   1.1       leo 		SET_TT_REG(NCR5380_DMSTAT, 0);
    367   1.1       leo 		SCSI_DMA->s_dma_ctrl = SD_ENABLE|SD_OUT;
    368   1.1       leo 	}
    369   1.1       leo }
    370   1.1       leo 
    371   1.1       leo static int
    372   1.8       leo tt_poll_edma(SC_REQ *reqp)
    373   1.1       leo {
    374   1.1       leo 	u_char	dmstat, dmastat;
    375   1.1       leo 	int	timeout = 9000; /* XXX */
    376   1.1       leo 
    377   1.1       leo 	/*
    378   1.1       leo 	 * We wait here until the DMA has finished. This can be
    379   1.1       leo 	 * achieved by checking the following conditions:
    380   1.1       leo 	 *   - 5380:
    381   1.1       leo 	 *	- End of DMA flag is set
    382   1.1       leo 	 *	- We lost BSY (error!!)
    383  1.33       wiz 	 *	- A phase mismatch has occurred (partial transfer)
    384   1.1       leo 	 *   - DMA-controller:
    385   1.1       leo 	 *	- A bus error occurred (Kernel error!!)
    386   1.1       leo 	 *	- All bytes are transferred
    387   1.1       leo 	 * If one of the terminating conditions was met, we call
    388   1.1       leo 	 * 'dma_ready' to check errors and perform the bookkeeping.
    389   1.1       leo 	 */
    390   1.1       leo 
    391  1.29       leo 	scsi_tt_idisable();
    392   1.1       leo 	for (;;) {
    393   1.1       leo 		delay(20);
    394   1.1       leo 		if (--timeout <= 0) {
    395   1.1       leo 			ncr_tprint(reqp, "timeout on polled transfer\n");
    396  1.11       leo 			reqp->xs->error = XS_TIMEOUT;
    397  1.29       leo 			scsi_tt_ienable();
    398   1.1       leo 			return(0);
    399   1.1       leo 		}
    400   1.1       leo 		dmstat  = GET_TT_REG(NCR5380_DMSTAT);
    401  1.25       leo 
    402  1.25       leo 		if ((machineid & ATARI_HADES) && (dmstat & SC_DMA_REQ)) {
    403  1.27       leo 			ncr5380_drq_intr(1);
    404  1.25       leo 			dmstat  = GET_TT_REG(NCR5380_DMSTAT);
    405  1.25       leo 		}
    406  1.25       leo 
    407   1.1       leo 		dmastat = SCSI_DMA->s_dma_ctrl;
    408   1.1       leo 		if (dmstat & (SC_END_DMA|SC_BSY_ERR|SC_IRQ_SET))
    409   1.1       leo 			break;
    410   1.1       leo 		if (!(dmstat & SC_PHS_MTCH))
    411   1.1       leo 			break;
    412   1.1       leo 		if (dmastat & (SD_BUSERR|SD_ZERO))
    413   1.1       leo 			break;
    414   1.1       leo 	}
    415  1.29       leo 	scsi_tt_ienable();
    416   1.1       leo 	return(1);
    417   1.1       leo }
    418   1.1       leo 
    419   1.2       leo /*
    420   1.2       leo  * Convert physical DMA address to a virtual address.
    421   1.2       leo  */
    422   1.2       leo static u_char *
    423   1.8       leo ptov(SC_REQ *reqp, u_long *phaddr)
    424   1.2       leo {
    425   1.2       leo 	struct dma_chain	*dm;
    426   1.2       leo 	u_char			*vaddr;
    427   1.2       leo 
    428   1.2       leo 	dm = reqp->dm_chain;
    429   1.2       leo 	vaddr = reqp->xdata_ptr;
    430   1.2       leo 	for(; dm < reqp->dm_cur; dm++)
    431   1.2       leo 		vaddr += dm->dm_count;
    432   1.2       leo 	vaddr += (u_long)phaddr - dm->dm_addr;
    433   1.2       leo 	return(vaddr);
    434   1.2       leo }
    435   1.2       leo 
    436   1.1       leo static int
    437   1.8       leo tt_get_dma_result(SC_REQ *reqp, u_long *bytes_left)
    438   1.1       leo {
    439   1.1       leo 	int	dmastat, dmstat;
    440   1.1       leo 	u_char	*byte_p;
    441  1.47   tsutsui 	u_long	leftover;
    442   1.1       leo 
    443   1.1       leo 	dmastat = SCSI_DMA->s_dma_ctrl;
    444   1.1       leo 	dmstat  = GET_TT_REG(NCR5380_DMSTAT);
    445  1.47   tsutsui 	leftover = get_scsi_dma(SCSI_DMA->s_dma_cnt);
    446  1.47   tsutsui 	byte_p = (u_char *)get_scsi_dma(SCSI_DMA->s_dma_ptr);
    447   1.1       leo 
    448   1.1       leo 	if (dmastat & SD_BUSERR) {
    449   1.1       leo 		/*
    450   1.1       leo 		 * The DMA-controller seems to access 8 bytes beyond
    451   1.1       leo 		 * it's limits on output. Therefore check also the byte
    452   1.1       leo 		 * count. If it's zero, ignore the bus error.
    453   1.1       leo 		 */
    454   1.1       leo 		if (leftover != 0) {
    455   1.1       leo 			ncr_tprint(reqp,
    456   1.1       leo 				"SCSI-DMA buserror - accessing 0x%x\n", byte_p);
    457   1.1       leo 			reqp->xs->error = XS_DRIVER_STUFFUP;
    458   1.1       leo 		}
    459   1.1       leo 	}
    460   1.1       leo 
    461   1.1       leo 	/*
    462   1.1       leo 	 * We handle the following special condition below:
    463   1.1       leo 	 *  -- The device disconnects in the middle of a write operation --
    464   1.1       leo 	 * In this case, the 5380 has already pre-fetched the next byte from
    465   1.1       leo 	 * the DMA-controller before the phase mismatch occurs. Therefore,
    466   1.1       leo 	 * leftover is 1 too low.
    467   1.1       leo 	 * This does not always happen! Therefore, we only do this when
    468   1.1       leo 	 * leftover is odd. This assumes that DMA transfers are _even_! This
    469   1.1       leo 	 * is normally the case on disks and types but might not always be.
    470   1.1       leo 	 * XXX: Check if ACK is consistently high on these occasions LWP
    471   1.1       leo 	 */
    472   1.1       leo 	if ((leftover & 1) && !(dmstat & SC_PHS_MTCH) && PH_OUT(reqp->phase))
    473   1.1       leo 		leftover++;
    474   1.1       leo 
    475   1.1       leo 	/*
    476   1.1       leo 	 * Check if there are some 'restbytes' left in the DMA-controller.
    477   1.1       leo 	 */
    478  1.18       leo 	if ((machineid & ATARI_TT) && ((u_long)byte_p & 3)
    479  1.18       leo 	    && PH_IN(reqp->phase)) {
    480  1.45   tsutsui 		u_char	*p;
    481  1.45   tsutsui 		volatile u_char *q;
    482   1.1       leo 
    483   1.8       leo 		p = ptov(reqp, (u_long *)((u_long)byte_p & ~3));
    484  1.45   tsutsui 		q = SCSI_DMA->s_dma_res;
    485   1.2       leo 		switch ((u_long)byte_p & 3) {
    486   1.1       leo 			case 3: *p++ = *q++;
    487   1.1       leo 			case 2: *p++ = *q++;
    488   1.1       leo 			case 1: *p++ = *q++;
    489   1.1       leo 		}
    490   1.1       leo 	}
    491   1.1       leo 	*bytes_left = leftover;
    492   1.1       leo 	return ((dmastat & (SD_BUSERR|SD_ZERO)) ? 1 : 0);
    493   1.1       leo }
    494   1.1       leo 
    495  1.18       leo static u_char *dma_ptr;
    496  1.18       leo void
    497  1.49       dsl ncr5380_drq_intr(int poll)
    498  1.18       leo {
    499  1.18       leo extern	int			*nofault;
    500  1.18       leo 	label_t			faultbuf;
    501  1.18       leo 	int			write;
    502  1.47   tsutsui 	u_long	 		count;
    503  1.45   tsutsui 	volatile u_char		*data_p = (volatile u_char *)(stio_addr+0x741);
    504  1.18       leo 
    505  1.18       leo 	/*
    506  1.18       leo 	 * Block SCSI interrupts while emulating DMA. They come
    507  1.18       leo 	 * at a higher priority.
    508  1.18       leo 	 */
    509  1.22       leo 	single_inst_bclr_b(MFP2->mf_imra, IA_SCSI);
    510  1.18       leo 
    511  1.18       leo 	/*
    512  1.18       leo 	 * Setup for a possible bus error caused by SCSI controller
    513  1.18       leo 	 * switching out of DATA-IN/OUT before we're done with the
    514  1.18       leo 	 * current transfer.
    515  1.18       leo 	 */
    516  1.18       leo 	nofault = (int *) &faultbuf;
    517  1.18       leo 
    518  1.18       leo 	if (setjmp((label_t *) nofault)) {
    519  1.18       leo 		u_long	cnt, tmp;
    520  1.18       leo 
    521  1.18       leo 		PID("drq berr");
    522  1.18       leo 		nofault = (int *) 0;
    523  1.18       leo 
    524  1.18       leo 		/*
    525  1.18       leo 		 * Determine number of bytes transferred
    526  1.18       leo 		 */
    527  1.47   tsutsui 		cnt = (u_long)dma_ptr - get_scsi_dma(SCSI_DMA->s_dma_ptr);
    528  1.18       leo 
    529  1.18       leo 		if (cnt != 0) {
    530  1.18       leo 			/*
    531  1.35       wiz 			 * Update the DMA pointer/count fields
    532  1.18       leo 			 */
    533  1.47   tsutsui 			set_scsi_dma(SCSI_DMA->s_dma_ptr, (u_long)dma_ptr);
    534  1.47   tsutsui 			tmp = get_scsi_dma(SCSI_DMA->s_dma_cnt);
    535  1.18       leo 			set_scsi_dma(SCSI_DMA->s_dma_cnt, tmp - cnt);
    536  1.18       leo 
    537  1.18       leo 			if (tmp > cnt) {
    538  1.18       leo 				/*
    539  1.18       leo 				 * Still more to transfer
    540  1.18       leo 				 */
    541  1.27       leo 				if (!poll)
    542  1.27       leo 				   single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
    543  1.18       leo 				return;
    544  1.18       leo 			}
    545  1.18       leo 
    546  1.18       leo 			/*
    547  1.18       leo 			 * Signal EOP to 5380
    548  1.18       leo 			 */
    549  1.18       leo 			SCSI_DMA->s_hdma_ctrl |= SDH_EOP;
    550  1.18       leo 		}
    551  1.18       leo 		else {
    552  1.25       leo 			nofault = (int *) &faultbuf;
    553  1.25       leo 
    554  1.18       leo 			/*
    555  1.25       leo 			 * Try to figure out if the byte-count was
    556  1.25       leo 			 * zero because there was no (more) data or
    557  1.25       leo 			 * because the dma_ptr is bogus.
    558  1.18       leo 			 */
    559  1.25       leo 			if (setjmp((label_t *) nofault)) {
    560  1.25       leo 				/*
    561  1.25       leo 				 * Set the bus-error bit
    562  1.25       leo 				 */
    563  1.25       leo 				SCSI_DMA->s_hdma_ctrl |= SDH_BUSERR;
    564  1.25       leo 			}
    565  1.39     perry 			__asm volatile ("tstb	%0@(0)": : "a" (dma_ptr));
    566  1.25       leo 			nofault = (int *)0;
    567  1.18       leo 		}
    568  1.18       leo 
    569  1.18       leo 		/*
    570  1.18       leo 		 * Schedule an interrupt
    571  1.18       leo 		 */
    572  1.27       leo 		if (!poll && (SCSI_DMA->s_dma_ctrl & SD_ENABLE))
    573  1.18       leo 		    add_sicallback((si_farg)ncr_dma_intr, (void *)cur_softc, 0);
    574  1.18       leo 
    575  1.18       leo 		/*
    576  1.18       leo 		 * Clear DMA-mode
    577  1.18       leo 		 */
    578  1.18       leo 		SCSI_DMA->s_dma_ctrl &= ~SD_ENABLE;
    579  1.27       leo 		if (!poll)
    580  1.27       leo 			single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
    581  1.18       leo 
    582  1.18       leo 		return;
    583  1.18       leo 	}
    584  1.18       leo 
    585  1.18       leo 	write = (SCSI_DMA->s_dma_ctrl & SD_OUT) ? 1 : 0;
    586  1.18       leo #if DBG_PID
    587  1.18       leo 	if (write) {
    588  1.18       leo 		PID("drq (in)");
    589  1.18       leo 	} else {
    590  1.18       leo 		PID("drq (out)");
    591  1.18       leo 	}
    592  1.18       leo #endif
    593  1.18       leo 
    594  1.47   tsutsui 	count = get_scsi_dma(SCSI_DMA->s_dma_cnt);
    595  1.47   tsutsui 	dma_ptr = (u_char *)get_scsi_dma(SCSI_DMA->s_dma_ptr);
    596  1.18       leo 
    597  1.18       leo 	/*
    598  1.18       leo 	 * Keep pushing bytes until we're done or a bus-error
    599  1.18       leo 	 * signals that the SCSI controller is not ready.
    600  1.18       leo 	 * NOTE: I tried some optimalizations in these loops,
    601  1.18       leo 	 *       but they had no effect on transfer speed.
    602  1.18       leo 	 */
    603  1.18       leo 	if (write) {
    604  1.18       leo 		while(count--) {
    605  1.18       leo 			*data_p = *dma_ptr++;
    606  1.18       leo 		}
    607  1.18       leo 	}
    608  1.18       leo 	else {
    609  1.18       leo 		while(count--) {
    610  1.18       leo 			*dma_ptr++ = *data_p;
    611  1.18       leo 		}
    612  1.18       leo 	}
    613  1.18       leo 
    614  1.18       leo 	/*
    615  1.29       leo 	 * OK.  No bus error occurred above.  Clear the nofault flag
    616  1.29       leo 	 * so we no longer short-circuit bus errors.
    617  1.29       leo 	 */
    618  1.29       leo 	nofault = (int *) 0;
    619  1.29       leo 
    620  1.29       leo 	/*
    621  1.18       leo 	 * Schedule an interrupt
    622  1.18       leo 	 */
    623  1.27       leo 	if (!poll && (SCSI_DMA->s_dma_ctrl & SD_ENABLE))
    624  1.18       leo 	    add_sicallback((si_farg)ncr_dma_intr, (void *)cur_softc, 0);
    625  1.18       leo 
    626  1.18       leo 	/*
    627  1.18       leo 	 * Clear DMA-mode
    628  1.18       leo 	 */
    629  1.18       leo 	SCSI_DMA->s_dma_ctrl &= ~SD_ENABLE;
    630  1.18       leo 
    631  1.18       leo 	/*
    632  1.18       leo 	 * Update the DMA 'registers' to reflect that all bytes
    633  1.18       leo 	 * have been transfered and tell this to the 5380 too.
    634  1.18       leo 	 */
    635  1.18       leo 	set_scsi_dma(SCSI_DMA->s_dma_ptr, (u_long)dma_ptr);
    636  1.18       leo 	set_scsi_dma(SCSI_DMA->s_dma_cnt, 0);
    637  1.18       leo 	SCSI_DMA->s_hdma_ctrl |= SDH_EOP;
    638  1.18       leo 
    639  1.18       leo 	PID("end drq");
    640  1.27       leo 	if (!poll)
    641  1.27       leo 		single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
    642  1.18       leo 
    643  1.18       leo 	return;
    644  1.18       leo }
    645  1.18       leo 
    646   1.1       leo #endif /* defined(TT_SCSI) */
    647   1.1       leo 
    648   1.1       leo #if defined(FALCON_SCSI) && !defined(TT_SCSI)
    649   1.1       leo 
    650   1.1       leo #define	GET_5380_REG(rnum)	get_falcon_5380_reg(rnum)
    651   1.1       leo #define	SET_5380_REG(rnum,val)	set_falcon_5380_reg(rnum, val)
    652   1.1       leo #define scsi_mach_init(sc)	scsi_falcon_init(sc)
    653   1.1       leo #define scsi_ienable()		scsi_falcon_ienable()
    654   1.1       leo #define scsi_idisable()		scsi_falcon_idisable()
    655   1.1       leo #define	scsi_clr_ipend()	scsi_falcon_clr_ipend()
    656   1.7       leo #define	scsi_ipending()		scsi_falcon_ipending()
    657   1.1       leo #define scsi_dma_setup(r,p,m)	scsi_falcon_dmasetup(r, p, m)
    658   1.1       leo #define wrong_dma_range(r,d)	falcon_wrong_dma_range(r, d)
    659   1.1       leo #define poll_edma(reqp)		falcon_poll_edma(reqp)
    660   1.1       leo #define get_dma_result(r, b)	falcon_get_dma_result(r, b)
    661  1.16       leo #define	can_access_5380()	falcon_can_access_5380()
    662  1.18       leo #define	emulated_dma()		0
    663   1.1       leo 
    664   1.1       leo #define fair_to_keep_dma()	(!st_dmawanted())
    665   1.1       leo #define claimed_dma()		falcon_claimed_dma()
    666   1.1       leo #define reconsider_dma()	falcon_reconsider_dma()
    667   1.1       leo 
    668   1.1       leo #endif /* defined(FALCON_SCSI) && !defined(TT_SCSI) */
    669   1.1       leo 
    670   1.1       leo #if defined(FALCON_SCSI)
    671   1.1       leo 
    672   1.9       leo /*
    673   1.9       leo  * Prototype functions defined below
    674   1.9       leo  */
    675  1.48       dsl static void	scsi_falcon_init(struct ncr_softc *);
    676  1.48       dsl static u_char	get_falcon_5380_reg(u_short);
    677  1.48       dsl static void	set_falcon_5380_reg(u_short, u_short);
    678  1.48       dsl static int	falcon_wrong_dma_range(SC_REQ *, struct dma_chain *);
    679  1.48       dsl static void	fal1_dma(u_int, u_int, SC_REQ *);
    680  1.48       dsl static void	scsi_falcon_dmasetup(SC_REQ  *, u_int, u_char);
    681  1.48       dsl static int	falcon_poll_edma(SC_REQ  *);
    682  1.48       dsl static int	falcon_get_dma_result(SC_REQ  *, u_long *);
    683  1.48       dsl        int	falcon_can_access_5380(void);
    684  1.48       dsl        void	scsi_falcon_clr_ipend(void);
    685  1.48       dsl        void	scsi_falcon_idisable(void);
    686  1.48       dsl        void	scsi_falcon_ienable(void);
    687  1.48       dsl        int	scsi_falcon_ipending(void);
    688  1.48       dsl        int	falcon_claimed_dma(void);
    689  1.48       dsl        void	falcon_reconsider_dma(void);
    690   1.1       leo 
    691   1.9       leo static void
    692  1.49       dsl scsi_falcon_init(struct ncr_softc *sc)
    693   1.1       leo {
    694   1.1       leo 	/*
    695   1.1       leo 	 * Enable disk related interrupts
    696   1.1       leo 	 */
    697   1.1       leo 	MFP->mf_ierb  |= IB_DINT;
    698  1.30       leo 	MFP->mf_iprb   = (u_int8_t)~IB_DINT;
    699   1.1       leo 	MFP->mf_imrb  |= IB_DINT;
    700   1.1       leo }
    701   1.1       leo 
    702   1.9       leo static u_char
    703  1.49       dsl get_falcon_5380_reg(u_short rnum)
    704   1.1       leo {
    705   1.1       leo 	DMA->dma_mode = DMA_SCSI + rnum;
    706   1.1       leo 	return(DMA->dma_data);
    707   1.1       leo }
    708   1.1       leo 
    709   1.9       leo static void
    710  1.50       dsl set_falcon_5380_reg(u_short rnum, u_short val)
    711   1.1       leo {
    712   1.1       leo 	DMA->dma_mode = DMA_SCSI + rnum;
    713   1.1       leo 	DMA->dma_data = val;
    714   1.1       leo }
    715   1.1       leo 
    716  1.40     perry extern inline void
    717  1.51    cegger scsi_falcon_ienable(void)
    718   1.1       leo {
    719  1.23       leo 	single_inst_bset_b(MFP->mf_imrb, IB_DINT);
    720   1.1       leo }
    721   1.1       leo 
    722  1.40     perry extern inline void
    723  1.51    cegger scsi_falcon_idisable(void)
    724   1.1       leo {
    725  1.23       leo 	single_inst_bclr_b(MFP->mf_imrb, IB_DINT);
    726   1.1       leo }
    727   1.1       leo 
    728  1.40     perry extern inline void
    729  1.51    cegger scsi_falcon_clr_ipend(void)
    730   1.1       leo {
    731   1.1       leo 	int	tmp;
    732   1.1       leo 
    733   1.1       leo 	tmp = get_falcon_5380_reg(NCR5380_IRCV);
    734  1.15       leo 	rem_sicallback((si_farg)ncr_ctrl_intr);
    735   1.1       leo }
    736   1.1       leo 
    737  1.40     perry extern inline int
    738  1.51    cegger scsi_falcon_ipending(void)
    739   1.7       leo {
    740  1.13       leo 	if (connected && (connected->dr_flag & DRIVER_IN_DMA)) {
    741  1.13       leo 		/*
    742  1.13       leo 		 *  XXX: When DMA is running, we are only allowed to
    743  1.13       leo 		 *       check the 5380 when DMA _might_ be finished.
    744  1.13       leo 		 */
    745  1.13       leo 		if (MFP->mf_gpip & IO_DINT)
    746  1.13       leo 		    return (0); /* XXX: Actually: we're not allowed to check */
    747  1.16       leo 
    748  1.35       wiz 		/* LWP: 28-06, must be a DMA interrupt! should the
    749  1.35       wiz 		 * ST-DMA unit be taken out of DMA mode?????
    750  1.16       leo 		 */
    751  1.16       leo 		DMA->dma_mode = 0x90;
    752  1.16       leo 
    753  1.13       leo 	}
    754  1.13       leo 	return(get_falcon_5380_reg(NCR5380_DMSTAT) & SC_IRQ_SET);
    755   1.7       leo }
    756   1.7       leo 
    757   1.9       leo static int
    758  1.49       dsl falcon_wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
    759   1.1       leo {
    760   1.1       leo 	/*
    761   1.1       leo 	 * Do not allow chains yet! See also comment with
    762   1.1       leo 	 * falcon_poll_edma() !!!
    763   1.1       leo 	 */
    764   1.1       leo 	if (((dm - reqp->dm_chain) > 0) || (dm->dm_addr & 0xff000000)) {
    765   1.1       leo 		reqp->dr_flag |= DRIVER_BOUNCING;
    766   1.1       leo 		return(1);
    767   1.1       leo 	}
    768   1.2       leo 	/*
    769   1.2       leo 	 * Never allow DMA to happen on a Falcon when the transfer
    770   1.2       leo 	 * size is no multiple of 512. This is the transfer unit of the
    771   1.2       leo 	 * ST DMA-controller.
    772   1.2       leo 	 */
    773   1.2       leo 	if(dm->dm_count & 511)
    774   1.2       leo 		return(1);
    775   1.1       leo 	return(0);
    776   1.1       leo }
    777   1.1       leo 
    778   1.1       leo static	int falcon_lock = 0;
    779   1.1       leo 
    780  1.40     perry extern inline int
    781  1.51    cegger falcon_claimed_dma(void)
    782   1.1       leo {
    783  1.11       leo 	if (falcon_lock != DMA_LOCK_GRANT) {
    784  1.11       leo 		if (falcon_lock == DMA_LOCK_REQ) {
    785   1.1       leo 			/*
    786   1.1       leo 			 * DMA access is being claimed.
    787   1.1       leo 			 */
    788   1.1       leo 			return(0);
    789   1.1       leo 		}
    790  1.15       leo 		if (!st_dmagrab((dma_farg)ncr_ctrl_intr, (dma_farg)run_main,
    791  1.15       leo 						cur_softc, &falcon_lock, 1))
    792   1.1       leo 			return(0);
    793   1.1       leo 	}
    794   1.1       leo 	return(1);
    795   1.1       leo }
    796   1.1       leo 
    797  1.40     perry extern inline void
    798  1.51    cegger falcon_reconsider_dma(void)
    799   1.1       leo {
    800   1.1       leo 	if (falcon_lock && (connected == NULL) && (discon_q == NULL)) {
    801   1.1       leo 		/*
    802   1.1       leo 		 * No need to keep DMA locked by us as we are not currently
    803   1.1       leo 		 * connected and no disconnected jobs are pending.
    804   1.1       leo 		 */
    805  1.15       leo 		rem_sicallback((si_farg)ncr_ctrl_intr);
    806  1.15       leo 		st_dmafree(cur_softc, &falcon_lock);
    807   1.1       leo 	}
    808   1.1       leo 
    809   1.1       leo 	if (!falcon_lock && (issue_q != NULL)) {
    810   1.1       leo 		/*
    811   1.1       leo 		 * We must (re)claim DMA access as there are jobs
    812   1.1       leo 		 * waiting in the issue queue.
    813   1.1       leo 		 */
    814  1.15       leo 		st_dmagrab((dma_farg)ncr_ctrl_intr, (dma_farg)run_main,
    815  1.15       leo 						cur_softc, &falcon_lock, 0);
    816   1.1       leo 	}
    817   1.1       leo }
    818   1.1       leo 
    819   1.9       leo static void
    820  1.50       dsl fal1_dma(u_int dir, u_int nsects, SC_REQ *reqp)
    821   1.1       leo {
    822   1.1       leo 	dir <<= 8;
    823  1.42  christos 	st_dmaaddr_set((void *)reqp->dm_cur->dm_addr);
    824   1.1       leo 	DMA->dma_mode = 0x90 | dir;
    825   1.1       leo 	DMA->dma_mode = 0x90 | (dir ^ DMA_WRBIT);
    826   1.1       leo 	DMA->dma_mode = 0x90 | dir;
    827   1.1       leo 	DMA->dma_data = nsects;
    828   1.7       leo 	delay(2);	/* _really_ needed (Thomas Gerner) */
    829   1.1       leo 	DMA->dma_mode = 0x10 | dir;
    830   1.1       leo }
    831   1.1       leo 
    832   1.9       leo static void
    833  1.49       dsl scsi_falcon_dmasetup(SC_REQ *reqp, u_int phase, u_char mode)
    834   1.1       leo {
    835   1.1       leo 	int	nsects = reqp->dm_cur->dm_count / 512; /* XXX */
    836   1.1       leo 
    837   1.1       leo 	/*
    838   1.1       leo 	 * XXX: We should probably clear the fifo before putting the
    839   1.1       leo 	 *      5380 into DMA-mode.
    840   1.1       leo 	 */
    841   1.1       leo 	if (PH_IN(phase)) {
    842   1.1       leo 		set_falcon_5380_reg(NCR5380_ICOM, 0);
    843   1.1       leo 		set_falcon_5380_reg(NCR5380_MODE, mode);
    844   1.1       leo 		set_falcon_5380_reg(NCR5380_IRCV, 0);
    845   1.1       leo 		fal1_dma(0, nsects, reqp);
    846   1.1       leo 	}
    847   1.1       leo 	else {
    848   1.1       leo 		set_falcon_5380_reg(NCR5380_MODE, mode);
    849   1.1       leo 		set_falcon_5380_reg(NCR5380_ICOM, SC_ADTB);
    850   1.1       leo 		set_falcon_5380_reg(NCR5380_DMSTAT, 0);
    851   1.1       leo 		fal1_dma(1, nsects, reqp);
    852   1.1       leo 	}
    853   1.1       leo }
    854   1.1       leo 
    855   1.1       leo static int
    856  1.49       dsl falcon_poll_edma(SC_REQ *reqp)
    857   1.1       leo {
    858   1.1       leo 	int	timeout = 9000; /* XXX */
    859   1.1       leo 
    860   1.1       leo 	/*
    861   1.1       leo 	 * Because of the Falcon hardware, it is impossible to reach
    862   1.1       leo 	 * the 5380 while doing DMA-transfers. So we have to rely on
    863   1.1       leo 	 * the interrupt line to determine if DMA-has finished. the
    864   1.1       leo 	 * DMA-controller itself will never fire an interrupt. This means
    865   1.1       leo 	 * that 'broken-up' DMA transfers are not (yet) possible on the
    866   1.1       leo 	 * Falcon.
    867   1.1       leo 	 */
    868   1.1       leo 	for (;;) {
    869   1.1       leo 		delay(20);
    870   1.1       leo 		if (--timeout <= 0) {
    871   1.1       leo 			ncr_tprint(reqp, "Timeout on polled transfer\n");
    872  1.11       leo 			reqp->xs->error = XS_TIMEOUT;
    873   1.1       leo 			return(0);
    874   1.1       leo 		}
    875   1.1       leo 		if (!(MFP->mf_gpip & IO_DINT))
    876   1.1       leo 			break;
    877   1.1       leo 	}
    878   1.1       leo 	return(1);
    879   1.1       leo }
    880   1.1       leo 
    881   1.1       leo static int
    882  1.49       dsl falcon_get_dma_result(SC_REQ *reqp, u_long *bytes_left)
    883   1.1       leo {
    884   1.1       leo 	int	rv = 0;
    885   1.1       leo 	int	st_dmastat;
    886   1.1       leo 	u_long	bytes_done;
    887   1.1       leo 
    888   1.1       leo 	/*
    889   1.1       leo 	 * Select sector counter register first (See Atari docu.)
    890   1.1       leo 	 */
    891   1.1       leo 	DMA->dma_mode = 0x90;
    892   1.1       leo 	if (!(st_dmastat = DMA->dma_stat) & 0x01) {
    893   1.1       leo 		/*
    894   1.1       leo 		 * Misc. DMA-error according to Atari...
    895   1.1       leo 		 */
    896   1.1       leo 		ncr_tprint(reqp, "Unknow ST-SCSI error near 0x%x\n",
    897   1.1       leo 							st_dmaaddr_get());
    898   1.1       leo 		reqp->xs->error = XS_DRIVER_STUFFUP;
    899   1.1       leo 		rv = 1;
    900   1.1       leo 	}
    901  1.16       leo 	/*
    902  1.16       leo 	 * Because we NEVER start DMA on the Falcon when the data size
    903  1.16       leo 	 * is not a multiple of 512 bytes, we can safely round down the
    904  1.16       leo 	 * byte count on writes. We need to because in case of a disconnect,
    905  1.16       leo 	 * the DMA has already prefetched the next couple of bytes.
    906  1.16       leo 	 * On read, these byte counts are an error. They are logged and
    907  1.16       leo 	 * should be handled by the mi-part of the driver.
    908  1.16       leo 	 * NOTE: We formerly did this by using the 'byte-count-zero' bit
    909  1.16       leo 	 *       of the DMA controller, but this didn't seem to work???
    910  1.16       leo          *       [lwp 29/06/96]
    911  1.16       leo 	 */
    912  1.16       leo 	bytes_done = st_dmaaddr_get() - reqp->dm_cur->dm_addr;
    913  1.16       leo 	if (bytes_done & 511) {
    914  1.16       leo 		if (PH_IN(reqp->phase)) {
    915  1.16       leo 			ncr_tprint(reqp, "Byte count on read not a multiple "
    916  1.16       leo 					 "of 512 (%ld)\n", bytes_done);
    917   1.1       leo 		}
    918  1.16       leo 		bytes_done &= ~511;
    919   1.1       leo 	}
    920  1.16       leo 	if ((*bytes_left = reqp->dm_cur->dm_count - bytes_done) == 0)
    921   1.1       leo 		rv = 1;
    922   1.1       leo 	return(rv);
    923   1.1       leo }
    924   1.1       leo 
    925  1.16       leo static int
    926  1.16       leo falcon_can_access_5380()
    927  1.16       leo {
    928  1.16       leo 	if (connected && (connected->dr_flag & DRIVER_IN_DMA)
    929  1.16       leo 		&& (MFP->mf_gpip & IO_DINT))
    930  1.16       leo 			return(0);
    931  1.16       leo 	return(1);
    932  1.16       leo }
    933  1.16       leo 
    934   1.1       leo #endif /* defined(FALCON_SCSI) */
    935   1.1       leo 
    936   1.1       leo #if defined(TT_SCSI) && defined(FALCON_SCSI)
    937   1.1       leo /*
    938   1.1       leo  * Define some functions to support _both_ TT and Falcon SCSI
    939   1.1       leo  */
    940   1.1       leo 
    941   1.1       leo /*
    942   1.9       leo  * The prototypes first...
    943   1.9       leo  */
    944  1.48       dsl static void	scsi_mach_init(struct ncr_softc *);
    945  1.48       dsl        void	scsi_ienable(void);
    946  1.48       dsl        void	scsi_idisable(void);
    947  1.48       dsl        void	scsi_clr_ipend(void);
    948  1.48       dsl        int	scsi_ipending(void);
    949  1.48       dsl        void	scsi_dma_setup(SC_REQ *, u_int, u_char);
    950  1.48       dsl        int	wrong_dma_range(SC_REQ *, struct dma_chain *);
    951  1.48       dsl        int	poll_edma(SC_REQ *);
    952  1.48       dsl        int	get_dma_result(SC_REQ *, u_long *);
    953  1.48       dsl        int	can_access_5380(void);
    954   1.9       leo 
    955   1.9       leo /*
    956   1.1       leo  * Register access will be done through the following 2 function pointers.
    957   1.1       leo  */
    958  1.48       dsl static u_char	(*get_5380_reg)(u_short);
    959  1.48       dsl static void	(*set_5380_reg)(u_short, u_short);
    960   1.1       leo 
    961   1.1       leo #define	GET_5380_REG	(*get_5380_reg)
    962   1.1       leo #define	SET_5380_REG	(*set_5380_reg)
    963   1.1       leo 
    964   1.9       leo static void
    965  1.49       dsl scsi_mach_init(struct ncr_softc *sc)
    966   1.1       leo {
    967   1.1       leo 	if (machineid & ATARI_FALCON) {
    968   1.1       leo 		get_5380_reg = get_falcon_5380_reg;
    969   1.1       leo 		set_5380_reg = set_falcon_5380_reg;
    970   1.1       leo 		scsi_falcon_init(sc);
    971   1.1       leo 	}
    972   1.1       leo 	else {
    973   1.1       leo 		get_5380_reg = get_tt_5380_reg;
    974   1.1       leo 		set_5380_reg = set_tt_5380_reg;
    975   1.1       leo 		scsi_tt_init(sc);
    976   1.1       leo 	}
    977   1.1       leo }
    978   1.1       leo 
    979  1.40     perry extern inline void
    980  1.51    cegger scsi_ienable(void)
    981   1.1       leo {
    982   1.1       leo 	if (machineid & ATARI_FALCON)
    983   1.1       leo 		scsi_falcon_ienable();
    984   1.1       leo 	else scsi_tt_ienable();
    985   1.1       leo }
    986   1.1       leo 
    987  1.40     perry extern inline void
    988  1.51    cegger scsi_idisable(void)
    989   1.1       leo {
    990   1.1       leo 	if (machineid & ATARI_FALCON)
    991   1.1       leo 		scsi_falcon_idisable();
    992   1.1       leo 	else scsi_tt_idisable();
    993   1.1       leo }
    994   1.1       leo 
    995  1.40     perry extern inline void
    996  1.51    cegger scsi_clr_ipend(void)
    997   1.1       leo {
    998   1.1       leo 	if (machineid & ATARI_FALCON)
    999   1.1       leo 		scsi_falcon_clr_ipend();
   1000   1.1       leo 	else scsi_tt_clr_ipend();
   1001   1.7       leo }
   1002   1.7       leo 
   1003  1.40     perry extern inline int
   1004  1.51    cegger scsi_ipending(void)
   1005   1.7       leo {
   1006   1.7       leo 	if (machineid & ATARI_FALCON)
   1007   1.7       leo 		return(scsi_falcon_ipending());
   1008   1.7       leo 	else return (GET_TT_REG(NCR5380_DMSTAT) & SC_IRQ_SET);
   1009   1.1       leo }
   1010   1.1       leo 
   1011  1.40     perry extern inline void
   1012  1.49       dsl scsi_dma_setup(SC_REQ *reqp, u_int phase, u_char mbase)
   1013   1.1       leo {
   1014   1.1       leo 	if (machineid & ATARI_FALCON)
   1015   1.1       leo 		scsi_falcon_dmasetup(reqp, phase, mbase);
   1016   1.1       leo 	else scsi_tt_dmasetup(reqp, phase, mbase);
   1017   1.1       leo }
   1018   1.1       leo 
   1019  1.40     perry extern inline int
   1020  1.49       dsl wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
   1021   1.1       leo {
   1022   1.1       leo 	if (machineid & ATARI_FALCON)
   1023   1.1       leo 		return(falcon_wrong_dma_range(reqp, dm));
   1024   1.1       leo 	else return(tt_wrong_dma_range(reqp, dm));
   1025   1.1       leo }
   1026   1.1       leo 
   1027  1.40     perry extern inline int
   1028  1.49       dsl poll_edma(SC_REQ *reqp)
   1029   1.1       leo {
   1030   1.1       leo 	if (machineid & ATARI_FALCON)
   1031   1.1       leo 		return(falcon_poll_edma(reqp));
   1032   1.1       leo 	else return(tt_poll_edma(reqp));
   1033   1.1       leo }
   1034   1.1       leo 
   1035  1.40     perry extern inline int
   1036  1.49       dsl get_dma_result(SC_REQ *reqp, u_long *bytes_left)
   1037   1.1       leo {
   1038   1.1       leo 	if (machineid & ATARI_FALCON)
   1039   1.1       leo 		return(falcon_get_dma_result(reqp, bytes_left));
   1040   1.1       leo 	else return(tt_get_dma_result(reqp, bytes_left));
   1041   1.1       leo }
   1042   1.1       leo 
   1043  1.40     perry extern inline int
   1044  1.16       leo can_access_5380()
   1045  1.16       leo {
   1046  1.16       leo 	if (machineid & ATARI_FALCON)
   1047  1.16       leo 		return(falcon_can_access_5380());
   1048  1.16       leo 	return(1);
   1049  1.16       leo }
   1050  1.18       leo 
   1051  1.18       leo #define emulated_dma()		((machineid & ATARI_HADES) ? 1 : 0)
   1052  1.16       leo 
   1053   1.1       leo /*
   1054   1.1       leo  * Locking stuff. All turns into NOP's on the TT.
   1055   1.1       leo  */
   1056   1.1       leo #define	fair_to_keep_dma()	((machineid & ATARI_FALCON) ?		\
   1057   1.1       leo 						!st_dmawanted() : 1)
   1058   1.1       leo #define	claimed_dma()		((machineid & ATARI_FALCON) ?		\
   1059   1.1       leo 						falcon_claimed_dma() : 1)
   1060   1.1       leo #define reconsider_dma()	{					\
   1061   1.1       leo 					if(machineid & ATARI_FALCON)	\
   1062   1.1       leo 						falcon_reconsider_dma();\
   1063   1.1       leo 				}
   1064   1.1       leo #endif /* defined(TT_SCSI) && defined(FALCON_SCSI) */
   1065   1.1       leo 
   1066   1.1       leo /**********************************************
   1067   1.1       leo  * Functions present for both TT and Falcon.  *
   1068   1.1       leo  **********************************************/
   1069   1.1       leo /*
   1070   1.1       leo  * Our autoconfig matching function
   1071   1.1       leo  */
   1072   1.1       leo static int
   1073  1.10   thorpej machine_match(struct device *pdp, void *match, void *auxp,
   1074   1.8       leo 						struct cfdriver *cd)
   1075   1.1       leo {
   1076  1.31       leo 	static int	we_matched = 0; /* Only one unit	*/
   1077  1.10   thorpej 
   1078  1.31       leo 	if (strcmp(auxp, cd->cd_name) || we_matched)
   1079   1.1       leo 		return(0);
   1080  1.31       leo 
   1081  1.31       leo 	we_matched = 1;
   1082   1.1       leo 	return(1);
   1083   1.1       leo }
   1084   1.1       leo 
   1085   1.1       leo /*
   1086   1.1       leo  * Bounce buffer (de)allocation. Those buffers are gotten from the ST-mem
   1087   1.1       leo  * pool. Allocation here is both contiguous and in the lower 16Mb of
   1088   1.1       leo  * the address space. Thus being DMA-able for all controllers.
   1089   1.1       leo  */
   1090   1.1       leo static u_char *
   1091   1.8       leo alloc_bounceb(u_long len)
   1092   1.1       leo {
   1093  1.12       leo 	void	*tmp;
   1094   1.1       leo 
   1095   1.1       leo 	return((u_char *)alloc_stmem(len, &tmp));
   1096   1.1       leo }
   1097   1.1       leo 
   1098   1.1       leo static void
   1099   1.8       leo free_bounceb(u_char *bounceb)
   1100   1.1       leo {
   1101   1.1       leo 	free_stmem(bounceb);
   1102   1.1       leo }
   1103   1.1       leo 
   1104   1.1       leo /*
   1105   1.1       leo  * 5380 interrupt.
   1106   1.1       leo  */
   1107   1.8       leo void
   1108   1.8       leo scsi_ctrl(int sr)
   1109   1.1       leo {
   1110   1.1       leo 	if (GET_5380_REG(NCR5380_DMSTAT) & SC_IRQ_SET) {
   1111   1.1       leo 		scsi_idisable();
   1112   1.1       leo 		if (!BASEPRI(sr))
   1113  1.12       leo 			add_sicallback((si_farg)ncr_ctrl_intr,
   1114  1.12       leo 						(void *)cur_softc, 0);
   1115   1.1       leo 		else {
   1116   1.1       leo 			spl1();
   1117   1.1       leo 			ncr_ctrl_intr(cur_softc);
   1118  1.16       leo 			spl0();
   1119   1.1       leo 		}
   1120   1.1       leo 	}
   1121   1.1       leo }
   1122   1.1       leo 
   1123   1.1       leo /*
   1124   1.1       leo  * DMA controller interrupt
   1125   1.1       leo  */
   1126   1.8       leo void
   1127   1.8       leo scsi_dma(int sr)
   1128   1.1       leo {
   1129   1.1       leo 	SC_REQ	*reqp;
   1130   1.1       leo 
   1131   1.1       leo 	if ((reqp = connected) && (reqp->dr_flag & DRIVER_IN_DMA)) {
   1132   1.1       leo 		scsi_idisable();
   1133   1.1       leo 		if (!BASEPRI(sr))
   1134  1.12       leo 			add_sicallback((si_farg)ncr_dma_intr,
   1135  1.12       leo 					(void *)cur_softc, 0);
   1136   1.1       leo 		else {
   1137   1.1       leo 			spl1();
   1138   1.1       leo 			ncr_dma_intr(cur_softc);
   1139  1.16       leo 			spl0();
   1140   1.1       leo 		}
   1141   1.1       leo 	}
   1142   1.1       leo }
   1143   1.1       leo 
   1144   1.1       leo /*
   1145   1.1       leo  * Last but not least... Include the general driver code
   1146   1.1       leo  */
   1147   1.6   mycroft #include <atari/dev/ncr5380.c>
   1148