Home | History | Annotate | Line # | Download | only in dev
gtsc.c revision 1.15
      1 /*	$NetBSD: gtsc.c,v 1.15 1996/04/21 21:11:34 veego Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994 Christian E. Hopps
      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  *	@(#)dma.c
     37  */
     38 #include <sys/param.h>
     39 #include <sys/systm.h>
     40 #include <sys/kernel.h>
     41 #include <sys/device.h>
     42 #include <scsi/scsi_all.h>
     43 #include <scsi/scsiconf.h>
     44 #include <amiga/amiga/custom.h>
     45 #include <amiga/amiga/cc.h>
     46 #include <amiga/amiga/device.h>
     47 #include <amiga/amiga/isr.h>
     48 #include <amiga/dev/dmavar.h>
     49 #include <amiga/dev/sbicreg.h>
     50 #include <amiga/dev/sbicvar.h>
     51 #include <amiga/dev/gtscreg.h>
     52 #include <amiga/dev/zbusvar.h>
     53 #include <amiga/dev/gvpbusvar.h>
     54 
     55 void gtscattach __P((struct device *, struct device *, void *));
     56 int gtscmatch __P((struct device *, void *, void *));
     57 int gtscprint __P((void *auxp, char *));
     58 
     59 void gtsc_enintr __P((struct sbic_softc *));
     60 void gtsc_dmastop __P((struct sbic_softc *));
     61 int gtsc_dmanext __P((struct sbic_softc *));
     62 int gtsc_dmaintr __P((void *));
     63 int gtsc_dmago __P((struct sbic_softc *, char *, int, int));
     64 
     65 #ifdef DEBUG
     66 void gtsc_dump __P((void));
     67 #endif
     68 
     69 struct scsi_adapter gtsc_scsiswitch = {
     70 	sbic_scsicmd,
     71 	sbic_minphys,
     72 	0,			/* no lun support */
     73 	0,			/* no lun support */
     74 };
     75 
     76 struct scsi_device gtsc_scsidev = {
     77 	NULL,		/* use default error handler */
     78 	NULL,		/* have a queue served by this ??? */
     79 	NULL,		/* have no async handler ??? */
     80 	NULL,		/* Use default done routine */
     81 };
     82 
     83 int gtsc_maxdma = 0;	/* Maximum size per DMA transfer */
     84 int gtsc_dmamask = 0;
     85 int gtsc_dmabounce = 0;
     86 int gtsc_clock_override = 0;
     87 
     88 #ifdef DEBUG
     89 int gtsc_debug = 0;
     90 #endif
     91 
     92 struct cfattach gtsc_ca = {
     93 	sizeof(struct sbic_softc), gtscmatch, gtscattach
     94 };
     95 
     96 struct cfdriver gtsc_cd = {
     97 	NULL, "gtsc", DV_DULL, NULL, 0
     98 };
     99 
    100 int
    101 gtscmatch(pdp, match, auxp)
    102 	struct device *pdp;
    103 	void *match, *auxp;
    104 {
    105 	struct gvpbus_args *gap;
    106 
    107 	gap = auxp;
    108 	if (gap->flags & GVP_SCSI)
    109 		return(1);
    110 	return(0);
    111 }
    112 
    113 /*
    114  * attach all devices on our board.
    115  */
    116 void
    117 gtscattach(pdp, dp, auxp)
    118 	struct device *pdp, *dp;
    119 	void *auxp;
    120 {
    121 	volatile struct sdmac *rp;
    122 	struct gvpbus_args *gap;
    123 	struct sbic_softc *sc;
    124 
    125 	gap = auxp;
    126 	sc = (struct sbic_softc *)dp;
    127 	sc->sc_cregs = rp = gap->zargs.va;
    128 
    129 	/*
    130 	 * disable ints and reset bank register
    131 	 */
    132 	rp->CNTR = 0;
    133 	if ((gap->flags & GVP_NOBANK) == 0)
    134 		rp->bank = 0;
    135 
    136 	sc->sc_dmago =  gtsc_dmago;
    137 	sc->sc_enintr = gtsc_enintr;
    138 	sc->sc_dmanext = gtsc_dmanext;
    139 	sc->sc_dmastop = gtsc_dmastop;
    140 	sc->sc_dmacmd = 0;
    141 
    142 	sc->sc_flags |= SBICF_BADDMA;
    143 	if (gtsc_dmamask)
    144 		sc->sc_dmamask = gtsc_dmamask;
    145 	else if (gap->flags & GVP_24BITDMA)
    146 		sc->sc_dmamask = ~0x00ffffff;
    147 	else if (gap->flags & GVP_25BITDMA)
    148 		sc->sc_dmamask = ~0x01ffffff;
    149 	else
    150 		sc->sc_dmamask = ~0x07ffffff;
    151 	printf(": dmamask 0x%lx", ~sc->sc_dmamask);
    152 
    153 	if ((gap->flags & GVP_NOBANK) == 0)
    154 		sc->gtsc_bankmask = (~sc->sc_dmamask >> 18) & 0x01c0;
    155 
    156 #if 0
    157 	/*
    158 	 * if the user requests a bounce buffer or
    159 	 * the users kva space is not ztwo and dma needs it
    160 	 * try and allocate a bounce buffer.  If we allocate
    161 	 * one and it is in ztwo space leave maxdma to user
    162 	 * setting or default to MAXPHYS else the address must
    163 	 * be on the chip bus so decrease it to either the users
    164 	 * setting or 1024 bytes.
    165 	 *
    166 	 * XXX this needs to change if we move to multiple memory segments.
    167 	 */
    168 	if (gtsc_dmabounce || kvtop(sc) & sc->sc_dmamask) {
    169 		sc->sc_dmabuffer = (char *) alloc_z2mem(MAXPHYS * 8); /* XXX */
    170 		if (isztwomem(sc->sc_dmabuffer))
    171 			printf(" bounce pa 0x%x", kvtop(sc->sc_dmabuffer));
    172 		else if (gtsc_maxdma == 0) {
    173 			gtsc_maxdma = 1024;
    174 			printf(" bounce pa 0x%x",
    175 			    PREP_DMA_MEM(sc->sc_dmabuffer));
    176 		}
    177 	}
    178 #endif
    179 	if (gtsc_maxdma == 0)
    180 		gtsc_maxdma = MAXPHYS;
    181 
    182 	printf(" flags %x", gap->flags);
    183 	printf(" maxdma %d\n", gtsc_maxdma);
    184 
    185 	sc->sc_sbicp = (sbic_regmap_p) ((int)rp + 0x61);
    186 	sc->sc_clkfreq = gtsc_clock_override ? gtsc_clock_override :
    187 	    ((gap->flags & GVP_14MHZ) ? 143 : 72);
    188 	printf("sc_clkfreg: %ld.%ldMhz\n", sc->sc_clkfreq / 10, sc->sc_clkfreq % 10);
    189 
    190 	sc->sc_link.adapter_softc = sc;
    191 	sc->sc_link.adapter_target = 7;
    192 	sc->sc_link.adapter = &gtsc_scsiswitch;
    193 	sc->sc_link.device = &gtsc_scsidev;
    194 	sc->sc_link.openings = 2;
    195 
    196 	sbicinit(sc);
    197 
    198 	sc->sc_isr.isr_intr = gtsc_dmaintr;
    199 	sc->sc_isr.isr_arg = sc;
    200 	sc->sc_isr.isr_ipl = 2;
    201 	add_isr(&sc->sc_isr);
    202 
    203 	/*
    204 	 * attach all scsi units on us
    205 	 */
    206 	config_found(dp, &sc->sc_link, gtscprint);
    207 }
    208 
    209 /*
    210  * print diag if pnp is NULL else just extra
    211  */
    212 int
    213 gtscprint(auxp, pnp)
    214 	void *auxp;
    215 	char *pnp;
    216 {
    217 	if (pnp == NULL)
    218 		return(UNCONF);
    219 	return(QUIET);
    220 }
    221 
    222 void
    223 gtsc_enintr(dev)
    224 	struct sbic_softc *dev;
    225 {
    226 	volatile struct sdmac *sdp;
    227 
    228 	sdp = dev->sc_cregs;
    229 
    230 	dev->sc_flags |= SBICF_INTR;
    231 	sdp->CNTR = GVP_CNTR_INTEN;
    232 }
    233 
    234 int
    235 gtsc_dmago(dev, addr, count, flags)
    236 	struct sbic_softc *dev;
    237 	char *addr;
    238 	int count, flags;
    239 {
    240 	volatile struct sdmac *sdp;
    241 
    242 	sdp = dev->sc_cregs;
    243 	/*
    244 	 * Set up the command word based on flags
    245 	 */
    246 	dev->sc_dmacmd = GVP_CNTR_INTEN;
    247 	if ((flags & DMAGO_READ) == 0)
    248 		dev->sc_dmacmd |= GVP_CNTR_DDIR;
    249 
    250 #ifdef DEBUG
    251 	if (gtsc_debug & DDB_IO)
    252 		printf("gtsc_dmago: cmd %x\n", dev->sc_dmacmd);
    253 #endif
    254 	dev->sc_flags |= SBICF_INTR;
    255 	sdp->CNTR = dev->sc_dmacmd;
    256 	if((u_int)dev->sc_cur->dc_addr & dev->sc_dmamask) {
    257 #if 1
    258 		printf("gtsc_dmago: pa %p->%lx dmacmd %x",
    259 		    dev->sc_cur->dc_addr,
    260 		    (u_int)dev->sc_cur->dc_addr & ~dev->sc_dmamask,
    261 		     dev->sc_dmacmd);
    262 #endif
    263 		sdp->ACR = 0x00f80000;	/***********************************/
    264 	} else
    265 		sdp->ACR = (u_int) dev->sc_cur->dc_addr;
    266 	if (dev->gtsc_bankmask)
    267 		sdp->bank =
    268 		    dev->gtsc_bankmask & (((u_int)dev->sc_cur->dc_addr) >> 18);
    269 	sdp->ST_DMA = 1;
    270 
    271 	/*
    272 	 * restrict transfer count to maximum
    273 	 */
    274 	if (dev->sc_tcnt > gtsc_maxdma)
    275 		dev->sc_tcnt = gtsc_maxdma;
    276 #if 1
    277 	if((u_int)dev->sc_cur->dc_addr & dev->sc_dmamask)
    278 		printf(" tcnt %ld\n", dev->sc_tcnt);
    279 #endif
    280 	return(dev->sc_tcnt);
    281 }
    282 
    283 void
    284 gtsc_dmastop(dev)
    285 	struct sbic_softc *dev;
    286 {
    287 	volatile struct sdmac *sdp;
    288 	int s;
    289 
    290 	sdp = dev->sc_cregs;
    291 
    292 #ifdef DEBUG
    293 	if (gtsc_debug & DDB_FOLLOW)
    294 		printf("gtsc_dmastop()\n");
    295 #endif
    296 	if (dev->sc_dmacmd) {
    297 		/*
    298 		 * clear possible interrupt and stop dma
    299 		 */
    300 		s = splbio();
    301 		sdp->CNTR &= ~GVP_CNTR_INT_P;
    302 		sdp->SP_DMA = 1;
    303 		dev->sc_dmacmd = 0;
    304 		splx(s);
    305 	}
    306 }
    307 
    308 int
    309 gtsc_dmaintr(arg)
    310 	void *arg;
    311 {
    312 	struct sbic_softc *dev = arg;
    313 	volatile struct sdmac *sdp;
    314 	int stat;
    315 
    316 	sdp = dev->sc_cregs;
    317 	stat = sdp->CNTR;
    318 	if ((stat & GVP_CNTR_INT_P) == 0)
    319 		return (0);
    320 #ifdef DEBUG
    321 	if (gtsc_debug & DDB_FOLLOW)
    322 		printf("%s: dmaintr 0x%x\n", dev->sc_dev.dv_xname, stat);
    323 #endif
    324 	if (dev->sc_flags & SBICF_INTR)
    325 		if (sbicintr(dev))
    326 			return (1);
    327 	return(0);
    328 }
    329 
    330 
    331 int
    332 gtsc_dmanext(dev)
    333 	struct sbic_softc *dev;
    334 {
    335 	volatile struct sdmac *sdp;
    336 
    337 	sdp = dev->sc_cregs;
    338 
    339 	if (dev->sc_cur > dev->sc_last) {
    340 		/* shouldn't happen !! */
    341 		printf("gtsc_dmanext at end !!!\n");
    342 		gtsc_dmastop(dev);
    343 		return(0);
    344 	}
    345 	/*
    346 	 * clear possible interrupt and stop dma
    347 	 */
    348 	sdp->CNTR &= ~GVP_CNTR_INT_P;
    349 	sdp->SP_DMA = 1;
    350 
    351 	sdp->CNTR = dev->sc_dmacmd;
    352 	sdp->ACR = (u_int) dev->sc_cur->dc_addr;
    353 	if (dev->gtsc_bankmask)
    354 		sdp->bank =
    355 		    dev->gtsc_bankmask & ((u_int)dev->sc_cur->dc_addr >> 18);
    356 	sdp->ST_DMA = 1;
    357 
    358 	dev->sc_tcnt = dev->sc_cur->dc_count << 1;
    359 	if (dev->sc_tcnt > gtsc_maxdma)
    360 		dev->sc_tcnt = gtsc_maxdma;
    361 #ifdef DEBUG
    362 	if (gtsc_debug & DDB_FOLLOW)
    363 		printf("gtsc_dmanext ret: %ld\n", dev->sc_tcnt);
    364 #endif
    365 	return(dev->sc_tcnt);
    366 }
    367 
    368 #ifdef DEBUG
    369 void
    370 gtsc_dump()
    371 {
    372 	int i;
    373 
    374 	for (i = 0; i < gtsc_cd.cd_ndevs; ++i)
    375 		if (gtsc_cd.cd_devs[i])
    376 			sbic_dump(gtsc_cd.cd_devs[i]);
    377 }
    378 #endif
    379