isp_netbsd.c revision 1.18.2.8 1 1.18.2.7 bouyer /* $NetBSD: isp_netbsd.c,v 1.18.2.8 2000/12/13 15:50:03 bouyer Exp $ */
2 1.18.2.6 bouyer /*
3 1.18.2.6 bouyer * This driver, which is contained in NetBSD in the files:
4 1.18.2.6 bouyer *
5 1.18.2.6 bouyer * sys/dev/ic/isp.c
6 1.18.2.6 bouyer * sys/dev/ic/ic/isp.c
7 1.18.2.6 bouyer * sys/dev/ic/ic/isp_inline.h
8 1.18.2.6 bouyer * sys/dev/ic/ic/isp_netbsd.c
9 1.18.2.6 bouyer * sys/dev/ic/ic/isp_netbsd.h
10 1.18.2.6 bouyer * sys/dev/ic/ic/isp_target.c
11 1.18.2.6 bouyer * sys/dev/ic/ic/isp_target.h
12 1.18.2.6 bouyer * sys/dev/ic/ic/isp_tpublic.h
13 1.18.2.6 bouyer * sys/dev/ic/ic/ispmbox.h
14 1.18.2.6 bouyer * sys/dev/ic/ic/ispreg.h
15 1.18.2.6 bouyer * sys/dev/ic/ic/ispvar.h
16 1.18.2.6 bouyer * sys/microcode/isp/asm_sbus.h
17 1.18.2.6 bouyer * sys/microcode/isp/asm_1040.h
18 1.18.2.6 bouyer * sys/microcode/isp/asm_1080.h
19 1.18.2.6 bouyer * sys/microcode/isp/asm_12160.h
20 1.18.2.6 bouyer * sys/microcode/isp/asm_2100.h
21 1.18.2.6 bouyer * sys/microcode/isp/asm_2200.h
22 1.18.2.6 bouyer * sys/pci/isp_pci.c
23 1.18.2.6 bouyer * sys/sbus/isp_sbus.c
24 1.18.2.6 bouyer *
25 1.18.2.6 bouyer * Is being actively maintained by Matthew Jacob (mjacob (at) netbsd.org).
26 1.18.2.6 bouyer * This driver also is shared source with FreeBSD, OpenBSD, Linux, Solaris,
27 1.18.2.6 bouyer * Linux versions. This tends to be an interesting maintenance problem.
28 1.18.2.6 bouyer *
29 1.18.2.6 bouyer * Please coordinate with Matthew Jacob on changes you wish to make here.
30 1.18.2.6 bouyer */
31 1.1 mjacob /*
32 1.1 mjacob * Platform (NetBSD) dependent common attachment code for Qlogic adapters.
33 1.15 mjacob * Matthew Jacob <mjacob (at) nas.nasa.gov>
34 1.15 mjacob */
35 1.15 mjacob /*
36 1.15 mjacob * Copyright (C) 1997, 1998, 1999 National Aeronautics & Space Administration
37 1.1 mjacob * All rights reserved.
38 1.1 mjacob *
39 1.1 mjacob * Redistribution and use in source and binary forms, with or without
40 1.1 mjacob * modification, are permitted provided that the following conditions
41 1.1 mjacob * are met:
42 1.1 mjacob * 1. Redistributions of source code must retain the above copyright
43 1.15 mjacob * notice, this list of conditions and the following disclaimer.
44 1.1 mjacob * 2. Redistributions in binary form must reproduce the above copyright
45 1.1 mjacob * notice, this list of conditions and the following disclaimer in the
46 1.1 mjacob * documentation and/or other materials provided with the distribution.
47 1.1 mjacob * 3. The name of the author may not be used to endorse or promote products
48 1.15 mjacob * derived from this software without specific prior written permission
49 1.1 mjacob *
50 1.15 mjacob * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51 1.15 mjacob * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 1.15 mjacob * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 1.15 mjacob * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54 1.15 mjacob * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 1.15 mjacob * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 1.15 mjacob * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 1.15 mjacob * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 1.15 mjacob * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59 1.15 mjacob * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 1.1 mjacob */
61 1.1 mjacob
62 1.1 mjacob #include <dev/ic/isp_netbsd.h>
63 1.17 mjacob #include <sys/scsiio.h>
64 1.1 mjacob
65 1.18.2.6 bouyer
66 1.18.2.6 bouyer /*
67 1.18.2.6 bouyer * Set a timeout for the watchdogging of a command.
68 1.18.2.6 bouyer *
69 1.18.2.6 bouyer * The dimensional analysis is
70 1.18.2.6 bouyer *
71 1.18.2.6 bouyer * milliseconds * (seconds/millisecond) * (ticks/second) = ticks
72 1.18.2.6 bouyer *
73 1.18.2.6 bouyer * =
74 1.18.2.6 bouyer *
75 1.18.2.6 bouyer * (milliseconds / 1000) * hz = ticks
76 1.18.2.6 bouyer *
77 1.18.2.6 bouyer *
78 1.18.2.6 bouyer * For timeouts less than 1 second, we'll get zero. Because of this, and
79 1.18.2.6 bouyer * because we want to establish *our* timeout to be longer than what the
80 1.18.2.6 bouyer * firmware might do, we just add 3 seconds at the back end.
81 1.18.2.6 bouyer */
82 1.18.2.6 bouyer #define _XT(xs) ((((xs)->timeout/1000) * hz) + (3 * hz))
83 1.18.2.6 bouyer
84 1.1 mjacob static void ispminphys __P((struct buf *));
85 1.18.2.6 bouyer static int32_t ispcmd __P((XS_T *));
86 1.17 mjacob static int
87 1.18.2.6 bouyer ispioctl __P((struct scsipi_link *, u_long, caddr_t, int, struct proc *));
88 1.1 mjacob
89 1.18.2.6 bouyer static struct scsipi_device isp_dev = { NULL, NULL, NULL, NULL };
90 1.18.2.6 bouyer static int isp_polled_cmd __P((struct ispsoftc *, XS_T *));
91 1.18.2.6 bouyer static void isp_dog __P((void *));
92 1.17 mjacob static void isp_command_requeue __P((void *));
93 1.18.2.6 bouyer static void isp_internal_restart __P((void *));
94 1.10 mjacob
95 1.1 mjacob /*
96 1.1 mjacob * Complete attachment of hardware, include subdevices.
97 1.1 mjacob */
98 1.1 mjacob void
99 1.1 mjacob isp_attach(isp)
100 1.1 mjacob struct ispsoftc *isp;
101 1.1 mjacob {
102 1.18.2.8 bouyer int maxluns;
103 1.18.2.6 bouyer isp->isp_osinfo._adapter.scsipi_minphys = ispminphys;
104 1.18.2.6 bouyer isp->isp_osinfo._adapter.scsipi_ioctl = ispioctl;
105 1.18.2.6 bouyer isp->isp_osinfo._adapter.scsipi_cmd = ispcmd;
106 1.6 thorpej
107 1.1 mjacob isp->isp_state = ISP_RUNSTATE;
108 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.channel =
109 1.18.2.6 bouyer (IS_DUALBUS(isp))? 0 : SCSI_CHANNEL_ONLY_ONE;
110 1.18.2.6 bouyer isp->isp_osinfo._link.adapter_softc = isp;
111 1.18.2.6 bouyer isp->isp_osinfo._link.device = &isp_dev;
112 1.18.2.6 bouyer isp->isp_osinfo._link.adapter = &isp->isp_osinfo._adapter;
113 1.18.2.6 bouyer isp->isp_osinfo._link.openings = isp->isp_maxcmds;
114 1.18.2.8 bouyer isp->isp_osinfo._link.scsipi_scsi.max_lun = maxluns;
115 1.18.2.1 thorpej /*
116 1.18.2.6 bouyer * Until the midlayer is fixed to use REPORT LUNS, limit to 8 luns.
117 1.18.2.1 thorpej */
118 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.max_lun =
119 1.18.2.6 bouyer (isp->isp_maxluns < 7)? isp->isp_maxluns - 1 : 7;
120 1.18.2.6 bouyer TAILQ_INIT(&isp->isp_osinfo.waitq); /* The 2nd bus will share.. */
121 1.18.2.6 bouyer
122 1.18.2.6 bouyer if (IS_FC(isp)) {
123 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.max_target = MAX_FC_TARG-1;
124 1.18.2.6 bouyer } else {
125 1.18.2.6 bouyer sdparam *sdp = isp->isp_param;
126 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.max_target = MAX_TARGETS-1;
127 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.adapter_target =
128 1.18.2.6 bouyer sdp->isp_initiator_id;
129 1.18.2.6 bouyer isp->isp_osinfo.discovered[0] = 1 << sdp->isp_initiator_id;
130 1.18.2.6 bouyer if (IS_DUALBUS(isp)) {
131 1.18.2.6 bouyer isp->isp_osinfo._link_b = isp->isp_osinfo._link;
132 1.18.2.6 bouyer sdp++;
133 1.18.2.6 bouyer isp->isp_osinfo.discovered[1] =
134 1.18.2.6 bouyer 1 << sdp->isp_initiator_id;
135 1.18.2.6 bouyer isp->isp_osinfo._link_b.scsipi_scsi.adapter_target =
136 1.18.2.6 bouyer sdp->isp_initiator_id;
137 1.18.2.6 bouyer isp->isp_osinfo._link_b.scsipi_scsi.channel = 1;
138 1.18.2.6 bouyer isp->isp_osinfo._link_b.scsipi_scsi.max_lun =
139 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.max_lun;
140 1.14 mjacob }
141 1.1 mjacob }
142 1.18.2.6 bouyer isp->isp_osinfo._link.type = BUS_SCSI;
143 1.8 mjacob
144 1.8 mjacob /*
145 1.18.2.6 bouyer * Send a SCSI Bus Reset.
146 1.10 mjacob */
147 1.14 mjacob if (IS_SCSI(isp)) {
148 1.18.2.6 bouyer int bus = 0;
149 1.18.2.6 bouyer ISP_LOCK(isp);
150 1.18.2.6 bouyer (void) isp_control(isp, ISPCTL_RESET_BUS, &bus);
151 1.18.2.6 bouyer if (IS_DUALBUS(isp)) {
152 1.18.2.6 bouyer bus++;
153 1.18.2.6 bouyer (void) isp_control(isp, ISPCTL_RESET_BUS, &bus);
154 1.18.2.6 bouyer }
155 1.18.2.6 bouyer ISP_UNLOCK(isp);
156 1.18.2.6 bouyer } else {
157 1.18.2.6 bouyer int defid;
158 1.18.2.6 bouyer fcparam *fcp = isp->isp_param;
159 1.18.2.6 bouyer delay(2 * 1000000);
160 1.18.2.6 bouyer defid = MAX_FC_TARG;
161 1.18.2.6 bouyer ISP_LOCK(isp);
162 1.18.2.6 bouyer /*
163 1.18.2.6 bouyer * We probably won't have clock interrupts running,
164 1.18.2.6 bouyer * so we'll be really short (smoke test, really)
165 1.18.2.6 bouyer * at this time.
166 1.18.2.6 bouyer */
167 1.18.2.6 bouyer if (isp_control(isp, ISPCTL_FCLINK_TEST, NULL)) {
168 1.18.2.6 bouyer (void) isp_control(isp, ISPCTL_PDB_SYNC, NULL);
169 1.18.2.6 bouyer if (fcp->isp_fwstate == FW_READY &&
170 1.18.2.6 bouyer fcp->isp_loopstate >= LOOP_PDB_RCVD) {
171 1.18.2.6 bouyer defid = fcp->isp_loopid;
172 1.18.2.6 bouyer }
173 1.18.2.6 bouyer }
174 1.18.2.6 bouyer ISP_UNLOCK(isp);
175 1.18.2.6 bouyer isp->isp_osinfo._link.scsipi_scsi.adapter_target = defid;
176 1.11 mjacob }
177 1.10 mjacob
178 1.10 mjacob /*
179 1.18.2.6 bouyer * After this point, we'll be doing the new configuration
180 1.18.2.6 bouyer * schema which allows interrups, so we can do tsleep/wakeup
181 1.18.2.6 bouyer * for mailbox stuff at that point.
182 1.8 mjacob */
183 1.18.2.6 bouyer isp->isp_osinfo.no_mbox_ints = 0;
184 1.8 mjacob
185 1.8 mjacob /*
186 1.8 mjacob * And attach children (if any).
187 1.8 mjacob */
188 1.18.2.6 bouyer config_found((void *)isp, &isp->isp_osinfo._link, scsiprint);
189 1.18.2.6 bouyer if (IS_DUALBUS(isp)) {
190 1.18.2.6 bouyer config_found((void *)isp, &isp->isp_osinfo._link_b, scsiprint);
191 1.18.2.6 bouyer }
192 1.1 mjacob }
193 1.1 mjacob
194 1.1 mjacob /*
195 1.1 mjacob * minphys our xfers
196 1.1 mjacob *
197 1.1 mjacob * Unfortunately, the buffer pointer describes the target device- not the
198 1.1 mjacob * adapter device, so we can't use the pointer to find out what kind of
199 1.1 mjacob * adapter we are and adjust accordingly.
200 1.1 mjacob */
201 1.1 mjacob
202 1.1 mjacob static void
203 1.1 mjacob ispminphys(bp)
204 1.1 mjacob struct buf *bp;
205 1.1 mjacob {
206 1.1 mjacob /*
207 1.1 mjacob * XX: Only the 1020 has a 24 bit limit.
208 1.1 mjacob */
209 1.1 mjacob if (bp->b_bcount >= (1 << 24)) {
210 1.1 mjacob bp->b_bcount = (1 << 24);
211 1.1 mjacob }
212 1.1 mjacob minphys(bp);
213 1.1 mjacob }
214 1.1 mjacob
215 1.17 mjacob static int
216 1.18.2.6 bouyer ispioctl(sc_link, cmd, addr, flag, p)
217 1.18.2.6 bouyer struct scsipi_link *sc_link;
218 1.17 mjacob u_long cmd;
219 1.17 mjacob caddr_t addr;
220 1.17 mjacob int flag;
221 1.17 mjacob struct proc *p;
222 1.17 mjacob {
223 1.18.2.6 bouyer struct ispsoftc *isp = sc_link->adapter_softc;
224 1.18.2.6 bouyer int s, chan, retval = ENOTTY;
225 1.17 mjacob
226 1.18.2.6 bouyer chan = (sc_link->scsipi_scsi.channel == SCSI_CHANNEL_ONLY_ONE)? 0 :
227 1.18.2.6 bouyer sc_link->scsipi_scsi.channel;
228 1.18.2.6 bouyer
229 1.17 mjacob switch (cmd) {
230 1.18.2.6 bouyer case SCBUSACCEL:
231 1.18.2.6 bouyer {
232 1.18.2.6 bouyer struct scbusaccel_args *sp = (struct scbusaccel_args *)addr;
233 1.18.2.6 bouyer if (IS_SCSI(isp) && sp->sa_lun == 0) {
234 1.18.2.6 bouyer int dflags = 0;
235 1.18.2.6 bouyer sdparam *sdp = SDPARAM(isp);
236 1.18.2.6 bouyer
237 1.18.2.6 bouyer sdp += chan;
238 1.18.2.6 bouyer if (sp->sa_flags & SC_ACCEL_TAGS)
239 1.18.2.6 bouyer dflags |= DPARM_TQING;
240 1.18.2.6 bouyer if (sp->sa_flags & SC_ACCEL_WIDE)
241 1.18.2.6 bouyer dflags |= DPARM_WIDE;
242 1.18.2.6 bouyer if (sp->sa_flags & SC_ACCEL_SYNC)
243 1.18.2.6 bouyer dflags |= DPARM_SYNC;
244 1.18.2.6 bouyer s = splbio();
245 1.18.2.6 bouyer sdp->isp_devparam[sp->sa_target].dev_flags |= dflags;
246 1.18.2.6 bouyer dflags = sdp->isp_devparam[sp->sa_target].dev_flags;
247 1.18.2.6 bouyer sdp->isp_devparam[sp->sa_target].dev_update = 1;
248 1.18.2.6 bouyer isp->isp_update |= (1 << chan);
249 1.18.2.6 bouyer splx(s);
250 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1,
251 1.18.2.6 bouyer "ispioctl: device flags 0x%x for %d.%d.X",
252 1.18.2.6 bouyer dflags, chan, sp->sa_target);
253 1.18.2.6 bouyer }
254 1.18.2.6 bouyer retval = 0;
255 1.18.2.6 bouyer break;
256 1.18.2.6 bouyer }
257 1.17 mjacob case SCBUSIORESET:
258 1.17 mjacob s = splbio();
259 1.18.2.6 bouyer if (isp_control(isp, ISPCTL_RESET_BUS, &chan))
260 1.17 mjacob retval = EIO;
261 1.17 mjacob else
262 1.17 mjacob retval = 0;
263 1.17 mjacob (void) splx(s);
264 1.17 mjacob break;
265 1.17 mjacob default:
266 1.17 mjacob break;
267 1.3 mjacob }
268 1.17 mjacob return (retval);
269 1.17 mjacob }
270 1.17 mjacob
271 1.18.2.6 bouyer
272 1.18.2.6 bouyer static int32_t
273 1.18.2.6 bouyer ispcmd(xs)
274 1.18.2.6 bouyer XS_T *xs;
275 1.17 mjacob {
276 1.18.2.6 bouyer struct ispsoftc *isp;
277 1.17 mjacob int result, s;
278 1.11 mjacob
279 1.18.2.6 bouyer isp = XS_ISP(xs);
280 1.18.2.6 bouyer s = splbio();
281 1.18.2.6 bouyer if (isp->isp_state < ISP_RUNSTATE) {
282 1.18.2.1 thorpej DISABLE_INTS(isp);
283 1.18.2.6 bouyer isp_init(isp);
284 1.18.2.6 bouyer if (isp->isp_state != ISP_INITSTATE) {
285 1.18.2.6 bouyer ENABLE_INTS(isp);
286 1.18.2.6 bouyer (void) splx(s);
287 1.18.2.6 bouyer XS_SETERR(xs, HBA_BOTCH);
288 1.18.2.6 bouyer return (COMPLETE);
289 1.18.2.6 bouyer }
290 1.18.2.6 bouyer isp->isp_state = ISP_RUNSTATE;
291 1.18.2.1 thorpej ENABLE_INTS(isp);
292 1.18.2.6 bouyer }
293 1.18.2.1 thorpej
294 1.18.2.6 bouyer /*
295 1.18.2.6 bouyer * Check for queue blockage...
296 1.18.2.6 bouyer */
297 1.18.2.6 bouyer if (isp->isp_osinfo.blocked) {
298 1.18.2.6 bouyer if (xs->xs_control & XS_CTL_POLL) {
299 1.18.2.6 bouyer xs->error = XS_DRIVER_STUFFUP;
300 1.18.2.6 bouyer splx(s);
301 1.18.2.6 bouyer return (TRY_AGAIN_LATER);
302 1.18.2.6 bouyer }
303 1.18.2.6 bouyer TAILQ_INSERT_TAIL(&isp->isp_osinfo.waitq, xs, adapter_q);
304 1.18.2.6 bouyer splx(s);
305 1.18.2.6 bouyer return (SUCCESSFULLY_QUEUED);
306 1.18.2.6 bouyer }
307 1.18.2.6 bouyer
308 1.18.2.6 bouyer if (xs->xs_control & XS_CTL_POLL) {
309 1.18.2.6 bouyer volatile u_int8_t ombi = isp->isp_osinfo.no_mbox_ints;
310 1.18.2.6 bouyer isp->isp_osinfo.no_mbox_ints = 1;
311 1.18.2.6 bouyer result = isp_polled_cmd(isp, xs);
312 1.18.2.6 bouyer isp->isp_osinfo.no_mbox_ints = ombi;
313 1.18.2.6 bouyer (void) splx(s);
314 1.18.2.6 bouyer return (result);
315 1.18.2.6 bouyer }
316 1.18.2.1 thorpej
317 1.18.2.6 bouyer result = isp_start(xs);
318 1.18.2.6 bouyer #if 0
319 1.18.2.6 bouyer {
320 1.18.2.6 bouyer static int na[16] = { 0 };
321 1.18.2.6 bouyer if (na[isp->isp_unit] < isp->isp_nactive) {
322 1.18.2.6 bouyer isp_prt(isp, ISP_LOGALL, "active hiwater %d", isp->isp_nactive);
323 1.18.2.6 bouyer na[isp->isp_unit] = isp->isp_nactive;
324 1.18.2.6 bouyer }
325 1.18.2.6 bouyer }
326 1.18.2.6 bouyer #endif
327 1.18.2.6 bouyer switch (result) {
328 1.18.2.6 bouyer case CMD_QUEUED:
329 1.18.2.6 bouyer result = SUCCESSFULLY_QUEUED;
330 1.18.2.6 bouyer if (xs->timeout) {
331 1.18.2.6 bouyer callout_reset(&xs->xs_callout, _XT(xs), isp_dog, xs);
332 1.18.2.6 bouyer }
333 1.18.2.6 bouyer break;
334 1.18.2.6 bouyer case CMD_EAGAIN:
335 1.18.2.6 bouyer result = TRY_AGAIN_LATER;
336 1.18.2.6 bouyer break;
337 1.18.2.6 bouyer case CMD_RQLATER:
338 1.18.2.6 bouyer result = SUCCESSFULLY_QUEUED;
339 1.18.2.6 bouyer callout_reset(&xs->xs_callout, hz, isp_command_requeue, xs);
340 1.18.2.6 bouyer break;
341 1.18.2.6 bouyer case CMD_COMPLETE:
342 1.18.2.6 bouyer result = COMPLETE;
343 1.18.2.6 bouyer break;
344 1.18.2.6 bouyer }
345 1.18.2.6 bouyer (void) splx(s);
346 1.18.2.6 bouyer return (result);
347 1.18.2.6 bouyer }
348 1.18.2.1 thorpej
349 1.18.2.6 bouyer static int
350 1.18.2.6 bouyer isp_polled_cmd(isp, xs)
351 1.18.2.6 bouyer struct ispsoftc *isp;
352 1.18.2.6 bouyer XS_T *xs;
353 1.18.2.6 bouyer {
354 1.18.2.6 bouyer int result;
355 1.18.2.6 bouyer int infinite = 0, mswait;
356 1.18.2.1 thorpej
357 1.18.2.6 bouyer result = isp_start(xs);
358 1.18.2.6 bouyer
359 1.18.2.6 bouyer switch (result) {
360 1.18.2.6 bouyer case CMD_QUEUED:
361 1.18.2.6 bouyer result = SUCCESSFULLY_QUEUED;
362 1.18.2.6 bouyer break;
363 1.18.2.6 bouyer case CMD_RQLATER:
364 1.18.2.6 bouyer case CMD_EAGAIN:
365 1.18.2.6 bouyer if (XS_NOERR(xs)) {
366 1.18.2.6 bouyer xs->error = XS_DRIVER_STUFFUP;
367 1.17 mjacob }
368 1.18.2.6 bouyer result = TRY_AGAIN_LATER;
369 1.18.2.6 bouyer break;
370 1.18.2.6 bouyer case CMD_COMPLETE:
371 1.18.2.6 bouyer result = COMPLETE;
372 1.18.2.6 bouyer break;
373 1.18.2.6 bouyer
374 1.18.2.6 bouyer }
375 1.1 mjacob
376 1.18.2.6 bouyer if (result != SUCCESSFULLY_QUEUED) {
377 1.18.2.6 bouyer return (result);
378 1.18.2.6 bouyer }
379 1.18.2.6 bouyer
380 1.18.2.6 bouyer /*
381 1.18.2.6 bouyer * If we can't use interrupts, poll on completion.
382 1.18.2.6 bouyer */
383 1.18.2.6 bouyer if ((mswait = XS_TIME(xs)) == 0)
384 1.18.2.6 bouyer infinite = 1;
385 1.18.2.6 bouyer
386 1.18.2.6 bouyer while (mswait || infinite) {
387 1.18.2.6 bouyer if (isp_intr((void *)isp)) {
388 1.18.2.6 bouyer if (XS_CMD_DONE_P(xs)) {
389 1.18.2.6 bouyer break;
390 1.1 mjacob }
391 1.1 mjacob }
392 1.18.2.6 bouyer USEC_DELAY(1000);
393 1.18.2.6 bouyer mswait -= 1;
394 1.18.2.6 bouyer }
395 1.18.2.1 thorpej
396 1.18.2.6 bouyer /*
397 1.18.2.6 bouyer * If no other error occurred but we didn't finish,
398 1.18.2.6 bouyer * something bad happened.
399 1.18.2.6 bouyer */
400 1.18.2.6 bouyer if (XS_CMD_DONE_P(xs) == 0) {
401 1.18.2.6 bouyer if (isp_control(isp, ISPCTL_ABORT_CMD, xs)) {
402 1.18.2.6 bouyer isp_reinit(isp);
403 1.18.2.6 bouyer }
404 1.18.2.6 bouyer if (XS_NOERR(xs)) {
405 1.18.2.6 bouyer XS_SETERR(xs, HBA_BOTCH);
406 1.18.2.1 thorpej }
407 1.1 mjacob }
408 1.18.2.6 bouyer result = COMPLETE;
409 1.18.2.6 bouyer return (result);
410 1.1 mjacob }
411 1.1 mjacob
412 1.18.2.6 bouyer void
413 1.18.2.6 bouyer isp_done(xs)
414 1.18.2.6 bouyer XS_T *xs;
415 1.1 mjacob {
416 1.18.2.6 bouyer XS_CMD_S_DONE(xs);
417 1.18.2.6 bouyer if (XS_CMD_WDOG_P(xs) == 0) {
418 1.18.2.6 bouyer struct ispsoftc *isp = XS_ISP(xs);
419 1.18.2.6 bouyer callout_stop(&xs->xs_callout);
420 1.18.2.6 bouyer if (XS_CMD_GRACE_P(xs)) {
421 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1,
422 1.18.2.6 bouyer "finished command on borrowed time");
423 1.1 mjacob }
424 1.18.2.6 bouyer XS_CMD_S_CLEAR(xs);
425 1.18.2.6 bouyer scsipi_done(xs);
426 1.1 mjacob }
427 1.8 mjacob }
428 1.8 mjacob
429 1.8 mjacob static void
430 1.18.2.6 bouyer isp_dog(arg)
431 1.8 mjacob void *arg;
432 1.8 mjacob {
433 1.18.2.6 bouyer XS_T *xs = arg;
434 1.18.2.6 bouyer struct ispsoftc *isp = XS_ISP(xs);
435 1.18.2.6 bouyer u_int32_t handle;
436 1.8 mjacob
437 1.18.2.6 bouyer ISP_ILOCK(isp);
438 1.8 mjacob /*
439 1.18.2.6 bouyer * We've decided this command is dead. Make sure we're not trying
440 1.18.2.6 bouyer * to kill a command that's already dead by getting it's handle and
441 1.18.2.6 bouyer * and seeing whether it's still alive.
442 1.8 mjacob */
443 1.18.2.6 bouyer handle = isp_find_handle(isp, xs);
444 1.18.2.6 bouyer if (handle) {
445 1.18.2.6 bouyer u_int16_t r, r1, i;
446 1.18.2.6 bouyer
447 1.18.2.6 bouyer if (XS_CMD_DONE_P(xs)) {
448 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1,
449 1.18.2.6 bouyer "watchdog found done cmd (handle 0x%x)", handle);
450 1.18.2.6 bouyer ISP_IUNLOCK(isp);
451 1.18.2.6 bouyer return;
452 1.8 mjacob }
453 1.18.2.6 bouyer
454 1.18.2.6 bouyer if (XS_CMD_WDOG_P(xs)) {
455 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1,
456 1.18.2.6 bouyer "recursive watchdog (handle 0x%x)", handle);
457 1.18.2.6 bouyer ISP_IUNLOCK(isp);
458 1.18.2.6 bouyer return;
459 1.8 mjacob }
460 1.18.2.6 bouyer
461 1.18.2.6 bouyer XS_CMD_S_WDOG(xs);
462 1.18.2.6 bouyer
463 1.18.2.6 bouyer i = 0;
464 1.18.2.6 bouyer do {
465 1.18.2.6 bouyer r = ISP_READ(isp, BIU_ISR);
466 1.18.2.6 bouyer USEC_DELAY(1);
467 1.18.2.6 bouyer r1 = ISP_READ(isp, BIU_ISR);
468 1.18.2.6 bouyer } while (r != r1 && ++i < 1000);
469 1.18.2.6 bouyer
470 1.18.2.6 bouyer if (INT_PENDING(isp, r) && isp_intr(isp) && XS_CMD_DONE_P(xs)) {
471 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1, "watchdog cleanup (%x, %x)",
472 1.18.2.6 bouyer handle, r);
473 1.18.2.6 bouyer XS_CMD_C_WDOG(xs);
474 1.18.2.6 bouyer isp_done(xs);
475 1.18.2.6 bouyer } else if (XS_CMD_GRACE_P(xs)) {
476 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG1, "watchdog timeout (%x, %x)",
477 1.18.2.6 bouyer handle, r);
478 1.18.2.6 bouyer /*
479 1.18.2.6 bouyer * Make sure the command is *really* dead before we
480 1.18.2.6 bouyer * release the handle (and DMA resources) for reuse.
481 1.18.2.6 bouyer */
482 1.18.2.6 bouyer (void) isp_control(isp, ISPCTL_ABORT_CMD, arg);
483 1.18.2.6 bouyer
484 1.18.2.6 bouyer /*
485 1.18.2.6 bouyer * After this point, the comamnd is really dead.
486 1.18.2.6 bouyer */
487 1.18.2.6 bouyer if (XS_XFRLEN(xs)) {
488 1.18.2.6 bouyer ISP_DMAFREE(isp, xs, handle);
489 1.18.2.6 bouyer }
490 1.18.2.6 bouyer isp_destroy_handle(isp, handle);
491 1.18.2.6 bouyer XS_SETERR(xs, XS_TIMEOUT);
492 1.18.2.6 bouyer XS_CMD_S_CLEAR(xs);
493 1.18.2.6 bouyer isp_done(xs);
494 1.18.2.6 bouyer } else {
495 1.18.2.6 bouyer u_int16_t iptr, optr;
496 1.18.2.6 bouyer ispreq_t *mp;
497 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG2,
498 1.18.2.6 bouyer "possible command timeout (%x, %x)", handle, r);
499 1.18.2.6 bouyer XS_CMD_C_WDOG(xs);
500 1.18.2.6 bouyer callout_reset(&xs->xs_callout, hz, isp_dog, xs);
501 1.18.2.6 bouyer if (isp_getrqentry(isp, &iptr, &optr, (void **) &mp)) {
502 1.18.2.8 bouyer ISP_UNLOCK(isp);
503 1.18.2.6 bouyer return;
504 1.18.2.6 bouyer }
505 1.18.2.6 bouyer XS_CMD_S_GRACE(xs);
506 1.18.2.6 bouyer MEMZERO((void *) mp, sizeof (*mp));
507 1.18.2.6 bouyer mp->req_header.rqs_entry_count = 1;
508 1.18.2.6 bouyer mp->req_header.rqs_entry_type = RQSTYPE_MARKER;
509 1.18.2.6 bouyer mp->req_modifier = SYNC_ALL;
510 1.18.2.6 bouyer mp->req_target = XS_CHANNEL(xs) << 7;
511 1.18.2.6 bouyer ISP_SWIZZLE_REQUEST(isp, mp);
512 1.18.2.6 bouyer ISP_ADD_REQUEST(isp, iptr);
513 1.8 mjacob }
514 1.18.2.6 bouyer } else {
515 1.18.2.6 bouyer isp_prt(isp, ISP_LOGDEBUG0, "watchdog with no command");
516 1.8 mjacob }
517 1.18.2.6 bouyer ISP_IUNLOCK(isp);
518 1.8 mjacob }
519 1.8 mjacob
520 1.8 mjacob /*
521 1.8 mjacob * Free any associated resources prior to decommissioning and
522 1.8 mjacob * set the card to a known state (so it doesn't wake up and kick
523 1.8 mjacob * us when we aren't expecting it to).
524 1.8 mjacob *
525 1.8 mjacob * Locks are held before coming here.
526 1.8 mjacob */
527 1.8 mjacob void
528 1.8 mjacob isp_uninit(isp)
529 1.8 mjacob struct ispsoftc *isp;
530 1.8 mjacob {
531 1.18.2.6 bouyer isp_lock(isp);
532 1.8 mjacob /*
533 1.8 mjacob * Leave with interrupts disabled.
534 1.8 mjacob */
535 1.8 mjacob DISABLE_INTS(isp);
536 1.18.2.6 bouyer isp_unlock(isp);
537 1.9 mjacob }
538 1.9 mjacob
539 1.10 mjacob /*
540 1.17 mjacob * Restart function for a command to be requeued later.
541 1.17 mjacob */
542 1.17 mjacob static void
543 1.17 mjacob isp_command_requeue(arg)
544 1.17 mjacob void *arg;
545 1.17 mjacob {
546 1.17 mjacob struct scsipi_xfer *xs = arg;
547 1.18.2.6 bouyer struct ispsoftc *isp = XS_ISP(xs);
548 1.18.2.8 bouyer ISP_LOCK(isp);
549 1.18.2.6 bouyer switch (ispcmd(xs)) {
550 1.18.2.6 bouyer case SUCCESSFULLY_QUEUED:
551 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
552 1.18.2.6 bouyer "requeued commands for %d.%d", XS_TGT(xs), XS_LUN(xs));
553 1.18.2.6 bouyer if (xs->timeout) {
554 1.18.2.6 bouyer callout_reset(&xs->xs_callout, _XT(xs), isp_dog, xs);
555 1.18.2.6 bouyer }
556 1.18.2.6 bouyer break;
557 1.18.2.6 bouyer case TRY_AGAIN_LATER:
558 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
559 1.18.2.6 bouyer "EAGAIN on requeue for %d.%d", XS_TGT(xs), XS_LUN(xs));
560 1.18.2.6 bouyer callout_reset(&xs->xs_callout, hz, isp_command_requeue, xs);
561 1.18.2.6 bouyer break;
562 1.18.2.6 bouyer case COMPLETE:
563 1.18.2.6 bouyer /* can only be an error */
564 1.18.2.6 bouyer XS_CMD_S_DONE(xs);
565 1.18.2.6 bouyer callout_stop(&xs->xs_callout);
566 1.18.2.6 bouyer if (XS_NOERR(xs)) {
567 1.18.2.6 bouyer XS_SETERR(xs, HBA_BOTCH);
568 1.18.2.6 bouyer }
569 1.18.2.6 bouyer scsipi_done(xs);
570 1.18.2.6 bouyer break;
571 1.18.2.6 bouyer }
572 1.18.2.8 bouyer ISP_UNLOCK(isp);
573 1.18.2.6 bouyer }
574 1.18.2.1 thorpej
575 1.18.2.6 bouyer /*
576 1.18.2.6 bouyer * Restart function after a LOOP UP event (e.g.),
577 1.18.2.6 bouyer * done as a timeout for some hysteresis.
578 1.18.2.6 bouyer */
579 1.18.2.6 bouyer static void
580 1.18.2.6 bouyer isp_internal_restart(arg)
581 1.18.2.6 bouyer void *arg;
582 1.18.2.6 bouyer {
583 1.18.2.6 bouyer struct ispsoftc *isp = arg;
584 1.18.2.6 bouyer int result, nrestarted = 0;
585 1.18.2.6 bouyer
586 1.18.2.8 bouyer ISP_LOCK(isp);
587 1.18.2.6 bouyer if (isp->isp_osinfo.blocked == 0) {
588 1.18.2.6 bouyer struct scsipi_xfer *xs;
589 1.18.2.6 bouyer while ((xs = TAILQ_FIRST(&isp->isp_osinfo.waitq)) != NULL) {
590 1.18.2.6 bouyer TAILQ_REMOVE(&isp->isp_osinfo.waitq, xs, adapter_q);
591 1.18.2.6 bouyer result = isp_start(xs);
592 1.18.2.6 bouyer if (result != CMD_QUEUED) {
593 1.18.2.6 bouyer isp_prt(isp, ISP_LOGERR,
594 1.18.2.6 bouyer "botched command restart (err=%d)", result);
595 1.18.2.6 bouyer XS_CMD_S_DONE(xs);
596 1.18.2.6 bouyer if (xs->error == XS_NOERROR)
597 1.18.2.6 bouyer xs->error = XS_DRIVER_STUFFUP;
598 1.18.2.6 bouyer callout_stop(&xs->xs_callout);
599 1.18.2.6 bouyer scsipi_done(xs);
600 1.18.2.6 bouyer } else if (xs->timeout) {
601 1.18.2.6 bouyer callout_reset(&xs->xs_callout,
602 1.18.2.6 bouyer _XT(xs), isp_dog, xs);
603 1.18.2.6 bouyer }
604 1.18.2.6 bouyer nrestarted++;
605 1.18.2.6 bouyer }
606 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
607 1.18.2.6 bouyer "isp_restart requeued %d commands", nrestarted);
608 1.18.2.6 bouyer }
609 1.18.2.8 bouyer ISP_UNLOCK(isp);
610 1.17 mjacob }
611 1.18 mjacob
612 1.9 mjacob int
613 1.9 mjacob isp_async(isp, cmd, arg)
614 1.9 mjacob struct ispsoftc *isp;
615 1.9 mjacob ispasync_t cmd;
616 1.9 mjacob void *arg;
617 1.9 mjacob {
618 1.18.2.3 thorpej int bus, tgt;
619 1.10 mjacob int s = splbio();
620 1.9 mjacob switch (cmd) {
621 1.18.2.5 thorpej case ISPASYNC_NEW_TGT_PARAMS:
622 1.18.2.6 bouyer if (IS_SCSI(isp) && isp->isp_dblev) {
623 1.18.2.5 thorpej sdparam *sdp = isp->isp_param;
624 1.18.2.6 bouyer char *wt;
625 1.18.2.6 bouyer int mhz, flags, period;
626 1.18.2.3 thorpej
627 1.18.2.3 thorpej tgt = *((int *) arg);
628 1.18.2.3 thorpej bus = (tgt >> 16) & 0xffff;
629 1.18.2.3 thorpej tgt &= 0xffff;
630 1.18.2.6 bouyer sdp += bus;
631 1.18.2.5 thorpej flags = sdp->isp_devparam[tgt].cur_dflags;
632 1.18.2.6 bouyer period = sdp->isp_devparam[tgt].cur_period;
633 1.18.2.5 thorpej
634 1.18.2.6 bouyer if ((flags & DPARM_SYNC) && period &&
635 1.18.2.6 bouyer (sdp->isp_devparam[tgt].cur_offset) != 0) {
636 1.18.2.6 bouyer /*
637 1.18.2.6 bouyer * There's some ambiguity about our negotiated speed
638 1.18.2.6 bouyer * if we haven't detected LVD mode correctly (which
639 1.18.2.6 bouyer * seems to happen, unfortunately). If we're in LVD
640 1.18.2.6 bouyer * mode, then different rules apply about speed.
641 1.18.2.6 bouyer */
642 1.18.2.6 bouyer if (sdp->isp_lvdmode || period < 0xc) {
643 1.18.2.6 bouyer switch (period) {
644 1.18.2.6 bouyer case 0x9:
645 1.18.2.6 bouyer mhz = 80;
646 1.18.2.6 bouyer break;
647 1.18.2.6 bouyer case 0xa:
648 1.18.2.6 bouyer mhz = 40;
649 1.18.2.6 bouyer break;
650 1.18.2.6 bouyer case 0xb:
651 1.18.2.6 bouyer mhz = 33;
652 1.18.2.6 bouyer break;
653 1.18.2.6 bouyer case 0xc:
654 1.18.2.6 bouyer mhz = 25;
655 1.18.2.6 bouyer break;
656 1.18.2.6 bouyer default:
657 1.18.2.6 bouyer mhz = 1000 / (period * 4);
658 1.18.2.6 bouyer break;
659 1.18.2.6 bouyer }
660 1.18.2.6 bouyer } else {
661 1.18.2.6 bouyer mhz = 1000 / (period * 4);
662 1.18.2.6 bouyer }
663 1.18.2.6 bouyer } else {
664 1.18.2.6 bouyer mhz = 0;
665 1.18.2.6 bouyer }
666 1.18.2.6 bouyer switch (flags & (DPARM_WIDE|DPARM_TQING)) {
667 1.18.2.6 bouyer case DPARM_WIDE:
668 1.18.2.6 bouyer wt = ", 16 bit wide";
669 1.18.2.6 bouyer break;
670 1.18.2.6 bouyer case DPARM_TQING:
671 1.18.2.6 bouyer wt = ", Tagged Queueing Enabled";
672 1.18.2.6 bouyer break;
673 1.18.2.6 bouyer case DPARM_WIDE|DPARM_TQING:
674 1.18.2.6 bouyer wt = ", 16 bit wide, Tagged Queueing Enabled";
675 1.18.2.6 bouyer break;
676 1.18.2.6 bouyer default:
677 1.18.2.6 bouyer wt = " ";
678 1.18.2.6 bouyer break;
679 1.18.2.6 bouyer }
680 1.18.2.6 bouyer if (mhz) {
681 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
682 1.18.2.6 bouyer "Bus %d Target %d at %dMHz Max Offset %d%s",
683 1.18.2.6 bouyer bus, tgt, mhz, sdp->isp_devparam[tgt].cur_offset,
684 1.18.2.6 bouyer wt);
685 1.18.2.6 bouyer } else {
686 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
687 1.18.2.6 bouyer "Bus %d Target %d Async Mode%s", bus, tgt, wt);
688 1.18.2.6 bouyer }
689 1.11 mjacob break;
690 1.18.2.3 thorpej }
691 1.11 mjacob case ISPASYNC_BUS_RESET:
692 1.14 mjacob if (arg)
693 1.14 mjacob bus = *((int *) arg);
694 1.14 mjacob else
695 1.14 mjacob bus = 0;
696 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO, "SCSI bus %d reset detected", bus);
697 1.11 mjacob break;
698 1.11 mjacob case ISPASYNC_LOOP_DOWN:
699 1.11 mjacob /*
700 1.11 mjacob * Hopefully we get here in time to minimize the number
701 1.11 mjacob * of commands we are firing off that are sure to die.
702 1.11 mjacob */
703 1.18.2.6 bouyer isp->isp_osinfo.blocked = 1;
704 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO, "Loop DOWN");
705 1.11 mjacob break;
706 1.11 mjacob case ISPASYNC_LOOP_UP:
707 1.18.2.6 bouyer isp->isp_osinfo.blocked = 0;
708 1.18.2.6 bouyer callout_reset(&isp->isp_osinfo._restart, 1,
709 1.18.2.6 bouyer isp_internal_restart, isp);
710 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO, "Loop UP");
711 1.11 mjacob break;
712 1.15 mjacob case ISPASYNC_PDB_CHANGED:
713 1.17 mjacob if (IS_FC(isp) && isp->isp_dblev) {
714 1.18.2.6 bouyer const char *fmt = "Target %d (Loop 0x%x) Port ID 0x%x "
715 1.18.2.6 bouyer "role %s %s\n Port WWN 0x%08x%08x\n Node WWN 0x%08x%08x";
716 1.15 mjacob const static char *roles[4] = {
717 1.11 mjacob "No", "Target", "Initiator", "Target/Initiator"
718 1.11 mjacob };
719 1.15 mjacob char *ptr;
720 1.15 mjacob fcparam *fcp = isp->isp_param;
721 1.15 mjacob int tgt = *((int *) arg);
722 1.15 mjacob struct lportdb *lp = &fcp->portdb[tgt];
723 1.15 mjacob
724 1.15 mjacob if (lp->valid) {
725 1.15 mjacob ptr = "arrived";
726 1.15 mjacob } else {
727 1.15 mjacob ptr = "disappeared";
728 1.11 mjacob }
729 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO, fmt, tgt, lp->loopid, lp->portid,
730 1.15 mjacob roles[lp->roles & 0x3], ptr,
731 1.15 mjacob (u_int32_t) (lp->port_wwn >> 32),
732 1.15 mjacob (u_int32_t) (lp->port_wwn & 0xffffffffLL),
733 1.15 mjacob (u_int32_t) (lp->node_wwn >> 32),
734 1.15 mjacob (u_int32_t) (lp->node_wwn & 0xffffffffLL));
735 1.11 mjacob break;
736 1.11 mjacob }
737 1.15 mjacob #ifdef ISP2100_FABRIC
738 1.11 mjacob case ISPASYNC_CHANGE_NOTIFY:
739 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO, "Name Server Database Changed");
740 1.9 mjacob break;
741 1.15 mjacob case ISPASYNC_FABRIC_DEV:
742 1.15 mjacob {
743 1.15 mjacob int target;
744 1.15 mjacob struct lportdb *lp;
745 1.15 mjacob sns_scrsp_t *resp = (sns_scrsp_t *) arg;
746 1.15 mjacob u_int32_t portid;
747 1.15 mjacob u_int64_t wwn;
748 1.15 mjacob fcparam *fcp = isp->isp_param;
749 1.15 mjacob
750 1.15 mjacob portid =
751 1.15 mjacob (((u_int32_t) resp->snscb_port_id[0]) << 16) |
752 1.15 mjacob (((u_int32_t) resp->snscb_port_id[1]) << 8) |
753 1.15 mjacob (((u_int32_t) resp->snscb_port_id[2]));
754 1.15 mjacob wwn =
755 1.15 mjacob (((u_int64_t)resp->snscb_portname[0]) << 56) |
756 1.15 mjacob (((u_int64_t)resp->snscb_portname[1]) << 48) |
757 1.15 mjacob (((u_int64_t)resp->snscb_portname[2]) << 40) |
758 1.15 mjacob (((u_int64_t)resp->snscb_portname[3]) << 32) |
759 1.15 mjacob (((u_int64_t)resp->snscb_portname[4]) << 24) |
760 1.15 mjacob (((u_int64_t)resp->snscb_portname[5]) << 16) |
761 1.15 mjacob (((u_int64_t)resp->snscb_portname[6]) << 8) |
762 1.15 mjacob (((u_int64_t)resp->snscb_portname[7]));
763 1.18.2.6 bouyer
764 1.18.2.6 bouyer isp_prt(isp, ISP_LOGINFO,
765 1.18.2.6 bouyer "Fabric Device (Type 0x%x)@PortID 0x%x WWN 0x%08x%08x",
766 1.18.2.6 bouyer resp->snscb_port_type, portid, ((u_int32_t)(wwn >> 32)),
767 1.15 mjacob ((u_int32_t)(wwn & 0xffffffff)));
768 1.18.2.6 bouyer
769 1.15 mjacob for (target = FC_SNS_ID+1; target < MAX_FC_TARG; target++) {
770 1.15 mjacob lp = &fcp->portdb[target];
771 1.15 mjacob if (lp->port_wwn == wwn)
772 1.15 mjacob break;
773 1.15 mjacob }
774 1.15 mjacob if (target < MAX_FC_TARG) {
775 1.15 mjacob break;
776 1.15 mjacob }
777 1.15 mjacob for (target = FC_SNS_ID+1; target < MAX_FC_TARG; target++) {
778 1.15 mjacob lp = &fcp->portdb[target];
779 1.15 mjacob if (lp->port_wwn == 0)
780 1.15 mjacob break;
781 1.15 mjacob }
782 1.15 mjacob if (target == MAX_FC_TARG) {
783 1.18.2.6 bouyer isp_prt(isp, ISP_LOGWARN,
784 1.18.2.6 bouyer "no more space for fabric devices");
785 1.15 mjacob return (-1);
786 1.15 mjacob }
787 1.15 mjacob lp->port_wwn = lp->node_wwn = wwn;
788 1.15 mjacob lp->portid = portid;
789 1.15 mjacob break;
790 1.15 mjacob }
791 1.15 mjacob #endif
792 1.9 mjacob default:
793 1.9 mjacob break;
794 1.9 mjacob }
795 1.10 mjacob (void) splx(s);
796 1.9 mjacob return (0);
797 1.18.2.6 bouyer }
798 1.18.2.6 bouyer
799 1.18.2.6 bouyer #include <machine/stdarg.h>
800 1.18.2.6 bouyer void
801 1.18.2.6 bouyer #ifdef __STDC__
802 1.18.2.6 bouyer isp_prt(struct ispsoftc *isp, int level, const char *fmt, ...)
803 1.18.2.6 bouyer #else
804 1.18.2.6 bouyer isp_prt(isp, fmt, va_alist)
805 1.18.2.6 bouyer struct ispsoftc *isp;
806 1.18.2.6 bouyer char *fmt;
807 1.18.2.6 bouyer va_dcl;
808 1.18.2.6 bouyer #endif
809 1.18.2.6 bouyer {
810 1.18.2.6 bouyer va_list ap;
811 1.18.2.6 bouyer if (level != ISP_LOGALL && (level & isp->isp_dblev) == 0) {
812 1.18.2.6 bouyer return;
813 1.18.2.6 bouyer }
814 1.18.2.6 bouyer printf("%s: ", isp->isp_name);
815 1.18.2.6 bouyer va_start(ap, fmt);
816 1.18.2.6 bouyer vprintf(fmt, ap);
817 1.18.2.6 bouyer va_end(ap);
818 1.18.2.6 bouyer printf("\n");
819 1.1 mjacob }
820