isp_sbus.c revision 1.48 1 1.48 mjacob /* $NetBSD: isp_sbus.c,v 1.48 2001/12/14 00:13:47 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.47 lukem
61 1.47 lukem #include <sys/cdefs.h>
62 1.48 mjacob __KERNEL_RCSID(0, "$NetBSD: isp_sbus.c,v 1.48 2001/12/14 00:13:47 mjacob Exp $");
63 1.1 mrg
64 1.1 mrg #include <sys/param.h>
65 1.1 mrg #include <sys/systm.h>
66 1.1 mrg #include <sys/device.h>
67 1.1 mrg #include <sys/kernel.h>
68 1.1 mrg #include <sys/malloc.h>
69 1.1 mrg #include <sys/queue.h>
70 1.48 mjacob #include <dev/ic/isp_netbsd.h>
71 1.28 pk #include <machine/intr.h>
72 1.1 mrg #include <machine/autoconf.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.45 mjacob static int
79 1.45 mjacob isp_sbus_rd_isr(struct ispsoftc *, u_int16_t *, u_int16_t *, u_int16_t *);
80 1.42 mjacob static u_int16_t isp_sbus_rd_reg(struct ispsoftc *, int);
81 1.42 mjacob static void isp_sbus_wr_reg (struct ispsoftc *, int, u_int16_t);
82 1.42 mjacob static int isp_sbus_mbxdma(struct ispsoftc *);
83 1.42 mjacob static int isp_sbus_dmasetup(struct ispsoftc *, XS_T *, ispreq_t *, u_int16_t *,
84 1.42 mjacob u_int16_t);
85 1.42 mjacob static void isp_sbus_dmateardown(struct ispsoftc *, XS_T *, u_int16_t);
86 1.1 mrg
87 1.17 mjacob #ifndef ISP_1000_RISC_CODE
88 1.17 mjacob #define ISP_1000_RISC_CODE NULL
89 1.17 mjacob #endif
90 1.17 mjacob
91 1.1 mrg static struct ispmdvec mdvec = {
92 1.45 mjacob isp_sbus_rd_isr,
93 1.1 mrg isp_sbus_rd_reg,
94 1.1 mrg isp_sbus_wr_reg,
95 1.1 mrg isp_sbus_mbxdma,
96 1.1 mrg isp_sbus_dmasetup,
97 1.1 mrg isp_sbus_dmateardown,
98 1.1 mrg NULL,
99 1.1 mrg NULL,
100 1.1 mrg NULL,
101 1.33 mjacob ISP_1000_RISC_CODE
102 1.1 mrg };
103 1.1 mrg
104 1.1 mrg struct isp_sbussoftc {
105 1.1 mrg struct ispsoftc sbus_isp;
106 1.33 mjacob struct sbusdev sbus_sd;
107 1.1 mrg sdparam sbus_dev;
108 1.1 mrg bus_space_tag_t sbus_bustag;
109 1.6 mjacob bus_space_handle_t sbus_reg;
110 1.1 mrg int sbus_node;
111 1.1 mrg int sbus_pri;
112 1.1 mrg struct ispmdvec sbus_mdvec;
113 1.14 mjacob bus_dmamap_t *sbus_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.16 pk if (sa->sa_nintr != 0)
163 1.16 pk sbc->sbus_pri = sa->sa_pri;
164 1.1 mrg sbc->sbus_mdvec = mdvec;
165 1.1 mrg
166 1.1 mrg if (sa->sa_npromvaddrs != 0) {
167 1.6 mjacob sbc->sbus_reg = (bus_space_handle_t)sa->sa_promvaddrs[0];
168 1.1 mrg } else {
169 1.6 mjacob if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset,
170 1.6 mjacob sa->sa_size, BUS_SPACE_MAP_LINEAR, 0,
171 1.6 mjacob &sbc->sbus_reg) != 0) {
172 1.1 mrg printf("%s: cannot map registers\n", self->dv_xname);
173 1.1 mrg return;
174 1.1 mrg }
175 1.1 mrg }
176 1.1 mrg sbc->sbus_node = sa->sa_node;
177 1.1 mrg
178 1.46 eeh freq = PROM_getpropint(sa->sa_node, "clock-frequency", 0);
179 1.1 mrg if (freq) {
180 1.1 mrg /*
181 1.1 mrg * Convert from HZ to MHz, rounding up.
182 1.1 mrg */
183 1.1 mrg freq = (freq + 500000)/1000000;
184 1.1 mrg #if 0
185 1.1 mrg printf("%s: %d MHz\n", self->dv_xname, freq);
186 1.1 mrg #endif
187 1.1 mrg }
188 1.1 mrg sbc->sbus_mdvec.dv_clock = freq;
189 1.5 mjacob
190 1.5 mjacob /*
191 1.33 mjacob * Now figure out what the proper burst sizes, etc., to use.
192 1.33 mjacob * Unfortunately, there is no ddi_dma_burstsizes here which
193 1.33 mjacob * walks up the tree finding the limiting burst size node (if
194 1.33 mjacob * any).
195 1.5 mjacob */
196 1.33 mjacob sbusburst = ((struct sbus_softc *)parent)->sc_burst;
197 1.33 mjacob if (sbusburst == 0)
198 1.33 mjacob sbusburst = SBUS_BURST_32 - 1;
199 1.46 eeh ispburst = PROM_getpropint(sa->sa_node, "burst-sizes", -1);
200 1.33 mjacob if (ispburst == -1) {
201 1.33 mjacob ispburst = sbusburst;
202 1.33 mjacob }
203 1.33 mjacob ispburst &= sbusburst;
204 1.33 mjacob ispburst &= ~(1 << 7);
205 1.33 mjacob ispburst &= ~(1 << 6);
206 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = 0;
207 1.33 mjacob if (ispburst & (1 << 5)) {
208 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = BIU_SBUS_CONF1_FIFO_32;
209 1.33 mjacob } else if (ispburst & (1 << 4)) {
210 1.33 mjacob sbc->sbus_mdvec.dv_conf1 = BIU_SBUS_CONF1_FIFO_16;
211 1.33 mjacob } else if (ispburst & (1 << 3)) {
212 1.33 mjacob sbc->sbus_mdvec.dv_conf1 =
213 1.33 mjacob BIU_SBUS_CONF1_BURST8 | BIU_SBUS_CONF1_FIFO_8;
214 1.33 mjacob }
215 1.33 mjacob if (sbc->sbus_mdvec.dv_conf1) {
216 1.33 mjacob sbc->sbus_mdvec.dv_conf1 |= BIU_BURST_ENABLE;
217 1.33 mjacob }
218 1.1 mrg
219 1.1 mrg /*
220 1.1 mrg * Some early versions of the PTI SBus adapter
221 1.1 mrg * would fail in trying to download (via poking)
222 1.1 mrg * FW. We give up on them.
223 1.1 mrg */
224 1.1 mrg if (strcmp("PTI,ptisp", sa->sa_name) == 0 ||
225 1.1 mrg strcmp("ptisp", sa->sa_name) == 0) {
226 1.20 mjacob sbc->sbus_mdvec.dv_ispfw = NULL;
227 1.1 mrg }
228 1.1 mrg
229 1.1 mrg isp->isp_mdvec = &sbc->sbus_mdvec;
230 1.2 mjacob isp->isp_bustype = ISP_BT_SBUS;
231 1.1 mrg isp->isp_type = ISP_HA_SCSI_UNKNOWN;
232 1.1 mrg isp->isp_param = &sbc->sbus_dev;
233 1.48 mjacob isp->isp_dmatag = sa->sa_dmatag;
234 1.48 mjacob MEMZERO(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.45 mjacob u_int16_t isr, sema, mbox;
302 1.45 mjacob struct ispsoftc *isp = arg;
303 1.45 mjacob
304 1.48 mjacob if (ISP_READ_ISR(isp, &isr, &sema, &mbox) == 0) {
305 1.48 mjacob isp->isp_intbogus++;
306 1.48 mjacob return (0);
307 1.48 mjacob } else {
308 1.48 mjacob struct isp_sbussoftc *sbc = arg;
309 1.45 mjacob sbc->sbus_isp.isp_osinfo.onintstack = 1;
310 1.45 mjacob isp_intr(isp, isr, sema, mbox);
311 1.45 mjacob sbc->sbus_isp.isp_osinfo.onintstack = 0;
312 1.45 mjacob return (1);
313 1.45 mjacob }
314 1.45 mjacob }
315 1.45 mjacob
316 1.45 mjacob #define IspVirt2Off(a, x) \
317 1.45 mjacob (((struct isp_sbussoftc *)a)->sbus_poff[((x) & _BLK_REG_MASK) >> \
318 1.45 mjacob _BLK_REG_SHFT] + ((x) & 0xff))
319 1.45 mjacob
320 1.45 mjacob #define BXR2(sbc, off) \
321 1.45 mjacob bus_space_read_2(sbc->sbus_bustag, sbc->sbus_reg, off)
322 1.45 mjacob
323 1.45 mjacob static int
324 1.45 mjacob isp_sbus_rd_isr(struct ispsoftc *isp, u_int16_t *isrp,
325 1.45 mjacob u_int16_t *semap, u_int16_t *mbp)
326 1.45 mjacob {
327 1.45 mjacob struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
328 1.45 mjacob u_int16_t isr, sema;
329 1.45 mjacob
330 1.45 mjacob isr = BXR2(sbc, IspVirt2Off(isp, BIU_ISR));
331 1.45 mjacob sema = BXR2(sbc, IspVirt2Off(isp, BIU_SEMA));
332 1.45 mjacob isp_prt(isp, ISP_LOGDEBUG3, "ISR 0x%x SEMA 0x%x", isr, sema);
333 1.45 mjacob isr &= INT_PENDING_MASK(isp);
334 1.45 mjacob sema &= BIU_SEMA_LOCK;
335 1.45 mjacob if (isr == 0 && sema == 0) {
336 1.45 mjacob return (0);
337 1.45 mjacob }
338 1.45 mjacob *isrp = isr;
339 1.45 mjacob if ((*semap = sema) != 0) {
340 1.45 mjacob *mbp = BXR2(sbc, IspVirt2Off(isp, OUTMAILBOX0));
341 1.45 mjacob }
342 1.45 mjacob return (1);
343 1.1 mrg }
344 1.1 mrg
345 1.1 mrg static u_int16_t
346 1.42 mjacob isp_sbus_rd_reg(struct ispsoftc *isp, int regoff)
347 1.1 mrg {
348 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
349 1.8 mjacob int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
350 1.8 mjacob offset += (regoff & 0xff);
351 1.6 mjacob return (bus_space_read_2(sbc->sbus_bustag, sbc->sbus_reg, offset));
352 1.1 mrg }
353 1.1 mrg
354 1.1 mrg static void
355 1.42 mjacob isp_sbus_wr_reg(struct ispsoftc *isp, int regoff, u_int16_t val)
356 1.1 mrg {
357 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
358 1.8 mjacob int offset = sbc->sbus_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT];
359 1.8 mjacob offset += (regoff & 0xff);
360 1.6 mjacob bus_space_write_2(sbc->sbus_bustag, sbc->sbus_reg, offset, val);
361 1.1 mrg }
362 1.1 mrg
363 1.1 mrg static int
364 1.42 mjacob isp_sbus_mbxdma(struct ispsoftc *isp)
365 1.1 mrg {
366 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
367 1.40 mjacob bus_dma_segment_t reqseg, rspseg;
368 1.40 mjacob int reqrs, rsprs, i, progress;
369 1.14 mjacob size_t n;
370 1.12 pk bus_size_t len;
371 1.1 mrg
372 1.14 mjacob if (isp->isp_rquest_dma)
373 1.14 mjacob return (0);
374 1.1 mrg
375 1.44 mjacob n = isp->isp_maxcmds * sizeof (XS_T *);
376 1.29 mjacob isp->isp_xflist = (XS_T **) malloc(n, M_DEVBUF, M_WAITOK);
377 1.14 mjacob if (isp->isp_xflist == NULL) {
378 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cannot alloc xflist array");
379 1.14 mjacob return (1);
380 1.14 mjacob }
381 1.48 mjacob MEMZERO(isp->isp_xflist, n);
382 1.14 mjacob n = sizeof (bus_dmamap_t) * isp->isp_maxcmds;
383 1.14 mjacob sbc->sbus_dmamap = (bus_dmamap_t *) malloc(n, M_DEVBUF, M_WAITOK);
384 1.14 mjacob if (sbc->sbus_dmamap == NULL) {
385 1.14 mjacob free(isp->isp_xflist, M_DEVBUF);
386 1.29 mjacob isp->isp_xflist = NULL;
387 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cannot alloc dmamap array");
388 1.29 mjacob return (1);
389 1.29 mjacob }
390 1.29 mjacob for (i = 0; i < isp->isp_maxcmds; i++) {
391 1.29 mjacob /* Allocate a DMA handle */
392 1.48 mjacob if (bus_dmamap_create(isp->isp_dmatag, MAXPHYS, 1, MAXPHYS, 0,
393 1.29 mjacob BUS_DMA_NOWAIT, &sbc->sbus_dmamap[i]) != 0) {
394 1.29 mjacob isp_prt(isp, ISP_LOGERR, "cmd DMA maps create error");
395 1.29 mjacob break;
396 1.29 mjacob }
397 1.29 mjacob }
398 1.29 mjacob if (i < isp->isp_maxcmds) {
399 1.29 mjacob while (--i >= 0) {
400 1.48 mjacob bus_dmamap_destroy(isp->isp_dmatag,
401 1.48 mjacob sbc->sbus_dmamap[i]);
402 1.29 mjacob }
403 1.29 mjacob free(isp->isp_xflist, M_DEVBUF);
404 1.29 mjacob free(sbc->sbus_dmamap, M_DEVBUF);
405 1.29 mjacob isp->isp_xflist = NULL;
406 1.29 mjacob sbc->sbus_dmamap = NULL;
407 1.14 mjacob return (1);
408 1.14 mjacob }
409 1.29 mjacob
410 1.1 mrg /*
411 1.40 mjacob * Allocate and map the request and response queues
412 1.1 mrg */
413 1.40 mjacob progress = 0;
414 1.29 mjacob len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp));
415 1.48 mjacob if (bus_dmamem_alloc(isp->isp_dmatag, len, 0, 0, &reqseg, 1, &reqrs,
416 1.40 mjacob BUS_DMA_NOWAIT)) {
417 1.24 pk goto dmafail;
418 1.24 pk }
419 1.40 mjacob progress++;
420 1.48 mjacob if (bus_dmamem_map(isp->isp_dmatag, &reqseg, reqrs, len,
421 1.41 thorpej (caddr_t *)&isp->isp_rquest, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
422 1.24 pk goto dmafail;
423 1.24 pk }
424 1.40 mjacob progress++;
425 1.48 mjacob if (bus_dmamap_create(isp->isp_dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
426 1.48 mjacob &isp->isp_rqdmap) != 0) {
427 1.43 mjacob goto dmafail;
428 1.43 mjacob }
429 1.43 mjacob progress++;
430 1.48 mjacob if (bus_dmamap_load(isp->isp_dmatag, isp->isp_rqdmap,
431 1.43 mjacob isp->isp_rquest, len, NULL, BUS_DMA_NOWAIT) != 0) {
432 1.24 pk goto dmafail;
433 1.14 mjacob }
434 1.40 mjacob progress++;
435 1.48 mjacob isp->isp_rquest_dma = isp->isp_rqdmap->dm_segs[0].ds_addr;
436 1.1 mrg
437 1.29 mjacob len = ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp));
438 1.48 mjacob if (bus_dmamem_alloc(isp->isp_dmatag, len, 0, 0, &rspseg, 1, &rsprs,
439 1.40 mjacob BUS_DMA_NOWAIT)) {
440 1.24 pk goto dmafail;
441 1.24 pk }
442 1.40 mjacob progress++;
443 1.48 mjacob if (bus_dmamem_map(isp->isp_dmatag, &rspseg, rsprs, len,
444 1.41 thorpej (caddr_t *)&isp->isp_result, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
445 1.24 pk goto dmafail;
446 1.24 pk }
447 1.40 mjacob progress++;
448 1.48 mjacob if (bus_dmamap_create(isp->isp_dmatag, len, 1, len, 0, BUS_DMA_NOWAIT,
449 1.48 mjacob &isp->isp_rsdmap) != 0) {
450 1.43 mjacob goto dmafail;
451 1.43 mjacob }
452 1.43 mjacob progress++;
453 1.48 mjacob if (bus_dmamap_load(isp->isp_dmatag, isp->isp_rsdmap,
454 1.43 mjacob isp->isp_result, len, NULL, BUS_DMA_NOWAIT) != 0) {
455 1.24 pk goto dmafail;
456 1.14 mjacob }
457 1.48 mjacob isp->isp_result_dma = isp->isp_rsdmap->dm_segs[0].ds_addr;
458 1.43 mjacob
459 1.1 mrg return (0);
460 1.24 pk
461 1.24 pk dmafail:
462 1.40 mjacob isp_prt(isp, ISP_LOGERR, "Mailbox DMA Setup Failure");
463 1.40 mjacob
464 1.40 mjacob if (progress >= 8) {
465 1.48 mjacob bus_dmamap_unload(isp->isp_dmatag, isp->isp_rsdmap);
466 1.41 thorpej }
467 1.41 thorpej if (progress >= 7) {
468 1.48 mjacob bus_dmamap_destroy(isp->isp_dmatag, isp->isp_rsdmap);
469 1.43 mjacob }
470 1.43 mjacob if (progress >= 6) {
471 1.48 mjacob bus_dmamem_unmap(isp->isp_dmatag,
472 1.40 mjacob isp->isp_result, ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)));
473 1.40 mjacob }
474 1.43 mjacob if (progress >= 5) {
475 1.48 mjacob bus_dmamem_free(isp->isp_dmatag, &rspseg, rsprs);
476 1.40 mjacob }
477 1.40 mjacob
478 1.40 mjacob if (progress >= 4) {
479 1.48 mjacob bus_dmamap_unload(isp->isp_dmatag, isp->isp_rqdmap);
480 1.41 thorpej }
481 1.41 thorpej if (progress >= 3) {
482 1.48 mjacob bus_dmamap_destroy(isp->isp_dmatag, isp->isp_rqdmap);
483 1.43 mjacob }
484 1.43 mjacob if (progress >= 2) {
485 1.48 mjacob bus_dmamem_unmap(isp->isp_dmatag,
486 1.40 mjacob isp->isp_rquest, ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)));
487 1.40 mjacob }
488 1.43 mjacob if (progress >= 1) {
489 1.48 mjacob bus_dmamem_free(isp->isp_dmatag, &reqseg, reqrs);
490 1.40 mjacob }
491 1.40 mjacob
492 1.29 mjacob for (i = 0; i < isp->isp_maxcmds; i++) {
493 1.48 mjacob bus_dmamap_destroy(isp->isp_dmatag, sbc->sbus_dmamap[i]);
494 1.29 mjacob }
495 1.24 pk free(sbc->sbus_dmamap, M_DEVBUF);
496 1.24 pk free(isp->isp_xflist, M_DEVBUF);
497 1.29 mjacob isp->isp_xflist = NULL;
498 1.29 mjacob sbc->sbus_dmamap = NULL;
499 1.24 pk return (1);
500 1.1 mrg }
501 1.1 mrg
502 1.1 mrg /*
503 1.14 mjacob * Map a DMA request.
504 1.14 mjacob * We're guaranteed that rq->req_handle is a value from 1 to isp->isp_maxcmds.
505 1.1 mrg */
506 1.1 mrg
507 1.1 mrg static int
508 1.42 mjacob isp_sbus_dmasetup(struct ispsoftc *isp, XS_T *xs, ispreq_t *rq,
509 1.48 mjacob u_int16_t *nxtip, u_int16_t optr)
510 1.1 mrg {
511 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
512 1.27 mjacob bus_dmamap_t dmap;
513 1.48 mjacob ispreq_t *qep;
514 1.19 mjacob int cansleep = (xs->xs_control & XS_CTL_NOSLEEP) == 0;
515 1.14 mjacob int in = (xs->xs_control & XS_CTL_DATA_IN) != 0;
516 1.1 mrg
517 1.48 mjacob qep = (ispreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, isp->isp_reqidx);
518 1.1 mrg if (xs->datalen == 0) {
519 1.1 mrg rq->req_seg_count = 1;
520 1.14 mjacob goto mbxsync;
521 1.1 mrg }
522 1.27 mjacob
523 1.27 mjacob dmap = sbc->sbus_dmamap[isp_handle_index(rq->req_handle)];
524 1.27 mjacob if (dmap->dm_nsegs != 0) {
525 1.1 mrg panic("%s: dma map already allocated\n", isp->isp_name);
526 1.1 mrg /* NOTREACHED */
527 1.1 mrg }
528 1.48 mjacob if (bus_dmamap_load(isp->isp_dmatag, dmap, xs->data, xs->datalen,
529 1.41 thorpej NULL, (cansleep ? BUS_DMA_WAITOK : BUS_DMA_NOWAIT) |
530 1.41 thorpej BUS_DMA_STREAMING) != 0) {
531 1.1 mrg XS_SETERR(xs, HBA_BOTCH);
532 1.3 mjacob return (CMD_COMPLETE);
533 1.1 mrg }
534 1.27 mjacob
535 1.48 mjacob bus_dmamap_sync(isp->isp_dmatag, dmap, 0, xs->datalen,
536 1.37 mjacob in? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
537 1.27 mjacob
538 1.14 mjacob if (in) {
539 1.1 mrg rq->req_flags |= REQFLAG_DATA_IN;
540 1.1 mrg } else {
541 1.1 mrg rq->req_flags |= REQFLAG_DATA_OUT;
542 1.1 mrg }
543 1.22 mjacob
544 1.27 mjacob if (XS_CDBLEN(xs) > 12) {
545 1.48 mjacob u_int16_t onxti;
546 1.48 mjacob ispcontreq_t local, *crq = &local, *cqe;
547 1.48 mjacob
548 1.48 mjacob onxti = *nxtip;
549 1.48 mjacob cqe = (ispcontreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, onxti);
550 1.48 mjacob *nxtip = ISP_NXT_QENTRY(onxti, RQUEST_QUEUE_LEN(isp));
551 1.48 mjacob if (*nxtip == optr) {
552 1.29 mjacob isp_prt(isp, ISP_LOGDEBUG0, "Request Queue Overflow++");
553 1.48 mjacob bus_dmamap_unload(isp->isp_dmatag, dmap);
554 1.27 mjacob XS_SETERR(xs, HBA_BOTCH);
555 1.27 mjacob return (CMD_EAGAIN);
556 1.27 mjacob }
557 1.22 mjacob rq->req_seg_count = 2;
558 1.48 mjacob MEMZERO((void *)crq, sizeof (*crq));
559 1.22 mjacob crq->req_header.rqs_entry_count = 1;
560 1.22 mjacob crq->req_header.rqs_entry_type = RQSTYPE_DATASEG;
561 1.22 mjacob crq->req_dataseg[0].ds_count = xs->datalen;
562 1.48 mjacob crq->req_dataseg[0].ds_base = dmap->dm_segs[0].ds_addr;
563 1.48 mjacob isp_put_cont_req(isp, crq, cqe);
564 1.48 mjacob MEMORYBARRIER(isp, SYNC_REQUEST, onxti, QENTRY_LEN);
565 1.22 mjacob } else {
566 1.48 mjacob rq->req_seg_count = 1;
567 1.22 mjacob rq->req_dataseg[0].ds_count = xs->datalen;
568 1.27 mjacob rq->req_dataseg[0].ds_base = dmap->dm_segs[0].ds_addr;
569 1.22 mjacob }
570 1.22 mjacob
571 1.14 mjacob mbxsync:
572 1.48 mjacob if (XS_CDBLEN(xs) > 12) {
573 1.48 mjacob isp_put_extended_request(isp,
574 1.48 mjacob (ispextreq_t *)rq, (ispextreq_t *) qep);
575 1.48 mjacob } else {
576 1.48 mjacob isp_put_request(isp, rq, qep);
577 1.48 mjacob }
578 1.3 mjacob return (CMD_QUEUED);
579 1.1 mrg }
580 1.1 mrg
581 1.1 mrg static void
582 1.42 mjacob isp_sbus_dmateardown(struct ispsoftc *isp, XS_T *xs, u_int16_t handle)
583 1.1 mrg {
584 1.1 mrg struct isp_sbussoftc *sbc = (struct isp_sbussoftc *) isp;
585 1.27 mjacob bus_dmamap_t dmap;
586 1.27 mjacob
587 1.27 mjacob dmap = sbc->sbus_dmamap[isp_handle_index(handle)];
588 1.27 mjacob
589 1.27 mjacob if (dmap->dm_nsegs == 0) {
590 1.1 mrg panic("%s: dma map not already allocated\n", isp->isp_name);
591 1.1 mrg /* NOTREACHED */
592 1.1 mrg }
593 1.48 mjacob bus_dmamap_sync(isp->isp_dmatag, dmap, 0,
594 1.14 mjacob xs->datalen, (xs->xs_control & XS_CTL_DATA_IN)?
595 1.14 mjacob BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
596 1.48 mjacob bus_dmamap_unload(isp->isp_dmatag, dmap);
597 1.1 mrg }
598