isp_sbus.c revision 1.43 1 1.43 mjacob /* $NetBSD: isp_sbus.c,v 1.43 2001/04/12 21:40:56 mjacob Exp $ */
2 1.30 mjacob /*
3 1.30 mjacob * This driver, which is contained in NetBSD in the files:
4 1.30 mjacob *
5 1.30 mjacob * sys/dev/ic/isp.c
6 1.34 wiz * sys/dev/ic/isp_inline.h
7 1.34 wiz * sys/dev/ic/isp_netbsd.c
8 1.34 wiz * sys/dev/ic/isp_netbsd.h
9 1.34 wiz * sys/dev/ic/isp_target.c
10 1.34 wiz * sys/dev/ic/isp_target.h
11 1.34 wiz * sys/dev/ic/isp_tpublic.h
12 1.34 wiz * sys/dev/ic/ispmbox.h
13 1.34 wiz * sys/dev/ic/ispreg.h
14 1.34 wiz * sys/dev/ic/ispvar.h
15 1.30 mjacob * sys/microcode/isp/asm_sbus.h
16 1.30 mjacob * sys/microcode/isp/asm_1040.h
17 1.30 mjacob * sys/microcode/isp/asm_1080.h
18 1.30 mjacob * sys/microcode/isp/asm_12160.h
19 1.30 mjacob * sys/microcode/isp/asm_2100.h
20 1.30 mjacob * sys/microcode/isp/asm_2200.h
21 1.30 mjacob * sys/pci/isp_pci.c
22 1.30 mjacob * sys/sbus/isp_sbus.c
23 1.30 mjacob *
24 1.30 mjacob * Is being actively maintained by Matthew Jacob (mjacob (at) netbsd.org).
25 1.30 mjacob * This driver also is shared source with FreeBSD, OpenBSD, Linux, Solaris,
26 1.30 mjacob * Linux versions. This tends to be an interesting maintenance problem.
27 1.30 mjacob *
28 1.30 mjacob * Please coordinate with Matthew Jacob on changes you wish to make here.
29 1.30 mjacob */
30 1.1 mrg /*
31 1.1 mrg * SBus specific probe and attach routines for Qlogic ISP SCSI adapters.
32 1.1 mrg *
33 1.35 mjacob * Copyright (c) 1997, 2001 by Matthew Jacob
34 1.1 mrg * NASA AMES Research Center
35 1.1 mrg * All rights reserved.
36 1.1 mrg *
37 1.1 mrg * Redistribution and use in source and binary forms, with or without
38 1.1 mrg * modification, are permitted provided that the following conditions
39 1.1 mrg * are met:
40 1.1 mrg * 1. Redistributions of source code must retain the above copyright
41 1.1 mrg * notice immediately at the beginning of the file, without modification,
42 1.1 mrg * this list of conditions, and the following disclaimer.
43 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
44 1.1 mrg * notice, this list of conditions and the following disclaimer in the
45 1.1 mrg * documentation and/or other materials provided with the distribution.
46 1.1 mrg *
47 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
48 1.1 mrg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 1.1 mrg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 1.1 mrg * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
51 1.1 mrg * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 1.1 mrg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 1.1 mrg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 1.1 mrg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 1.1 mrg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57 1.1 mrg * SUCH DAMAGE.
58 1.1 mrg *
59 1.1 mrg */
60 1.1 mrg
61 1.1 mrg #include <sys/param.h>
62 1.1 mrg #include <sys/systm.h>
63 1.1 mrg #include <sys/device.h>
64 1.1 mrg #include <sys/kernel.h>
65 1.1 mrg #include <sys/malloc.h>
66 1.1 mrg #include <sys/queue.h>
67 1.1 mrg
68 1.28 pk #include <machine/bus.h>
69 1.28 pk #include <machine/intr.h>
70 1.1 mrg #include <machine/autoconf.h>
71 1.1 mrg
72 1.1 mrg #include <dev/ic/isp_netbsd.h>
73 1.17 mjacob #include <dev/microcode/isp/asm_sbus.h>
74 1.1 mrg #include <dev/sbus/sbusvar.h>
75 1.35 mjacob #include <sys/reboot.h>
76 1.1 mrg
77 1.42 mjacob static int isp_sbus_intr(void *);
78 1.42 mjacob static u_int16_t isp_sbus_rd_reg(struct ispsoftc *, int);
79 1.42 mjacob static void isp_sbus_wr_reg (struct ispsoftc *, int, u_int16_t);
80 1.42 mjacob static int isp_sbus_mbxdma(struct ispsoftc *);
81 1.42 mjacob static int isp_sbus_dmasetup(struct ispsoftc *, XS_T *, ispreq_t *, u_int16_t *,
82 1.42 mjacob u_int16_t);
83 1.42 mjacob static void isp_sbus_dmateardown(struct ispsoftc *, XS_T *, u_int16_t);
84 1.1 mrg
85 1.17 mjacob #ifndef ISP_1000_RISC_CODE
86 1.17 mjacob #define ISP_1000_RISC_CODE NULL
87 1.17 mjacob #endif
88 1.17 mjacob
89 1.1 mrg static struct ispmdvec mdvec = {
90 1.1 mrg isp_sbus_rd_reg,
91 1.1 mrg isp_sbus_wr_reg,
92 1.1 mrg isp_sbus_mbxdma,
93 1.1 mrg isp_sbus_dmasetup,
94 1.1 mrg isp_sbus_dmateardown,
95 1.1 mrg NULL,
96 1.1 mrg NULL,
97 1.1 mrg NULL,
98 1.33 mjacob ISP_1000_RISC_CODE
99 1.1 mrg };
100 1.1 mrg
101 1.1 mrg struct isp_sbussoftc {
102 1.1 mrg struct ispsoftc sbus_isp;
103 1.33 mjacob struct sbusdev sbus_sd;
104 1.1 mrg sdparam sbus_dev;
105 1.1 mrg bus_space_tag_t sbus_bustag;
106 1.1 mrg bus_dma_tag_t sbus_dmatag;
107 1.6 mjacob bus_space_handle_t sbus_reg;
108 1.1 mrg int sbus_node;
109 1.1 mrg int sbus_pri;
110 1.1 mrg struct ispmdvec sbus_mdvec;
111 1.14 mjacob bus_dmamap_t *sbus_dmamap;
112 1.35 mjacob bus_dmamap_t sbus_rquest_dmamap;
113 1.24 pk bus_dmamap_t sbus_result_dmamap;
114 1.8 mjacob int16_t sbus_poff[_NREG_BLKS];
115 1.1 mrg };
116 1.1 mrg
117 1.1 mrg
118 1.42 mjacob static int isp_match(struct device *, struct cfdata *, void *);
119 1.42 mjacob static void isp_sbus_attach(struct device *, struct device *, void *);
120 1.1 mrg struct cfattach isp_sbus_ca = {
121 1.1 mrg sizeof (struct isp_sbussoftc), isp_match, isp_sbus_attach
122 1.1 mrg };
123 1.1 mrg
124 1.1 mrg static int
125 1.42 mjacob isp_match(struct device *parent, struct cfdata *cf, void *aux)
126 1.1 mrg {
127 1.1 mrg int rv;
128 1.1 mrg #ifdef DEBUG
129 1.1 mrg static int oneshot = 1;
130 1.1 mrg #endif
131 1.1 mrg struct sbus_attach_args *sa = aux;
132 1.1 mrg
133 1.1 mrg rv = (strcmp(cf->cf_driver->cd_name, sa->sa_name) == 0 ||
134 1.1 mrg strcmp("PTI,ptisp", sa->sa_name) == 0 ||
135 1.1 mrg strcmp("ptisp", sa->sa_name) == 0 ||
136 1.1 mrg strcmp("SUNW,isp", sa->sa_name) == 0 ||
137 1.1 mrg strcmp("QLGC,isp", sa->sa_name) == 0);
138 1.1 mrg #ifdef DEBUG
139 1.1 mrg if (rv && oneshot) {
140 1.1 mrg oneshot = 0;
141 1.1 mrg printf("Qlogic ISP Driver, NetBSD (sbus) Platform Version "
142 1.1 mrg "%d.%d Core Version %d.%d\n",
143 1.1 mrg ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR,
144 1.1 mrg ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR);
145 1.1 mrg }
146 1.1 mrg #endif
147 1.1 mrg return (rv);
148 1.1 mrg }
149 1.1 mrg
150 1.20 mjacob
151 1.1 mrg static void
152 1.42 mjacob isp_sbus_attach(struct device *parent, struct device *self, void *aux)
153 1.1 mrg {
154 1.33 mjacob int freq, ispburst, sbusburst;
155 1.1 mrg struct sbus_attach_args *sa = aux;
156 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) self;
157 1.1 mrg struct ispsoftc *isp = &sbc->sbus_isp;
158 1.1 mrg
159 1.1 mrg printf(" for %s\n", sa->sa_name);
160 1.1 mrg
161 1.1 mrg sbc->sbus_bustag = sa->sa_bustag;
162 1.1 mrg sbc->sbus_dmatag = sa->sa_dmatag;
163 1.16 pk if (sa->sa_nintr != 0)
164 1.16 pk sbc->sbus_pri = sa->sa_pri;
165 1.1 mrg sbc->sbus_mdvec = mdvec;
166 1.1 mrg
167 1.1 mrg if (sa->sa_npromvaddrs != 0) {
168 1.6 mjacob sbc->sbus_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
169 1.1 mrg } else {
170 1.6 mjacob if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset,
171 1.6 mjacob sa->sa_size, BUS_SPACE_MAP_LINEAR, 0,
172 1.6 mjacob &sbc->sbus_reg) != 0) {
173 1.1 mrg printf("%s: cannot map registers\n", self->dv_xname);
174 1.1 mrg return;
175 1.1 mrg }
176 1.1 mrg }
177 1.1 mrg sbc->sbus_node = sa->sa_node;
178 1.1 mrg
179 1.1 mrg freq = getpropint(sa->sa_node, "clock-frequency", 0);
180 1.1 mrg if (freq) {
181 1.1 mrg /*
182 1.1 mrg * Convert from HZ to MHz, rounding up.
183 1.1 mrg */
184 1.1 mrg freq = (freq + 500000)/1000000;
185 1.1 mrg #if 0
186 1.1 mrg printf("%s: %d MHz\n", self->dv_xname, freq);
187 1.1 mrg #endif
188 1.1 mrg }
189 1.1 mrg sbc->sbus_mdvec.dv_clock = freq;
190 1.5 mjacob
191 1.5 mjacob /*
192 1.33 mjacob * Now figure out what the proper burst sizes, etc., to use.
193 1.33 mjacob * Unfortunately, there is no ddi_dma_burstsizes here which
194 1.33 mjacob * walks up the tree finding the limiting burst size node (if
195 1.33 mjacob * any).
196 1.5 mjacob */
197 1.33 mjacob sbusburst = ((struct sbus_softc *)parent)->sc_burst;
198 1.33 mjacob if (sbusburst == 0)
199 1.33 mjacob sbusburst = SBUS_BURST_32 - 1;
200 1.33 mjacob ispburst = getpropint(sa->sa_node, "burst-sizes", -1);
201 1.33 mjacob if (ispburst == -1) {
202 1.33 mjacob ispburst = sbusburst;
203 1.33 mjacob }
204 1.33 mjacob ispburst &= sbusburst;
205 1.33 mjacob ispburst &= ~(1 << 7);
206 1.33 mjacob ispburst &= ~(1 << 6);
207 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = 0;
208 1.33 mjacob if (ispburst & (1 << 5)) {
209 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = BIU_SBUS_CONF1_FIFO_32;
210 1.33 mjacob } else if (ispburst & (1 << 4)) {
211 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = BIU_SBUS_CONF1_FIFO_16;
212 1.33 mjacob } else if (ispburst & (1 << 3)) {
213 1.33 mjacob sbc->sbus_mdvec.dv_conf1 =
214 1.33 mjacob BIU_SBUS_CONF1_BURST8 | BIU_SBUS_CONF1_FIFO_8;
215 1.33 mjacob }
216 1.33 mjacob if (sbc->sbus_mdvec.dv_conf1) {
217 1.33 mjacob sbc->sbus_mdvec.dv_conf1 |= BIU_BURST_ENABLE;
218 1.33 mjacob }
219 1.1 mrg
220 1.1 mrg /*
221 1.1 mrg * Some early versions of the PTI SBus adapter
222 1.1 mrg * would fail in trying to download (via poking)
223 1.1 mrg * FW. We give up on them.
224 1.1 mrg */
225 1.1 mrg if (strcmp("PTI,ptisp", sa->sa_name) == 0 ||
226 1.1 mrg strcmp("ptisp", sa->sa_name) == 0) {
227 1.20 mjacob sbc->sbus_mdvec.dv_ispfw = NULL;
228 1.1 mrg }
229 1.1 mrg
230 1.1 mrg isp->isp_mdvec = &sbc->sbus_mdvec;
231 1.2 mjacob isp->isp_bustype = ISP_BT_SBUS;
232 1.1 mrg isp->isp_type = ISP_HA_SCSI_UNKNOWN;
233 1.1 mrg isp->isp_param = &sbc->sbus_dev;
234 1.1 mrg bzero(isp->isp_param, sizeof (sdparam));
235 1.1 mrg
236 1.8 mjacob sbc->sbus_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
237 1.8 mjacob sbc->sbus_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = SBUS_MBOX_REGS_OFF;
238 1.8 mjacob sbc->sbus_poff[SXP_BLOCK >> _BLK_REG_SHFT] = SBUS_SXP_REGS_OFF;
239 1.8 mjacob sbc->sbus_poff[RISC_BLOCK >> _BLK_REG_SHFT] = SBUS_RISC_REGS_OFF;
240 1.8 mjacob sbc->sbus_poff[DMA_BLOCK >> _BLK_REG_SHFT] = DMA_REGS_OFF;
241 1.1 mrg
242 1.35 mjacob /* Establish interrupt channel */
243 1.35 mjacob bus_intr_establish(sbc->sbus_bustag, sbc->sbus_pri, IPL_BIO, 0,
244 1.35 mjacob isp_sbus_intr, sbc);
245 1.35 mjacob sbus_establish(&sbc->sbus_sd, &sbc->sbus_isp.isp_osinfo._dev);
246 1.35 mjacob
247 1.29 mjacob /*
248 1.29 mjacob * Set up logging levels.
249 1.29 mjacob */
250 1.29 mjacob #ifdef ISP_LOGDEFAULT
251 1.29 mjacob isp->isp_dblev = ISP_LOGDEFAULT;
252 1.29 mjacob #else
253 1.35 mjacob isp->isp_dblev = ISP_LOGWARN|ISP_LOGERR;
254 1.35 mjacob if (bootverbose)
255 1.35 mjacob isp->isp_dblev |= ISP_LOGCONFIG|ISP_LOGINFO;
256 1.29 mjacob #ifdef SCSIDEBUG
257 1.29 mjacob isp->isp_dblev |= ISP_LOGDEBUG1|ISP_LOGDEBUG2;
258 1.29 mjacob #endif
259 1.29 mjacob #ifdef DEBUG
260 1.35 mjacob isp->isp_dblev |= ISP_LOGDEBUG0;
261 1.29 mjacob #endif
262 1.29 mjacob #endif
263 1.35 mjacob
264 1.18 mjacob isp->isp_confopts = self->dv_cfdata->cf_flags;
265 1.35 mjacob isp->isp_role = ISP_DEFAULT_ROLES;
266 1.35 mjacob
267 1.21 mjacob /*
268 1.21 mjacob * There's no tool on sparc to set NVRAM for ISPs, so ignore it.
269 1.21 mjacob */
270 1.21 mjacob isp->isp_confopts |= ISP_CFG_NONVRAM;
271 1.1 mrg ISP_LOCK(isp);
272 1.29 mjacob isp->isp_osinfo.no_mbox_ints = 1;
273 1.1 mrg isp_reset(isp);
274 1.1 mrg if (isp->isp_state != ISP_RESETSTATE) {
275 1.1 mrg ISP_UNLOCK(isp);
276 1.1 mrg return;
277 1.1 mrg }
278 1.35 mjacob ENABLE_INTS(isp);
279 1.1 mrg isp_init(isp);
280 1.1 mrg if (isp->isp_state != ISP_INITSTATE) {
281 1.1 mrg isp_uninit(isp);
282 1.1 mrg ISP_UNLOCK(isp);
283 1.1 mrg return;
284 1.1 mrg }
285 1.1 mrg
286 1.1 mrg /*
287 1.1 mrg * do generic attach.
288 1.1 mrg */
289 1.35 mjacob ISP_UNLOCK(isp);
290 1.1 mrg isp_attach(isp);
291 1.1 mrg if (isp->isp_state != ISP_RUNSTATE) {
292 1.35 mjacob ISP_LOCK(isp);
293 1.1 mrg isp_uninit(isp);
294 1.35 mjacob ISP_UNLOCK(isp);
295 1.1 mrg }
296 1.30 mjacob }
297 1.30 mjacob
298 1.30 mjacob static int
299 1.42 mjacob isp_sbus_intr(void *arg)
300 1.30 mjacob {
301 1.30 mjacob int rv;
302 1.30 mjacob struct isp_sbussoftc *sbc = (struct isp_sbussoftc *)arg;
303 1.30 mjacob bus_dmamap_sync(sbc->sbus_dmatag, sbc->sbus_result_dmamap, 0,
304 1.30 mjacob sbc->sbus_result_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD);
305 1.30 mjacob sbc->sbus_isp.isp_osinfo.onintstack = 1;
306 1.30 mjacob rv = isp_intr(arg);
307 1.30 mjacob sbc->sbus_isp.isp_osinfo.onintstack = 0;
308 1.30 mjacob return (rv);
309 1.1 mrg }
310 1.1 mrg
311 1.1 mrg static u_int16_t
312 1.42 mjacob isp_sbus_rd_reg(struct ispsoftc *isp, int regoff)
313 1.1 mrg {
314 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
315 1.8 mjacob int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
316 1.8 mjacob offset += (regoff & 0xff);
317 1.6 mjacob return (bus_space_read_2(sbc->sbus_bustag, sbc->sbus_reg, offset));
318 1.1 mrg }
319 1.1 mrg
320 1.1 mrg static void
321 1.42 mjacob isp_sbus_wr_reg(struct ispsoftc *isp, int regoff, u_int16_t val)
322 1.1 mrg {
323 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
324 1.8 mjacob int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
325 1.8 mjacob offset += (regoff & 0xff);
326 1.6 mjacob bus_space_write_2(sbc->sbus_bustag, sbc->sbus_reg, offset, val);
327 1.1 mrg }
328 1.1 mrg
329 1.1 mrg static int
330 1.42 mjacob isp_sbus_mbxdma(struct ispsoftc *isp)
331 1.1 mrg {
332 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
333 1.24 pk bus_dma_tag_t dmatag = sbc->sbus_dmatag;
334 1.40 mjacob bus_dma_segment_t reqseg, rspseg;
335 1.40 mjacob int reqrs, rsprs, i, progress;
336 1.14 mjacob size_t n;
337 1.12 pk bus_size_t len;
338 1.1 mrg
339 1.14 mjacob if (isp->isp_rquest_dma)
340 1.14 mjacob return (0);
341 1.1 mrg
342 1.29 mjacob n = sizeof (XS_T **) * isp->isp_maxcmds;
343 1.29 mjacob isp->isp_xflist = (XS_T **) malloc(n, M_DEVBUF, M_WAITOK);
344 1.14 mjacob if (isp->isp_xflist == NULL) {
345 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cannot alloc xflist array");
346 1.14 mjacob return (1);
347 1.14 mjacob }
348 1.14 mjacob bzero(isp->isp_xflist, n);
349 1.14 mjacob n = sizeof (bus_dmamap_t) * isp->isp_maxcmds;
350 1.14 mjacob sbc->sbus_dmamap = (bus_dmamap_t *) malloc(n, M_DEVBUF, M_WAITOK);
351 1.14 mjacob if (sbc->sbus_dmamap == NULL) {
352 1.14 mjacob free(isp->isp_xflist, M_DEVBUF);
353 1.29 mjacob isp->isp_xflist = NULL;
354 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cannot alloc dmamap array");
355 1.29 mjacob return (1);
356 1.29 mjacob }
357 1.29 mjacob for (i = 0; i < isp->isp_maxcmds; i++) {
358 1.29 mjacob /* Allocate a DMA handle */
359 1.29 mjacob if (bus_dmamap_create(dmatag, MAXPHYS, 1, MAXPHYS, 0,
360 1.29 mjacob BUS_DMA_NOWAIT, &sbc->sbus_dmamap[i]) != 0) {
361 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cmd DMA maps create error");
362 1.29 mjacob break;
363 1.29 mjacob }
364 1.29 mjacob }
365 1.29 mjacob if (i < isp->isp_maxcmds) {
366 1.29 mjacob while (--i >= 0) {
367 1.29 mjacob bus_dmamap_destroy(dmatag, sbc->sbus_dmamap[i]);
368 1.29 mjacob }
369 1.29 mjacob free(isp->isp_xflist, M_DEVBUF);
370 1.29 mjacob free(sbc->sbus_dmamap, M_DEVBUF);
371 1.29 mjacob isp->isp_xflist = NULL;
372 1.29 mjacob sbc->sbus_dmamap = NULL;
373 1.14 mjacob return (1);
374 1.14 mjacob }
375 1.29 mjacob
376 1.1 mrg /*
377 1.40 mjacob * Allocate and map the request and response queues
378 1.1 mrg */
379 1.40 mjacob progress = 0;
380 1.29 mjacob len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp));
381 1.40 mjacob if (bus_dmamem_alloc(dmatag, len, 0, 0, &reqseg, 1, &reqrs,
382 1.40 mjacob BUS_DMA_NOWAIT)) {
383 1.24 pk goto dmafail;
384 1.24 pk }
385 1.40 mjacob progress++;
386 1.41 thorpej if (bus_dmamem_map(dmatag, &reqseg, reqrs, len,
387 1.41 thorpej (caddr_t *)&isp->isp_rquest, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
388 1.24 pk goto dmafail;
389 1.24 pk }
390 1.40 mjacob progress++;
391 1.43 mjacob if (bus_dmamap_create(dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
392 1.43 mjacob &sbc->sbus_rquest_dmamap) != 0) {
393 1.43 mjacob goto dmafail;
394 1.43 mjacob }
395 1.43 mjacob progress++;
396 1.41 thorpej if (bus_dmamap_load(dmatag, sbc->sbus_rquest_dmamap,
397 1.43 mjacob isp->isp_rquest, len, NULL, BUS_DMA_NOWAIT) != 0) {
398 1.24 pk goto dmafail;
399 1.14 mjacob }
400 1.40 mjacob progress++;
401 1.43 mjacob isp->isp_rquest_dma = sbc->sbus_rquest_dmamap->dm_segs[0].ds_addr;
402 1.1 mrg
403 1.29 mjacob len = ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp));
404 1.40 mjacob if (bus_dmamem_alloc(dmatag, len, 0, 0, &rspseg, 1, &rsprs,
405 1.40 mjacob BUS_DMA_NOWAIT)) {
406 1.24 pk goto dmafail;
407 1.24 pk }
408 1.40 mjacob progress++;
409 1.41 thorpej if (bus_dmamem_map(dmatag, &rspseg, rsprs, len,
410 1.41 thorpej (caddr_t *)&isp->isp_result, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
411 1.24 pk goto dmafail;
412 1.24 pk }
413 1.40 mjacob progress++;
414 1.43 mjacob if (bus_dmamap_create(dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
415 1.43 mjacob &sbc->sbus_result_dmamap) != 0) {
416 1.43 mjacob goto dmafail;
417 1.43 mjacob }
418 1.43 mjacob progress++;
419 1.41 thorpej if (bus_dmamap_load(dmatag, sbc->sbus_result_dmamap,
420 1.43 mjacob isp->isp_result, len, NULL, BUS_DMA_NOWAIT) != 0) {
421 1.24 pk goto dmafail;
422 1.14 mjacob }
423 1.43 mjacob isp->isp_result_dma = sbc->sbus_result_dmamap->dm_segs[0].ds_addr;
424 1.43 mjacob
425 1.1 mrg return (0);
426 1.24 pk
427 1.24 pk dmafail:
428 1.40 mjacob isp_prt(isp, ISP_LOGERR, "Mailbox DMA Setup Failure");
429 1.40 mjacob
430 1.40 mjacob if (progress >= 8) {
431 1.41 thorpej bus_dmamap_unload(dmatag, sbc->sbus_result_dmamap);
432 1.41 thorpej }
433 1.41 thorpej if (progress >= 7) {
434 1.43 mjacob bus_dmamap_destroy(dmatag, sbc->sbus_result_dmamap);
435 1.43 mjacob }
436 1.43 mjacob if (progress >= 6) {
437 1.40 mjacob bus_dmamem_unmap(dmatag,
438 1.40 mjacob isp->isp_result, ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)));
439 1.40 mjacob }
440 1.43 mjacob if (progress >= 5) {
441 1.40 mjacob bus_dmamem_free(dmatag, &rspseg, rsprs);
442 1.40 mjacob }
443 1.40 mjacob
444 1.40 mjacob if (progress >= 4) {
445 1.41 thorpej bus_dmamap_unload(dmatag, sbc->sbus_rquest_dmamap);
446 1.41 thorpej }
447 1.41 thorpej if (progress >= 3) {
448 1.43 mjacob bus_dmamap_destroy(dmatag, sbc->sbus_rquest_dmamap);
449 1.43 mjacob }
450 1.43 mjacob if (progress >= 2) {
451 1.40 mjacob bus_dmamem_unmap(dmatag,
452 1.40 mjacob isp->isp_rquest, ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)));
453 1.40 mjacob }
454 1.43 mjacob if (progress >= 1) {
455 1.40 mjacob bus_dmamem_free(dmatag, &reqseg, reqrs);
456 1.40 mjacob }
457 1.40 mjacob
458 1.29 mjacob for (i = 0; i < isp->isp_maxcmds; i++) {
459 1.29 mjacob bus_dmamap_destroy(dmatag, sbc->sbus_dmamap[i]);
460 1.29 mjacob }
461 1.24 pk free(sbc->sbus_dmamap, M_DEVBUF);
462 1.24 pk free(isp->isp_xflist, M_DEVBUF);
463 1.29 mjacob isp->isp_xflist = NULL;
464 1.29 mjacob sbc->sbus_dmamap = NULL;
465 1.24 pk return (1);
466 1.1 mrg }
467 1.1 mrg
468 1.1 mrg /*
469 1.14 mjacob * Map a DMA request.
470 1.14 mjacob * We're guaranteed that rq->req_handle is a value from 1 to isp->isp_maxcmds.
471 1.1 mrg */
472 1.1 mrg
473 1.1 mrg static int
474 1.42 mjacob isp_sbus_dmasetup(struct ispsoftc *isp, XS_T *xs, ispreq_t *rq,
475 1.42 mjacob u_int16_t *iptrp, u_int16_t optr)
476 1.1 mrg {
477 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
478 1.27 mjacob bus_dmamap_t dmap;
479 1.22 mjacob ispcontreq_t *crq;
480 1.19 mjacob int cansleep = (xs->xs_control & XS_CTL_NOSLEEP) == 0;
481 1.14 mjacob int in = (xs->xs_control & XS_CTL_DATA_IN) != 0;
482 1.1 mrg
483 1.1 mrg if (xs->datalen == 0) {
484 1.1 mrg rq->req_seg_count = 1;
485 1.14 mjacob goto mbxsync;
486 1.1 mrg }
487 1.27 mjacob
488 1.27 mjacob dmap = sbc->sbus_dmamap[isp_handle_index(rq->req_handle)];
489 1.27 mjacob if (dmap->dm_nsegs != 0) {
490 1.1 mrg panic("%s: dma map already allocated\n", isp->isp_name);
491 1.1 mrg /* NOTREACHED */
492 1.1 mrg }
493 1.27 mjacob if (bus_dmamap_load(sbc->sbus_dmatag, dmap, xs->data, xs->datalen,
494 1.41 thorpej NULL, (cansleep ? BUS_DMA_WAITOK : BUS_DMA_NOWAIT) |
495 1.41 thorpej BUS_DMA_STREAMING) != 0) {
496 1.1 mrg XS_SETERR(xs, HBA_BOTCH);
497 1.3 mjacob return (CMD_COMPLETE);
498 1.1 mrg }
499 1.27 mjacob
500 1.37 mjacob bus_dmamap_sync(sbc->sbus_dmatag, dmap, 0, xs->datalen,
501 1.37 mjacob in? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
502 1.27 mjacob
503 1.14 mjacob if (in) {
504 1.1 mrg rq->req_flags |= REQFLAG_DATA_IN;
505 1.1 mrg } else {
506 1.1 mrg rq->req_flags |= REQFLAG_DATA_OUT;
507 1.1 mrg }
508 1.22 mjacob
509 1.27 mjacob if (XS_CDBLEN(xs) > 12) {
510 1.27 mjacob crq = (ispcontreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, *iptrp);
511 1.29 mjacob *iptrp = ISP_NXT_QENTRY(*iptrp, RQUEST_QUEUE_LEN(isp));
512 1.27 mjacob if (*iptrp == optr) {
513 1.29 mjacob isp_prt(isp, ISP_LOGDEBUG0, "Request Queue Overflow++");
514 1.27 mjacob bus_dmamap_unload(sbc->sbus_dmatag, dmap);
515 1.27 mjacob XS_SETERR(xs, HBA_BOTCH);
516 1.27 mjacob return (CMD_EAGAIN);
517 1.27 mjacob }
518 1.22 mjacob rq->req_seg_count = 2;
519 1.27 mjacob rq->req_dataseg[0].ds_count = 0;
520 1.27 mjacob rq->req_dataseg[0].ds_base = 0;
521 1.22 mjacob bzero((void *)crq, sizeof (*crq));
522 1.22 mjacob crq->req_header.rqs_entry_count = 1;
523 1.22 mjacob crq->req_header.rqs_entry_type = RQSTYPE_DATASEG;
524 1.22 mjacob crq->req_dataseg[0].ds_count = xs->datalen;
525 1.27 mjacob crq->req_dataseg[0].ds_base = dmap->dm_segs[0].ds_addr;
526 1.29 mjacob ISP_SBUSIFY_ISPHDR(isp, &crq->req_header)
527 1.22 mjacob } else {
528 1.22 mjacob rq->req_dataseg[0].ds_count = xs->datalen;
529 1.27 mjacob rq->req_dataseg[0].ds_base = dmap->dm_segs[0].ds_addr;
530 1.22 mjacob rq->req_seg_count = 1;
531 1.22 mjacob }
532 1.22 mjacob
533 1.14 mjacob mbxsync:
534 1.35 mjacob ISP_SWIZZLE_REQUEST(isp, rq);
535 1.35 mjacob bus_dmamap_sync(sbc->sbus_dmatag, sbc->sbus_rquest_dmamap, 0,
536 1.35 mjacob sbc->sbus_rquest_dmamap->dm_mapsize, BUS_DMASYNC_PREWRITE);
537 1.3 mjacob return (CMD_QUEUED);
538 1.1 mrg }
539 1.1 mrg
540 1.1 mrg static void
541 1.42 mjacob isp_sbus_dmateardown(struct ispsoftc *isp, XS_T *xs, u_int16_t handle)
542 1.1 mrg {
543 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
544 1.27 mjacob bus_dmamap_t dmap;
545 1.27 mjacob
546 1.27 mjacob dmap = sbc->sbus_dmamap[isp_handle_index(handle)];
547 1.27 mjacob
548 1.27 mjacob if (dmap->dm_nsegs == 0) {
549 1.1 mrg panic("%s: dma map not already allocated\n", isp->isp_name);
550 1.1 mrg /* NOTREACHED */
551 1.1 mrg }
552 1.38 mjacob bus_dmamap_sync(sbc->sbus_dmatag, dmap, 0,
553 1.14 mjacob xs->datalen, (xs->xs_control & XS_CTL_DATA_IN)?
554 1.14 mjacob BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
555 1.27 mjacob bus_dmamap_unload(sbc->sbus_dmatag, dmap);
556 1.1 mrg }
557