Home | History | Annotate | Line # | Download | only in dev
bztzsc.c revision 1.14
      1 /*	$NetBSD: bztzsc.c,v 1.14 2000/06/05 15:08:02 tsutsui Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997 Michael L. Hitch
      5  * Copyright (c) 1996 Ignatios Souvatzis
      6  * Copyright (c) 1982, 1990 The Regents of the University of California.
      7  * All rights reserved.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product contains software written by Ignatios Souvatzis and
     20  *	Michael L. Hitch for the NetBSD project.
     21  * 4. Neither the name of the University nor the names of its contributors
     22  *    may be used to endorse or promote products derived from this software
     23  *    without specific prior written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35  * SUCH DAMAGE.
     36  *
     37  */
     38 
     39 /*
     40  * Initial amiga Blizzard 2060 driver by Ingatios Souvatzis.  Conversion to
     41  * 53c9x MI driver by Michael L. Hitch (mhitch (at) montana.edu).
     42  */
     43 
     44 #include <sys/types.h>
     45 #include <sys/param.h>
     46 #include <sys/systm.h>
     47 #include <sys/kernel.h>
     48 #include <sys/errno.h>
     49 #include <sys/ioctl.h>
     50 #include <sys/device.h>
     51 #include <sys/buf.h>
     52 #include <sys/proc.h>
     53 #include <sys/user.h>
     54 #include <sys/queue.h>
     55 
     56 #include <dev/scsipi/scsi_all.h>
     57 #include <dev/scsipi/scsipi_all.h>
     58 #include <dev/scsipi/scsiconf.h>
     59 #include <dev/scsipi/scsi_message.h>
     60 
     61 #include <machine/cpu.h>
     62 #include <machine/param.h>
     63 
     64 #include <dev/ic/ncr53c9xreg.h>
     65 #include <dev/ic/ncr53c9xvar.h>
     66 
     67 #include <amiga/amiga/isr.h>
     68 #include <amiga/dev/bztzscvar.h>
     69 #include <amiga/dev/zbusvar.h>
     70 
     71 void	bztzscattach	__P((struct device *, struct device *, void *));
     72 int	bztzscmatch	__P((struct device *, struct cfdata *, void *));
     73 
     74 /* Linkup to the rest of the kernel */
     75 struct cfattach bztzsc_ca = {
     76 	sizeof(struct bztzsc_softc), bztzscmatch, bztzscattach
     77 };
     78 
     79 /*
     80  * Functions and the switch for the MI code.
     81  */
     82 u_char	bztzsc_read_reg __P((struct ncr53c9x_softc *, int));
     83 void	bztzsc_write_reg __P((struct ncr53c9x_softc *, int, u_char));
     84 int	bztzsc_dma_isintr __P((struct ncr53c9x_softc *));
     85 void	bztzsc_dma_reset __P((struct ncr53c9x_softc *));
     86 int	bztzsc_dma_intr __P((struct ncr53c9x_softc *));
     87 int	bztzsc_dma_setup __P((struct ncr53c9x_softc *, caddr_t *,
     88 	    size_t *, int, size_t *));
     89 void	bztzsc_dma_go __P((struct ncr53c9x_softc *));
     90 void	bztzsc_dma_stop __P((struct ncr53c9x_softc *));
     91 int	bztzsc_dma_isactive __P((struct ncr53c9x_softc *));
     92 
     93 struct ncr53c9x_glue bztzsc_glue = {
     94 	bztzsc_read_reg,
     95 	bztzsc_write_reg,
     96 	bztzsc_dma_isintr,
     97 	bztzsc_dma_reset,
     98 	bztzsc_dma_intr,
     99 	bztzsc_dma_setup,
    100 	bztzsc_dma_go,
    101 	bztzsc_dma_stop,
    102 	bztzsc_dma_isactive,
    103 	0,
    104 };
    105 
    106 /* Maximum DMA transfer length to reduce impact on high-speed serial input */
    107 u_long bztzsc_max_dma = 1024;
    108 extern int ser_open_speed;
    109 
    110 u_long bztzsc_cnt_pio = 0;	/* number of PIO transfers */
    111 u_long bztzsc_cnt_dma = 0;	/* number of DMA transfers */
    112 u_long bztzsc_cnt_dma2 = 0;	/* number of DMA transfers broken up */
    113 u_long bztzsc_cnt_dma3 = 0;	/* number of pages combined */
    114 
    115 #ifdef DEBUG
    116 struct {
    117 	u_char hardbits;
    118 	u_char status;
    119 	u_char xx;
    120 	u_char yy;
    121 } bztzsc_trace[128];
    122 int bztzsc_trace_ptr = 0;
    123 int bztzsc_trace_enable = 1;
    124 void bztzsc_dump __P((void));
    125 #endif
    126 
    127 /*
    128  * if we are a Phase5 Blizzard 2060 SCSI
    129  */
    130 int
    131 bztzscmatch(parent, cf, aux)
    132 	struct device *parent;
    133 	struct cfdata *cf;
    134 	void *aux;
    135 {
    136 	struct zbus_args *zap;
    137 	volatile u_char *regs;
    138 
    139 	zap = aux;
    140 	if (zap->manid != 0x2140 || zap->prodid != 24)
    141 		return(0);
    142 	regs = &((volatile u_char *)zap->va)[0x1ff00];
    143 	if (badaddr((caddr_t)regs))
    144 		return(0);
    145 	regs[NCR_CFG1 * 4] = 0;
    146 	regs[NCR_CFG1 * 4] = NCRCFG1_PARENB | 7;
    147 	delay(5);
    148 	if (regs[NCR_CFG1 * 4] != (NCRCFG1_PARENB | 7))
    149 		return(0);
    150 	return(1);
    151 }
    152 
    153 /*
    154  * Attach this instance, and then all the sub-devices
    155  */
    156 void
    157 bztzscattach(parent, self, aux)
    158 	struct device *parent, *self;
    159 	void *aux;
    160 {
    161 	struct bztzsc_softc *bsc = (void *)self;
    162 	struct ncr53c9x_softc *sc = &bsc->sc_ncr53c9x;
    163 	struct zbus_args  *zap;
    164 	extern u_long scsi_nosync;
    165 	extern int shift_nosync;
    166 	extern int ncr53c9x_debug;
    167 
    168 	/*
    169 	 * Set up the glue for MI code early; we use some of it here.
    170 	 */
    171 	sc->sc_glue = &bztzsc_glue;
    172 
    173 	/*
    174 	 * Save the regs
    175 	 */
    176 	zap = aux;
    177 	bsc->sc_reg = &((volatile u_char *)zap->va)[0x1ff00];
    178 	bsc->sc_dmabase = &bsc->sc_reg[0xf0];
    179 
    180 	sc->sc_freq = 40;		/* Clocked at 40Mhz */
    181 
    182 	printf(": address %p", bsc->sc_reg);
    183 
    184 	sc->sc_id = 7;
    185 
    186 	/*
    187 	 * It is necessary to try to load the 2nd config register here,
    188 	 * to find out what rev the FAS chip is, else the ncr53c9x_reset
    189 	 * will not set up the defaults correctly.
    190 	 */
    191 	sc->sc_cfg1 = sc->sc_id | NCRCFG1_PARENB;
    192 	sc->sc_cfg2 = NCRCFG2_SCSI2 | NCRCFG2_FE;
    193 	sc->sc_cfg3 = 0x08 /*FCLK*/ | NCRESPCFG3_FSCSI | NCRESPCFG3_CDB;
    194 	sc->sc_rev = NCR_VARIANT_FAS216;
    195 
    196 	/*
    197 	 * This is the value used to start sync negotiations
    198 	 * Note that the NCR register "SYNCTP" is programmed
    199 	 * in "clocks per byte", and has a minimum value of 4.
    200 	 * The SCSI period used in negotiation is one-fourth
    201 	 * of the time (in nanoseconds) needed to transfer one byte.
    202 	 * Since the chip's clock is given in MHz, we have the following
    203 	 * formula: 4 * period = (1000 / freq) * 4
    204 	 */
    205 	sc->sc_minsync = 1000 / sc->sc_freq;
    206 
    207 	/*
    208 	 * get flags from -I argument and set cf_flags.
    209 	 * NOTE: low 8 bits are to disable disconnect, and the next
    210 	 *       8 bits are to disable sync.
    211 	 */
    212 	sc->sc_dev.dv_cfdata->cf_flags |= (scsi_nosync >> shift_nosync)
    213 	    & 0xffff;
    214 	shift_nosync += 16;
    215 
    216 	/* Use next 16 bits of -I argument to set ncr53c9x_debug flags */
    217 	ncr53c9x_debug |= (scsi_nosync >> shift_nosync) & 0xffff;
    218 	shift_nosync += 16;
    219 
    220 #if 1
    221 	if (((scsi_nosync >> shift_nosync) & 0xff00) == 0xff00)
    222 		sc->sc_minsync = 0;
    223 #endif
    224 
    225 	/* Really no limit, but since we want to fit into the TCR... */
    226 	sc->sc_maxxfer = 64 * 1024;
    227 
    228 	bsc->sc_reg[0xe0] = BZTZSC_PB_LED;	/* Turn LED off */
    229 
    230 	/*
    231 	 * Configure interrupts.
    232 	 */
    233 	bsc->sc_isr.isr_intr = ncr53c9x_intr;
    234 	bsc->sc_isr.isr_arg  = sc;
    235 	bsc->sc_isr.isr_ipl  = 2;
    236 	add_isr(&bsc->sc_isr);
    237 
    238 	/*
    239 	 * Now try to attach all the sub-devices
    240 	 */
    241 	ncr53c9x_attach(sc, NULL, NULL);
    242 }
    243 
    244 /*
    245  * Glue functions.
    246  */
    247 
    248 u_char
    249 bztzsc_read_reg(sc, reg)
    250 	struct ncr53c9x_softc *sc;
    251 	int reg;
    252 {
    253 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    254 
    255 	return bsc->sc_reg[reg * 4];
    256 }
    257 
    258 void
    259 bztzsc_write_reg(sc, reg, val)
    260 	struct ncr53c9x_softc *sc;
    261 	int reg;
    262 	u_char val;
    263 {
    264 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    265 	u_char v = val;
    266 
    267 	bsc->sc_reg[reg * 4] = v;
    268 #ifdef DEBUG
    269 if (bztzsc_trace_enable/* && sc->sc_nexus && sc->sc_nexus->xs->xs_control & XS_CTL_POLL*/ &&
    270   reg == NCR_CMD/* && bsc->sc_active*/) {
    271   bztzsc_trace[(bztzsc_trace_ptr - 1) & 127].yy = v;
    272 /*  printf(" cmd %x", v);*/
    273 }
    274 #endif
    275 }
    276 
    277 int
    278 bztzsc_dma_isintr(sc)
    279 	struct ncr53c9x_softc *sc;
    280 {
    281 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    282 
    283 	if ((bsc->sc_reg[NCR_STAT * 4] & NCRSTAT_INT) == 0)
    284 		return 0;
    285 
    286 	if (sc->sc_state == NCR_CONNECTED)
    287 		bsc->sc_reg[0xe0] = 0;			/* Turn LED on */
    288 	else
    289 		bsc->sc_reg[0xe0] = BZTZSC_PB_LED;	/* Turn LED off */
    290 
    291 #ifdef DEBUG
    292 if (/*sc->sc_nexus && sc->sc_nexus->xs->xs_control & XS_CTL_POLL &&*/ bztzsc_trace_enable) {
    293   bztzsc_trace[bztzsc_trace_ptr].status = bsc->sc_reg[NCR_STAT * 4];
    294   bztzsc_trace[bztzsc_trace_ptr].xx = bsc->sc_reg[NCR_CMD * 4];
    295   bztzsc_trace[bztzsc_trace_ptr].yy = bsc->sc_active;
    296   bztzsc_trace_ptr = (bztzsc_trace_ptr + 1) & 127;
    297 }
    298 #endif
    299 	return 1;
    300 }
    301 
    302 void
    303 bztzsc_dma_reset(sc)
    304 	struct ncr53c9x_softc *sc;
    305 {
    306 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    307 
    308 	bsc->sc_active = 0;
    309 }
    310 
    311 int
    312 bztzsc_dma_intr(sc)
    313 	struct ncr53c9x_softc *sc;
    314 {
    315 	register struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    316 	register int	cnt;
    317 
    318 	NCR_DMA(("bztzsc_dma_intr: cnt %d int %x stat %x fifo %d ",
    319 	    bsc->sc_dmasize, sc->sc_espintr, sc->sc_espstat,
    320 	    bsc->sc_reg[NCR_FFLAG * 4] & NCRFIFO_FF));
    321 	if (bsc->sc_active == 0) {
    322 		printf("bztzsc_intr--inactive DMA\n");
    323 		return -1;
    324 	}
    325 
    326 	/* update sc_dmaaddr and sc_pdmalen */
    327 	cnt = bsc->sc_reg[NCR_TCL * 4];
    328 	cnt += bsc->sc_reg[NCR_TCM * 4] << 8;
    329 	cnt += bsc->sc_reg[NCR_TCH * 4] << 16;
    330 	if (!bsc->sc_datain) {
    331 		cnt += bsc->sc_reg[NCR_FFLAG * 4] & NCRFIFO_FF;
    332 		bsc->sc_reg[NCR_CMD * 4] = NCRCMD_FLUSH;
    333 	}
    334 	cnt = bsc->sc_dmasize - cnt;	/* number of bytes transferred */
    335 	NCR_DMA(("DMA xferred %d\n", cnt));
    336 	if (bsc->sc_xfr_align) {
    337 		bcopy(bsc->sc_alignbuf, *bsc->sc_dmaaddr, cnt);
    338 		bsc->sc_xfr_align = 0;
    339 	}
    340 	*bsc->sc_dmaaddr += cnt;
    341 	*bsc->sc_pdmalen -= cnt;
    342 	bsc->sc_active = 0;
    343 	return 0;
    344 }
    345 
    346 int
    347 bztzsc_dma_setup(sc, addr, len, datain, dmasize)
    348 	struct ncr53c9x_softc *sc;
    349 	caddr_t *addr;
    350 	size_t *len;
    351 	int datain;
    352 	size_t *dmasize;
    353 {
    354 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    355 	paddr_t pa;
    356 	u_char *ptr;
    357 	size_t xfer;
    358 
    359 	bsc->sc_dmaaddr = addr;
    360 	bsc->sc_pdmalen = len;
    361 	bsc->sc_datain = datain;
    362 	bsc->sc_dmasize = *dmasize;
    363 	/*
    364 	 * DMA can be nasty for high-speed serial input, so limit the
    365 	 * size of this DMA operation if the serial port is running at
    366 	 * a high speed (higher than 19200 for now - should be adjusted
    367 	 * based on cpu type and speed?).
    368 	 * XXX - add serial speed check XXX
    369 	 */
    370 	if (ser_open_speed > 19200 && bztzsc_max_dma != 0 &&
    371 	    bsc->sc_dmasize > bztzsc_max_dma)
    372 		bsc->sc_dmasize = bztzsc_max_dma;
    373 	ptr = *addr;			/* Kernel virtual address */
    374 	pa = kvtop(ptr);		/* Physical address of DMA */
    375 	xfer = min(bsc->sc_dmasize, NBPG - (pa & (NBPG - 1)));
    376 	bsc->sc_xfr_align = 0;
    377 	/*
    378 	 * If output and unaligned, stuff odd byte into FIFO
    379 	 */
    380 	if (datain == 0 && (int)ptr & 1) {
    381 		NCR_DMA(("bztzsc_dma_setup: align byte written to fifo\n"));
    382 		pa++;
    383 		xfer--;			/* XXXX CHECK THIS !!!! XXXX */
    384 		bsc->sc_reg[NCR_FIFO * 4] = *ptr++;
    385 	}
    386 	/*
    387 	 * If unaligned address, read unaligned bytes into alignment buffer
    388 	 */
    389 	else if ((int)ptr & 1) {
    390 		pa = kvtop((caddr_t)&bsc->sc_alignbuf);
    391 		xfer = bsc->sc_dmasize = min(xfer, sizeof (bsc->sc_alignbuf));
    392 		NCR_DMA(("bztzsc_dma_setup: align read by %d bytes\n", xfer));
    393 		bsc->sc_xfr_align = 1;
    394 	}
    395 ++bztzsc_cnt_dma;		/* number of DMA operations */
    396 
    397 	while (xfer < bsc->sc_dmasize) {
    398 		if ((pa + xfer) != kvtop(*addr + xfer))
    399 			break;
    400 		if ((bsc->sc_dmasize - xfer) < NBPG)
    401 			xfer = bsc->sc_dmasize;
    402 		else
    403 			xfer += NBPG;
    404 ++bztzsc_cnt_dma3;
    405 	}
    406 if (xfer != *len)
    407   ++bztzsc_cnt_dma2;
    408 
    409 	bsc->sc_dmasize = xfer;
    410 	*dmasize = bsc->sc_dmasize;
    411 	bsc->sc_pa = pa;
    412 #if defined(M68040) || defined(M68060)
    413 	if (mmutype == MMU_68040) {
    414 		if (bsc->sc_xfr_align) {
    415 			dma_cachectl(bsc->sc_alignbuf,
    416 			    sizeof(bsc->sc_alignbuf));
    417 		}
    418 		else
    419 			dma_cachectl(*bsc->sc_dmaaddr, bsc->sc_dmasize);
    420 	}
    421 #endif
    422 
    423 	pa >>= 1;
    424 	if (!bsc->sc_datain)
    425 		pa |= 0x80000000;
    426 	bsc->sc_dmabase[12] = (u_int8_t)(pa);
    427 	bsc->sc_dmabase[8] = (u_int8_t)(pa >> 8);
    428 	bsc->sc_dmabase[4] = (u_int8_t)(pa >> 16);
    429 	bsc->sc_dmabase[0] = (u_int8_t)(pa >> 24);
    430 	bsc->sc_active = 1;
    431 	return 0;
    432 }
    433 
    434 void
    435 bztzsc_dma_go(sc)
    436 	struct ncr53c9x_softc *sc;
    437 {
    438 }
    439 
    440 void
    441 bztzsc_dma_stop(sc)
    442 	struct ncr53c9x_softc *sc;
    443 {
    444 }
    445 
    446 int
    447 bztzsc_dma_isactive(sc)
    448 	struct ncr53c9x_softc *sc;
    449 {
    450 	struct bztzsc_softc *bsc = (struct bztzsc_softc *)sc;
    451 
    452 	return bsc->sc_active;
    453 }
    454 
    455 #ifdef DEBUG
    456 void
    457 bztzsc_dump()
    458 {
    459 	int i;
    460 
    461 	i = bztzsc_trace_ptr;
    462 	printf("bztzsc_trace dump: ptr %x\n", bztzsc_trace_ptr);
    463 	do {
    464 		if (bztzsc_trace[i].hardbits == 0) {
    465 			i = (i + 1) & 127;
    466 			continue;
    467 		}
    468 		printf("%02x%02x%02x%02x(", bztzsc_trace[i].hardbits,
    469 		    bztzsc_trace[i].status, bztzsc_trace[i].xx, bztzsc_trace[i].yy);
    470 		if (bztzsc_trace[i].status & NCRSTAT_INT)
    471 			printf("NCRINT/");
    472 		if (bztzsc_trace[i].status & NCRSTAT_TC)
    473 			printf("NCRTC/");
    474 		switch(bztzsc_trace[i].status & NCRSTAT_PHASE) {
    475 		case 0:
    476 			printf("dataout"); break;
    477 		case 1:
    478 			printf("datain"); break;
    479 		case 2:
    480 			printf("cmdout"); break;
    481 		case 3:
    482 			printf("status"); break;
    483 		case 6:
    484 			printf("msgout"); break;
    485 		case 7:
    486 			printf("msgin"); break;
    487 		default:
    488 			printf("phase%d?", bztzsc_trace[i].status & NCRSTAT_PHASE);
    489 		}
    490 		printf(") ");
    491 		i = (i + 1) & 127;
    492 	} while (i != bztzsc_trace_ptr);
    493 	printf("\n");
    494 }
    495 #endif
    496