Home | History | Annotate | Line # | Download | only in dev
otgsc.c revision 1.21
      1 /*	$NetBSD: otgsc.c,v 1.21 1998/11/19 21:44:37 thorpej Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994 Michael L. Hitch
      5  * Copyright (c) 1982, 1990 The Regents of the University of California.
      6  * All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. All advertising materials mentioning features or use of this software
     17  *    must display the following acknowledgement:
     18  *	This product includes software developed by the University of
     19  *	California, Berkeley and its contributors.
     20  * 4. Neither the name of the University nor the names of its contributors
     21  *    may be used to endorse or promote products derived from this software
     22  *    without specific prior written permission.
     23  *
     24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34  * SUCH DAMAGE.
     35  *
     36  *	@(#)csa12gdma.c
     37  */
     38 #include <sys/param.h>
     39 #include <sys/systm.h>
     40 #include <sys/kernel.h>
     41 #include <sys/device.h>
     42 #include <dev/scsipi/scsi_all.h>
     43 #include <dev/scsipi/scsipi_all.h>
     44 #include <dev/scsipi/scsiconf.h>
     45 #include <amiga/amiga/device.h>
     46 #include <amiga/amiga/isr.h>
     47 #include <amiga/dev/scireg.h>
     48 #include <amiga/dev/scivar.h>
     49 #include <amiga/dev/zbusvar.h>
     50 
     51 void otgscattach __P((struct device *, struct device *, void *));
     52 int otgscmatch __P((struct device *, struct cfdata *, void *));
     53 
     54 int otgsc_dma_xfer_in __P((struct sci_softc *dev, int len,
     55     register u_char *buf, int phase));
     56 int otgsc_dma_xfer_out __P((struct sci_softc *dev, int len,
     57     register u_char *buf, int phase));
     58 int otgsc_intr __P((void *));
     59 
     60 struct scsipi_device otgsc_scsidev = {
     61 	NULL,		/* use default error handler */
     62 	NULL,		/* do not have a start functio */
     63 	NULL,		/* have no async handler */
     64 	NULL,		/* Use default done routine */
     65 };
     66 
     67 
     68 #ifdef DEBUG
     69 extern int sci_debug;
     70 #define QPRINTF(a) if (sci_debug > 1) printf a
     71 #else
     72 #define QPRINTF(a)
     73 #endif
     74 
     75 extern int sci_data_wait;
     76 
     77 struct cfattach otgsc_ca = {
     78 	sizeof(struct sci_softc), otgscmatch, otgscattach
     79 };
     80 
     81 /*
     82  * if we are my Hacker's SCSI board we are here.
     83  */
     84 int
     85 otgscmatch(pdp, cfp, auxp)
     86 	struct device *pdp;
     87 	struct cfdata *cfp;
     88 	void *auxp;
     89 {
     90 	struct zbus_args *zap;
     91 
     92 	zap = auxp;
     93 
     94 	/*
     95 	 * Check manufacturer and product id.
     96 	 */
     97 	if (zap->manid == 1058 && zap->prodid == 21)
     98 		return(1);
     99 	else
    100 		return(0);
    101 }
    102 
    103 void
    104 otgscattach(pdp, dp, auxp)
    105 	struct device *pdp, *dp;
    106 	void *auxp;
    107 {
    108 	volatile u_char *rp;
    109 	struct sci_softc *sc;
    110 	struct zbus_args *zap;
    111 
    112 	printf("\n");
    113 
    114 	zap = auxp;
    115 
    116 	sc = (struct sci_softc *)dp;
    117 	rp = zap->va + 0x2000;
    118 	sc->sci_data = rp;
    119 	sc->sci_odata = rp;
    120 	sc->sci_icmd = rp + 0x10;
    121 	sc->sci_mode = rp + 0x20;
    122 	sc->sci_tcmd = rp + 0x30;
    123 	sc->sci_bus_csr = rp + 0x40;
    124 	sc->sci_sel_enb = rp + 0x40;
    125 	sc->sci_csr = rp + 0x50;
    126 	sc->sci_dma_send = rp + 0x50;
    127 	sc->sci_idata = rp + 0x60;
    128 	sc->sci_trecv = rp + 0x60;
    129 	sc->sci_iack = rp + 0x70;
    130 	sc->sci_irecv = rp + 0x70;
    131 
    132 	sc->dma_xfer_in = otgsc_dma_xfer_in;
    133 	sc->dma_xfer_out = otgsc_dma_xfer_out;
    134 
    135 	sc->sc_isr.isr_intr = otgsc_intr;
    136 	sc->sc_isr.isr_arg = sc;
    137 	sc->sc_isr.isr_ipl = 2;
    138 	add_isr(&sc->sc_isr);
    139 
    140 	scireset(sc);
    141 
    142 	sc->sc_adapter.scsipi_cmd = sci_scsicmd;
    143 	sc->sc_adapter.scsipi_minphys = sci_minphys;
    144 
    145 	sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
    146 	sc->sc_link.adapter_softc = sc;
    147 	sc->sc_link.scsipi_scsi.adapter_target = 7;
    148 	sc->sc_link.adapter = &sc->sc_adapter;
    149 	sc->sc_link.device = &otgsc_scsidev;
    150 	sc->sc_link.openings = 1;
    151 	sc->sc_link.scsipi_scsi.max_target = 7;
    152 	sc->sc_link.type = BUS_SCSI;
    153 	TAILQ_INIT(&sc->sc_xslist);
    154 
    155 	/*
    156 	 * attach all scsi units on us
    157 	 */
    158 	config_found(dp, &sc->sc_link, scsiprint);
    159 }
    160 
    161 int
    162 otgsc_dma_xfer_in (dev, len, buf, phase)
    163 	struct sci_softc *dev;
    164 	int len;
    165 	register u_char *buf;
    166 	int phase;
    167 {
    168 	int wait = sci_data_wait;
    169 	volatile register u_char *sci_dma = dev->sci_data + 0x100;
    170 	volatile register u_char *sci_csr = dev->sci_csr;
    171 #ifdef DEBUG
    172 	u_char *obp = buf;
    173 #endif
    174 
    175 	QPRINTF(("otgsc_dma_in %d, csr=%02x\n", len, *dev->sci_bus_csr));
    176 
    177 	*dev->sci_tcmd = phase;
    178 	*dev->sci_mode |= SCI_MODE_DMA;
    179 	*dev->sci_icmd = 0;
    180 	*dev->sci_irecv = 0;
    181 	while (len > 0) {
    182 		wait = sci_data_wait;
    183 		while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
    184 		  (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
    185 			if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
    186 			  || !(*dev->sci_bus_csr & SCI_BUS_BSY)
    187 			  || --wait < 0) {
    188 #ifdef DEBUG
    189 				if (sci_debug)
    190 					printf("otgsc_dma_in fail: l%d i%x w%d\n",
    191 					len, *dev->sci_bus_csr, wait);
    192 #endif
    193 				*dev->sci_mode &= ~SCI_MODE_DMA;
    194 				return 0;
    195 			}
    196 		}
    197 
    198 		*buf++ = *sci_dma;
    199 		len--;
    200 	}
    201 
    202 	QPRINTF(("otgsc_dma_in {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
    203 	  len, obp[0], obp[1], obp[2], obp[3], obp[4], obp[5],
    204 	  obp[6], obp[7], obp[8], obp[9]));
    205 
    206 	*dev->sci_mode &= ~SCI_MODE_DMA;
    207 	return 0;
    208 }
    209 
    210 int
    211 otgsc_dma_xfer_out (dev, len, buf, phase)
    212 	struct sci_softc *dev;
    213 	int len;
    214 	register u_char *buf;
    215 	int phase;
    216 {
    217 	int wait = sci_data_wait;
    218 	volatile register u_char *sci_dma = dev->sci_data + 0x100;
    219 	volatile register u_char *sci_csr = dev->sci_csr;
    220 
    221 	QPRINTF(("otgsc_dma_out %d, csr=%02x\n", len, *dev->sci_bus_csr));
    222 
    223 	QPRINTF(("otgsc_dma_out {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
    224   	 len, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
    225 	 buf[6], buf[7], buf[8], buf[9]));
    226 
    227 	*dev->sci_tcmd = phase;
    228 	*dev->sci_mode |= SCI_MODE_DMA;
    229 	*dev->sci_icmd = SCI_ICMD_DATA;
    230 	*dev->sci_dma_send = 0;
    231 	while (len > 0) {
    232 		wait = sci_data_wait;
    233 		while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
    234 		  (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
    235 			if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
    236 			  || !(*dev->sci_bus_csr & SCI_BUS_BSY)
    237 			  || --wait < 0) {
    238 #ifdef DEBUG
    239 				if (sci_debug)
    240 					printf("otgsc_dma_out fail: l%d i%x w%d\n",
    241 					len, *dev->sci_bus_csr, wait);
    242 #endif
    243 				*dev->sci_mode &= ~SCI_MODE_DMA;
    244 				return 0;
    245 			}
    246 		}
    247 
    248 		*sci_dma = *buf++;
    249 		len--;
    250 	}
    251 
    252 	wait = sci_data_wait;
    253 	while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) ==
    254 	  SCI_CSR_PHASE_MATCH && --wait);
    255 
    256 
    257 	*dev->sci_mode &= ~SCI_MODE_DMA;
    258 	return 0;
    259 }
    260 
    261 int
    262 otgsc_intr(arg)
    263 	void *arg;
    264 {
    265 	struct sci_softc *dev = arg;
    266 	u_char stat;
    267 
    268 	if ((*dev->sci_csr & SCI_CSR_INT) == 0)
    269 		return (1);
    270 	stat = *dev->sci_iack;
    271 	*dev->sci_mode = 0;
    272 	return (1);
    273 }
    274