Home | History | Annotate | Line # | Download | only in sbus
isp_sbus.c revision 1.21
      1 /* $NetBSD: isp_sbus.c,v 1.21 2000/01/14 08:43:17 mjacob Exp $ */
      2 /*
      3  * SBus specific probe and attach routines for Qlogic ISP SCSI adapters.
      4  *
      5  * Copyright (c) 1997 by Matthew Jacob
      6  * NASA AMES Research Center
      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 immediately at the beginning of the file, without modification,
     14  *    this list of conditions, and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     25  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  * SUCH DAMAGE.
     32  *
     33  */
     34 
     35 #include <sys/param.h>
     36 #include <sys/systm.h>
     37 #include <sys/device.h>
     38 #include <sys/kernel.h>
     39 #include <sys/malloc.h>
     40 #include <sys/queue.h>
     41 
     42 #include <machine/autoconf.h>
     43 #include <machine/cpu.h>
     44 #include <machine/param.h>
     45 #include <machine/vmparam.h>
     46 
     47 #include <dev/ic/isp_netbsd.h>
     48 #include <dev/microcode/isp/asm_sbus.h>
     49 #include <dev/sbus/sbusvar.h>
     50 
     51 static u_int16_t isp_sbus_rd_reg __P((struct ispsoftc *, int));
     52 static void isp_sbus_wr_reg __P((struct ispsoftc *, int, u_int16_t));
     53 static int isp_sbus_mbxdma __P((struct ispsoftc *));
     54 static int isp_sbus_dmasetup __P((struct ispsoftc *, struct scsipi_xfer *,
     55 	ispreq_t *, u_int16_t *, u_int16_t));
     56 static void isp_sbus_dmateardown __P((struct ispsoftc *, struct scsipi_xfer *,
     57 	u_int32_t));
     58 
     59 #ifndef	ISP_1000_RISC_CODE
     60 #define	ISP_1000_RISC_CODE	NULL
     61 #endif
     62 #ifndef	ISP_CODE_ORG
     63 #define	ISP_CODE_ORG	0x1000
     64 #endif
     65 
     66 static struct ispmdvec mdvec = {
     67 	isp_sbus_rd_reg,
     68 	isp_sbus_wr_reg,
     69 	isp_sbus_mbxdma,
     70 	isp_sbus_dmasetup,
     71 	isp_sbus_dmateardown,
     72 	NULL,
     73 	NULL,
     74 	NULL,
     75 	ISP_1000_RISC_CODE, 0, ISP_CODE_ORG, 0,
     76 	BIU_BURST_ENABLE
     77 };
     78 
     79 struct isp_sbussoftc {
     80 	struct ispsoftc	sbus_isp;
     81 	sdparam		sbus_dev;
     82 	bus_space_tag_t	sbus_bustag;
     83 	bus_dma_tag_t	sbus_dmatag;
     84 	bus_space_handle_t sbus_reg;
     85 	int		sbus_node;
     86 	int		sbus_pri;
     87 	struct ispmdvec	sbus_mdvec;
     88 	bus_dmamap_t	*sbus_dmamap;
     89 	int16_t		sbus_poff[_NREG_BLKS];
     90 };
     91 
     92 
     93 static int isp_match __P((struct device *, struct cfdata *, void *));
     94 static void isp_sbus_attach __P((struct device *, struct device *, void *));
     95 struct cfattach isp_sbus_ca = {
     96 	sizeof (struct isp_sbussoftc), isp_match, isp_sbus_attach
     97 };
     98 
     99 static int
    100 isp_match(parent, cf, aux)
    101         struct device *parent;
    102         struct cfdata *cf;
    103         void *aux;
    104 {
    105 	int rv;
    106 #ifdef DEBUG
    107 	static int oneshot = 1;
    108 #endif
    109 	struct sbus_attach_args *sa = aux;
    110 
    111 	rv = (strcmp(cf->cf_driver->cd_name, sa->sa_name) == 0 ||
    112 		strcmp("PTI,ptisp", sa->sa_name) == 0 ||
    113 		strcmp("ptisp", sa->sa_name) == 0 ||
    114 		strcmp("SUNW,isp", sa->sa_name) == 0 ||
    115 		strcmp("QLGC,isp", sa->sa_name) == 0);
    116 #ifdef DEBUG
    117 	if (rv && oneshot) {
    118 		oneshot = 0;
    119 		printf("Qlogic ISP Driver, NetBSD (sbus) Platform Version "
    120 		    "%d.%d Core Version %d.%d\n",
    121 		    ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR,
    122 		    ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR);
    123 	}
    124 #endif
    125 	return (rv);
    126 }
    127 
    128 
    129 static void
    130 isp_sbus_attach(parent, self, aux)
    131         struct device *parent, *self;
    132         void *aux;
    133 {
    134 	int i, freq;
    135 	struct sbus_attach_args *sa = aux;
    136 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) self;
    137 	struct ispsoftc *isp = &sbc->sbus_isp;
    138 	ISP_LOCKVAL_DECL;
    139 
    140 	printf(" for %s\n", sa->sa_name);
    141 
    142 	sbc->sbus_bustag = sa->sa_bustag;
    143 	sbc->sbus_dmatag = sa->sa_dmatag;
    144 	if (sa->sa_nintr != 0)
    145 		sbc->sbus_pri = sa->sa_pri;
    146 	sbc->sbus_mdvec = mdvec;
    147 
    148 	if (sa->sa_npromvaddrs != 0) {
    149 		sbc->sbus_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
    150 	} else {
    151 		if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset,
    152 				 sa->sa_size, BUS_SPACE_MAP_LINEAR, 0,
    153 				 &sbc->sbus_reg) != 0) {
    154 			printf("%s: cannot map registers\n", self->dv_xname);
    155 			return;
    156 		}
    157 	}
    158 	sbc->sbus_node = sa->sa_node;
    159 
    160 	freq = getpropint(sa->sa_node, "clock-frequency", 0);
    161 	if (freq) {
    162 		/*
    163 		 * Convert from HZ to MHz, rounding up.
    164 		 */
    165 		freq = (freq + 500000)/1000000;
    166 #if	0
    167 		printf("%s: %d MHz\n", self->dv_xname, freq);
    168 #endif
    169 	}
    170 	sbc->sbus_mdvec.dv_clock = freq;
    171 
    172 	/*
    173 	 * XXX: Now figure out what the proper burst sizes, etc., to use.
    174 	 */
    175 	sbc->sbus_mdvec.dv_conf1 |= BIU_SBUS_CONF1_FIFO_8;
    176 
    177 	/*
    178 	 * Some early versions of the PTI SBus adapter
    179 	 * would fail in trying to download (via poking)
    180 	 * FW. We give up on them.
    181 	 */
    182 	if (strcmp("PTI,ptisp", sa->sa_name) == 0 ||
    183 	    strcmp("ptisp", sa->sa_name) == 0) {
    184 		sbc->sbus_mdvec.dv_ispfw = NULL;
    185 	}
    186 
    187 	isp->isp_mdvec = &sbc->sbus_mdvec;
    188 	isp->isp_bustype = ISP_BT_SBUS;
    189 	isp->isp_type = ISP_HA_SCSI_UNKNOWN;
    190 	isp->isp_param = &sbc->sbus_dev;
    191 	bzero(isp->isp_param, sizeof (sdparam));
    192 
    193 	sbc->sbus_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
    194 	sbc->sbus_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = SBUS_MBOX_REGS_OFF;
    195 	sbc->sbus_poff[SXP_BLOCK >> _BLK_REG_SHFT] = SBUS_SXP_REGS_OFF;
    196 	sbc->sbus_poff[RISC_BLOCK >> _BLK_REG_SHFT] = SBUS_RISC_REGS_OFF;
    197 	sbc->sbus_poff[DMA_BLOCK >> _BLK_REG_SHFT] = DMA_REGS_OFF;
    198 
    199 	isp->isp_confopts = self->dv_cfdata->cf_flags;
    200 	/*
    201 	 * There's no tool on sparc to set NVRAM for ISPs, so ignore it.
    202 	 */
    203 	isp->isp_confopts |= ISP_CFG_NONVRAM;
    204 	ISP_LOCK(isp);
    205 	isp_reset(isp);
    206 	if (isp->isp_state != ISP_RESETSTATE) {
    207 		ISP_UNLOCK(isp);
    208 		return;
    209 	}
    210 	isp_init(isp);
    211 	if (isp->isp_state != ISP_INITSTATE) {
    212 		isp_uninit(isp);
    213 		ISP_UNLOCK(isp);
    214 		return;
    215 	}
    216 
    217 	for (i = 0; i < isp->isp_maxcmds; i++) {
    218 		/* Allocate a DMA handle */
    219 		if (bus_dmamap_create(sbc->sbus_dmatag, MAXPHYS, 1, MAXPHYS, 0,
    220 		    BUS_DMA_NOWAIT, &sbc->sbus_dmamap[i]) != 0) {
    221 			printf("%s: DMA map create error\n",
    222 				self->dv_xname);
    223 			return;
    224 		}
    225 	}
    226 
    227 	/* Establish interrupt channel */
    228 	bus_intr_establish(sbc->sbus_bustag, sbc->sbus_pri, 0,
    229 	    (int(*)__P((void*)))isp_intr, sbc);
    230 
    231 	/*
    232 	 * do generic attach.
    233 	 */
    234 	isp_attach(isp);
    235 	if (isp->isp_state != ISP_RUNSTATE) {
    236 		isp_uninit(isp);
    237 	}
    238 	ISP_UNLOCK(isp);
    239 }
    240 
    241 static u_int16_t
    242 isp_sbus_rd_reg(isp, regoff)
    243 	struct ispsoftc *isp;
    244 	int regoff;
    245 {
    246 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
    247 	int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
    248 	offset += (regoff & 0xff);
    249 	return (bus_space_read_2(sbc->sbus_bustag, sbc->sbus_reg, offset));
    250 }
    251 
    252 static void
    253 isp_sbus_wr_reg(isp, regoff, val)
    254 	struct ispsoftc *isp;
    255 	int regoff;
    256 	u_int16_t val;
    257 {
    258 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
    259 	int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
    260 	offset += (regoff & 0xff);
    261 	bus_space_write_2(sbc->sbus_bustag, sbc->sbus_reg, offset, val);
    262 }
    263 
    264 static int
    265 isp_sbus_mbxdma(isp)
    266 	struct ispsoftc *isp;
    267 {
    268 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
    269 	bus_dma_segment_t seg;
    270 	int rseg;
    271 	size_t n;
    272 	bus_size_t len;
    273 
    274 	if (isp->isp_rquest_dma)
    275 		return (0);
    276 
    277 	n = sizeof (ISP_SCSI_XFER_T **) * isp->isp_maxcmds;
    278 	isp->isp_xflist = (ISP_SCSI_XFER_T **) malloc(n, M_DEVBUF, M_WAITOK);
    279 	if (isp->isp_xflist == NULL) {
    280 		printf("%s: cannot alloc xflist array\n", isp->isp_name);
    281 		return (1);
    282 	}
    283 	bzero(isp->isp_xflist, n);
    284 	n = sizeof (bus_dmamap_t) * isp->isp_maxcmds;
    285 	sbc->sbus_dmamap = (bus_dmamap_t *) malloc(n, M_DEVBUF, M_WAITOK);
    286 	if (sbc->sbus_dmamap == NULL) {
    287 		free(isp->isp_xflist, M_DEVBUF);
    288 		printf("%s: cannot alloc dmamap array\n", isp->isp_name);
    289 		return (1);
    290 	}
    291 	/*
    292 	 * Allocate and map the request queue.
    293 	 */
    294 	len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN);
    295 	if (bus_dmamem_alloc(sbc->sbus_dmatag, len, NBPG, 0,
    296 	    &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
    297 		free(sbc->sbus_dmamap, M_DEVBUF);
    298 		free(isp->isp_xflist, M_DEVBUF);
    299 		return (1);
    300 	}
    301 
    302 	if (bus_dmamem_map(sbc->sbus_dmatag, &seg, rseg, len,
    303 	    (caddr_t *)&isp->isp_rquest, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
    304 		free(sbc->sbus_dmamap, M_DEVBUF);
    305 		free(isp->isp_xflist, M_DEVBUF);
    306 		return (1);
    307 	}
    308 	isp->isp_rquest_dma = seg.ds_addr;
    309 
    310 	/*
    311 	 * Allocate and map the result queue.
    312 	 */
    313 	len = ISP_QUEUE_SIZE(RESULT_QUEUE_LEN);
    314 	if (bus_dmamem_alloc(sbc->sbus_dmatag, len, NBPG, 0,
    315 	    &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
    316 		free(sbc->sbus_dmamap, M_DEVBUF);
    317 		free(isp->isp_xflist, M_DEVBUF);
    318 		return (1);
    319 	}
    320 	if (bus_dmamem_map(sbc->sbus_dmatag, &seg, rseg, len,
    321 	    (caddr_t *)&isp->isp_result, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
    322 		free(sbc->sbus_dmamap, M_DEVBUF);
    323 		free(isp->isp_xflist, M_DEVBUF);
    324 		return (1);
    325 	}
    326 	isp->isp_result_dma = seg.ds_addr;
    327 	return (0);
    328 }
    329 
    330 /*
    331  * Map a DMA request.
    332  * We're guaranteed that rq->req_handle is a value from 1 to isp->isp_maxcmds.
    333  */
    334 
    335 static int
    336 isp_sbus_dmasetup(isp, xs, rq, iptrp, optr)
    337 	struct ispsoftc *isp;
    338 	struct scsipi_xfer *xs;
    339 	ispreq_t *rq;
    340 	u_int16_t *iptrp;
    341 	u_int16_t optr;
    342 {
    343 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
    344 	bus_dmamap_t dmamap;
    345 	int cansleep = (xs->xs_control & XS_CTL_NOSLEEP) == 0;
    346 	int in = (xs->xs_control & XS_CTL_DATA_IN) != 0;
    347 
    348 	if (xs->datalen == 0) {
    349 		rq->req_seg_count = 1;
    350 		goto mbxsync;
    351 	}
    352 	assert(rq->req_handle != 0 && rq->req_handle <= isp->isp_maxcmds);
    353 	dmamap = sbc->sbus_dmamap[rq->req_handle - 1];
    354 	if (dmamap->dm_nsegs != 0) {
    355 		panic("%s: dma map already allocated\n", isp->isp_name);
    356 		/* NOTREACHED */
    357 	}
    358 	if (bus_dmamap_load(sbc->sbus_dmatag, dmamap, xs->data, xs->datalen,
    359 	    NULL, cansleep? BUS_DMA_WAITOK : BUS_DMA_NOWAIT) != 0) {
    360 		XS_SETERR(xs, HBA_BOTCH);
    361 		return (CMD_COMPLETE);
    362 	}
    363 	bus_dmamap_sync(sbc->sbus_dmatag, dmamap, dmamap->dm_segs[0].ds_addr,
    364 	    xs->datalen, in? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
    365 	if (in) {
    366 		rq->req_flags |= REQFLAG_DATA_IN;
    367 	} else {
    368 		rq->req_flags |= REQFLAG_DATA_OUT;
    369 	}
    370 	rq->req_dataseg[0].ds_count = xs->datalen;
    371 	rq->req_dataseg[0].ds_base =  dmamap->dm_segs[0].ds_addr;
    372 	rq->req_seg_count = 1;
    373 mbxsync:
    374         ISP_SWIZZLE_REQUEST(isp, rq);
    375 #if	0
    376 	/*
    377 	 * If we ever map cacheable memory, we need to do something like this.
    378 	 */
    379         bus_dmamap_sync(sbc->sbus_dmat, sbc->sbus_rquest_dmap, 0,
    380             sbc->sbus_rquest_dmap->dm_mapsize, BUS_DMASYNC_PREWRITE);
    381 #endif
    382 	return (CMD_QUEUED);
    383 }
    384 
    385 static void
    386 isp_sbus_dmateardown(isp, xs, handle)
    387 	struct ispsoftc *isp;
    388 	struct scsipi_xfer *xs;
    389 	u_int32_t handle;
    390 {
    391 	struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
    392 	bus_dmamap_t dmamap;
    393 	assert(handle != 0 && handle <= isp->isp_maxcmds);
    394 	dmamap = sbc->sbus_dmamap[handle-1];
    395 	if (dmamap->dm_nsegs == 0) {
    396 		panic("%s: dma map not already allocated\n", isp->isp_name);
    397 		/* NOTREACHED */
    398 	}
    399 	bus_dmamap_sync(sbc->sbus_dmatag, dmamap, dmamap->dm_segs[0].ds_addr,
    400 	    xs->datalen, (xs->xs_control & XS_CTL_DATA_IN)?
    401 	    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
    402 	bus_dmamap_unload(sbc->sbus_dmatag, dmamap);
    403 }
    404