isp_sbus.c revision 1.25 1 /* $NetBSD: isp_sbus.c,v 1.25 2000/05/10 14:16:11 pk 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 bus_dmamap_t sbus_request_dmamap;
90 bus_dmamap_t sbus_result_dmamap;
91 int16_t sbus_poff[_NREG_BLKS];
92 };
93
94
95 static int isp_match __P((struct device *, struct cfdata *, void *));
96 static void isp_sbus_attach __P((struct device *, struct device *, void *));
97 struct cfattach isp_sbus_ca = {
98 sizeof (struct isp_sbussoftc), isp_match, isp_sbus_attach
99 };
100
101 static int
102 isp_match(parent, cf, aux)
103 struct device *parent;
104 struct cfdata *cf;
105 void *aux;
106 {
107 int rv;
108 #ifdef DEBUG
109 static int oneshot = 1;
110 #endif
111 struct sbus_attach_args *sa = aux;
112
113 rv = (strcmp(cf->cf_driver->cd_name, sa->sa_name) == 0 ||
114 strcmp("PTI,ptisp", sa->sa_name) == 0 ||
115 strcmp("ptisp", sa->sa_name) == 0 ||
116 strcmp("SUNW,isp", sa->sa_name) == 0 ||
117 strcmp("QLGC,isp", sa->sa_name) == 0);
118 #ifdef DEBUG
119 if (rv && oneshot) {
120 oneshot = 0;
121 printf("Qlogic ISP Driver, NetBSD (sbus) Platform Version "
122 "%d.%d Core Version %d.%d\n",
123 ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR,
124 ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR);
125 }
126 #endif
127 return (rv);
128 }
129
130
131 static void
132 isp_sbus_attach(parent, self, aux)
133 struct device *parent, *self;
134 void *aux;
135 {
136 int i, freq;
137 struct sbus_attach_args *sa = aux;
138 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) self;
139 struct ispsoftc *isp = &sbc->sbus_isp;
140 ISP_LOCKVAL_DECL;
141
142 printf(" for %s\n", sa->sa_name);
143
144 sbc->sbus_bustag = sa->sa_bustag;
145 sbc->sbus_dmatag = sa->sa_dmatag;
146 if (sa->sa_nintr != 0)
147 sbc->sbus_pri = sa->sa_pri;
148 sbc->sbus_mdvec = mdvec;
149
150 if (sa->sa_npromvaddrs != 0) {
151 sbc->sbus_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
152 } else {
153 if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset,
154 sa->sa_size, BUS_SPACE_MAP_LINEAR, 0,
155 &sbc->sbus_reg) != 0) {
156 printf("%s: cannot map registers\n", self->dv_xname);
157 return;
158 }
159 }
160 sbc->sbus_node = sa->sa_node;
161
162 freq = getpropint(sa->sa_node, "clock-frequency", 0);
163 if (freq) {
164 /*
165 * Convert from HZ to MHz, rounding up.
166 */
167 freq = (freq + 500000)/1000000;
168 #if 0
169 printf("%s: %d MHz\n", self->dv_xname, freq);
170 #endif
171 }
172 sbc->sbus_mdvec.dv_clock = freq;
173
174 /*
175 * XXX: Now figure out what the proper burst sizes, etc., to use.
176 */
177 sbc->sbus_mdvec.dv_conf1 |= BIU_SBUS_CONF1_FIFO_8;
178
179 /*
180 * Some early versions of the PTI SBus adapter
181 * would fail in trying to download (via poking)
182 * FW. We give up on them.
183 */
184 if (strcmp("PTI,ptisp", sa->sa_name) == 0 ||
185 strcmp("ptisp", sa->sa_name) == 0) {
186 sbc->sbus_mdvec.dv_ispfw = NULL;
187 }
188
189 isp->isp_mdvec = &sbc->sbus_mdvec;
190 isp->isp_bustype = ISP_BT_SBUS;
191 isp->isp_type = ISP_HA_SCSI_UNKNOWN;
192 isp->isp_param = &sbc->sbus_dev;
193 bzero(isp->isp_param, sizeof (sdparam));
194
195 sbc->sbus_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
196 sbc->sbus_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = SBUS_MBOX_REGS_OFF;
197 sbc->sbus_poff[SXP_BLOCK >> _BLK_REG_SHFT] = SBUS_SXP_REGS_OFF;
198 sbc->sbus_poff[RISC_BLOCK >> _BLK_REG_SHFT] = SBUS_RISC_REGS_OFF;
199 sbc->sbus_poff[DMA_BLOCK >> _BLK_REG_SHFT] = DMA_REGS_OFF;
200
201 isp->isp_confopts = self->dv_cfdata->cf_flags;
202 /*
203 * There's no tool on sparc to set NVRAM for ISPs, so ignore it.
204 */
205 isp->isp_confopts |= ISP_CFG_NONVRAM;
206 ISP_LOCK(isp);
207 isp_reset(isp);
208 if (isp->isp_state != ISP_RESETSTATE) {
209 ISP_UNLOCK(isp);
210 return;
211 }
212 isp_init(isp);
213 if (isp->isp_state != ISP_INITSTATE) {
214 isp_uninit(isp);
215 ISP_UNLOCK(isp);
216 return;
217 }
218
219 for (i = 0; i < isp->isp_maxcmds; i++) {
220 /* Allocate a DMA handle */
221 if (bus_dmamap_create(sbc->sbus_dmatag, MAXPHYS, 1, MAXPHYS, 0,
222 BUS_DMA_NOWAIT, &sbc->sbus_dmamap[i]) != 0) {
223 printf("%s: DMA map create error\n",
224 self->dv_xname);
225 return;
226 }
227 }
228
229 /* Establish interrupt channel */
230 bus_intr_establish(sbc->sbus_bustag, sbc->sbus_pri, 0,
231 (int(*)__P((void*)))isp_intr, sbc);
232
233 /*
234 * do generic attach.
235 */
236 isp_attach(isp);
237 if (isp->isp_state != ISP_RUNSTATE) {
238 isp_uninit(isp);
239 }
240 ISP_UNLOCK(isp);
241 }
242
243 static u_int16_t
244 isp_sbus_rd_reg(isp, regoff)
245 struct ispsoftc *isp;
246 int regoff;
247 {
248 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
249 int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
250 offset += (regoff & 0xff);
251 return (bus_space_read_2(sbc->sbus_bustag, sbc->sbus_reg, offset));
252 }
253
254 static void
255 isp_sbus_wr_reg(isp, regoff, val)
256 struct ispsoftc *isp;
257 int regoff;
258 u_int16_t val;
259 {
260 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
261 int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
262 offset += (regoff & 0xff);
263 bus_space_write_2(sbc->sbus_bustag, sbc->sbus_reg, offset, val);
264 }
265
266 static int
267 isp_sbus_mbxdma(isp)
268 struct ispsoftc *isp;
269 {
270 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
271 bus_dma_tag_t dmatag = sbc->sbus_dmatag;
272 bus_dma_segment_t seg;
273 int rseg;
274 size_t n;
275 bus_size_t len;
276
277 if (isp->isp_rquest_dma)
278 return (0);
279
280 n = sizeof (ISP_SCSI_XFER_T **) * isp->isp_maxcmds;
281 isp->isp_xflist = (ISP_SCSI_XFER_T **) malloc(n, M_DEVBUF, M_WAITOK);
282 if (isp->isp_xflist == NULL) {
283 printf("%s: cannot alloc xflist array\n", isp->isp_name);
284 return (1);
285 }
286 bzero(isp->isp_xflist, n);
287 n = sizeof (bus_dmamap_t) * isp->isp_maxcmds;
288 sbc->sbus_dmamap = (bus_dmamap_t *) malloc(n, M_DEVBUF, M_WAITOK);
289 if (sbc->sbus_dmamap == NULL) {
290 free(isp->isp_xflist, M_DEVBUF);
291 printf("%s: cannot alloc dmamap array\n", isp->isp_name);
292 return (1);
293 }
294 /*
295 * Allocate and map the request queue.
296 */
297 len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN);
298 /* Allocate DMA map */
299 if (bus_dmamap_create(dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
300 &sbc->sbus_request_dmamap) != 0) {
301 goto dmafail;
302 }
303
304 /* Allocate DMA buffer */
305 if (bus_dmamem_alloc(dmatag, len, NBPG, 0,
306 &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
307 goto dmafail;
308 }
309
310 /* Load the buffer */
311 if (bus_dmamap_load_raw(dmatag, sbc->sbus_request_dmamap,
312 &seg, rseg, len, BUS_DMA_NOWAIT) != 0) {
313 bus_dmamem_free(dmatag, &seg, rseg);
314 goto dmafail;
315 }
316 isp->isp_rquest_dma = sbc->sbus_request_dmamap->dm_segs[0].ds_addr;
317
318 /* Map DMA buffer in CPU addressable space */
319 if (bus_dmamem_map(dmatag, &seg, rseg, len,
320 (caddr_t *)&isp->isp_rquest,
321 BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
322 bus_dmamap_unload(dmatag, sbc->sbus_request_dmamap);
323 bus_dmamem_free(dmatag, &seg, rseg);
324 goto dmafail;
325 }
326
327 /*
328 * Allocate and map the result queue.
329 */
330 len = ISP_QUEUE_SIZE(RESULT_QUEUE_LEN);
331 /* Allocate DMA map */
332 if (bus_dmamap_create(dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
333 &sbc->sbus_result_dmamap) != 0) {
334 goto dmafail;
335 }
336
337 /* Allocate DMA buffer */
338 if (bus_dmamem_alloc(dmatag, len, NBPG, 0,
339 &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
340 goto dmafail;
341 }
342
343 /* Load the buffer */
344 if (bus_dmamap_load_raw(dmatag, sbc->sbus_result_dmamap,
345 &seg, rseg, len, BUS_DMA_NOWAIT) != 0) {
346 bus_dmamem_free(dmatag, &seg, rseg);
347 goto dmafail;
348 }
349
350 /* Map DMA buffer in CPU addressable space */
351 if (bus_dmamem_map(dmatag, &seg, rseg, len,
352 (caddr_t *)&isp->isp_result,
353 BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
354 bus_dmamap_unload(dmatag, sbc->sbus_result_dmamap);
355 bus_dmamem_free(dmatag, &seg, rseg);
356 goto dmafail;
357 }
358 isp->isp_result_dma = sbc->sbus_result_dmamap->dm_segs[0].ds_addr;
359
360 return (0);
361
362 dmafail:
363 free(sbc->sbus_dmamap, M_DEVBUF);
364 free(isp->isp_xflist, M_DEVBUF);
365 return (1);
366 }
367
368 /*
369 * Map a DMA request.
370 * We're guaranteed that rq->req_handle is a value from 1 to isp->isp_maxcmds.
371 */
372
373 static int
374 isp_sbus_dmasetup(isp, xs, rq, iptrp, optr)
375 struct ispsoftc *isp;
376 struct scsipi_xfer *xs;
377 ispreq_t *rq;
378 u_int16_t *iptrp;
379 u_int16_t optr;
380 {
381 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
382 bus_dmamap_t dmamap;
383 ispcontreq_t *crq;
384 int cansleep = (xs->xs_control & XS_CTL_NOSLEEP) == 0;
385 int in = (xs->xs_control & XS_CTL_DATA_IN) != 0;
386
387 if (xs->datalen == 0) {
388 rq->req_seg_count = 1;
389 goto mbxsync;
390 }
391 if (XS_CDBLEN(xs) > 12) {
392 crq = (ispcontreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, *iptrp);
393 *iptrp = (*iptrp + 1) & (RQUEST_QUEUE_LEN - 1);
394 if (*iptrp == optr) {
395 printf("%s: Request Queue Overflow++\n", isp->isp_name);
396 XS_SETERR(xs, HBA_BOTCH);
397 return (CMD_COMPLETE);
398 }
399 } else {
400 crq = NULL;
401 }
402 assert(rq->req_handle != 0 && rq->req_handle <= isp->isp_maxcmds);
403 dmamap = sbc->sbus_dmamap[rq->req_handle - 1];
404 if (dmamap->dm_nsegs != 0) {
405 panic("%s: dma map already allocated\n", isp->isp_name);
406 /* NOTREACHED */
407 }
408 if (bus_dmamap_load(sbc->sbus_dmatag, dmamap, xs->data, xs->datalen,
409 NULL, cansleep? BUS_DMA_WAITOK : BUS_DMA_NOWAIT) != 0) {
410 XS_SETERR(xs, HBA_BOTCH);
411 return (CMD_COMPLETE);
412 }
413 bus_dmamap_sync(sbc->sbus_dmatag, dmamap, dmamap->dm_segs[0].ds_addr,
414 xs->datalen, in? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
415 if (in) {
416 rq->req_flags |= REQFLAG_DATA_IN;
417 } else {
418 rq->req_flags |= REQFLAG_DATA_OUT;
419 }
420
421 if (crq) {
422 rq->req_seg_count = 2;
423 bzero((void *)crq, sizeof (*crq));
424 crq->req_header.rqs_entry_count = 1;
425 crq->req_header.rqs_entry_type = RQSTYPE_DATASEG;
426 crq->req_dataseg[0].ds_count = xs->datalen;
427 crq->req_dataseg[0].ds_base = dmamap->dm_segs[0].ds_addr;
428 ISP_SWIZZLE_CONTINUATION(isp, crq);
429 } else {
430 rq->req_dataseg[0].ds_count = xs->datalen;
431 rq->req_dataseg[0].ds_base = dmamap->dm_segs[0].ds_addr;
432 rq->req_seg_count = 1;
433 }
434
435 mbxsync:
436 ISP_SWIZZLE_REQUEST(isp, rq);
437 #if 0
438 /*
439 * If we ever map cacheable memory, we need to do something like this.
440 */
441 bus_dmamap_sync(sbc->sbus_dmat, sbc->sbus_rquest_dmap, 0,
442 sbc->sbus_rquest_dmap->dm_mapsize, BUS_DMASYNC_PREWRITE);
443 #endif
444 return (CMD_QUEUED);
445 }
446
447 static void
448 isp_sbus_dmateardown(isp, xs, handle)
449 struct ispsoftc *isp;
450 struct scsipi_xfer *xs;
451 u_int32_t handle;
452 {
453 struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
454 bus_dmamap_t dmamap;
455 assert(handle != 0 && handle <= isp->isp_maxcmds);
456 dmamap = sbc->sbus_dmamap[handle-1];
457 if (dmamap->dm_nsegs == 0) {
458 panic("%s: dma map not already allocated\n", isp->isp_name);
459 /* NOTREACHED */
460 }
461 bus_dmamap_sync(sbc->sbus_dmatag, dmamap, dmamap->dm_segs[0].ds_addr,
462 xs->datalen, (xs->xs_control & XS_CTL_DATA_IN)?
463 BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
464 bus_dmamap_unload(sbc->sbus_dmatag, dmamap);
465 }
466