]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/isp/isp_freebsd.c
MFC r314045: Remove duplicate INOT allocation.
[FreeBSD/FreeBSD.git] / sys / dev / isp / isp_freebsd.c
1 /*-
2  * Copyright (c) 1997-2009 by Matthew Jacob
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice immediately at the beginning of the file, without modification,
10  *    this list of conditions, and the following disclaimer.
11  * 2. The name of the author may not be used to endorse or promote products
12  *    derived from this software without specific prior written permission.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 /*
28  * Platform (FreeBSD) dependent common attachment code for Qlogic adapters.
29  */
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include <dev/isp/isp_freebsd.h>
34 #include <sys/unistd.h>
35 #include <sys/kthread.h>
36 #include <sys/conf.h>
37 #include <sys/module.h>
38 #include <sys/ioccom.h>
39 #include <dev/isp/isp_ioctl.h>
40 #include <sys/devicestat.h>
41 #include <cam/cam_periph.h>
42 #include <cam/cam_xpt_periph.h>
43
44 MODULE_VERSION(isp, 1);
45 MODULE_DEPEND(isp, cam, 1, 1, 1);
46 int isp_announced = 0;
47 int isp_loop_down_limit = 60;   /* default loop down limit */
48 int isp_quickboot_time = 7;     /* don't wait more than N secs for loop up */
49 int isp_gone_device_time = 30;  /* grace time before reporting device lost */
50 static const char prom3[] = "Chan %d [%u] PortID 0x%06x Departed because of %s";
51
52 static void isp_freeze_loopdown(ispsoftc_t *, int);
53 static void isp_loop_changed(ispsoftc_t *isp, int chan);
54 static d_ioctl_t ispioctl;
55 static void isp_intr_enable(void *);
56 static void isp_cam_async(void *, uint32_t, struct cam_path *, void *);
57 static void isp_poll(struct cam_sim *);
58 static timeout_t isp_watchdog;
59 static timeout_t isp_gdt;
60 static task_fn_t isp_gdt_task;
61 static void isp_kthread(void *);
62 static void isp_action(struct cam_sim *, union ccb *);
63 static int isp_timer_count;
64 static void isp_timer(void *);
65
66 static struct cdevsw isp_cdevsw = {
67         .d_version =    D_VERSION,
68         .d_ioctl =      ispioctl,
69         .d_name =       "isp",
70 };
71
72 static int
73 isp_role_sysctl(SYSCTL_HANDLER_ARGS)
74 {
75         ispsoftc_t *isp = (ispsoftc_t *)arg1;
76         int chan = arg2;
77         int error, old, value;
78
79         value = FCPARAM(isp, chan)->role;
80
81         error = sysctl_handle_int(oidp, &value, 0, req);
82         if ((error != 0) || (req->newptr == NULL))
83                 return (error);
84
85         if (value < ISP_ROLE_NONE || value > ISP_ROLE_BOTH)
86                 return (EINVAL);
87
88         ISP_LOCK(isp);
89         old = FCPARAM(isp, chan)->role;
90
91         /* We don't allow target mode switch from here. */
92         value = (old & ISP_ROLE_TARGET) | (value & ISP_ROLE_INITIATOR);
93
94         /* If nothing has changed -- we are done. */
95         if (value == old) {
96                 ISP_UNLOCK(isp);
97                 return (0);
98         }
99
100         /* Actually change the role. */
101         error = isp_control(isp, ISPCTL_CHANGE_ROLE, chan, value);
102         ISP_UNLOCK(isp);
103         return (error);
104 }
105
106 static int
107 isp_attach_chan(ispsoftc_t *isp, struct cam_devq *devq, int chan)
108 {
109         struct ccb_setasync csa;
110         struct cam_sim *sim;
111         struct cam_path *path;
112
113         /*
114          * Construct our SIM entry.
115          */
116         sim = cam_sim_alloc(isp_action, isp_poll, "isp", isp, device_get_unit(isp->isp_dev), &isp->isp_osinfo.lock, isp->isp_maxcmds, isp->isp_maxcmds, devq);
117
118         if (sim == NULL) {
119                 return (ENOMEM);
120         }
121
122         ISP_LOCK(isp);
123         if (xpt_bus_register(sim, isp->isp_dev, chan) != CAM_SUCCESS) {
124                 ISP_UNLOCK(isp);
125                 cam_sim_free(sim, FALSE);
126                 return (EIO);
127         }
128         ISP_UNLOCK(isp);
129         if (xpt_create_path(&path, NULL, cam_sim_path(sim), CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
130                 ISP_LOCK(isp);
131                 xpt_bus_deregister(cam_sim_path(sim));
132                 ISP_UNLOCK(isp);
133                 cam_sim_free(sim, FALSE);
134                 return (ENXIO);
135         }
136         xpt_setup_ccb(&csa.ccb_h, path, 5);
137         csa.ccb_h.func_code = XPT_SASYNC_CB;
138         csa.event_enable = AC_LOST_DEVICE;
139         csa.callback = isp_cam_async;
140         csa.callback_arg = sim;
141
142         ISP_LOCK(isp);
143         xpt_action((union ccb *)&csa);
144         ISP_UNLOCK(isp);
145
146         if (IS_SCSI(isp)) {
147                 struct isp_spi *spi = ISP_SPI_PC(isp, chan);
148                 spi->sim = sim;
149                 spi->path = path;
150 #ifdef  ISP_TARGET_MODE
151                 TAILQ_INIT(&spi->waitq);
152 #endif
153         } else {
154                 fcparam *fcp = FCPARAM(isp, chan);
155                 struct isp_fc *fc = ISP_FC_PC(isp, chan);
156                 struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(isp->isp_osinfo.dev);
157                 struct sysctl_oid *tree = device_get_sysctl_tree(isp->isp_osinfo.dev);
158                 char name[16];
159
160                 ISP_LOCK(isp);
161                 fc->sim = sim;
162                 fc->path = path;
163                 fc->isp = isp;
164                 fc->ready = 1;
165
166                 callout_init_mtx(&fc->gdt, &isp->isp_osinfo.lock, 0);
167                 TASK_INIT(&fc->gtask, 1, isp_gdt_task, fc);
168 #ifdef  ISP_TARGET_MODE
169                 TAILQ_INIT(&fc->waitq);
170 #endif
171                 isp_loop_changed(isp, chan);
172                 ISP_UNLOCK(isp);
173                 if (kproc_create(isp_kthread, fc, &fc->kproc, 0, 0,
174                     "%s_%d", device_get_nameunit(isp->isp_osinfo.dev), chan)) {
175                         xpt_free_path(fc->path);
176                         ISP_LOCK(isp);
177                         xpt_bus_deregister(cam_sim_path(fc->sim));
178                         ISP_UNLOCK(isp);
179                         cam_sim_free(fc->sim, FALSE);
180                         return (ENOMEM);
181                 }
182                 fc->num_threads += 1;
183                 if (chan > 0) {
184                         snprintf(name, sizeof(name), "chan%d", chan);
185                         tree = SYSCTL_ADD_NODE(ctx, SYSCTL_CHILDREN(tree),
186                             OID_AUTO, name, CTLFLAG_RW, 0, "Virtual channel");
187                 }
188                 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
189                     "wwnn", CTLFLAG_RD, &fcp->isp_wwnn,
190                     "World Wide Node Name");
191                 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
192                     "wwpn", CTLFLAG_RD, &fcp->isp_wwpn,
193                     "World Wide Port Name");
194                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
195                     "loop_down_limit", CTLFLAG_RW, &fc->loop_down_limit, 0,
196                     "Loop Down Limit");
197                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
198                     "gone_device_time", CTLFLAG_RW, &fc->gone_device_time, 0,
199                     "Gone Device Time");
200 #if defined(ISP_TARGET_MODE) && defined(DEBUG)
201                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
202                     "inject_lost_data_frame", CTLFLAG_RW, &fc->inject_lost_data_frame, 0,
203                     "Cause a Lost Frame on a Read");
204 #endif
205                 SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
206                     "role", CTLTYPE_INT | CTLFLAG_RW, isp, chan,
207                     isp_role_sysctl, "I", "Current role");
208                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
209                     "speed", CTLFLAG_RD, &fcp->isp_gbspeed, 0,
210                     "Connection speed in gigabits");
211                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
212                     "linkstate", CTLFLAG_RD, &fcp->isp_linkstate, 0,
213                     "Link state");
214                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
215                     "fwstate", CTLFLAG_RD, &fcp->isp_fwstate, 0,
216                     "Firmware state");
217                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
218                     "loopstate", CTLFLAG_RD, &fcp->isp_loopstate, 0,
219                     "Loop state");
220                 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
221                     "topo", CTLFLAG_RD, &fcp->isp_topo, 0,
222                     "Connection topology");
223         }
224         return (0);
225 }
226
227 static void
228 isp_detach_chan(ispsoftc_t *isp, int chan)
229 {
230         struct cam_sim *sim;
231         struct cam_path *path;
232         struct ccb_setasync csa;
233         int *num_threads;
234
235         ISP_GET_PC(isp, chan, sim, sim);
236         ISP_GET_PC(isp, chan, path, path);
237         ISP_GET_PC_ADDR(isp, chan, num_threads, num_threads);
238
239         xpt_setup_ccb(&csa.ccb_h, path, 5);
240         csa.ccb_h.func_code = XPT_SASYNC_CB;
241         csa.event_enable = 0;
242         csa.callback = isp_cam_async;
243         csa.callback_arg = sim;
244         xpt_action((union ccb *)&csa);
245         xpt_free_path(path);
246         xpt_bus_deregister(cam_sim_path(sim));
247         cam_sim_free(sim, FALSE);
248
249         /* Wait for the channel's spawned threads to exit. */
250         wakeup(isp->isp_osinfo.pc.ptr);
251         while (*num_threads != 0)
252                 mtx_sleep(isp, &isp->isp_osinfo.lock, PRIBIO, "isp_reap", 100);
253 }
254
255 int
256 isp_attach(ispsoftc_t *isp)
257 {
258         const char *nu = device_get_nameunit(isp->isp_osinfo.dev);
259         int du = device_get_unit(isp->isp_dev);
260         int chan;
261
262         isp->isp_osinfo.ehook.ich_func = isp_intr_enable;
263         isp->isp_osinfo.ehook.ich_arg = isp;
264         /*
265          * Haha. Set this first, because if we're loaded as a module isp_intr_enable
266          * will be called right awawy, which will clear isp_osinfo.ehook_active,
267          * which would be unwise to then set again later.
268          */
269         isp->isp_osinfo.ehook_active = 1;
270         if (config_intrhook_establish(&isp->isp_osinfo.ehook) != 0) {
271                 isp_prt(isp, ISP_LOGERR, "could not establish interrupt enable hook");
272                 return (-EIO);
273         }
274
275         /*
276          * Create the device queue for our SIM(s).
277          */
278         isp->isp_osinfo.devq = cam_simq_alloc(isp->isp_maxcmds);
279         if (isp->isp_osinfo.devq == NULL) {
280                 config_intrhook_disestablish(&isp->isp_osinfo.ehook);
281                 return (EIO);
282         }
283
284         for (chan = 0; chan < isp->isp_nchan; chan++) {
285                 if (isp_attach_chan(isp, isp->isp_osinfo.devq, chan)) {
286                         goto unwind;
287                 }
288         }
289
290         callout_init_mtx(&isp->isp_osinfo.tmo, &isp->isp_osinfo.lock, 0);
291         isp_timer_count = hz >> 2;
292         callout_reset(&isp->isp_osinfo.tmo, isp_timer_count, isp_timer, isp);
293         isp->isp_osinfo.timer_active = 1;
294
295         isp->isp_osinfo.cdev = make_dev(&isp_cdevsw, du, UID_ROOT, GID_OPERATOR, 0600, "%s", nu);
296         if (isp->isp_osinfo.cdev) {
297                 isp->isp_osinfo.cdev->si_drv1 = isp;
298         }
299         return (0);
300
301 unwind:
302         while (--chan >= 0) {
303                 struct cam_sim *sim;
304                 struct cam_path *path;
305
306                 ISP_GET_PC(isp, chan, sim, sim);
307                 ISP_GET_PC(isp, chan, path, path);
308                 xpt_free_path(path);
309                 ISP_LOCK(isp);
310                 xpt_bus_deregister(cam_sim_path(sim));
311                 ISP_UNLOCK(isp);
312                 cam_sim_free(sim, FALSE);
313         }
314         if (isp->isp_osinfo.ehook_active) {
315                 config_intrhook_disestablish(&isp->isp_osinfo.ehook);
316                 isp->isp_osinfo.ehook_active = 0;
317         }
318         if (isp->isp_osinfo.cdev) {
319                 destroy_dev(isp->isp_osinfo.cdev);
320                 isp->isp_osinfo.cdev = NULL;
321         }
322         cam_simq_free(isp->isp_osinfo.devq);
323         isp->isp_osinfo.devq = NULL;
324         return (-1);
325 }
326
327 int
328 isp_detach(ispsoftc_t *isp)
329 {
330         struct cam_sim *sim;
331         int chan;
332
333         ISP_LOCK(isp);
334         for (chan = isp->isp_nchan - 1; chan >= 0; chan -= 1) {
335                 ISP_GET_PC(isp, chan, sim, sim);
336                 if (sim->refcount > 2) {
337                         ISP_UNLOCK(isp);
338                         return (EBUSY);
339                 }
340         }
341         /* Tell spawned threads that we're exiting. */
342         isp->isp_osinfo.is_exiting = 1;
343         if (isp->isp_osinfo.timer_active) {
344                 callout_stop(&isp->isp_osinfo.tmo);
345                 isp->isp_osinfo.timer_active = 0;
346         }
347         for (chan = isp->isp_nchan - 1; chan >= 0; chan -= 1)
348                 isp_detach_chan(isp, chan);
349         ISP_UNLOCK(isp);
350
351         if (isp->isp_osinfo.cdev) {
352                 destroy_dev(isp->isp_osinfo.cdev);
353                 isp->isp_osinfo.cdev = NULL;
354         }
355         if (isp->isp_osinfo.ehook_active) {
356                 config_intrhook_disestablish(&isp->isp_osinfo.ehook);
357                 isp->isp_osinfo.ehook_active = 0;
358         }
359         if (isp->isp_osinfo.devq != NULL) {
360                 cam_simq_free(isp->isp_osinfo.devq);
361                 isp->isp_osinfo.devq = NULL;
362         }
363         return (0);
364 }
365
366 static void
367 isp_freeze_loopdown(ispsoftc_t *isp, int chan)
368 {
369         if (IS_FC(isp)) {
370                 struct isp_fc *fc = ISP_FC_PC(isp, chan);
371                 if (fc->simqfrozen == 0) {
372                         isp_prt(isp, ISP_LOGDEBUG0,
373                             "Chan %d Freeze simq (loopdown)", chan);
374                         fc->simqfrozen = SIMQFRZ_LOOPDOWN;
375 #if __FreeBSD_version >= 1000039
376                         xpt_hold_boot();
377 #endif
378                         xpt_freeze_simq(fc->sim, 1);
379                 } else {
380                         isp_prt(isp, ISP_LOGDEBUG0,
381                             "Chan %d Mark simq frozen (loopdown)", chan);
382                         fc->simqfrozen |= SIMQFRZ_LOOPDOWN;
383                 }
384         }
385 }
386
387 static void
388 isp_unfreeze_loopdown(ispsoftc_t *isp, int chan)
389 {
390         if (IS_FC(isp)) {
391                 struct isp_fc *fc = ISP_FC_PC(isp, chan);
392                 int wasfrozen = fc->simqfrozen & SIMQFRZ_LOOPDOWN;
393                 fc->simqfrozen &= ~SIMQFRZ_LOOPDOWN;
394                 if (wasfrozen && fc->simqfrozen == 0) {
395                         isp_prt(isp, ISP_LOGDEBUG0,
396                             "Chan %d Release simq", chan);
397                         xpt_release_simq(fc->sim, 1);
398 #if __FreeBSD_version >= 1000039
399                         xpt_release_boot();
400 #endif
401                 }
402         }
403 }
404
405
406 static int
407 ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td)
408 {
409         ispsoftc_t *isp;
410         int nr, chan, retval = ENOTTY;
411
412         isp = dev->si_drv1;
413
414         switch (c) {
415         case ISP_SDBLEV:
416         {
417                 int olddblev = isp->isp_dblev;
418                 isp->isp_dblev = *(int *)addr;
419                 *(int *)addr = olddblev;
420                 retval = 0;
421                 break;
422         }
423         case ISP_GETROLE:
424                 chan = *(int *)addr;
425                 if (chan < 0 || chan >= isp->isp_nchan) {
426                         retval = -ENXIO;
427                         break;
428                 }
429                 if (IS_FC(isp)) {
430                         *(int *)addr = FCPARAM(isp, chan)->role;
431                 } else {
432                         *(int *)addr = ISP_ROLE_INITIATOR;
433                 }
434                 retval = 0;
435                 break;
436         case ISP_SETROLE:
437                 if (IS_SCSI(isp))
438                         break;
439                 nr = *(int *)addr;
440                 chan = nr >> 8;
441                 if (chan < 0 || chan >= isp->isp_nchan) {
442                         retval = -ENXIO;
443                         break;
444                 }
445                 nr &= 0xff;
446                 if (nr & ~(ISP_ROLE_INITIATOR|ISP_ROLE_TARGET)) {
447                         retval = EINVAL;
448                         break;
449                 }
450                 ISP_LOCK(isp);
451                 *(int *)addr = FCPARAM(isp, chan)->role;
452                 retval = isp_control(isp, ISPCTL_CHANGE_ROLE, chan, nr);
453                 ISP_UNLOCK(isp);
454                 retval = 0;
455                 break;
456
457         case ISP_RESETHBA:
458                 ISP_LOCK(isp);
459                 isp_reinit(isp, 0);
460                 ISP_UNLOCK(isp);
461                 retval = 0;
462                 break;
463
464         case ISP_RESCAN:
465                 if (IS_FC(isp)) {
466                         chan = *(int *)addr;
467                         if (chan < 0 || chan >= isp->isp_nchan) {
468                                 retval = -ENXIO;
469                                 break;
470                         }
471                         ISP_LOCK(isp);
472                         if (isp_fc_runstate(isp, chan, 5 * 1000000) != LOOP_READY) {
473                                 retval = EIO;
474                         } else {
475                                 retval = 0;
476                         }
477                         ISP_UNLOCK(isp);
478                 }
479                 break;
480
481         case ISP_FC_LIP:
482                 if (IS_FC(isp)) {
483                         chan = *(int *)addr;
484                         if (chan < 0 || chan >= isp->isp_nchan) {
485                                 retval = -ENXIO;
486                                 break;
487                         }
488                         ISP_LOCK(isp);
489                         if (isp_control(isp, ISPCTL_SEND_LIP, chan)) {
490                                 retval = EIO;
491                         } else {
492                                 retval = 0;
493                         }
494                         ISP_UNLOCK(isp);
495                 }
496                 break;
497         case ISP_FC_GETDINFO:
498         {
499                 struct isp_fc_device *ifc = (struct isp_fc_device *) addr;
500                 fcportdb_t *lp;
501
502                 if (IS_SCSI(isp)) {
503                         break;
504                 }
505                 if (ifc->loopid >= MAX_FC_TARG) {
506                         retval = EINVAL;
507                         break;
508                 }
509                 lp = &FCPARAM(isp, ifc->chan)->portdb[ifc->loopid];
510                 if (lp->state != FC_PORTDB_STATE_NIL) {
511                         ifc->role = (lp->prli_word3 & SVC3_ROLE_MASK) >> SVC3_ROLE_SHIFT;
512                         ifc->loopid = lp->handle;
513                         ifc->portid = lp->portid;
514                         ifc->node_wwn = lp->node_wwn;
515                         ifc->port_wwn = lp->port_wwn;
516                         retval = 0;
517                 } else {
518                         retval = ENODEV;
519                 }
520                 break;
521         }
522         case ISP_GET_STATS:
523         {
524                 isp_stats_t *sp = (isp_stats_t *) addr;
525
526                 ISP_MEMZERO(sp, sizeof (*sp));
527                 sp->isp_stat_version = ISP_STATS_VERSION;
528                 sp->isp_type = isp->isp_type;
529                 sp->isp_revision = isp->isp_revision;
530                 ISP_LOCK(isp);
531                 sp->isp_stats[ISP_INTCNT] = isp->isp_intcnt;
532                 sp->isp_stats[ISP_INTBOGUS] = isp->isp_intbogus;
533                 sp->isp_stats[ISP_INTMBOXC] = isp->isp_intmboxc;
534                 sp->isp_stats[ISP_INGOASYNC] = isp->isp_intoasync;
535                 sp->isp_stats[ISP_RSLTCCMPLT] = isp->isp_rsltccmplt;
536                 sp->isp_stats[ISP_FPHCCMCPLT] = isp->isp_fphccmplt;
537                 sp->isp_stats[ISP_RSCCHIWAT] = isp->isp_rscchiwater;
538                 sp->isp_stats[ISP_FPCCHIWAT] = isp->isp_fpcchiwater;
539                 ISP_UNLOCK(isp);
540                 retval = 0;
541                 break;
542         }
543         case ISP_CLR_STATS:
544                 ISP_LOCK(isp);
545                 isp->isp_intcnt = 0;
546                 isp->isp_intbogus = 0;
547                 isp->isp_intmboxc = 0;
548                 isp->isp_intoasync = 0;
549                 isp->isp_rsltccmplt = 0;
550                 isp->isp_fphccmplt = 0;
551                 isp->isp_rscchiwater = 0;
552                 isp->isp_fpcchiwater = 0;
553                 ISP_UNLOCK(isp);
554                 retval = 0;
555                 break;
556         case ISP_FC_GETHINFO:
557         {
558                 struct isp_hba_device *hba = (struct isp_hba_device *) addr;
559                 int chan = hba->fc_channel;
560
561                 if (chan < 0 || chan >= isp->isp_nchan) {
562                         retval = ENXIO;
563                         break;
564                 }
565                 hba->fc_fw_major = ISP_FW_MAJORX(isp->isp_fwrev);
566                 hba->fc_fw_minor = ISP_FW_MINORX(isp->isp_fwrev);
567                 hba->fc_fw_micro = ISP_FW_MICROX(isp->isp_fwrev);
568                 hba->fc_nchannels = isp->isp_nchan;
569                 if (IS_FC(isp)) {
570                         hba->fc_nports = MAX_FC_TARG;
571                         hba->fc_speed = FCPARAM(isp, hba->fc_channel)->isp_gbspeed;
572                         hba->fc_topology = FCPARAM(isp, chan)->isp_topo + 1;
573                         hba->fc_loopid = FCPARAM(isp, chan)->isp_loopid;
574                         hba->nvram_node_wwn = FCPARAM(isp, chan)->isp_wwnn_nvram;
575                         hba->nvram_port_wwn = FCPARAM(isp, chan)->isp_wwpn_nvram;
576                         hba->active_node_wwn = FCPARAM(isp, chan)->isp_wwnn;
577                         hba->active_port_wwn = FCPARAM(isp, chan)->isp_wwpn;
578                 } else {
579                         hba->fc_nports = MAX_TARGETS;
580                         hba->fc_speed = 0;
581                         hba->fc_topology = 0;
582                         hba->nvram_node_wwn = 0ull;
583                         hba->nvram_port_wwn = 0ull;
584                         hba->active_node_wwn = 0ull;
585                         hba->active_port_wwn = 0ull;
586                 }
587                 retval = 0;
588                 break;
589         }
590         case ISP_TSK_MGMT:
591         {
592                 int needmarker;
593                 struct isp_fc_tsk_mgmt *fct = (struct isp_fc_tsk_mgmt *) addr;
594                 uint16_t nphdl;
595                 mbreg_t mbs;
596
597                 if (IS_SCSI(isp)) {
598                         break;
599                 }
600
601                 chan = fct->chan;
602                 if (chan < 0 || chan >= isp->isp_nchan) {
603                         retval = -ENXIO;
604                         break;
605                 }
606
607                 needmarker = retval = 0;
608                 nphdl = fct->loopid;
609                 ISP_LOCK(isp);
610                 if (IS_24XX(isp)) {
611                         void *reqp;
612                         uint8_t resp[QENTRY_LEN];
613                         isp24xx_tmf_t tmf;
614                         isp24xx_statusreq_t sp;
615                         fcparam *fcp = FCPARAM(isp, chan);
616                         fcportdb_t *lp;
617                         int i;
618
619                         for (i = 0; i < MAX_FC_TARG; i++) {
620                                 lp = &fcp->portdb[i];
621                                 if (lp->handle == nphdl) {
622                                         break;
623                                 }
624                         }
625                         if (i == MAX_FC_TARG) {
626                                 retval = ENXIO;
627                                 ISP_UNLOCK(isp);
628                                 break;
629                         }
630                         ISP_MEMZERO(&tmf, sizeof(tmf));
631                         tmf.tmf_header.rqs_entry_type = RQSTYPE_TSK_MGMT;
632                         tmf.tmf_header.rqs_entry_count = 1;
633                         tmf.tmf_nphdl = lp->handle;
634                         tmf.tmf_delay = 2;
635                         tmf.tmf_timeout = 4;
636                         tmf.tmf_tidlo = lp->portid;
637                         tmf.tmf_tidhi = lp->portid >> 16;
638                         tmf.tmf_vpidx = ISP_GET_VPIDX(isp, chan);
639                         tmf.tmf_lun[1] = fct->lun & 0xff;
640                         if (fct->lun >= 256) {
641                                 tmf.tmf_lun[0] = 0x40 | (fct->lun >> 8);
642                         }
643                         switch (fct->action) {
644                         case IPT_CLEAR_ACA:
645                                 tmf.tmf_flags = ISP24XX_TMF_CLEAR_ACA;
646                                 break;
647                         case IPT_TARGET_RESET:
648                                 tmf.tmf_flags = ISP24XX_TMF_TARGET_RESET;
649                                 needmarker = 1;
650                                 break;
651                         case IPT_LUN_RESET:
652                                 tmf.tmf_flags = ISP24XX_TMF_LUN_RESET;
653                                 needmarker = 1;
654                                 break;
655                         case IPT_CLEAR_TASK_SET:
656                                 tmf.tmf_flags = ISP24XX_TMF_CLEAR_TASK_SET;
657                                 needmarker = 1;
658                                 break;
659                         case IPT_ABORT_TASK_SET:
660                                 tmf.tmf_flags = ISP24XX_TMF_ABORT_TASK_SET;
661                                 needmarker = 1;
662                                 break;
663                         default:
664                                 retval = EINVAL;
665                                 break;
666                         }
667                         if (retval) {
668                                 ISP_UNLOCK(isp);
669                                 break;
670                         }
671
672                         /* Prepare space for response in memory */
673                         memset(resp, 0xff, sizeof(resp));
674                         tmf.tmf_handle = isp_allocate_handle(isp, resp,
675                             ISP_HANDLE_CTRL);
676                         if (tmf.tmf_handle == 0) {
677                                 isp_prt(isp, ISP_LOGERR,
678                                     "%s: TMF of Chan %d out of handles",
679                                     __func__, chan);
680                                 ISP_UNLOCK(isp);
681                                 retval = ENOMEM;
682                                 break;
683                         }
684
685                         /* Send request and wait for response. */
686                         reqp = isp_getrqentry(isp);
687                         if (reqp == NULL) {
688                                 isp_prt(isp, ISP_LOGERR,
689                                     "%s: TMF of Chan %d out of rqent",
690                                     __func__, chan);
691                                 isp_destroy_handle(isp, tmf.tmf_handle);
692                                 ISP_UNLOCK(isp);
693                                 retval = EIO;
694                                 break;
695                         }
696                         isp_put_24xx_tmf(isp, &tmf, (isp24xx_tmf_t *)reqp);
697                         if (isp->isp_dblev & ISP_LOGDEBUG1)
698                                 isp_print_bytes(isp, "IOCB TMF", QENTRY_LEN, reqp);
699                         ISP_SYNC_REQUEST(isp);
700                         if (msleep(resp, &isp->isp_lock, 0, "TMF", 5*hz) == EWOULDBLOCK) {
701                                 isp_prt(isp, ISP_LOGERR,
702                                     "%s: TMF of Chan %d timed out",
703                                     __func__, chan);
704                                 isp_destroy_handle(isp, tmf.tmf_handle);
705                                 ISP_UNLOCK(isp);
706                                 retval = EIO;
707                                 break;
708                         }
709                         if (isp->isp_dblev & ISP_LOGDEBUG1)
710                                 isp_print_bytes(isp, "IOCB TMF response", QENTRY_LEN, resp);
711                         isp_get_24xx_response(isp, (isp24xx_statusreq_t *)resp, &sp);
712
713                         if (sp.req_completion_status != 0)
714                                 retval = EIO;
715                         else if (needmarker)
716                                 fcp->sendmarker = 1;
717                 } else {
718                         MBSINIT(&mbs, 0, MBLOGALL, 0);
719                         if (ISP_CAP_2KLOGIN(isp) == 0) {
720                                 nphdl <<= 8;
721                         }
722                         switch (fct->action) {
723                         case IPT_CLEAR_ACA:
724                                 mbs.param[0] = MBOX_CLEAR_ACA;
725                                 mbs.param[1] = nphdl;
726                                 mbs.param[2] = fct->lun;
727                                 break;
728                         case IPT_TARGET_RESET:
729                                 mbs.param[0] = MBOX_TARGET_RESET;
730                                 mbs.param[1] = nphdl;
731                                 needmarker = 1;
732                                 break;
733                         case IPT_LUN_RESET:
734                                 mbs.param[0] = MBOX_LUN_RESET;
735                                 mbs.param[1] = nphdl;
736                                 mbs.param[2] = fct->lun;
737                                 needmarker = 1;
738                                 break;
739                         case IPT_CLEAR_TASK_SET:
740                                 mbs.param[0] = MBOX_CLEAR_TASK_SET;
741                                 mbs.param[1] = nphdl;
742                                 mbs.param[2] = fct->lun;
743                                 needmarker = 1;
744                                 break;
745                         case IPT_ABORT_TASK_SET:
746                                 mbs.param[0] = MBOX_ABORT_TASK_SET;
747                                 mbs.param[1] = nphdl;
748                                 mbs.param[2] = fct->lun;
749                                 needmarker = 1;
750                                 break;
751                         default:
752                                 retval = EINVAL;
753                                 break;
754                         }
755                         if (retval == 0) {
756                                 if (needmarker) {
757                                         FCPARAM(isp, chan)->sendmarker = 1;
758                                 }
759                                 retval = isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs);
760                                 if (retval) {
761                                         retval = EIO;
762                                 }
763                         }
764                 }
765                 ISP_UNLOCK(isp);
766                 break;
767         }
768         default:
769                 break;
770         }
771         return (retval);
772 }
773
774 static void
775 isp_intr_enable(void *arg)
776 {
777         int chan;
778         ispsoftc_t *isp = arg;
779         ISP_LOCK(isp);
780         if (IS_FC(isp)) {
781                 for (chan = 0; chan < isp->isp_nchan; chan++) {
782                         if (FCPARAM(isp, chan)->role != ISP_ROLE_NONE) {
783                                 ISP_ENABLE_INTS(isp);
784                                 break;
785                         }
786                 }
787         } else {
788                 ISP_ENABLE_INTS(isp);
789         }
790         isp->isp_osinfo.ehook_active = 0;
791         ISP_UNLOCK(isp);
792         /* Release our hook so that the boot can continue. */
793         config_intrhook_disestablish(&isp->isp_osinfo.ehook);
794 }
795
796 /*
797  * Local Inlines
798  */
799
800 static ISP_INLINE int isp_get_pcmd(ispsoftc_t *, union ccb *);
801 static ISP_INLINE void isp_free_pcmd(ispsoftc_t *, union ccb *);
802
803 static ISP_INLINE int
804 isp_get_pcmd(ispsoftc_t *isp, union ccb *ccb)
805 {
806         ISP_PCMD(ccb) = isp->isp_osinfo.pcmd_free;
807         if (ISP_PCMD(ccb) == NULL) {
808                 return (-1);
809         }
810         isp->isp_osinfo.pcmd_free = ((struct isp_pcmd *)ISP_PCMD(ccb))->next;
811         return (0);
812 }
813
814 static ISP_INLINE void
815 isp_free_pcmd(ispsoftc_t *isp, union ccb *ccb)
816 {
817         if (ISP_PCMD(ccb)) {
818 #ifdef  ISP_TARGET_MODE
819                 PISP_PCMD(ccb)->datalen = 0;
820                 PISP_PCMD(ccb)->totslen = 0;
821                 PISP_PCMD(ccb)->cumslen = 0;
822                 PISP_PCMD(ccb)->crn = 0;
823 #endif
824                 PISP_PCMD(ccb)->next = isp->isp_osinfo.pcmd_free;
825                 isp->isp_osinfo.pcmd_free = ISP_PCMD(ccb);
826                 ISP_PCMD(ccb) = NULL;
827         }
828 }
829
830 /*
831  * Put the target mode functions here, because some are inlines
832  */
833 #ifdef  ISP_TARGET_MODE
834 static ISP_INLINE int is_lun_enabled(ispsoftc_t *, int, lun_id_t);
835 static ISP_INLINE tstate_t *get_lun_statep(ispsoftc_t *, int, lun_id_t);
836 static ISP_INLINE tstate_t *get_lun_statep_from_tag(ispsoftc_t *, int, uint32_t);
837 static ISP_INLINE void rls_lun_statep(ispsoftc_t *, tstate_t *);
838 static ISP_INLINE inot_private_data_t *get_ntp_from_tagdata(ispsoftc_t *, uint32_t, uint32_t, tstate_t **);
839 static ISP_INLINE atio_private_data_t *isp_get_atpd(ispsoftc_t *, tstate_t *, uint32_t);
840 static ISP_INLINE atio_private_data_t *isp_find_atpd(ispsoftc_t *, tstate_t *, uint32_t);
841 static ISP_INLINE void isp_put_atpd(ispsoftc_t *, tstate_t *, atio_private_data_t *);
842 static ISP_INLINE inot_private_data_t *isp_get_ntpd(ispsoftc_t *, tstate_t *);
843 static ISP_INLINE inot_private_data_t *isp_find_ntpd(ispsoftc_t *, tstate_t *, uint32_t, uint32_t);
844 static ISP_INLINE void isp_put_ntpd(ispsoftc_t *, tstate_t *, inot_private_data_t *);
845 static cam_status create_lun_state(ispsoftc_t *, int, struct cam_path *, tstate_t **);
846 static void destroy_lun_state(ispsoftc_t *, tstate_t *);
847 static void isp_enable_lun(ispsoftc_t *, union ccb *);
848 static void isp_disable_lun(ispsoftc_t *, union ccb *);
849 static timeout_t isp_refire_putback_atio;
850 static timeout_t isp_refire_notify_ack;
851 static void isp_complete_ctio(union ccb *);
852 static void isp_target_putback_atio(union ccb *);
853 enum Start_Ctio_How { FROM_CAM, FROM_TIMER, FROM_SRR, FROM_CTIO_DONE };
854 static void isp_target_start_ctio(ispsoftc_t *, union ccb *, enum Start_Ctio_How);
855 static void isp_handle_platform_atio2(ispsoftc_t *, at2_entry_t *);
856 static void isp_handle_platform_atio7(ispsoftc_t *, at7_entry_t *);
857 static void isp_handle_platform_ctio(ispsoftc_t *, void *);
858 static void isp_handle_platform_notify_fc(ispsoftc_t *, in_fcentry_t *);
859 static void isp_handle_platform_notify_24xx(ispsoftc_t *, in_fcentry_24xx_t *);
860 static int isp_handle_platform_target_notify_ack(ispsoftc_t *, isp_notify_t *, uint32_t rsp);
861 static void isp_handle_platform_target_tmf(ispsoftc_t *, isp_notify_t *);
862 static void isp_target_mark_aborted(ispsoftc_t *, union ccb *);
863 static void isp_target_mark_aborted_early(ispsoftc_t *, tstate_t *, uint32_t);
864
865 static ISP_INLINE int
866 is_lun_enabled(ispsoftc_t *isp, int bus, lun_id_t lun)
867 {
868         tstate_t *tptr;
869         struct tslist *lhp;
870
871         ISP_GET_PC_ADDR(isp, bus, lun_hash[LUN_HASH_FUNC(lun)], lhp);
872         SLIST_FOREACH(tptr, lhp, next) {
873                 if (tptr->ts_lun == lun) {
874                         return (1);
875                 }
876         }
877         return (0);
878 }
879
880 static void
881 dump_tstates(ispsoftc_t *isp, int bus)
882 {
883         int i, j;
884         struct tslist *lhp;
885         tstate_t *tptr = NULL;
886
887         if (bus >= isp->isp_nchan) {
888                 return;
889         }
890         for (i = 0; i < LUN_HASH_SIZE; i++) {
891                 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp);
892                 j = 0;
893                 SLIST_FOREACH(tptr, lhp, next) {
894                         xpt_print(tptr->owner, "[%d, %d] atio_cnt=%d inot_cnt=%d\n", i, j, tptr->atio_count, tptr->inot_count);
895                         j++;
896                 }
897         }
898 }
899
900 static ISP_INLINE tstate_t *
901 get_lun_statep(ispsoftc_t *isp, int bus, lun_id_t lun)
902 {
903         tstate_t *tptr = NULL;
904         struct tslist *lhp;
905
906         if (bus < isp->isp_nchan) {
907                 ISP_GET_PC_ADDR(isp, bus, lun_hash[LUN_HASH_FUNC(lun)], lhp);
908                 SLIST_FOREACH(tptr, lhp, next) {
909                         if (tptr->ts_lun == lun) {
910                                 tptr->hold++;
911                                 return (tptr);
912                         }
913                 }
914         }
915         return (NULL);
916 }
917
918 static ISP_INLINE tstate_t *
919 get_lun_statep_from_tag(ispsoftc_t *isp, int bus, uint32_t tagval)
920 {
921         tstate_t *tptr = NULL;
922         atio_private_data_t *atp;
923         struct tslist *lhp;
924         int i;
925
926         if (bus < isp->isp_nchan && tagval != 0) {
927                 for (i = 0; i < LUN_HASH_SIZE; i++) {
928                         ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp);
929                         SLIST_FOREACH(tptr, lhp, next) {
930                                 atp = isp_find_atpd(isp, tptr, tagval);
931                                 if (atp) {
932                                         tptr->hold++;
933                                         return (tptr);
934                                 }
935                         }
936                 }
937         }
938         return (NULL);
939 }
940
941 static ISP_INLINE inot_private_data_t *
942 get_ntp_from_tagdata(ispsoftc_t *isp, uint32_t tag_id, uint32_t seq_id, tstate_t **rslt)
943 {
944         inot_private_data_t *ntp;
945         tstate_t *tptr;
946         struct tslist *lhp;
947         int bus, i;
948
949         for (bus = 0; bus < isp->isp_nchan; bus++) {
950                 for (i = 0; i < LUN_HASH_SIZE; i++) {
951                         ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp);
952                         SLIST_FOREACH(tptr, lhp, next) {
953                                 ntp = isp_find_ntpd(isp, tptr, tag_id, seq_id);
954                                 if (ntp) {
955                                         *rslt = tptr;
956                                         tptr->hold++;
957                                         return (ntp);
958                                 }
959                         }
960                 }
961         }
962         return (NULL);
963 }
964
965 static ISP_INLINE void
966 rls_lun_statep(ispsoftc_t *isp, tstate_t *tptr)
967 {
968         KASSERT((tptr->hold), ("tptr not held"));
969         tptr->hold--;
970 }
971
972 static void
973 isp_tmcmd_restart(ispsoftc_t *isp)
974 {
975         inot_private_data_t *ntp;
976         inot_private_data_t *restart_queue;
977         tstate_t *tptr;
978         union ccb *ccb;
979         struct tslist *lhp;
980         struct isp_ccbq *waitq;
981         int bus, i;
982
983         for (bus = 0; bus < isp->isp_nchan; bus++) {
984                 for (i = 0; i < LUN_HASH_SIZE; i++) {
985                         ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp);
986                         SLIST_FOREACH(tptr, lhp, next) {
987                                 if ((restart_queue = tptr->restart_queue) != NULL)
988                                         tptr->restart_queue = NULL;
989                                 while (restart_queue) {
990                                         ntp = restart_queue;
991                                         restart_queue = ntp->rd.nt.nt_hba;
992                                         if (IS_24XX(isp)) {
993                                                 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at7_entry_t *)ntp->rd.data)->at_rxid);
994                                                 isp_handle_platform_atio7(isp, (at7_entry_t *) ntp->rd.data);
995                                         } else {
996                                                 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at2_entry_t *)ntp->rd.data)->at_rxid);
997                                                 isp_handle_platform_atio2(isp, (at2_entry_t *) ntp->rd.data);
998                                         }
999                                         isp_put_ntpd(isp, tptr, ntp);
1000                                         if (tptr->restart_queue && restart_queue != NULL) {
1001                                                 ntp = tptr->restart_queue;
1002                                                 tptr->restart_queue = restart_queue;
1003                                                 while (restart_queue->rd.nt.nt_hba) {
1004                                                         restart_queue = restart_queue->rd.nt.nt_hba;
1005                                                 }
1006                                                 restart_queue->rd.nt.nt_hba = ntp;
1007                                                 break;
1008                                         }
1009                                 }
1010                         }
1011                 }
1012
1013                 /*
1014                  * We only need to do this once per channel.
1015                  */
1016                 ISP_GET_PC_ADDR(isp, bus, waitq, waitq);
1017                 ccb = (union ccb *)TAILQ_FIRST(waitq);
1018                 if (ccb != NULL) {
1019                         TAILQ_REMOVE(waitq, &ccb->ccb_h, periph_links.tqe);
1020                         isp_target_start_ctio(isp, ccb, FROM_TIMER);
1021                 }
1022         }
1023 }
1024
1025 static ISP_INLINE atio_private_data_t *
1026 isp_get_atpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag)
1027 {
1028         atio_private_data_t *atp;
1029
1030         atp = LIST_FIRST(&tptr->atfree);
1031         if (atp) {
1032                 LIST_REMOVE(atp, next);
1033                 atp->tag = tag;
1034                 LIST_INSERT_HEAD(&tptr->atused[ATPDPHASH(tag)], atp, next);
1035         }
1036         return (atp);
1037 }
1038
1039 static ISP_INLINE atio_private_data_t *
1040 isp_find_atpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag)
1041 {
1042         atio_private_data_t *atp;
1043
1044         LIST_FOREACH(atp, &tptr->atused[ATPDPHASH(tag)], next) {
1045                 if (atp->tag == tag)
1046                         return (atp);
1047         }
1048         return (NULL);
1049 }
1050
1051 static ISP_INLINE void
1052 isp_put_atpd(ispsoftc_t *isp, tstate_t *tptr, atio_private_data_t *atp)
1053 {
1054         if (atp->ests) {
1055                 isp_put_ecmd(isp, atp->ests);
1056         }
1057         LIST_REMOVE(atp, next);
1058         memset(atp, 0, sizeof (*atp));
1059         LIST_INSERT_HEAD(&tptr->atfree, atp, next);
1060 }
1061
1062 static void
1063 isp_dump_atpd(ispsoftc_t *isp, tstate_t *tptr)
1064 {
1065         atio_private_data_t *atp;
1066         const char *states[8] = { "Free", "ATIO", "CAM", "CTIO", "LAST_CTIO", "PDON", "?6", "7" };
1067
1068         for (atp = tptr->atpool; atp < &tptr->atpool[ATPDPSIZE]; atp++) {
1069                 xpt_print(tptr->owner, "ATP: [0x%x] origdlen %u bytes_xfrd %u lun %x nphdl 0x%04x s_id 0x%06x d_id 0x%06x oxid 0x%04x state %s\n",
1070                     atp->tag, atp->orig_datalen, atp->bytes_xfered, atp->lun, atp->nphdl, atp->sid, atp->portid, atp->oxid, states[atp->state & 0x7]);
1071         }
1072 }
1073
1074
1075 static ISP_INLINE inot_private_data_t *
1076 isp_get_ntpd(ispsoftc_t *isp, tstate_t *tptr)
1077 {
1078         inot_private_data_t *ntp;
1079         ntp = tptr->ntfree;
1080         if (ntp) {
1081                 tptr->ntfree = ntp->next;
1082         }
1083         return (ntp);
1084 }
1085
1086 static ISP_INLINE inot_private_data_t *
1087 isp_find_ntpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag_id, uint32_t seq_id)
1088 {
1089         inot_private_data_t *ntp;
1090         for (ntp = tptr->ntpool; ntp < &tptr->ntpool[ATPDPSIZE]; ntp++) {
1091                 if (ntp->rd.tag_id == tag_id && ntp->rd.seq_id == seq_id) {
1092                         return (ntp);
1093                 }
1094         }
1095         return (NULL);
1096 }
1097
1098 static ISP_INLINE void
1099 isp_put_ntpd(ispsoftc_t *isp, tstate_t *tptr, inot_private_data_t *ntp)
1100 {
1101         ntp->rd.tag_id = ntp->rd.seq_id = 0;
1102         ntp->next = tptr->ntfree;
1103         tptr->ntfree = ntp;
1104 }
1105
1106 static cam_status
1107 create_lun_state(ispsoftc_t *isp, int bus, struct cam_path *path, tstate_t **rslt)
1108 {
1109         cam_status status;
1110         lun_id_t lun;
1111         struct tslist *lhp;
1112         tstate_t *tptr;
1113         int i;
1114
1115         lun = xpt_path_lun_id(path);
1116         if (lun != CAM_LUN_WILDCARD) {
1117                 if (ISP_MAX_LUNS(isp) > 0 && lun >= ISP_MAX_LUNS(isp)) {
1118                         return (CAM_LUN_INVALID);
1119                 }
1120         }
1121         if (is_lun_enabled(isp, bus, lun)) {
1122                 return (CAM_LUN_ALRDY_ENA);
1123         }
1124         tptr = malloc(sizeof (tstate_t), M_DEVBUF, M_NOWAIT|M_ZERO);
1125         if (tptr == NULL) {
1126                 return (CAM_RESRC_UNAVAIL);
1127         }
1128         tptr->ts_lun = lun;
1129         status = xpt_create_path(&tptr->owner, NULL, xpt_path_path_id(path), xpt_path_target_id(path), lun);
1130         if (status != CAM_REQ_CMP) {
1131                 free(tptr, M_DEVBUF);
1132                 return (status);
1133         }
1134         SLIST_INIT(&tptr->atios);
1135         SLIST_INIT(&tptr->inots);
1136         LIST_INIT(&tptr->atfree);
1137         for (i = ATPDPSIZE-1; i >= 0; i--)
1138                 LIST_INSERT_HEAD(&tptr->atfree, &tptr->atpool[i], next);
1139         for (i = 0; i < ATPDPHASHSIZE; i++)
1140                 LIST_INIT(&tptr->atused[i]);
1141         for (i = 0; i < ATPDPSIZE-1; i++)
1142                 tptr->ntpool[i].next = &tptr->ntpool[i+1];
1143         tptr->ntfree = tptr->ntpool;
1144         tptr->hold = 1;
1145         ISP_GET_PC_ADDR(isp, bus, lun_hash[LUN_HASH_FUNC(lun)], lhp);
1146         SLIST_INSERT_HEAD(lhp, tptr, next);
1147         *rslt = tptr;
1148         ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, path, "created tstate\n");
1149         return (CAM_REQ_CMP);
1150 }
1151
1152 static ISP_INLINE void
1153 destroy_lun_state(ispsoftc_t *isp, tstate_t *tptr)
1154 {
1155         union ccb *ccb;
1156         struct tslist *lhp;
1157
1158         KASSERT((tptr->hold != 0), ("tptr is not held"));
1159         KASSERT((tptr->hold == 1), ("tptr still held (%d)", tptr->hold));
1160         do {
1161                 ccb = (union ccb *)SLIST_FIRST(&tptr->atios);
1162                 if (ccb) {
1163                         SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
1164                         ccb->ccb_h.status = CAM_REQ_ABORTED;
1165                         xpt_done(ccb);
1166                 }
1167         } while (ccb);
1168         do {
1169                 ccb = (union ccb *)SLIST_FIRST(&tptr->inots);
1170                 if (ccb) {
1171                         SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle);
1172                         ccb->ccb_h.status = CAM_REQ_ABORTED;
1173                         xpt_done(ccb);
1174                 }
1175         } while (ccb);
1176         ISP_GET_PC_ADDR(isp, cam_sim_bus(xpt_path_sim(tptr->owner)), lun_hash[LUN_HASH_FUNC(tptr->ts_lun)], lhp);
1177         SLIST_REMOVE(lhp, tptr, tstate, next);
1178         ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, tptr->owner, "destroyed tstate\n");
1179         xpt_free_path(tptr->owner);
1180         free(tptr, M_DEVBUF);
1181 }
1182
1183 static void
1184 isp_enable_lun(ispsoftc_t *isp, union ccb *ccb)
1185 {
1186         tstate_t *tptr;
1187         int bus;
1188         target_id_t target;
1189         lun_id_t lun;
1190
1191         if (!IS_FC(isp) || !ISP_CAP_TMODE(isp) || !ISP_CAP_SCCFW(isp)) {
1192                 xpt_print(ccb->ccb_h.path, "Target mode is not supported\n");
1193                 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
1194                 xpt_done(ccb);
1195                 return;
1196         }
1197
1198         /*
1199          * We only support either target and lun both wildcard
1200          * or target and lun both non-wildcard.
1201          */
1202         bus = XS_CHANNEL(ccb);
1203         target = ccb->ccb_h.target_id;
1204         lun = ccb->ccb_h.target_lun;
1205         ISP_PATH_PRT(isp, ISP_LOGTDEBUG0|ISP_LOGCONFIG, ccb->ccb_h.path,
1206             "enabling lun %jx\n", (uintmax_t)lun);
1207         if ((target == CAM_TARGET_WILDCARD) != (lun == CAM_LUN_WILDCARD)) {
1208                 ccb->ccb_h.status = CAM_LUN_INVALID;
1209                 xpt_done(ccb);
1210                 return;
1211         }
1212
1213         /* Create the state pointer. It should not already exist. */
1214         tptr = get_lun_statep(isp, bus, lun);
1215         if (tptr) {
1216                 ccb->ccb_h.status = CAM_LUN_ALRDY_ENA;
1217                 xpt_done(ccb);
1218                 return;
1219         }
1220         ccb->ccb_h.status = create_lun_state(isp, bus, ccb->ccb_h.path, &tptr);
1221         if (ccb->ccb_h.status != CAM_REQ_CMP) {
1222                 xpt_done(ccb);
1223                 return;
1224         }
1225
1226         rls_lun_statep(isp, tptr);
1227         ccb->ccb_h.status = CAM_REQ_CMP;
1228         xpt_done(ccb);
1229 }
1230
1231 static void
1232 isp_disable_lun(ispsoftc_t *isp, union ccb *ccb)
1233 {
1234         tstate_t *tptr = NULL;
1235         int bus;
1236         target_id_t target;
1237         lun_id_t lun;
1238
1239         bus = XS_CHANNEL(ccb);
1240         target = ccb->ccb_h.target_id;
1241         lun = ccb->ccb_h.target_lun;
1242         ISP_PATH_PRT(isp, ISP_LOGTDEBUG0|ISP_LOGCONFIG, ccb->ccb_h.path,
1243             "disabling lun %jx\n", (uintmax_t)lun);
1244         if ((target == CAM_TARGET_WILDCARD) != (lun == CAM_LUN_WILDCARD)) {
1245                 ccb->ccb_h.status = CAM_LUN_INVALID;
1246                 xpt_done(ccb);
1247                 return;
1248         }
1249
1250         /* Find the state pointer. */
1251         if ((tptr = get_lun_statep(isp, bus, lun)) == NULL) {
1252                 ccb->ccb_h.status = CAM_PATH_INVALID;
1253                 xpt_done(ccb);
1254                 return;
1255         }
1256
1257         destroy_lun_state(isp, tptr);
1258         ccb->ccb_h.status = CAM_REQ_CMP;
1259         xpt_done(ccb);
1260 }
1261
1262 static void
1263 isp_target_start_ctio(ispsoftc_t *isp, union ccb *ccb, enum Start_Ctio_How how)
1264 {
1265         int fctape, sendstatus, resid;
1266         tstate_t *tptr;
1267         fcparam *fcp;
1268         atio_private_data_t *atp;
1269         struct ccb_scsiio *cso;
1270         struct isp_ccbq *waitq;
1271         uint32_t dmaresult, handle, xfrlen, sense_length, tmp;
1272         uint8_t local[QENTRY_LEN];
1273
1274         tptr = get_lun_statep(isp, XS_CHANNEL(ccb), XS_LUN(ccb));
1275         if (tptr == NULL) {
1276                 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), CAM_LUN_WILDCARD);
1277                 if (tptr == NULL) {
1278                         isp_prt(isp, ISP_LOGERR, "%s: [0x%x] cannot find tstate pointer", __func__, ccb->csio.tag_id);
1279                         ccb->ccb_h.status = CAM_DEV_NOT_THERE;
1280                         xpt_done(ccb);
1281                         return;
1282                 }
1283         }
1284         isp_prt(isp, ISP_LOGTDEBUG0, "%s: ENTRY[0x%x] how %u xfrlen %u sendstatus %d sense_len %u", __func__, ccb->csio.tag_id, how, ccb->csio.dxfer_len,
1285             (ccb->ccb_h.flags & CAM_SEND_STATUS) != 0, ((ccb->ccb_h.flags & CAM_SEND_SENSE)? ccb->csio.sense_len : 0));
1286
1287         ISP_GET_PC_ADDR(isp, XS_CHANNEL(ccb), waitq, waitq);
1288         switch (how) {
1289         case FROM_CAM:
1290                 /*
1291                  * Insert at the tail of the list, if any, waiting CTIO CCBs
1292                  */
1293                 TAILQ_INSERT_TAIL(waitq, &ccb->ccb_h, periph_links.tqe);
1294                 break;
1295         case FROM_TIMER:
1296         case FROM_SRR:
1297         case FROM_CTIO_DONE:
1298                 TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1299                 break;
1300         }
1301
1302         while ((ccb = (union ccb *) TAILQ_FIRST(waitq)) != NULL) {
1303                 TAILQ_REMOVE(waitq, &ccb->ccb_h, periph_links.tqe);
1304
1305                 cso = &ccb->csio;
1306                 xfrlen = cso->dxfer_len;
1307                 if (xfrlen == 0) {
1308                         if ((ccb->ccb_h.flags & CAM_SEND_STATUS) == 0) {
1309                                 ISP_PATH_PRT(isp, ISP_LOGERR, ccb->ccb_h.path, "a data transfer length of zero but no status to send is wrong\n");
1310                                 ccb->ccb_h.status = CAM_REQ_INVALID;
1311                                 xpt_done(ccb);
1312                                 continue;
1313                         }
1314                 }
1315
1316                 atp = isp_find_atpd(isp, tptr, cso->tag_id);
1317                 if (atp == NULL) {
1318                         isp_prt(isp, ISP_LOGERR, "%s: [0x%x] cannot find private data adjunct in %s", __func__, cso->tag_id, __func__);
1319                         isp_dump_atpd(isp, tptr);
1320                         ccb->ccb_h.status = CAM_REQ_CMP_ERR;
1321                         xpt_done(ccb);
1322                         continue;
1323                 }
1324
1325                 /*
1326                  * Is this command a dead duck?
1327                  */
1328                 if (atp->dead) {
1329                         isp_prt(isp, ISP_LOGERR, "%s: [0x%x] not sending a CTIO for a dead command", __func__, cso->tag_id);
1330                         ccb->ccb_h.status = CAM_REQ_ABORTED;
1331                         xpt_done(ccb);
1332                         continue;
1333                 }
1334
1335                 /*
1336                  * Check to make sure we're still in target mode.
1337                  */
1338                 fcp = FCPARAM(isp, XS_CHANNEL(ccb));
1339                 if ((fcp->role & ISP_ROLE_TARGET) == 0) {
1340                         isp_prt(isp, ISP_LOGERR, "%s: [0x%x] stopping sending a CTIO because we're no longer in target mode", __func__, cso->tag_id);
1341                         ccb->ccb_h.status = CAM_PROVIDE_FAIL;
1342                         xpt_done(ccb);
1343                         continue;
1344                 }
1345
1346                 /*
1347                  * We're only handling ATPD_CCB_OUTSTANDING outstanding CCB at a time (one of which
1348                  * could be split into two CTIOs to split data and status).
1349                  */
1350                 if (atp->ctcnt >= ATPD_CCB_OUTSTANDING) {
1351                         isp_prt(isp, ISP_LOGTINFO, "[0x%x] handling only %d CCBs at a time (flags for this ccb: 0x%x)", cso->tag_id, ATPD_CCB_OUTSTANDING, ccb->ccb_h.flags);
1352                         TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1353                         break;
1354                 }
1355
1356                 /*
1357                  * Does the initiator expect FC-Tape style responses?
1358                  */
1359                 if ((atp->word3 & PRLI_WD3_RETRY) && fcp->fctape_enabled) {
1360                         fctape = 1;
1361                 } else {
1362                         fctape = 0;
1363                 }
1364
1365                 /*
1366                  * If we already did the data xfer portion of a CTIO that sends data
1367                  * and status, don't do it again and do the status portion now.
1368                  */
1369                 if (atp->sendst) {
1370                         isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] now sending synthesized status orig_dl=%u xfered=%u bit=%u",
1371                             cso->tag_id, atp->orig_datalen, atp->bytes_xfered, atp->bytes_in_transit);
1372                         xfrlen = 0;     /* we already did the data transfer */
1373                         atp->sendst = 0;
1374                 }
1375                 if (ccb->ccb_h.flags & CAM_SEND_STATUS) {
1376                         sendstatus = 1;
1377                 } else {
1378                         sendstatus = 0;
1379                 }
1380
1381                 if (ccb->ccb_h.flags & CAM_SEND_SENSE) {
1382                         KASSERT((sendstatus != 0), ("how can you have CAM_SEND_SENSE w/o CAM_SEND_STATUS?"));
1383                         /*
1384                          * Sense length is not the entire sense data structure size. Periph
1385                          * drivers don't seem to be setting sense_len to reflect the actual
1386                          * size. We'll peek inside to get the right amount.
1387                          */
1388                         sense_length = cso->sense_len;
1389
1390                         /*
1391                          * This 'cannot' happen
1392                          */
1393                         if (sense_length > (XCMD_SIZE - MIN_FCP_RESPONSE_SIZE)) {
1394                                 sense_length = XCMD_SIZE - MIN_FCP_RESPONSE_SIZE;
1395                         }
1396                 } else {
1397                         sense_length = 0;
1398                 }
1399
1400                 memset(local, 0, QENTRY_LEN);
1401
1402                 /*
1403                  * Check for overflow
1404                  */
1405                 tmp = atp->bytes_xfered + atp->bytes_in_transit + xfrlen;
1406                 if (tmp > atp->orig_datalen) {
1407                         isp_prt(isp, ISP_LOGERR, "%s: [0x%x] data overflow by %u bytes", __func__, cso->tag_id, tmp - atp->orig_datalen);
1408                         ccb->ccb_h.status = CAM_DATA_RUN_ERR;
1409                         xpt_done(ccb);
1410                         continue;
1411                 }
1412
1413                 if (IS_24XX(isp)) {
1414                         ct7_entry_t *cto = (ct7_entry_t *) local;
1415
1416                         cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7;
1417                         cto->ct_header.rqs_entry_count = 1;
1418                         cto->ct_header.rqs_seqno |= ATPD_SEQ_NOTIFY_CAM;
1419                         ATPD_SET_SEQNO(cto, atp);
1420                         cto->ct_nphdl = atp->nphdl;
1421                         cto->ct_rxid = atp->tag;
1422                         cto->ct_iid_lo = atp->portid;
1423                         cto->ct_iid_hi = atp->portid >> 16;
1424                         cto->ct_oxid = atp->oxid;
1425                         cto->ct_vpidx = ISP_GET_VPIDX(isp, XS_CHANNEL(ccb));
1426                         cto->ct_timeout = (XS_TIME(ccb) + 999) / 1000;
1427                         cto->ct_flags = atp->tattr << CT7_TASK_ATTR_SHIFT;
1428
1429                         /*
1430                          * Mode 1, status, no data. Only possible when we are sending status, have
1431                          * no data to transfer, and any sense data can fit into a ct7_entry_t.
1432                          *
1433                          * Mode 2, status, no data. We have to use this in the case that
1434                          * the sense data won't fit into a ct7_entry_t.
1435                          *
1436                          */
1437                         if (sendstatus && xfrlen == 0) {
1438                                 cto->ct_flags |= CT7_SENDSTATUS | CT7_NO_DATA;
1439                                 resid = atp->orig_datalen - atp->bytes_xfered - atp->bytes_in_transit;
1440                                 if (sense_length <= MAXRESPLEN_24XX) {
1441                                         if (resid < 0) {
1442                                                 cto->ct_resid = -resid;
1443                                         } else if (resid > 0) {
1444                                                 cto->ct_resid = resid;
1445                                         }
1446                                         cto->ct_flags |= CT7_FLAG_MODE1;
1447                                         cto->ct_scsi_status = cso->scsi_status;
1448                                         if (resid < 0) {
1449                                                 cto->ct_scsi_status |= (FCP_RESID_OVERFLOW << 8);
1450                                         } else if (resid > 0) {
1451                                                 cto->ct_scsi_status |= (FCP_RESID_UNDERFLOW << 8);
1452                                         }
1453                                         if (fctape) {
1454                                                 cto->ct_flags |= CT7_CONFIRM|CT7_EXPLCT_CONF;
1455                                         }
1456                                         if (sense_length) {
1457                                                 cto->ct_scsi_status |= (FCP_SNSLEN_VALID << 8);
1458                                                 cto->rsp.m1.ct_resplen = cto->ct_senselen = sense_length;
1459                                                 memcpy(cto->rsp.m1.ct_resp, &cso->sense_data, sense_length);
1460                                         }
1461                                 } else {
1462                                         bus_addr_t addr;
1463                                         char buf[XCMD_SIZE];
1464                                         fcp_rsp_iu_t *rp;
1465
1466                                         if (atp->ests == NULL) {
1467                                                 atp->ests = isp_get_ecmd(isp);
1468                                                 if (atp->ests == NULL) {
1469                                                         TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1470                                                         break;
1471                                                 }
1472                                         }
1473                                         memset(buf, 0, sizeof (buf));
1474                                         rp = (fcp_rsp_iu_t *)buf;
1475                                         if (fctape) {
1476                                                 cto->ct_flags |= CT7_CONFIRM|CT7_EXPLCT_CONF;
1477                                                 rp->fcp_rsp_bits |= FCP_CONF_REQ;
1478                                         }
1479                                         cto->ct_flags |= CT7_FLAG_MODE2;
1480                                         rp->fcp_rsp_scsi_status = cso->scsi_status;
1481                                         if (resid < 0) {
1482                                                 rp->fcp_rsp_resid = -resid;
1483                                                 rp->fcp_rsp_bits |= FCP_RESID_OVERFLOW;
1484                                         } else if (resid > 0) {
1485                                                 rp->fcp_rsp_resid = resid;
1486                                                 rp->fcp_rsp_bits |= FCP_RESID_UNDERFLOW;
1487                                         }
1488                                         if (sense_length) {
1489                                                 rp->fcp_rsp_snslen = sense_length;
1490                                                 cto->ct_senselen = sense_length;
1491                                                 rp->fcp_rsp_bits |= FCP_SNSLEN_VALID;
1492                                                 isp_put_fcp_rsp_iu(isp, rp, atp->ests);
1493                                                 memcpy(((fcp_rsp_iu_t *)atp->ests)->fcp_rsp_extra, &cso->sense_data, sense_length);
1494                                         } else {
1495                                                 isp_put_fcp_rsp_iu(isp, rp, atp->ests);
1496                                         }
1497                                         if (isp->isp_dblev & ISP_LOGTDEBUG1) {
1498                                                 isp_print_bytes(isp, "FCP Response Frame After Swizzling", MIN_FCP_RESPONSE_SIZE + sense_length, atp->ests);
1499                                         }
1500                                         addr = isp->isp_osinfo.ecmd_dma;
1501                                         addr += ((((isp_ecmd_t *)atp->ests) - isp->isp_osinfo.ecmd_base) * XCMD_SIZE);
1502                                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: ests base %p vaddr %p ecmd_dma %jx addr %jx len %u", __func__, isp->isp_osinfo.ecmd_base, atp->ests,
1503                                             (uintmax_t) isp->isp_osinfo.ecmd_dma, (uintmax_t)addr, MIN_FCP_RESPONSE_SIZE + sense_length);
1504                                         cto->rsp.m2.ct_datalen = MIN_FCP_RESPONSE_SIZE + sense_length;
1505                                         cto->rsp.m2.ct_fcp_rsp_iudata.ds_base = DMA_LO32(addr);
1506                                         cto->rsp.m2.ct_fcp_rsp_iudata.ds_basehi = DMA_HI32(addr);
1507                                         cto->rsp.m2.ct_fcp_rsp_iudata.ds_count = MIN_FCP_RESPONSE_SIZE + sense_length;
1508                                 }
1509                                 if (sense_length) {
1510                                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO7[0x%x] seq %u nc %d CDB0=%x sstatus=0x%x flags=0x%x resid=%d slen %u sense: %x %x/%x/%x", __func__,
1511                                             cto->ct_rxid, ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cto->ct_scsi_status, cto->ct_flags, cto->ct_resid, sense_length,
1512                                             cso->sense_data.error_code, cso->sense_data.sense_buf[1], cso->sense_data.sense_buf[11], cso->sense_data.sense_buf[12]);
1513                                 } else {
1514                                         isp_prt(isp, ISP_LOGDEBUG0, "%s: CTIO7[0x%x] seq %u nc %d CDB0=%x sstatus=0x%x flags=0x%x resid=%d", __func__,
1515                                             cto->ct_rxid, ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cto->ct_scsi_status, cto->ct_flags, cto->ct_resid);
1516                                 }
1517                                 atp->state = ATPD_STATE_LAST_CTIO;
1518                         }
1519
1520                         /*
1521                          * Mode 0 data transfers, *possibly* with status.
1522                          */
1523                         if (xfrlen != 0) {
1524                                 cto->ct_flags |= CT7_FLAG_MODE0;
1525                                 if ((cso->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
1526                                         cto->ct_flags |= CT7_DATA_IN;
1527                                 } else {
1528                                         cto->ct_flags |= CT7_DATA_OUT;
1529                                 }
1530
1531                                 cto->rsp.m0.reloff = atp->bytes_xfered + atp->bytes_in_transit;
1532                                 cto->rsp.m0.ct_xfrlen = xfrlen;
1533
1534 #ifdef  DEBUG
1535                                 if (ISP_FC_PC(isp, XS_CHANNEL(ccb))->inject_lost_data_frame && xfrlen > ISP_FC_PC(isp, XS_CHANNEL(ccb))->inject_lost_data_frame) {
1536                                         isp_prt(isp, ISP_LOGWARN, "%s: truncating data frame with xfrlen %d to %d", __func__, xfrlen, xfrlen - (xfrlen >> 2));
1537                                         ISP_FC_PC(isp, XS_CHANNEL(ccb))->inject_lost_data_frame = 0;
1538                                         cto->rsp.m0.ct_xfrlen -= xfrlen >> 2;
1539                                 }
1540 #endif
1541                                 if (sendstatus) {
1542                                         resid = atp->orig_datalen - atp->bytes_xfered - xfrlen;
1543                                         if (cso->scsi_status == SCSI_STATUS_OK && resid == 0 /* && fctape == 0 */) {
1544                                                 cto->ct_flags |= CT7_SENDSTATUS;
1545                                                 atp->state = ATPD_STATE_LAST_CTIO;
1546                                                 if (fctape) {
1547                                                         cto->ct_flags |= CT7_CONFIRM|CT7_EXPLCT_CONF;
1548                                                 }
1549                                         } else {
1550                                                 atp->sendst = 1;        /* send status later */
1551                                                 cto->ct_header.rqs_seqno &= ~ATPD_SEQ_NOTIFY_CAM;
1552                                                 atp->state = ATPD_STATE_CTIO;
1553                                         }
1554                                 } else {
1555                                         atp->state = ATPD_STATE_CTIO;
1556                                 }
1557                                 isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO7[0x%x] seq %u nc %d CDB0=%x sstatus=0x%x flags=0x%x xfrlen=%u off=%u", __func__,
1558                                     cto->ct_rxid, ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cto->ct_scsi_status, cto->ct_flags, xfrlen, atp->bytes_xfered);
1559                         }
1560                 } else {
1561                         ct2_entry_t *cto = (ct2_entry_t *) local;
1562
1563                         if (isp->isp_osinfo.sixtyfourbit)
1564                                 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO3;
1565                         else
1566                                 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO2;
1567                         cto->ct_header.rqs_entry_count = 1;
1568                         cto->ct_header.rqs_seqno |= ATPD_SEQ_NOTIFY_CAM;
1569                         ATPD_SET_SEQNO(cto, atp);
1570                         if (ISP_CAP_2KLOGIN(isp)) {
1571                                 ((ct2e_entry_t *)cto)->ct_iid = atp->nphdl;
1572                         } else {
1573                                 cto->ct_iid = atp->nphdl;
1574                                 if (ISP_CAP_SCCFW(isp) == 0) {
1575                                         cto->ct_lun = ccb->ccb_h.target_lun;
1576                                 }
1577                         }
1578                         cto->ct_timeout = (XS_TIME(ccb) + 999) / 1000;
1579                         cto->ct_rxid = cso->tag_id;
1580
1581                         /*
1582                          * Mode 1, status, no data. Only possible when we are sending status, have
1583                          * no data to transfer, and the sense length can fit in the ct7_entry.
1584                          *
1585                          * Mode 2, status, no data. We have to use this in the case the response
1586                          * length won't fit into a ct2_entry_t.
1587                          *
1588                          * We'll fill out this structure with information as if this were a
1589                          * Mode 1. The hardware layer will create the Mode 2 FCP RSP IU as
1590                          * needed based upon this.
1591                          */
1592                         if (sendstatus && xfrlen == 0) {
1593                                 cto->ct_flags |= CT2_SENDSTATUS | CT2_NO_DATA;
1594                                 resid = atp->orig_datalen - atp->bytes_xfered - atp->bytes_in_transit;
1595                                 if (sense_length <= MAXRESPLEN) {
1596                                         if (resid < 0) {
1597                                                 cto->ct_resid = -resid;
1598                                         } else if (resid > 0) {
1599                                                 cto->ct_resid = resid;
1600                                         }
1601                                         cto->ct_flags |= CT2_FLAG_MODE1;
1602                                         cto->rsp.m1.ct_scsi_status = cso->scsi_status;
1603                                         if (resid < 0) {
1604                                                 cto->rsp.m1.ct_scsi_status |= CT2_DATA_OVER;
1605                                         } else if (resid > 0) {
1606                                                 cto->rsp.m1.ct_scsi_status |= CT2_DATA_UNDER;
1607                                         }
1608                                         if (fctape) {
1609                                                 cto->ct_flags |= CT2_CONFIRM;
1610                                         }
1611                                         if (sense_length) {
1612                                                 cto->rsp.m1.ct_scsi_status |= CT2_SNSLEN_VALID;
1613                                                 cto->rsp.m1.ct_resplen = cto->rsp.m1.ct_senselen = sense_length;
1614                                                 memcpy(cto->rsp.m1.ct_resp, &cso->sense_data, sense_length);
1615                                         }
1616                                 } else {
1617                                         bus_addr_t addr;
1618                                         char buf[XCMD_SIZE];
1619                                         fcp_rsp_iu_t *rp;
1620
1621                                         if (atp->ests == NULL) {
1622                                                 atp->ests = isp_get_ecmd(isp);
1623                                                 if (atp->ests == NULL) {
1624                                                         TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1625                                                         break;
1626                                                 }
1627                                         }
1628                                         memset(buf, 0, sizeof (buf));
1629                                         rp = (fcp_rsp_iu_t *)buf;
1630                                         if (fctape) {
1631                                                 cto->ct_flags |= CT2_CONFIRM;
1632                                                 rp->fcp_rsp_bits |= FCP_CONF_REQ;
1633                                         }
1634                                         cto->ct_flags |= CT2_FLAG_MODE2;
1635                                         rp->fcp_rsp_scsi_status = cso->scsi_status;
1636                                         if (resid < 0) {
1637                                                 rp->fcp_rsp_resid = -resid;
1638                                                 rp->fcp_rsp_bits |= FCP_RESID_OVERFLOW;
1639                                         } else if (resid > 0) {
1640                                                 rp->fcp_rsp_resid = resid;
1641                                                 rp->fcp_rsp_bits |= FCP_RESID_UNDERFLOW;
1642                                         }
1643                                         if (sense_length) {
1644                                                 rp->fcp_rsp_snslen = sense_length;
1645                                                 rp->fcp_rsp_bits |= FCP_SNSLEN_VALID;
1646                                                 isp_put_fcp_rsp_iu(isp, rp, atp->ests);
1647                                                 memcpy(((fcp_rsp_iu_t *)atp->ests)->fcp_rsp_extra, &cso->sense_data, sense_length);
1648                                         } else {
1649                                                 isp_put_fcp_rsp_iu(isp, rp, atp->ests);
1650                                         }
1651                                         if (isp->isp_dblev & ISP_LOGTDEBUG1) {
1652                                                 isp_print_bytes(isp, "FCP Response Frame After Swizzling", MIN_FCP_RESPONSE_SIZE + sense_length, atp->ests);
1653                                         }
1654                                         addr = isp->isp_osinfo.ecmd_dma;
1655                                         addr += ((((isp_ecmd_t *)atp->ests) - isp->isp_osinfo.ecmd_base) * XCMD_SIZE);
1656                                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: ests base %p vaddr %p ecmd_dma %jx addr %jx len %u", __func__, isp->isp_osinfo.ecmd_base, atp->ests,
1657                                             (uintmax_t) isp->isp_osinfo.ecmd_dma, (uintmax_t)addr, MIN_FCP_RESPONSE_SIZE + sense_length);
1658                                         cto->rsp.m2.ct_datalen = MIN_FCP_RESPONSE_SIZE + sense_length;
1659                                         if (isp->isp_osinfo.sixtyfourbit) {
1660                                                 cto->rsp.m2.u.ct_fcp_rsp_iudata_64.ds_base = DMA_LO32(addr);
1661                                                 cto->rsp.m2.u.ct_fcp_rsp_iudata_64.ds_basehi = DMA_HI32(addr);
1662                                                 cto->rsp.m2.u.ct_fcp_rsp_iudata_64.ds_count = MIN_FCP_RESPONSE_SIZE + sense_length;
1663                                         } else {
1664                                                 cto->rsp.m2.u.ct_fcp_rsp_iudata_32.ds_base = DMA_LO32(addr);
1665                                                 cto->rsp.m2.u.ct_fcp_rsp_iudata_32.ds_count = MIN_FCP_RESPONSE_SIZE + sense_length;
1666                                         }
1667                                 }
1668                                 if (sense_length) {
1669                                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO2[0x%x] seq %u nc %d CDB0=%x sstatus=0x%x flags=0x%x resid=%d sense: %x %x/%x/%x", __func__,
1670                                             cto->ct_rxid, ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cso->scsi_status, cto->ct_flags, cto->ct_resid,
1671                                             cso->sense_data.error_code, cso->sense_data.sense_buf[1], cso->sense_data.sense_buf[11], cso->sense_data.sense_buf[12]);
1672                                 } else {
1673                                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO2[0x%x] seq %u nc %d CDB0=%x sstatus=0x%x flags=0x%x resid=%d", __func__, cto->ct_rxid,
1674                                             ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cso->scsi_status, cto->ct_flags, cto->ct_resid);
1675                                 }
1676                                 atp->state = ATPD_STATE_LAST_CTIO;
1677                         }
1678
1679                         if (xfrlen != 0) {
1680                                 cto->ct_flags |= CT2_FLAG_MODE0;
1681                                 if ((cso->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
1682                                         cto->ct_flags |= CT2_DATA_IN;
1683                                 } else {
1684                                         cto->ct_flags |= CT2_DATA_OUT;
1685                                 }
1686
1687                                 cto->ct_reloff = atp->bytes_xfered + atp->bytes_in_transit;
1688                                 cto->rsp.m0.ct_xfrlen = xfrlen;
1689
1690                                 if (sendstatus) {
1691                                         resid = atp->orig_datalen - atp->bytes_xfered - xfrlen;
1692                                         if (cso->scsi_status == SCSI_STATUS_OK && resid == 0 /*&& fctape == 0*/) {
1693                                                 cto->ct_flags |= CT2_SENDSTATUS;
1694                                                 atp->state = ATPD_STATE_LAST_CTIO;
1695                                                 if (fctape) {
1696                                                         cto->ct_flags |= CT2_CONFIRM;
1697                                                 }
1698                                         } else {
1699                                                 atp->sendst = 1;        /* send status later */
1700                                                 cto->ct_header.rqs_seqno &= ~ATPD_SEQ_NOTIFY_CAM;
1701                                                 atp->state = ATPD_STATE_CTIO;
1702                                         }
1703                                 } else {
1704                                         atp->state = ATPD_STATE_CTIO;
1705                                 }
1706                         }
1707                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO2[%x] seq %u nc %d CDB0=%x scsi status %x flags %x resid %d xfrlen %u offset %u", __func__, cto->ct_rxid,
1708                             ATPD_GET_SEQNO(cto), ATPD_GET_NCAM(cto), atp->cdb0, cso->scsi_status, cto->ct_flags, cto->ct_resid, cso->dxfer_len, atp->bytes_xfered);
1709                 }
1710
1711                 if (isp_get_pcmd(isp, ccb)) {
1712                         ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "out of PCMDs\n");
1713                         TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1714                         break;
1715                 }
1716                 handle = isp_allocate_handle(isp, ccb, ISP_HANDLE_TARGET);
1717                 if (handle == 0) {
1718                         ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "No XFLIST pointers for %s\n", __func__);
1719                         TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1720                         isp_free_pcmd(isp, ccb);
1721                         break;
1722                 }
1723                 atp->bytes_in_transit += xfrlen;
1724                 PISP_PCMD(ccb)->datalen = xfrlen;
1725
1726
1727                 /*
1728                  * Call the dma setup routines for this entry (and any subsequent
1729                  * CTIOs) if there's data to move, and then tell the f/w it's got
1730                  * new things to play with. As with isp_start's usage of DMA setup,
1731                  * any swizzling is done in the machine dependent layer. Because
1732                  * of this, we put the request onto the queue area first in native
1733                  * format.
1734                  */
1735
1736                 if (IS_24XX(isp)) {
1737                         ct7_entry_t *cto = (ct7_entry_t *) local;
1738                         cto->ct_syshandle = handle;
1739                 } else {
1740                         ct2_entry_t *cto = (ct2_entry_t *) local;
1741                         cto->ct_syshandle = handle;
1742                 }
1743
1744                 dmaresult = ISP_DMASETUP(isp, cso, (ispreq_t *) local);
1745                 if (dmaresult != CMD_QUEUED) {
1746                         isp_destroy_handle(isp, handle);
1747                         isp_free_pcmd(isp, ccb);
1748                         if (dmaresult == CMD_EAGAIN) {
1749                                 TAILQ_INSERT_HEAD(waitq, &ccb->ccb_h, periph_links.tqe);
1750                                 break;
1751                         }
1752                         ccb->ccb_h.status = CAM_REQ_CMP_ERR;
1753                         xpt_done(ccb);
1754                         continue;
1755                 }
1756                 isp->isp_nactive++;
1757                 ccb->ccb_h.status = CAM_REQ_INPROG | CAM_SIM_QUEUED;
1758                 if (xfrlen) {
1759                         ccb->ccb_h.spriv_field0 = atp->bytes_xfered;
1760                 } else {
1761                         ccb->ccb_h.spriv_field0 = ~0;
1762                 }
1763                 atp->ctcnt++;
1764                 atp->seqno++;
1765         }
1766         rls_lun_statep(isp, tptr);
1767 }
1768
1769 static void
1770 isp_refire_putback_atio(void *arg)
1771 {
1772         union ccb *ccb = arg;
1773
1774         ISP_ASSERT_LOCKED((ispsoftc_t *)XS_ISP(ccb));
1775         isp_target_putback_atio(ccb);
1776 }
1777
1778 static void
1779 isp_refire_notify_ack(void *arg)
1780 {
1781         isp_tna_t *tp  = arg;
1782         ispsoftc_t *isp = tp->isp;
1783
1784         ISP_ASSERT_LOCKED(isp);
1785         if (isp_notify_ack(isp, tp->not)) {
1786                 callout_schedule(&tp->timer, 5);
1787         } else {
1788                 free(tp, M_DEVBUF);
1789         }
1790 }
1791
1792
1793 static void
1794 isp_target_putback_atio(union ccb *ccb)
1795 {
1796         ispsoftc_t *isp;
1797         struct ccb_scsiio *cso;
1798         void *qe;
1799         at2_entry_t local, *at = &local;
1800
1801         isp = XS_ISP(ccb);
1802
1803         qe = isp_getrqentry(isp);
1804         if (qe == NULL) {
1805                 xpt_print(ccb->ccb_h.path,
1806                     "%s: Request Queue Overflow\n", __func__);
1807                 callout_reset(&PISP_PCMD(ccb)->wdog, 10,
1808                     isp_refire_putback_atio, ccb);
1809                 return;
1810         }
1811         memset(qe, 0, QENTRY_LEN);
1812         cso = &ccb->csio;
1813         ISP_MEMZERO(at, sizeof (at2_entry_t));
1814         at->at_header.rqs_entry_type = RQSTYPE_ATIO2;
1815         at->at_header.rqs_entry_count = 1;
1816         if (ISP_CAP_SCCFW(isp)) {
1817                 at->at_scclun = (uint16_t) ccb->ccb_h.target_lun;
1818 #if __FreeBSD_version < 1000700
1819                 if (at->at_scclun >= 256)
1820                         at->at_scclun |= 0x4000;
1821 #endif
1822         } else {
1823                 at->at_lun = (uint8_t) ccb->ccb_h.target_lun;
1824         }
1825         at->at_status = CT_OK;
1826         at->at_rxid = cso->tag_id;
1827         at->at_iid = cso->ccb_h.target_id;
1828         isp_put_atio2(isp, at, qe);
1829         ISP_TDQE(isp, "isp_target_putback_atio", isp->isp_reqidx, qe);
1830         ISP_SYNC_REQUEST(isp);
1831         isp_complete_ctio(ccb);
1832 }
1833
1834 static void
1835 isp_complete_ctio(union ccb *ccb)
1836 {
1837         if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) {
1838                 ccb->ccb_h.status &= ~CAM_SIM_QUEUED;
1839                 xpt_done(ccb);
1840         }
1841 }
1842
1843 static void
1844 isp_handle_platform_atio2(ispsoftc_t *isp, at2_entry_t *aep)
1845 {
1846         fcparam *fcp;
1847         lun_id_t lun;
1848         fcportdb_t *lp;
1849         tstate_t *tptr;
1850         struct ccb_accept_tio *atiop;
1851         uint16_t nphdl;
1852         atio_private_data_t *atp;
1853         inot_private_data_t *ntp;
1854
1855         /*
1856          * The firmware status (except for the QLTM_SVALID bit)
1857          * indicates why this ATIO was sent to us.
1858          *
1859          * If QLTM_SVALID is set, the firmware has recommended Sense Data.
1860          */
1861         if ((aep->at_status & ~QLTM_SVALID) != AT_CDB) {
1862                 isp_prt(isp, ISP_LOGWARN, "bogus atio (0x%x) leaked to platform", aep->at_status);
1863                 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0);
1864                 return;
1865         }
1866
1867         fcp = FCPARAM(isp, 0);
1868         if (ISP_CAP_SCCFW(isp)) {
1869                 lun = aep->at_scclun;
1870 #if __FreeBSD_version < 1000700
1871                 lun &= 0x3fff;
1872 #endif
1873         } else {
1874                 lun = aep->at_lun;
1875         }
1876         if (ISP_CAP_2KLOGIN(isp)) {
1877                 nphdl = ((at2e_entry_t *)aep)->at_iid;
1878         } else {
1879                 nphdl = aep->at_iid;
1880         }
1881         tptr = get_lun_statep(isp, 0, lun);
1882         if (tptr == NULL) {
1883                 tptr = get_lun_statep(isp, 0, CAM_LUN_WILDCARD);
1884                 if (tptr == NULL) {
1885                         isp_prt(isp, ISP_LOGWARN, "%s: [0x%x] no state pointer for lun %jx or wildcard", __func__, aep->at_rxid, (uintmax_t)lun);
1886                         if (lun == 0) {
1887                                 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0);
1888                         } else {
1889                                 isp_endcmd(isp, aep, SCSI_STATUS_CHECK_COND | ECMD_SVALID | (0x5 << 12) | (0x25 << 16), 0);
1890                         }
1891                         return;
1892                 }
1893         }
1894
1895         /*
1896          * Start any commands pending resources first.
1897          */
1898         if (tptr->restart_queue) {
1899                 inot_private_data_t *restart_queue = tptr->restart_queue;
1900                 tptr->restart_queue = NULL;
1901                 while (restart_queue) {
1902                         ntp = restart_queue;
1903                         restart_queue = ntp->rd.nt.nt_hba;
1904                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at2_entry_t *)ntp->rd.data)->at_rxid);
1905                         isp_handle_platform_atio2(isp, (at2_entry_t *) ntp->rd.data);
1906                         isp_put_ntpd(isp, tptr, ntp);
1907                         /*
1908                          * If a recursion caused the restart queue to start to fill again,
1909                          * stop and splice the new list on top of the old list and restore
1910                          * it and go to noresrc.
1911                          */
1912                         if (tptr->restart_queue) {
1913                                 ntp = tptr->restart_queue;
1914                                 tptr->restart_queue = restart_queue;
1915                                 while (restart_queue->rd.nt.nt_hba) {
1916                                         restart_queue = restart_queue->rd.nt.nt_hba;
1917                                 }
1918                                 restart_queue->rd.nt.nt_hba = ntp;
1919                                 goto noresrc;
1920                         }
1921                 }
1922         }
1923
1924         atiop = (struct ccb_accept_tio *) SLIST_FIRST(&tptr->atios);
1925         if (atiop == NULL) {
1926                 goto noresrc;
1927         }
1928
1929         atp = isp_get_atpd(isp, tptr, aep->at_rxid);
1930         if (atp == NULL) {
1931                 goto noresrc;
1932         }
1933
1934         atp->state = ATPD_STATE_ATIO;
1935         SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
1936         tptr->atio_count--;
1937         isp_prt(isp, ISP_LOGTDEBUG2, "Take FREE ATIO count now %d", tptr->atio_count);
1938         atiop->ccb_h.target_id = fcp->isp_loopid;
1939         atiop->ccb_h.target_lun = lun;
1940
1941         /*
1942          * We don't get 'suggested' sense data as we do with SCSI cards.
1943          */
1944         atiop->sense_len = 0;
1945
1946         /*
1947          * If we're not in the port database, add ourselves.
1948          */
1949         if (IS_2100(isp))
1950                 atiop->init_id = nphdl;
1951         else {
1952                 if ((isp_find_pdb_by_handle(isp, 0, nphdl, &lp) == 0 ||
1953                      lp->state == FC_PORTDB_STATE_ZOMBIE)) {
1954                         uint64_t wwpn =
1955                                 (((uint64_t) aep->at_wwpn[0]) << 48) |
1956                                 (((uint64_t) aep->at_wwpn[1]) << 32) |
1957                                 (((uint64_t) aep->at_wwpn[2]) << 16) |
1958                                 (((uint64_t) aep->at_wwpn[3]) <<  0);
1959                         isp_add_wwn_entry(isp, 0, wwpn, INI_NONE,
1960                             nphdl, PORT_ANY, 0);
1961                         if (fcp->isp_loopstate > LOOP_LTEST_DONE)
1962                                 fcp->isp_loopstate = LOOP_LTEST_DONE;
1963                         isp_async(isp, ISPASYNC_CHANGE_NOTIFY, 0,
1964                             ISPASYNC_CHANGE_PDB, nphdl, 0x06, 0xff);
1965                         isp_find_pdb_by_handle(isp, 0, nphdl, &lp);
1966                 }
1967                 atiop->init_id = FC_PORTDB_TGT(isp, 0, lp);
1968         }
1969         atiop->cdb_len = ATIO2_CDBLEN;
1970         ISP_MEMCPY(atiop->cdb_io.cdb_bytes, aep->at_cdb, ATIO2_CDBLEN);
1971         atiop->ccb_h.status = CAM_CDB_RECVD;
1972         atiop->tag_id = atp->tag;
1973         switch (aep->at_taskflags & ATIO2_TC_ATTR_MASK) {
1974         case ATIO2_TC_ATTR_SIMPLEQ:
1975                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
1976                 atiop->tag_action = MSG_SIMPLE_Q_TAG;
1977                 break;
1978         case ATIO2_TC_ATTR_HEADOFQ:
1979                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
1980                 atiop->tag_action = MSG_HEAD_OF_Q_TAG;
1981                 break;
1982         case ATIO2_TC_ATTR_ORDERED:
1983                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
1984                 atiop->tag_action = MSG_ORDERED_Q_TAG;
1985                 break;
1986         case ATIO2_TC_ATTR_ACAQ:                /* ?? */
1987         case ATIO2_TC_ATTR_UNTAGGED:
1988         default:
1989                 atiop->tag_action = 0;
1990                 break;
1991         }
1992
1993         atp->orig_datalen = aep->at_datalen;
1994         atp->bytes_xfered = 0;
1995         atp->lun = lun;
1996         atp->nphdl = nphdl;
1997         atp->sid = PORT_ANY;
1998         atp->oxid = aep->at_oxid;
1999         atp->cdb0 = aep->at_cdb[0];
2000         atp->tattr = aep->at_taskflags & ATIO2_TC_ATTR_MASK;
2001         atp->state = ATPD_STATE_CAM;
2002         xpt_done((union ccb *)atiop);
2003         isp_prt(isp, ISP_LOGTDEBUG0, "ATIO2[0x%x] CDB=0x%x lun %jx datalen %u", aep->at_rxid, atp->cdb0, (uintmax_t)lun, atp->orig_datalen);
2004         rls_lun_statep(isp, tptr);
2005         return;
2006 noresrc:
2007         ntp = isp_get_ntpd(isp, tptr);
2008         if (ntp == NULL) {
2009                 rls_lun_statep(isp, tptr);
2010                 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0);
2011                 return;
2012         }
2013         memcpy(ntp->rd.data, aep, QENTRY_LEN);
2014         ntp->rd.nt.nt_hba = tptr->restart_queue;
2015         tptr->restart_queue = ntp;
2016         rls_lun_statep(isp, tptr);
2017 }
2018
2019 static void
2020 isp_handle_platform_atio7(ispsoftc_t *isp, at7_entry_t *aep)
2021 {
2022         int cdbxlen;
2023         lun_id_t lun;
2024         uint16_t chan, nphdl = NIL_HANDLE;
2025         uint32_t did, sid;
2026         fcportdb_t *lp;
2027         tstate_t *tptr;
2028         struct ccb_accept_tio *atiop;
2029         atio_private_data_t *atp = NULL;
2030         atio_private_data_t *oatp;
2031         inot_private_data_t *ntp;
2032
2033         did = (aep->at_hdr.d_id[0] << 16) | (aep->at_hdr.d_id[1] << 8) | aep->at_hdr.d_id[2];
2034         sid = (aep->at_hdr.s_id[0] << 16) | (aep->at_hdr.s_id[1] << 8) | aep->at_hdr.s_id[2];
2035 #if __FreeBSD_version >= 1000700
2036         lun = CAM_EXTLUN_BYTE_SWIZZLE(be64dec(aep->at_cmnd.fcp_cmnd_lun));
2037 #else
2038         lun = (aep->at_cmnd.fcp_cmnd_lun[0] & 0x3f << 8) |
2039             aep->at_cmnd.fcp_cmnd_lun[1];
2040 #endif
2041
2042         /*
2043          * Find the N-port handle, and Virtual Port Index for this command.
2044          *
2045          * If we can't, we're somewhat in trouble because we can't actually respond w/o that information.
2046          * We also, as a matter of course, need to know the WWN of the initiator too.
2047          */
2048         if (ISP_CAP_MULTI_ID(isp) && isp->isp_nchan > 1) {
2049                 /*
2050                  * Find the right channel based upon D_ID
2051                  */
2052                 isp_find_chan_by_did(isp, did, &chan);
2053
2054                 if (chan == ISP_NOCHAN) {
2055                         NANOTIME_T now;
2056
2057                         /*
2058                          * If we don't recognizer our own D_DID, terminate the exchange, unless we're within 2 seconds of startup
2059                          * It's a bit tricky here as we need to stash this command *somewhere*.
2060                          */
2061                         GET_NANOTIME(&now);
2062                         if (NANOTIME_SUB(&now, &isp->isp_init_time) > 2000000000ULL) {
2063                                 isp_prt(isp, ISP_LOGWARN, "%s: [RX_ID 0x%x] D_ID %x not found on any channel- dropping", __func__, aep->at_rxid, did);
2064                                 isp_endcmd(isp, aep, NIL_HANDLE, ISP_NOCHAN, ECMD_TERMINATE, 0);
2065                                 return;
2066                         }
2067                         tptr = get_lun_statep(isp, 0, 0);
2068                         if (tptr == NULL) {
2069                                 tptr = get_lun_statep(isp, 0, CAM_LUN_WILDCARD);
2070                                 if (tptr == NULL) {
2071                                         isp_prt(isp, ISP_LOGWARN, "%s: [RX_ID 0x%x] D_ID %x not found on any channel and no tptr- dropping", __func__, aep->at_rxid, did);
2072                                         isp_endcmd(isp, aep, NIL_HANDLE, ISP_NOCHAN, ECMD_TERMINATE, 0);
2073                                         return;
2074                                 }
2075                         }
2076                         isp_prt(isp, ISP_LOGWARN, "%s: [RX_ID 0x%x] D_ID %x not found on any channel- deferring", __func__, aep->at_rxid, did);
2077                         goto noresrc;
2078                 }
2079                 isp_prt(isp, ISP_LOGTDEBUG0, "%s: [RX_ID 0x%x] D_ID 0x%06x found on Chan %d for S_ID 0x%06x", __func__, aep->at_rxid, did, chan, sid);
2080         } else {
2081                 chan = 0;
2082         }
2083
2084         /*
2085          * Find the PDB entry for this initiator
2086          */
2087         if (isp_find_pdb_by_portid(isp, chan, sid, &lp) == 0) {
2088                 /*
2089                  * If we're not in the port database terminate the exchange.
2090                  */
2091                 isp_prt(isp, ISP_LOGTINFO, "%s: [RX_ID 0x%x] D_ID 0x%06x found on Chan %d for S_ID 0x%06x wasn't in PDB already",
2092                     __func__, aep->at_rxid, did, chan, sid);
2093                 isp_dump_portdb(isp, chan);
2094                 isp_endcmd(isp, aep, NIL_HANDLE, chan, ECMD_TERMINATE, 0);
2095                 return;
2096         }
2097         nphdl = lp->handle;
2098
2099         /*
2100          * Get the tstate pointer
2101          */
2102         tptr = get_lun_statep(isp, chan, lun);
2103         if (tptr == NULL) {
2104                 tptr = get_lun_statep(isp, chan, CAM_LUN_WILDCARD);
2105                 if (tptr == NULL) {
2106                         isp_prt(isp, ISP_LOGWARN,
2107                             "%s: [0x%x] no state pointer for lun %jx or wildcard",
2108                             __func__, aep->at_rxid, (uintmax_t)lun);
2109                         if (lun == 0) {
2110                                 isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_BUSY, 0);
2111                         } else {
2112                                 isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_CHECK_COND | ECMD_SVALID | (0x5 << 12) | (0x25 << 16), 0);
2113                         }
2114                         return;
2115                 }
2116         }
2117
2118         /*
2119          * Start any commands pending resources first.
2120          */
2121         if (tptr->restart_queue) {
2122                 inot_private_data_t *restart_queue = tptr->restart_queue;
2123                 tptr->restart_queue = NULL;
2124                 while (restart_queue) {
2125                         ntp = restart_queue;
2126                         restart_queue = ntp->rd.nt.nt_hba;
2127                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at7_entry_t *)ntp->rd.data)->at_rxid);
2128                         isp_handle_platform_atio7(isp, (at7_entry_t *) ntp->rd.data);
2129                         isp_put_ntpd(isp, tptr, ntp);
2130                         /*
2131                          * If a recursion caused the restart queue to start to fill again,
2132                          * stop and splice the new list on top of the old list and restore
2133                          * it and go to noresrc.
2134                          */
2135                         if (tptr->restart_queue) {
2136                                 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restart queue refilling", __func__);
2137                                 if (restart_queue) {
2138                                         ntp = tptr->restart_queue;
2139                                         tptr->restart_queue = restart_queue;
2140                                         while (restart_queue->rd.nt.nt_hba) {
2141                                                 restart_queue = restart_queue->rd.nt.nt_hba;
2142                                         }
2143                                         restart_queue->rd.nt.nt_hba = ntp;
2144                                 }
2145                                 goto noresrc;
2146                         }
2147                 }
2148         }
2149
2150         /*
2151          * If the f/w is out of resources, just send a BUSY status back.
2152          */
2153         if (aep->at_rxid == AT7_NORESRC_RXID) {
2154                 rls_lun_statep(isp, tptr);
2155                 isp_endcmd(isp, aep, nphdl, chan, SCSI_BUSY, 0);
2156                 return;
2157         }
2158
2159         /*
2160          * If we're out of resources, just send a BUSY status back.
2161          */
2162         atiop = (struct ccb_accept_tio *) SLIST_FIRST(&tptr->atios);
2163         if (atiop == NULL) {
2164                 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] out of atios", aep->at_rxid);
2165                 goto noresrc;
2166         }
2167
2168         oatp = isp_find_atpd(isp, tptr, aep->at_rxid);
2169         if (oatp) {
2170                 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] tag wraparound in isp_handle_platforms_atio7 (N-Port Handle 0x%04x S_ID 0x%04x OX_ID 0x%04x) oatp state %d",
2171                     aep->at_rxid, nphdl, sid, aep->at_hdr.ox_id, oatp->state);
2172                 /*
2173                  * It's not a "no resource" condition- but we can treat it like one
2174                  */
2175                 goto noresrc;
2176         }
2177         atp = isp_get_atpd(isp, tptr, aep->at_rxid);
2178         if (atp == NULL) {
2179                 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] out of atps", aep->at_rxid);
2180                 goto noresrc;
2181         }
2182         atp->word3 = lp->prli_word3;
2183         atp->state = ATPD_STATE_ATIO;
2184         SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
2185         tptr->atio_count--;
2186         ISP_PATH_PRT(isp, ISP_LOGTDEBUG2, atiop->ccb_h.path, "Take FREE ATIO count now %d\n", tptr->atio_count);
2187         atiop->init_id = FC_PORTDB_TGT(isp, chan, lp);
2188         atiop->ccb_h.target_id = FCPARAM(isp, chan)->isp_loopid;
2189         atiop->ccb_h.target_lun = lun;
2190         atiop->sense_len = 0;
2191         cdbxlen = aep->at_cmnd.fcp_cmnd_alen_datadir >> FCP_CMND_ADDTL_CDBLEN_SHIFT;
2192         if (cdbxlen) {
2193                 isp_prt(isp, ISP_LOGWARN, "additional CDBLEN ignored");
2194         }
2195         cdbxlen = sizeof (aep->at_cmnd.cdb_dl.sf.fcp_cmnd_cdb);
2196         ISP_MEMCPY(atiop->cdb_io.cdb_bytes, aep->at_cmnd.cdb_dl.sf.fcp_cmnd_cdb, cdbxlen);
2197         atiop->cdb_len = cdbxlen;
2198         atiop->ccb_h.status = CAM_CDB_RECVD;
2199         atiop->tag_id = atp->tag;
2200         switch (aep->at_cmnd.fcp_cmnd_task_attribute & FCP_CMND_TASK_ATTR_MASK) {
2201         case FCP_CMND_TASK_ATTR_SIMPLE:
2202                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
2203                 atiop->tag_action = MSG_SIMPLE_Q_TAG;
2204                 break;
2205         case FCP_CMND_TASK_ATTR_HEAD:
2206                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
2207                 atiop->tag_action = MSG_HEAD_OF_Q_TAG;
2208                 break;
2209         case FCP_CMND_TASK_ATTR_ORDERED:
2210                 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID;
2211                 atiop->tag_action = MSG_ORDERED_Q_TAG;
2212                 break;
2213         default:
2214                 /* FALLTHROUGH */
2215         case FCP_CMND_TASK_ATTR_ACA:
2216         case FCP_CMND_TASK_ATTR_UNTAGGED:
2217                 atiop->tag_action = 0;
2218                 break;
2219         }
2220         atp->orig_datalen = aep->at_cmnd.cdb_dl.sf.fcp_cmnd_dl;
2221         atp->bytes_xfered = 0;
2222         atp->lun = lun;
2223         atp->nphdl = nphdl;
2224         atp->portid = sid;
2225         atp->oxid = aep->at_hdr.ox_id;
2226         atp->rxid = aep->at_hdr.rx_id;
2227         atp->cdb0 = atiop->cdb_io.cdb_bytes[0];
2228         atp->tattr = aep->at_cmnd.fcp_cmnd_task_attribute & FCP_CMND_TASK_ATTR_MASK;
2229         atp->state = ATPD_STATE_CAM;
2230         isp_prt(isp, ISP_LOGTDEBUG0, "ATIO7[0x%x] CDB=0x%x lun %jx datalen %u",
2231             aep->at_rxid, atp->cdb0, (uintmax_t)lun, atp->orig_datalen);
2232         xpt_done((union ccb *)atiop);
2233         rls_lun_statep(isp, tptr);
2234         return;
2235 noresrc:
2236         if (atp) {
2237                 isp_put_atpd(isp, tptr, atp);
2238         }
2239         ntp = isp_get_ntpd(isp, tptr);
2240         if (ntp == NULL) {
2241                 rls_lun_statep(isp, tptr);
2242                 isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_BUSY, 0);
2243                 return;
2244         }
2245         memcpy(ntp->rd.data, aep, QENTRY_LEN);
2246         ntp->rd.nt.nt_hba = tptr->restart_queue;
2247         tptr->restart_queue = ntp;
2248         rls_lun_statep(isp, tptr);
2249 }
2250
2251
2252 /*
2253  * Handle starting an SRR (sequence retransmit request)
2254  * We get here when we've gotten the immediate notify
2255  * and the return of all outstanding CTIOs for this
2256  * transaction.
2257  */
2258 static void
2259 isp_handle_srr_start(ispsoftc_t *isp, tstate_t *tptr, atio_private_data_t *atp)
2260 {
2261         in_fcentry_24xx_t *inot;
2262         uint32_t srr_off, ccb_off, ccb_len, ccb_end;
2263         union ccb *ccb;
2264
2265         inot = (in_fcentry_24xx_t *)atp->srr;
2266         srr_off = inot->in_srr_reloff_lo | (inot->in_srr_reloff_hi << 16);
2267         ccb = atp->srr_ccb;
2268         atp->srr_ccb = NULL;
2269         atp->nsrr++;
2270         if (ccb == NULL) {
2271                 isp_prt(isp, ISP_LOGWARN, "SRR[0x%x] null ccb", atp->tag);
2272                 goto fail;
2273         }
2274
2275         ccb_off = ccb->ccb_h.spriv_field0;
2276         ccb_len = ccb->csio.dxfer_len;
2277         ccb_end = (ccb_off == ~0)? ~0 : ccb_off + ccb_len;
2278
2279         switch (inot->in_srr_iu) {
2280         case R_CTL_INFO_SOLICITED_DATA:
2281                 /*
2282                  * We have to restart a FCP_DATA data out transaction
2283                  */
2284                 atp->sendst = 0;
2285                 atp->bytes_xfered = srr_off;
2286                 if (ccb_len == 0) {
2287                         isp_prt(isp, ISP_LOGWARN, "SRR[0x%x] SRR offset 0x%x but current CCB doesn't transfer data", atp->tag, srr_off);
2288                         goto mdp;
2289                 }
2290                 if (srr_off < ccb_off || ccb_off > srr_off + ccb_len) {
2291                         isp_prt(isp, ISP_LOGWARN, "SRR[0x%x] SRR offset 0x%x not covered by current CCB data range [0x%x..0x%x]", atp->tag, srr_off, ccb_off, ccb_end);
2292                         goto mdp;
2293                 }
2294                 isp_prt(isp, ISP_LOGWARN, "SRR[0x%x] SRR offset 0x%x covered by current CCB data range [0x%x..0x%x]", atp->tag, srr_off, ccb_off, ccb_end);
2295                 break;
2296         case R_CTL_INFO_COMMAND_STATUS:
2297                 isp_prt(isp, ISP_LOGTINFO, "SRR[0x%x] Got an FCP RSP SRR- resending status", atp->tag);
2298                 atp->sendst = 1;
2299                 /*
2300                  * We have to restart a FCP_RSP IU transaction
2301                  */
2302                 break;
2303         case R_CTL_INFO_DATA_DESCRIPTOR:
2304                 /*
2305                  * We have to restart an FCP DATA in transaction
2306                  */
2307                 isp_prt(isp, ISP_LOGWARN, "Got an FCP DATA IN SRR- dropping");
2308                 goto fail;
2309                 
2310         default:
2311                 isp_prt(isp, ISP_LOGWARN, "Got an unknown information (%x) SRR- dropping", inot->in_srr_iu);
2312                 goto fail;
2313         }
2314
2315         /*
2316          * We can't do anything until this is acked, so we might as well start it now.
2317          * We aren't going to do the usual asynchronous ack issue because we need
2318          * to make sure this gets on the wire first.
2319          */
2320         if (isp_notify_ack(isp, inot)) {
2321                 isp_prt(isp, ISP_LOGWARN, "could not push positive ack for SRR- you lose");
2322                 goto fail;
2323         }
2324         isp_target_start_ctio(isp, ccb, FROM_SRR);
2325         return;
2326 fail:
2327         inot->in_reserved = 1;
2328         isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2329         ccb->ccb_h.status &= ~CAM_STATUS_MASK;
2330         ccb->ccb_h.status |= CAM_REQ_CMP_ERR;
2331         isp_complete_ctio(ccb);
2332         return;
2333 mdp:
2334         if (isp_notify_ack(isp, inot)) {
2335                 isp_prt(isp, ISP_LOGWARN, "could not push positive ack for SRR- you lose");
2336                 goto fail;
2337         }
2338         ccb->ccb_h.status &= ~CAM_STATUS_MASK;
2339         ccb->ccb_h.status = CAM_MESSAGE_RECV;
2340         /*
2341          * This is not a strict interpretation of MDP, but it's close
2342          */
2343         ccb->csio.msg_ptr = &ccb->csio.sense_data.sense_buf[SSD_FULL_SIZE - 16];
2344         ccb->csio.msg_len = 7;
2345         ccb->csio.msg_ptr[0] = MSG_EXTENDED;
2346         ccb->csio.msg_ptr[1] = 5;
2347         ccb->csio.msg_ptr[2] = 0;       /* modify data pointer */
2348         ccb->csio.msg_ptr[3] = srr_off >> 24;
2349         ccb->csio.msg_ptr[4] = srr_off >> 16;
2350         ccb->csio.msg_ptr[5] = srr_off >> 8;
2351         ccb->csio.msg_ptr[6] = srr_off;
2352         isp_complete_ctio(ccb);
2353 }
2354
2355
2356 static void
2357 isp_handle_srr_notify(ispsoftc_t *isp, void *inot_raw)
2358 {
2359         tstate_t *tptr;
2360         in_fcentry_24xx_t *inot = inot_raw;
2361         atio_private_data_t *atp;
2362         uint32_t tag = inot->in_rxid;
2363         uint32_t bus = inot->in_vpidx;
2364
2365         if (!IS_24XX(isp)) {
2366                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot_raw);
2367                 return;
2368         }
2369
2370         tptr = get_lun_statep_from_tag(isp, bus, tag);
2371         if (tptr == NULL) {
2372                 isp_prt(isp, ISP_LOGERR, "%s: cannot find tptr for tag %x in SRR Notify", __func__, tag);
2373                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2374                 return;
2375         }
2376         atp = isp_find_atpd(isp, tptr, tag);
2377         if (atp == NULL) {
2378                 rls_lun_statep(isp, tptr);
2379                 isp_prt(isp, ISP_LOGERR, "%s: cannot find adjunct for %x in SRR Notify", __func__, tag);
2380                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2381                 return;
2382         }
2383         atp->srr_notify_rcvd = 1;
2384         memcpy(atp->srr, inot, sizeof (atp->srr));
2385         isp_prt(isp, ISP_LOGTINFO /* ISP_LOGTDEBUG0 */, "SRR[0x%x] inot->in_rxid flags 0x%x srr_iu=%x reloff 0x%x", inot->in_rxid, inot->in_flags, inot->in_srr_iu,
2386             inot->in_srr_reloff_lo | (inot->in_srr_reloff_hi << 16));
2387         if (atp->srr_ccb)
2388                 isp_handle_srr_start(isp, tptr, atp);
2389         rls_lun_statep(isp, tptr);
2390 }
2391
2392 static void
2393 isp_handle_platform_ctio(ispsoftc_t *isp, void *arg)
2394 {
2395         union ccb *ccb;
2396         int sentstatus = 0, ok = 0, notify_cam = 0, resid = 0, failure = 0;
2397         tstate_t *tptr = NULL;
2398         atio_private_data_t *atp = NULL;
2399         int bus;
2400         uint32_t handle, moved_data = 0, data_requested;
2401
2402         handle = ((ct2_entry_t *)arg)->ct_syshandle;
2403         ccb = isp_find_xs(isp, handle);
2404         if (ccb == NULL) {
2405                 isp_print_bytes(isp, "null ccb in isp_handle_platform_ctio", QENTRY_LEN, arg);
2406                 return;
2407         }
2408         isp_destroy_handle(isp, handle);
2409         data_requested = PISP_PCMD(ccb)->datalen;
2410         isp_free_pcmd(isp, ccb);
2411         if (isp->isp_nactive) {
2412                 isp->isp_nactive--;
2413         }
2414
2415         bus = XS_CHANNEL(ccb);
2416         tptr = get_lun_statep(isp, bus, XS_LUN(ccb));
2417         if (tptr == NULL) {
2418                 tptr = get_lun_statep(isp, bus, CAM_LUN_WILDCARD);
2419         }
2420         if (tptr == NULL) {
2421                 isp_prt(isp, ISP_LOGERR, "%s: cannot find tptr for tag %x after I/O", __func__, ccb->csio.tag_id);
2422                 return;
2423         }
2424
2425         if (IS_24XX(isp)) {
2426                 atp = isp_find_atpd(isp, tptr, ((ct7_entry_t *)arg)->ct_rxid);
2427         } else {
2428                 atp = isp_find_atpd(isp, tptr, ((ct2_entry_t *)arg)->ct_rxid);
2429         }
2430         if (atp == NULL) {
2431                 /*
2432                  * XXX: isp_clear_commands() generates fake CTIO with zero
2433                  * ct_rxid value, filling only ct_syshandle.  Workaround
2434                  * that using tag_id from the CCB, pointed by ct_syshandle.
2435                  */
2436                 atp = isp_find_atpd(isp, tptr, ccb->csio.tag_id);
2437         }
2438         if (atp == NULL) {
2439                 rls_lun_statep(isp, tptr);
2440                 isp_prt(isp, ISP_LOGERR, "%s: cannot find adjunct for %x after I/O", __func__, ccb->csio.tag_id);
2441                 return;
2442         }
2443         KASSERT((atp->ctcnt > 0), ("ctio count not greater than zero"));
2444         atp->bytes_in_transit -= data_requested;
2445         atp->ctcnt -= 1;
2446         ccb->ccb_h.status &= ~CAM_STATUS_MASK;
2447
2448         if (IS_24XX(isp)) {
2449                 ct7_entry_t *ct = arg;
2450
2451                 if (ct->ct_nphdl == CT7_SRR) {
2452                         atp->srr_ccb = ccb;
2453                         if (atp->srr_notify_rcvd)
2454                                 isp_handle_srr_start(isp, tptr, atp);
2455                         rls_lun_statep(isp, tptr);
2456                         return;
2457                 }
2458                 if (ct->ct_nphdl == CT_HBA_RESET) {
2459                         failure = CAM_UNREC_HBA_ERROR;
2460                 } else {
2461                         sentstatus = ct->ct_flags & CT7_SENDSTATUS;
2462                         ok = (ct->ct_nphdl == CT7_OK);
2463                         notify_cam = (ct->ct_header.rqs_seqno & ATPD_SEQ_NOTIFY_CAM) != 0;
2464                         if ((ct->ct_flags & CT7_DATAMASK) != CT7_NO_DATA) {
2465                                 resid = ct->ct_resid;
2466                                 moved_data = data_requested - resid;
2467                         }
2468                 }
2469                 isp_prt(isp, ok? ISP_LOGTDEBUG0 : ISP_LOGWARN, "%s: CTIO7[%x] seq %u nc %d sts 0x%x flg 0x%x sns %d resid %d %s", __func__, ct->ct_rxid, ATPD_GET_SEQNO(ct),
2470                    notify_cam, ct->ct_nphdl, ct->ct_flags, (ccb->ccb_h.status & CAM_SENT_SENSE) != 0, resid, sentstatus? "FIN" : "MID");
2471         } else {
2472                 ct2_entry_t *ct = arg;
2473                 if (ct->ct_status == CT_SRR) {
2474                         atp->srr_ccb = ccb;
2475                         if (atp->srr_notify_rcvd)
2476                                 isp_handle_srr_start(isp, tptr, atp);
2477                         rls_lun_statep(isp, tptr);
2478                         isp_target_putback_atio(ccb);
2479                         return;
2480                 }
2481                 if (ct->ct_status == CT_HBA_RESET) {
2482                         failure = CAM_UNREC_HBA_ERROR;
2483                 } else {
2484                         sentstatus = ct->ct_flags & CT2_SENDSTATUS;
2485                         ok = (ct->ct_status & ~QLTM_SVALID) == CT_OK;
2486                         notify_cam = (ct->ct_header.rqs_seqno & ATPD_SEQ_NOTIFY_CAM) != 0;
2487                         if ((ct->ct_flags & CT2_DATAMASK) != CT2_NO_DATA) {
2488                                 resid = ct->ct_resid;
2489                                 moved_data = data_requested - resid;
2490                         }
2491                 }
2492                 isp_prt(isp, ok? ISP_LOGTDEBUG0 : ISP_LOGWARN, "%s: CTIO2[%x] seq %u nc %d sts 0x%x flg 0x%x sns %d resid %d %s", __func__, ct->ct_rxid, ATPD_GET_SEQNO(ct),
2493                     notify_cam, ct->ct_status, ct->ct_flags, (ccb->ccb_h.status & CAM_SENT_SENSE) != 0, resid, sentstatus? "FIN" : "MID");
2494         }
2495         if (ok) {
2496                 if (moved_data) {
2497                         atp->bytes_xfered += moved_data;
2498                         ccb->csio.resid = atp->orig_datalen - atp->bytes_xfered - atp->bytes_in_transit;
2499                 }
2500                 if (sentstatus && (ccb->ccb_h.flags & CAM_SEND_SENSE)) {
2501                         ccb->ccb_h.status |= CAM_SENT_SENSE;
2502                 }
2503                 ccb->ccb_h.status |= CAM_REQ_CMP;
2504         } else {
2505                 notify_cam = 1;
2506                 if (failure == CAM_UNREC_HBA_ERROR)
2507                         ccb->ccb_h.status |= CAM_UNREC_HBA_ERROR;
2508                 else
2509                         ccb->ccb_h.status |= CAM_REQ_CMP_ERR;
2510         }
2511         atp->state = ATPD_STATE_PDON;
2512         rls_lun_statep(isp, tptr);
2513
2514         /*
2515          * We never *not* notify CAM when there has been any error (ok == 0),
2516          * so we never need to do an ATIO putback if we're not notifying CAM.
2517          */
2518         isp_prt(isp, ISP_LOGTDEBUG0, "%s CTIO[0x%x] done (ok=%d nc=%d nowsendstatus=%d ccb ss=%d)",
2519             (sentstatus)? "  FINAL " : "MIDTERM ", atp->tag, ok, notify_cam, atp->sendst, (ccb->ccb_h.flags & CAM_SEND_STATUS) != 0);
2520         if (notify_cam == 0) {
2521                 if (atp->sendst) {
2522                         isp_target_start_ctio(isp, ccb, FROM_CTIO_DONE);
2523                 }
2524                 return;
2525         }
2526
2527         /*
2528          * We're telling CAM we're done with this CTIO transaction.
2529          *
2530          * 24XX cards never need an ATIO put back.
2531          *
2532          * Other cards need one put back only on error.
2533          * In the latter case, a timeout will re-fire
2534          * and try again in case we didn't have
2535          * queue resources to do so at first. In any case,
2536          * once the putback is done we do the completion
2537          * call.
2538          */
2539         if (ok || IS_24XX(isp)) {
2540                 isp_complete_ctio(ccb);
2541         } else {
2542                 isp_target_putback_atio(ccb);
2543         }
2544 }
2545
2546 static void
2547 isp_handle_platform_notify_fc(ispsoftc_t *isp, in_fcentry_t *inp)
2548 {
2549         int needack = 1;
2550         switch (inp->in_status) {
2551         case IN_PORT_LOGOUT:
2552                 /*
2553                  * XXX: Need to delete this initiator's WWN from the database
2554                  * XXX: Need to send this LOGOUT upstream
2555                  */
2556                 isp_prt(isp, ISP_LOGWARN, "port logout of S_ID 0x%x", inp->in_iid);
2557                 break;
2558         case IN_PORT_CHANGED:
2559                 isp_prt(isp, ISP_LOGWARN, "port changed for S_ID 0x%x", inp->in_iid);
2560                 break;
2561         case IN_GLOBAL_LOGO:
2562                 isp_del_all_wwn_entries(isp, 0);
2563                 isp_prt(isp, ISP_LOGINFO, "all ports logged out");
2564                 break;
2565         case IN_ABORT_TASK:
2566         {
2567                 uint16_t nphdl, lun;
2568                 uint32_t sid;
2569                 uint64_t wwn;
2570                 fcportdb_t *lp;
2571                 isp_notify_t tmp, *nt = &tmp;
2572
2573                 if (ISP_CAP_SCCFW(isp)) {
2574                         lun = inp->in_scclun;
2575 #if __FreeBSD_version < 1000700
2576                         lun &= 0x3fff;
2577 #endif
2578                 } else {
2579                         lun = inp->in_lun;
2580                 }
2581                 if (ISP_CAP_2KLOGIN(isp)) {
2582                         nphdl = ((in_fcentry_e_t *)inp)->in_iid;
2583                 } else {
2584                         nphdl = inp->in_iid;
2585                 }
2586                 if (isp_find_pdb_by_handle(isp, 0, nphdl, &lp)) {
2587                         wwn = lp->port_wwn;
2588                         sid = lp->portid;
2589                 } else {
2590                         wwn = INI_ANY;
2591                         sid = PORT_ANY;
2592                 }
2593                 isp_prt(isp, ISP_LOGTDEBUG0, "ABORT TASK RX_ID %x WWN 0x%016llx",
2594                     inp->in_seqid, (unsigned long long) wwn);
2595
2596                 ISP_MEMZERO(nt, sizeof (isp_notify_t));
2597                 nt->nt_hba = isp;
2598                 nt->nt_tgt = FCPARAM(isp, 0)->isp_wwpn;
2599                 nt->nt_wwn = wwn;
2600                 nt->nt_nphdl = nphdl;
2601                 nt->nt_sid = sid;
2602                 nt->nt_did = PORT_ANY;
2603                 nt->nt_lun = lun;
2604                 nt->nt_tagval = inp->in_seqid;
2605                 nt->nt_tagval |= (((uint64_t)(isp->isp_serno++)) << 32);
2606                 nt->nt_need_ack = 1;
2607                 nt->nt_channel = 0;
2608                 nt->nt_ncode = NT_ABORT_TASK;
2609                 nt->nt_lreserved = inp;
2610                 isp_handle_platform_target_tmf(isp, nt);
2611                 needack = 0;
2612                 break;
2613         }
2614         default:
2615                 break;
2616         }
2617         if (needack) {
2618                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inp);
2619         }
2620 }
2621
2622 static void
2623 isp_handle_platform_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot)
2624 {
2625         uint16_t nphdl;
2626         uint16_t prli_options = 0;
2627         uint32_t portid;
2628         fcportdb_t *lp;
2629         char *msg = NULL;
2630         uint8_t *ptr = (uint8_t *)inot;
2631         uint64_t wwpn = INI_NONE, wwnn = INI_NONE;
2632
2633         nphdl = inot->in_nphdl;
2634         if (nphdl != NIL_HANDLE) {
2635                 portid = inot->in_portid_hi << 16 | inot->in_portid_lo;
2636         } else {
2637                 portid = PORT_ANY;
2638         }
2639
2640         switch (inot->in_status) {
2641         case IN24XX_ELS_RCVD:
2642         {
2643                 char buf[16];
2644                 int chan = ISP_GET_VPIDX(isp, inot->in_vpidx);
2645
2646                 /*
2647                  * Note that we're just getting notification that an ELS was received
2648                  * (possibly with some associated information sent upstream). This is
2649                  * *not* the same as being given the ELS frame to accept or reject.
2650                  */
2651                 switch (inot->in_status_subcode) {
2652                 case LOGO:
2653                         msg = "LOGO";
2654                         wwpn = be64dec(&ptr[IN24XX_PLOGI_WWPN_OFF]);
2655                         isp_del_wwn_entry(isp, chan, wwpn, nphdl, portid);
2656                         break;
2657                 case PRLO:
2658                         msg = "PRLO";
2659                         break;
2660                 case PLOGI:
2661                         msg = "PLOGI";
2662                         wwnn = be64dec(&ptr[IN24XX_PLOGI_WWNN_OFF]);
2663                         wwpn = be64dec(&ptr[IN24XX_PLOGI_WWPN_OFF]);
2664                         isp_add_wwn_entry(isp, chan, wwpn, wwnn,
2665                             nphdl, portid, prli_options);
2666                         break;
2667                 case PRLI:
2668                         msg = "PRLI";
2669                         prli_options = inot->in_prli_options;
2670                         if (inot->in_flags & IN24XX_FLAG_PN_NN_VALID)
2671                                 wwnn = be64dec(&ptr[IN24XX_PRLI_WWNN_OFF]);
2672                         wwpn = be64dec(&ptr[IN24XX_PRLI_WWPN_OFF]);
2673                         isp_add_wwn_entry(isp, chan, wwpn, wwnn,
2674                             nphdl, portid, prli_options);
2675                         break;
2676                 case PDISC:
2677                         msg = "PDISC";
2678                         break;
2679                 case ADISC:
2680                         msg = "ADISC";
2681                         break;
2682                 default:
2683                         ISP_SNPRINTF(buf, sizeof (buf), "ELS 0x%x", inot->in_status_subcode);
2684                         msg = buf;
2685                         break;
2686                 }
2687                 if (inot->in_flags & IN24XX_FLAG_PUREX_IOCB) {
2688                         isp_prt(isp, ISP_LOGERR, "%s Chan %d ELS N-port handle %x PortID 0x%06x marked as needing a PUREX response", msg, chan, nphdl, portid);
2689                         break;
2690                 }
2691                 isp_prt(isp, ISP_LOGTDEBUG0, "%s Chan %d ELS N-port handle %x PortID 0x%06x RX_ID 0x%x OX_ID 0x%x", msg, chan, nphdl, portid,
2692                     inot->in_rxid, inot->in_oxid);
2693                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2694                 break;
2695         }
2696
2697         case IN24XX_PORT_LOGOUT:
2698                 msg = "PORT LOGOUT";
2699                 if (isp_find_pdb_by_handle(isp, ISP_GET_VPIDX(isp, inot->in_vpidx), nphdl, &lp)) {
2700                         isp_del_wwn_entry(isp, ISP_GET_VPIDX(isp, inot->in_vpidx), lp->port_wwn, nphdl, lp->portid);
2701                 }
2702                 /* FALLTHROUGH */
2703         case IN24XX_PORT_CHANGED:
2704                 if (msg == NULL)
2705                         msg = "PORT CHANGED";
2706                 /* FALLTHROUGH */
2707         case IN24XX_LIP_RESET:
2708                 if (msg == NULL)
2709                         msg = "LIP RESET";
2710                 isp_prt(isp, ISP_LOGINFO, "Chan %d %s (sub-status 0x%x) for N-port handle 0x%x", ISP_GET_VPIDX(isp, inot->in_vpidx), msg, inot->in_status_subcode, nphdl);
2711
2712                 /*
2713                  * All subcodes here are irrelevant. What is relevant
2714                  * is that we need to terminate all active commands from
2715                  * this initiator (known by N-port handle).
2716                  */
2717                 /* XXX IMPLEMENT XXX */
2718                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2719                 break;
2720
2721         case IN24XX_SRR_RCVD:
2722 #ifdef  ISP_TARGET_MODE
2723                 isp_handle_srr_notify(isp, inot);
2724                 break;
2725 #else
2726                 if (msg == NULL)
2727                         msg = "SRR RCVD";
2728                 /* FALLTHROUGH */
2729 #endif
2730         case IN24XX_LINK_RESET:
2731                 if (msg == NULL)
2732                         msg = "LINK RESET";
2733         case IN24XX_LINK_FAILED:
2734                 if (msg == NULL)
2735                         msg = "LINK FAILED";
2736         default:
2737                 isp_prt(isp, ISP_LOGWARN, "Chan %d %s", ISP_GET_VPIDX(isp, inot->in_vpidx), msg);
2738                 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2739                 break;
2740         }
2741 }
2742
2743 static int
2744 isp_handle_platform_target_notify_ack(ispsoftc_t *isp, isp_notify_t *mp, uint32_t rsp)
2745 {
2746
2747         if (isp->isp_state != ISP_RUNSTATE) {
2748                 isp_prt(isp, ISP_LOGTINFO, "Notify Code 0x%x (qevalid=%d) acked- h/w not ready (dropping)", mp->nt_ncode, mp->nt_lreserved != NULL);
2749                 return (0);
2750         }
2751
2752         /*
2753          * This case is for a Task Management Function, which shows up as an ATIO7 entry.
2754          */
2755         if (IS_24XX(isp) && mp->nt_lreserved && ((isphdr_t *)mp->nt_lreserved)->rqs_entry_type == RQSTYPE_ATIO) {
2756                 ct7_entry_t local, *cto = &local;
2757                 at7_entry_t *aep = (at7_entry_t *)mp->nt_lreserved;
2758                 fcportdb_t *lp;
2759                 uint32_t sid;
2760                 uint16_t nphdl;
2761
2762                 sid = (aep->at_hdr.s_id[0] << 16) | (aep->at_hdr.s_id[1] << 8) | aep->at_hdr.s_id[2];
2763                 if (isp_find_pdb_by_portid(isp, mp->nt_channel, sid, &lp)) {
2764                         nphdl = lp->handle;
2765                 } else {
2766                         nphdl = NIL_HANDLE;
2767                 }
2768                 ISP_MEMZERO(&local, sizeof (local));
2769                 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7;
2770                 cto->ct_header.rqs_entry_count = 1;
2771                 cto->ct_nphdl = nphdl;
2772                 cto->ct_rxid = aep->at_rxid;
2773                 cto->ct_vpidx = mp->nt_channel;
2774                 cto->ct_iid_lo = sid;
2775                 cto->ct_iid_hi = sid >> 16;
2776                 cto->ct_oxid = aep->at_hdr.ox_id;
2777                 cto->ct_flags = CT7_SENDSTATUS|CT7_NOACK|CT7_NO_DATA|CT7_FLAG_MODE1;
2778                 cto->ct_flags |= (aep->at_ta_len >> 12) << CT7_TASK_ATTR_SHIFT;
2779                 if (rsp != 0) {
2780                         cto->ct_scsi_status |= (FCP_RSPLEN_VALID << 8);
2781                         cto->rsp.m1.ct_resplen = 4;
2782                         ISP_MEMZERO(cto->rsp.m1.ct_resp, sizeof (cto->rsp.m1.ct_resp));
2783                         cto->rsp.m1.ct_resp[0] = rsp & 0xff;
2784                         cto->rsp.m1.ct_resp[1] = (rsp >> 8) & 0xff;
2785                         cto->rsp.m1.ct_resp[2] = (rsp >> 16) & 0xff;
2786                         cto->rsp.m1.ct_resp[3] = (rsp >> 24) & 0xff;
2787                 }
2788                 return (isp_target_put_entry(isp, &local));
2789         }
2790
2791         /*
2792          * This case is for a responding to an ABTS frame
2793          */
2794         if (IS_24XX(isp) && mp->nt_lreserved && ((isphdr_t *)mp->nt_lreserved)->rqs_entry_type == RQSTYPE_ABTS_RCVD) {
2795
2796                 /*
2797                  * Overload nt_need_ack here to mark whether we've terminated the associated command.
2798                  */
2799                 if (mp->nt_need_ack) {
2800                         uint8_t storage[QENTRY_LEN];
2801                         ct7_entry_t *cto = (ct7_entry_t *) storage;
2802                         abts_t *abts = (abts_t *)mp->nt_lreserved;
2803
2804                         ISP_MEMZERO(cto, sizeof (ct7_entry_t));
2805                         isp_prt(isp, ISP_LOGTDEBUG0, "%s: [%x] terminating after ABTS received", __func__, abts->abts_rxid_task);
2806                         cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7;
2807                         cto->ct_header.rqs_entry_count = 1;
2808                         cto->ct_nphdl = mp->nt_nphdl;
2809                         cto->ct_rxid = abts->abts_rxid_task;
2810                         cto->ct_iid_lo = mp->nt_sid;
2811                         cto->ct_iid_hi = mp->nt_sid >> 16;
2812                         cto->ct_oxid = abts->abts_ox_id;
2813                         cto->ct_vpidx = mp->nt_channel;
2814                         cto->ct_flags = CT7_NOACK|CT7_TERMINATE;
2815                         if (isp_target_put_entry(isp, cto)) {
2816                                 return (ENOMEM);
2817                         }
2818                         mp->nt_need_ack = 0;
2819                 }
2820                 if (isp_acknak_abts(isp, mp->nt_lreserved, 0) == ENOMEM) {
2821                         return (ENOMEM);
2822                 } else {
2823                         return (0);
2824                 }
2825         }
2826
2827         /*
2828          * Handle logout cases here
2829          */
2830         if (mp->nt_ncode == NT_GLOBAL_LOGOUT) {
2831                 isp_del_all_wwn_entries(isp, mp->nt_channel);
2832         }
2833
2834         if (mp->nt_ncode == NT_LOGOUT) {
2835                 if (!IS_2100(isp) && IS_FC(isp)) {
2836                         isp_del_wwn_entries(isp, mp);
2837                 }
2838         }
2839
2840         /*
2841          * General purpose acknowledgement
2842          */
2843         if (mp->nt_need_ack) {
2844                 isp_prt(isp, ISP_LOGTINFO, "Notify Code 0x%x (qevalid=%d) being acked", mp->nt_ncode, mp->nt_lreserved != NULL);
2845                 /*
2846                  * Don't need to use the guaranteed send because the caller can retry
2847                  */
2848                 return (isp_notify_ack(isp, mp->nt_lreserved));
2849         }
2850         return (0);
2851 }
2852
2853 /*
2854  * Handle task management functions.
2855  *
2856  * We show up here with a notify structure filled out.
2857  *
2858  * The nt_lreserved tag points to the original queue entry
2859  */
2860 static void
2861 isp_handle_platform_target_tmf(ispsoftc_t *isp, isp_notify_t *notify)
2862 {
2863         tstate_t *tptr;
2864         fcportdb_t *lp;
2865         struct ccb_immediate_notify *inot;
2866         inot_private_data_t *ntp = NULL;
2867         lun_id_t lun;
2868
2869         isp_prt(isp, ISP_LOGTDEBUG0, "%s: code 0x%x sid  0x%x tagval 0x%016llx chan %d lun 0x%x", __func__, notify->nt_ncode,
2870             notify->nt_sid, (unsigned long long) notify->nt_tagval, notify->nt_channel, notify->nt_lun);
2871         /*
2872          * NB: This assignment is necessary because of tricky type conversion.
2873          * XXX: This is tricky and I need to check this. If the lun isn't known
2874          * XXX: for the task management function, it does not of necessity follow
2875          * XXX: that it should go up stream to the wildcard listener.
2876          */
2877         if (notify->nt_lun == LUN_ANY) {
2878                 lun = CAM_LUN_WILDCARD;
2879         } else {
2880                 lun = notify->nt_lun;
2881         }
2882         tptr = get_lun_statep(isp, notify->nt_channel, lun);
2883         if (tptr == NULL) {
2884                 tptr = get_lun_statep(isp, notify->nt_channel, CAM_LUN_WILDCARD);
2885                 if (tptr == NULL) {
2886                         isp_prt(isp, ISP_LOGWARN, "%s: no state pointer found for chan %d lun %#jx", __func__, notify->nt_channel, (uintmax_t)lun);
2887                         goto bad;
2888                 }
2889         }
2890         inot = (struct ccb_immediate_notify *) SLIST_FIRST(&tptr->inots);
2891         if (inot == NULL) {
2892                 isp_prt(isp, ISP_LOGWARN, "%s: out of immediate notify structures for chan %d lun %#jx", __func__, notify->nt_channel, (uintmax_t)lun);
2893                 goto bad;
2894         }
2895
2896         if (isp_find_pdb_by_portid(isp, notify->nt_channel, notify->nt_sid, &lp) == 0 &&
2897             isp_find_pdb_by_handle(isp, notify->nt_channel, notify->nt_nphdl, &lp) == 0) {
2898                 inot->initiator_id = CAM_TARGET_WILDCARD;
2899         } else {
2900                 inot->initiator_id = FC_PORTDB_TGT(isp, notify->nt_channel, lp);
2901         }
2902         inot->seq_id = notify->nt_tagval;
2903         inot->tag_id = notify->nt_tagval >> 32;
2904
2905         switch (notify->nt_ncode) {
2906         case NT_ABORT_TASK:
2907                 isp_target_mark_aborted_early(isp, tptr, inot->tag_id);
2908                 inot->arg = MSG_ABORT_TASK;
2909                 break;
2910         case NT_ABORT_TASK_SET:
2911                 isp_target_mark_aborted_early(isp, tptr, TAG_ANY);
2912                 inot->arg = MSG_ABORT_TASK_SET;
2913                 break;
2914         case NT_CLEAR_ACA:
2915                 inot->arg = MSG_CLEAR_ACA;
2916                 break;
2917         case NT_CLEAR_TASK_SET:
2918                 inot->arg = MSG_CLEAR_TASK_SET;
2919                 break;
2920         case NT_LUN_RESET:
2921                 inot->arg = MSG_LOGICAL_UNIT_RESET;
2922                 break;
2923         case NT_TARGET_RESET:
2924                 inot->arg = MSG_TARGET_RESET;
2925                 break;
2926         case NT_QUERY_TASK_SET:
2927                 inot->arg = MSG_QUERY_TASK_SET;
2928                 break;
2929         case NT_QUERY_ASYNC_EVENT:
2930                 inot->arg = MSG_QUERY_ASYNC_EVENT;
2931                 break;
2932         default:
2933                 isp_prt(isp, ISP_LOGWARN, "%s: unknown TMF code 0x%x for chan %d lun %#jx", __func__, notify->nt_ncode, notify->nt_channel, (uintmax_t)lun);
2934                 goto bad;
2935         }
2936
2937         ntp = isp_get_ntpd(isp, tptr);
2938         if (ntp == NULL) {
2939                 isp_prt(isp, ISP_LOGWARN, "%s: out of inotify private structures", __func__);
2940                 goto bad;
2941         }
2942         ISP_MEMCPY(&ntp->rd.nt, notify, sizeof (isp_notify_t));
2943         if (notify->nt_lreserved) {
2944                 ISP_MEMCPY(&ntp->rd.data, notify->nt_lreserved, QENTRY_LEN);
2945                 ntp->rd.nt.nt_lreserved = &ntp->rd.data;
2946         }
2947         ntp->rd.seq_id = notify->nt_tagval;
2948         ntp->rd.tag_id = notify->nt_tagval >> 32;
2949
2950         tptr->inot_count--;
2951         SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle);
2952         rls_lun_statep(isp, tptr);
2953         ISP_PATH_PRT(isp, ISP_LOGTDEBUG2, inot->ccb_h.path, "%s: Take FREE INOT count now %d\n", __func__, tptr->inot_count);
2954         inot->ccb_h.status = CAM_MESSAGE_RECV;
2955         xpt_done((union ccb *)inot);
2956         return;
2957 bad:
2958         if (tptr) {
2959                 rls_lun_statep(isp, tptr);
2960         }
2961         if (notify->nt_need_ack && notify->nt_lreserved) {
2962                 if (((isphdr_t *)notify->nt_lreserved)->rqs_entry_type == RQSTYPE_ABTS_RCVD) {
2963                         if (isp_acknak_abts(isp, notify->nt_lreserved, ENOMEM)) {
2964                                 isp_prt(isp, ISP_LOGWARN, "you lose- unable to send an ACKNAK");
2965                         }
2966                 } else {
2967                         isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, notify->nt_lreserved);
2968                 }
2969         }
2970 }
2971
2972 /*
2973  * Find the associated private data and mark it as dead so
2974  * we don't try to work on it any further.
2975  */
2976 static void
2977 isp_target_mark_aborted(ispsoftc_t *isp, union ccb *ccb)
2978 {
2979         tstate_t *tptr;
2980         atio_private_data_t *atp;
2981         union ccb *accb = ccb->cab.abort_ccb;
2982
2983         tptr = get_lun_statep(isp, XS_CHANNEL(accb), XS_LUN(accb));
2984         if (tptr == NULL) {
2985                 tptr = get_lun_statep(isp, XS_CHANNEL(accb), CAM_LUN_WILDCARD);
2986                 if (tptr == NULL) {
2987                         ccb->ccb_h.status = CAM_REQ_INVALID;
2988                         return;
2989                 }
2990         }
2991
2992         atp = isp_find_atpd(isp, tptr, accb->atio.tag_id);
2993         if (atp == NULL) {
2994                 ccb->ccb_h.status = CAM_REQ_INVALID;
2995         } else {
2996                 atp->dead = 1;
2997                 ccb->ccb_h.status = CAM_REQ_CMP;
2998         }
2999         rls_lun_statep(isp, tptr);
3000 }
3001
3002 static void
3003 isp_target_mark_aborted_early(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag_id)
3004 {
3005         atio_private_data_t *atp;
3006         inot_private_data_t *restart_queue = tptr->restart_queue;
3007
3008         /*
3009          * First, clean any commands pending restart
3010          */
3011         tptr->restart_queue = NULL;
3012         while (restart_queue) {
3013                 uint32_t this_tag_id;
3014                 inot_private_data_t *ntp = restart_queue;
3015
3016                 restart_queue = ntp->rd.nt.nt_hba;
3017
3018                 if (IS_24XX(isp)) {
3019                         this_tag_id = ((at7_entry_t *)ntp->rd.data)->at_rxid;
3020                 } else {
3021                         this_tag_id = ((at2_entry_t *)ntp->rd.data)->at_rxid;
3022                 }
3023                 if ((uint64_t)tag_id == TAG_ANY || tag_id == this_tag_id) {
3024                         isp_put_ntpd(isp, tptr, ntp);
3025                 } else {
3026                         ntp->rd.nt.nt_hba = tptr->restart_queue;
3027                         tptr->restart_queue = ntp;
3028                 }
3029         }
3030
3031         /*
3032          * Now mark other ones dead as well.
3033          */
3034         for (atp = tptr->atpool; atp < &tptr->atpool[ATPDPSIZE]; atp++) {
3035                 if ((uint64_t)tag_id == TAG_ANY || atp->tag == tag_id) {
3036                         atp->dead = 1;
3037                 }
3038         }
3039 }
3040 #endif
3041
3042 static void
3043 isp_cam_async(void *cbarg, uint32_t code, struct cam_path *path, void *arg)
3044 {
3045         struct cam_sim *sim;
3046         int bus, tgt;
3047         ispsoftc_t *isp;
3048
3049         sim = (struct cam_sim *)cbarg;
3050         isp = (ispsoftc_t *) cam_sim_softc(sim);
3051         bus = cam_sim_bus(sim);
3052         tgt = xpt_path_target_id(path);
3053
3054         switch (code) {
3055         case AC_LOST_DEVICE:
3056                 if (IS_SCSI(isp)) {
3057                         uint16_t oflags, nflags;
3058                         sdparam *sdp = SDPARAM(isp, bus);
3059
3060                         if (tgt >= 0) {
3061                                 nflags = sdp->isp_devparam[tgt].nvrm_flags;
3062                                 nflags &= DPARM_SAFE_DFLT;
3063                                 if (isp->isp_loaded_fw) {
3064                                         nflags |= DPARM_NARROW | DPARM_ASYNC;
3065                                 }
3066                                 oflags = sdp->isp_devparam[tgt].goal_flags;
3067                                 sdp->isp_devparam[tgt].goal_flags = nflags;
3068                                 sdp->isp_devparam[tgt].dev_update = 1;
3069                                 sdp->update = 1;
3070                                 (void) isp_control(isp, ISPCTL_UPDATE_PARAMS, bus);
3071                                 sdp->isp_devparam[tgt].goal_flags = oflags;
3072                         }
3073                 }
3074                 break;
3075         default:
3076                 isp_prt(isp, ISP_LOGWARN, "isp_cam_async: Code 0x%x", code);
3077                 break;
3078         }
3079 }
3080
3081 static void
3082 isp_poll(struct cam_sim *sim)
3083 {
3084         ispsoftc_t *isp = cam_sim_softc(sim);
3085         uint16_t isr, sema, info;
3086
3087         if (ISP_READ_ISR(isp, &isr, &sema, &info))
3088                 isp_intr(isp, isr, sema, info);
3089 }
3090
3091
3092 static void
3093 isp_watchdog(void *arg)
3094 {
3095         struct ccb_scsiio *xs = arg;
3096         ispsoftc_t *isp;
3097         uint32_t ohandle = ISP_HANDLE_FREE, handle;
3098
3099         isp = XS_ISP(xs);
3100
3101         handle = isp_find_handle(isp, xs);
3102
3103         /*
3104          * Hand crank the interrupt code just to be sure the command isn't stuck somewhere.
3105          */
3106         if (handle != ISP_HANDLE_FREE) {
3107                 uint16_t isr, sema, info;
3108                 if (ISP_READ_ISR(isp, &isr, &sema, &info) != 0)
3109                         isp_intr(isp, isr, sema, info);
3110                 ohandle = handle;
3111                 handle = isp_find_handle(isp, xs);
3112         }
3113         if (handle != ISP_HANDLE_FREE) {
3114                 /*
3115                  * Try and make sure the command is really dead before
3116                  * we release the handle (and DMA resources) for reuse.
3117                  *
3118                  * If we are successful in aborting the command then
3119                  * we're done here because we'll get the command returned
3120                  * back separately.
3121                  */
3122                 if (isp_control(isp, ISPCTL_ABORT_CMD, xs) == 0) {
3123                         return;
3124                 }
3125
3126                 /*
3127                  * Note that after calling the above, the command may in
3128                  * fact have been completed.
3129                  */
3130                 xs = isp_find_xs(isp, handle);
3131
3132                 /*
3133                  * If the command no longer exists, then we won't
3134                  * be able to find the xs again with this handle.
3135                  */
3136                 if (xs == NULL) {
3137                         return;
3138                 }
3139
3140                 /*
3141                  * After this point, the command is really dead.
3142                  */
3143                 if (XS_XFRLEN(xs)) {
3144                         ISP_DMAFREE(isp, xs, handle);
3145                 } 
3146                 isp_destroy_handle(isp, handle);
3147                 isp_prt(isp, ISP_LOGERR, "%s: timeout for handle 0x%x", __func__, handle);
3148                 xs->ccb_h.status &= ~CAM_STATUS_MASK;
3149                 xs->ccb_h.status |= CAM_CMD_TIMEOUT;
3150                 isp_prt_endcmd(isp, xs);
3151                 isp_done(xs);
3152         } else {
3153                 if (ohandle != ISP_HANDLE_FREE) {
3154                         isp_prt(isp, ISP_LOGWARN, "%s: timeout for handle 0x%x, recovered during interrupt", __func__, ohandle);
3155                 } else {
3156                         isp_prt(isp, ISP_LOGWARN, "%s: timeout for handle already free", __func__);
3157                 }
3158         }
3159 }
3160
3161 static void
3162 isp_make_here(ispsoftc_t *isp, fcportdb_t *fcp, int chan, int tgt)
3163 {
3164         union ccb *ccb;
3165         struct isp_fc *fc = ISP_FC_PC(isp, chan);
3166
3167         /*
3168          * Allocate a CCB, create a wildcard path for this target and schedule a rescan.
3169          */
3170         ccb = xpt_alloc_ccb_nowait();
3171         if (ccb == NULL) {
3172                 isp_prt(isp, ISP_LOGWARN, "Chan %d unable to alloc CCB for rescan", chan);
3173                 return;
3174         }
3175         if (xpt_create_path(&ccb->ccb_h.path, NULL, cam_sim_path(fc->sim),
3176             tgt, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
3177                 isp_prt(isp, ISP_LOGWARN, "unable to create path for rescan");
3178                 xpt_free_ccb(ccb);
3179                 return;
3180         }
3181         xpt_rescan(ccb);
3182 }
3183
3184 static void
3185 isp_make_gone(ispsoftc_t *isp, fcportdb_t *fcp, int chan, int tgt)
3186 {
3187         struct cam_path *tp;
3188         struct isp_fc *fc = ISP_FC_PC(isp, chan);
3189
3190         if (xpt_create_path(&tp, NULL, cam_sim_path(fc->sim), tgt, CAM_LUN_WILDCARD) == CAM_REQ_CMP) {
3191                 xpt_async(AC_LOST_DEVICE, tp, NULL);
3192                 xpt_free_path(tp);
3193         }
3194 }
3195
3196 /*
3197  * Gone Device Timer Function- when we have decided that a device has gone
3198  * away, we wait a specific period of time prior to telling the OS it has
3199  * gone away.
3200  *
3201  * This timer function fires once a second and then scans the port database
3202  * for devices that are marked dead but still have a virtual target assigned.
3203  * We decrement a counter for that port database entry, and when it hits zero,
3204  * we tell the OS the device has gone away.
3205  */
3206 static void
3207 isp_gdt(void *arg)
3208 {
3209         struct isp_fc *fc = arg;
3210         taskqueue_enqueue(taskqueue_thread, &fc->gtask);
3211 }
3212
3213 static void
3214 isp_gdt_task(void *arg, int pending)
3215 {
3216         struct isp_fc *fc = arg;
3217         ispsoftc_t *isp = fc->isp;
3218         int chan = fc - isp->isp_osinfo.pc.fc;
3219         fcportdb_t *lp;
3220         struct ac_contract ac;
3221         struct ac_device_changed *adc;
3222         int dbidx, more_to_do = 0;
3223
3224         ISP_LOCK(isp);
3225         isp_prt(isp, ISP_LOGDEBUG0, "Chan %d GDT timer expired", chan);
3226         for (dbidx = 0; dbidx < MAX_FC_TARG; dbidx++) {
3227                 lp = &FCPARAM(isp, chan)->portdb[dbidx];
3228
3229                 if (lp->state != FC_PORTDB_STATE_ZOMBIE) {
3230                         continue;
3231                 }
3232                 if (lp->gone_timer != 0) {
3233                         lp->gone_timer -= 1;
3234                         more_to_do++;
3235                         continue;
3236                 }
3237                 isp_prt(isp, ISP_LOGCONFIG, prom3, chan, dbidx, lp->portid, "Gone Device Timeout");
3238                 if (lp->is_target) {
3239                         lp->is_target = 0;
3240                         isp_make_gone(isp, lp, chan, dbidx);
3241                 }
3242                 if (lp->is_initiator) {
3243                         lp->is_initiator = 0;
3244                         ac.contract_number = AC_CONTRACT_DEV_CHG;
3245                         adc = (struct ac_device_changed *) ac.contract_data;
3246                         adc->wwpn = lp->port_wwn;
3247                         adc->port = lp->portid;
3248                         adc->target = dbidx;
3249                         adc->arrived = 0;
3250                         xpt_async(AC_CONTRACT, fc->path, &ac);
3251                 }
3252                 lp->state = FC_PORTDB_STATE_NIL;
3253         }
3254         if (fc->ready) {
3255                 if (more_to_do) {
3256                         callout_reset(&fc->gdt, hz, isp_gdt, fc);
3257                 } else {
3258                         callout_deactivate(&fc->gdt);
3259                         isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Stopping Gone Device Timer @ %lu", chan, (unsigned long) time_uptime);
3260                 }
3261         }
3262         ISP_UNLOCK(isp);
3263 }
3264
3265 /*
3266  * When loop goes down we remember the time and freeze CAM command queue.
3267  * During some time period we are trying to reprobe the loop.  But if we
3268  * fail, we tell the OS that devices have gone away and drop the freeze.
3269  *
3270  * We don't clear the devices out of our port database because, when loop
3271  * come back up, we have to do some actual cleanup with the chip at that
3272  * point (implicit PLOGO, e.g., to get the chip's port database state right).
3273  */
3274 static void
3275 isp_loop_changed(ispsoftc_t *isp, int chan)
3276 {
3277         fcparam *fcp = FCPARAM(isp, chan);
3278         struct isp_fc *fc = ISP_FC_PC(isp, chan);
3279
3280         if (fc->loop_down_time)
3281                 return;
3282         isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0, "Chan %d Loop changed", chan);
3283         if (fcp->role & ISP_ROLE_INITIATOR)
3284                 isp_freeze_loopdown(isp, chan);
3285         fc->loop_dead = 0;
3286         fc->loop_down_time = time_uptime;
3287         wakeup(fc);
3288 }
3289
3290 static void
3291 isp_loop_up(ispsoftc_t *isp, int chan)
3292 {
3293         struct isp_fc *fc = ISP_FC_PC(isp, chan);
3294
3295         isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0, "Chan %d Loop is up", chan);
3296         fc->loop_seen_once = 1;
3297         fc->loop_dead = 0;
3298         fc->loop_down_time = 0;
3299         isp_unfreeze_loopdown(isp, chan);
3300 }
3301
3302 static void
3303 isp_loop_dead(ispsoftc_t *isp, int chan)
3304 {
3305         fcparam *fcp = FCPARAM(isp, chan);
3306         struct isp_fc *fc = ISP_FC_PC(isp, chan);
3307         fcportdb_t *lp;
3308         struct ac_contract ac;
3309         struct ac_device_changed *adc;
3310         int dbidx, i;
3311
3312         isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0, "Chan %d Loop is dead", chan);
3313
3314         /*
3315          * Notify to the OS all targets who we now consider have departed.
3316          */
3317         for (dbidx = 0; dbidx < MAX_FC_TARG; dbidx++) {
3318                 lp = &fcp->portdb[dbidx];
3319
3320                 if (lp->state == FC_PORTDB_STATE_NIL)
3321                         continue;
3322
3323                 /*
3324                  * XXX: CLEAN UP AND COMPLETE ANY PENDING COMMANDS FIRST!
3325                  */
3326                 for (i = 0; i < isp->isp_maxcmds; i++) {
3327                         struct ccb_scsiio *xs;
3328
3329                         if (ISP_H2HT(isp->isp_xflist[i].handle) != ISP_HANDLE_INITIATOR) {
3330                                 continue;
3331                         }
3332                         if ((xs = isp->isp_xflist[i].cmd) == NULL) {
3333                                 continue;
3334                         }
3335                         if (dbidx != XS_TGT(xs)) {
3336                                 continue;
3337                         }
3338                         isp_prt(isp, ISP_LOGWARN, "command handle 0x%x for %d.%d.%jx orphaned by loop down timeout",
3339                             isp->isp_xflist[i].handle, chan, XS_TGT(xs),
3340                             (uintmax_t)XS_LUN(xs));
3341                 }
3342
3343                 isp_prt(isp, ISP_LOGCONFIG, prom3, chan, dbidx, lp->portid, "Loop Down Timeout");
3344                 if (lp->is_target) {
3345                         lp->is_target = 0;
3346                         isp_make_gone(isp, lp, chan, dbidx);
3347                 }
3348                 if (lp->is_initiator) {
3349                         lp->is_initiator = 0;
3350                         ac.contract_number = AC_CONTRACT_DEV_CHG;
3351                         adc = (struct ac_device_changed *) ac.contract_data;
3352                         adc->wwpn = lp->port_wwn;
3353                         adc->port = lp->portid;
3354                         adc->target = dbidx;
3355                         adc->arrived = 0;
3356                         xpt_async(AC_CONTRACT, fc->path, &ac);
3357                 }
3358         }
3359
3360         isp_unfreeze_loopdown(isp, chan);
3361         fc->loop_dead = 1;
3362         fc->loop_down_time = 0;
3363 }
3364
3365 static void
3366 isp_kthread(void *arg)
3367 {
3368         struct isp_fc *fc = arg;
3369         ispsoftc_t *isp = fc->isp;
3370         int chan = fc - isp->isp_osinfo.pc.fc;
3371         int slp = 0, d;
3372         int lb, lim;
3373
3374         mtx_lock(&isp->isp_osinfo.lock);
3375
3376         while (isp->isp_osinfo.is_exiting == 0) {
3377                 isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0,
3378                     "Chan %d Checking FC state", chan);
3379                 lb = isp_fc_runstate(isp, chan, 250000);
3380                 isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0,
3381                     "Chan %d FC got to %s state", chan,
3382                     isp_fc_loop_statename(lb));
3383
3384                 /*
3385                  * Our action is different based upon whether we're supporting
3386                  * Initiator mode or not. If we are, we might freeze the simq
3387                  * when loop is down and set all sorts of different delays to
3388                  * check again.
3389                  *
3390                  * If not, we simply just wait for loop to come up.
3391                  */
3392                 if (lb == LOOP_READY || lb < 0) {
3393                         slp = 0;
3394                 } else {
3395                         /*
3396                          * If we've never seen loop up and we've waited longer
3397                          * than quickboot time, or we've seen loop up but we've
3398                          * waited longer than loop_down_limit, give up and go
3399                          * to sleep until loop comes up.
3400                          */
3401                         if (fc->loop_seen_once == 0)
3402                                 lim = isp_quickboot_time;
3403                         else
3404                                 lim = fc->loop_down_limit;
3405                         d = time_uptime - fc->loop_down_time;
3406                         if (d >= lim)
3407                                 slp = 0;
3408                         else if (d < 10)
3409                                 slp = 1;
3410                         else if (d < 30)
3411                                 slp = 5;
3412                         else if (d < 60)
3413                                 slp = 10;
3414                         else if (d < 120)
3415                                 slp = 20;
3416                         else
3417                                 slp = 30;
3418                 }
3419
3420                 if (slp == 0) {
3421                         if (lb == LOOP_READY)
3422                                 isp_loop_up(isp, chan);
3423                         else
3424                                 isp_loop_dead(isp, chan);
3425                 }
3426
3427                 isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0,
3428                     "Chan %d sleep for %d seconds", chan, slp);
3429                 msleep(fc, &isp->isp_osinfo.lock, PRIBIO, "ispf", slp * hz);
3430         }
3431         fc->num_threads -= 1;
3432         mtx_unlock(&isp->isp_osinfo.lock);
3433         kthread_exit();
3434 }
3435
3436 static void
3437 isp_action(struct cam_sim *sim, union ccb *ccb)
3438 {
3439         int bus, tgt, ts, error;
3440         ispsoftc_t *isp;
3441         struct ccb_trans_settings *cts;
3442
3443         CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("isp_action\n"));
3444
3445         isp = (ispsoftc_t *)cam_sim_softc(sim);
3446         mtx_assert(&isp->isp_lock, MA_OWNED);
3447         isp_prt(isp, ISP_LOGDEBUG2, "isp_action code %x", ccb->ccb_h.func_code);
3448         ISP_PCMD(ccb) = NULL;
3449
3450         switch (ccb->ccb_h.func_code) {
3451         case XPT_SCSI_IO:       /* Execute the requested I/O operation */
3452                 bus = XS_CHANNEL(ccb);
3453                 /*
3454                  * Do a couple of preliminary checks...
3455                  */
3456                 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) {
3457                         if ((ccb->ccb_h.flags & CAM_CDB_PHYS) != 0) {
3458                                 ccb->ccb_h.status = CAM_REQ_INVALID;
3459                                 isp_done((struct ccb_scsiio *) ccb);
3460                                 break;
3461                         }
3462                 }
3463                 ccb->csio.req_map = NULL;
3464 #ifdef  DIAGNOSTIC
3465                 if (ccb->ccb_h.target_id >= ISP_MAX_TARGETS(isp)) {
3466                         xpt_print(ccb->ccb_h.path, "invalid target\n");
3467                         ccb->ccb_h.status = CAM_PATH_INVALID;
3468                 } else if (ISP_MAX_LUNS(isp) > 0 &&
3469                     ccb->ccb_h.target_lun >= ISP_MAX_LUNS(isp)) {
3470                         xpt_print(ccb->ccb_h.path, "invalid lun\n");
3471                         ccb->ccb_h.status = CAM_PATH_INVALID;
3472                 }
3473                 if (ccb->ccb_h.status == CAM_PATH_INVALID) {
3474                         xpt_done(ccb);
3475                         break;
3476                 }
3477 #endif
3478                 ccb->csio.scsi_status = SCSI_STATUS_OK;
3479                 if (isp_get_pcmd(isp, ccb)) {
3480                         isp_prt(isp, ISP_LOGWARN, "out of PCMDs");
3481                         cam_freeze_devq(ccb->ccb_h.path);
3482                         cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 250, 0);
3483                         ccb->ccb_h.status = CAM_REQUEUE_REQ;
3484                         xpt_done(ccb);
3485                         break;
3486                 }
3487                 error = isp_start((XS_T *) ccb);
3488                 switch (error) {
3489                 case CMD_QUEUED:
3490                         ccb->ccb_h.status |= CAM_SIM_QUEUED;
3491                         if (ccb->ccb_h.timeout == CAM_TIME_INFINITY) {
3492                                 break;
3493                         }
3494                         ts = ccb->ccb_h.timeout;
3495                         if (ts == CAM_TIME_DEFAULT) {
3496                                 ts = 60*1000;
3497                         }
3498                         ts = isp_mstohz(ts);
3499                         callout_reset(&PISP_PCMD(ccb)->wdog, ts, isp_watchdog, ccb);
3500                         break;
3501                 case CMD_RQLATER:
3502                         /*
3503                          * We get this result if the loop isn't ready
3504                          * or if the device in question has gone zombie.
3505                          */
3506                         if (ISP_FC_PC(isp, bus)->loop_dead) {
3507                                 isp_prt(isp, ISP_LOGDEBUG0,
3508                                     "%d.%jx loop is dead",
3509                                     XS_TGT(ccb), (uintmax_t)XS_LUN(ccb));
3510                                 ccb->ccb_h.status = CAM_SEL_TIMEOUT;
3511                                 isp_done((struct ccb_scsiio *) ccb);
3512                                 break;
3513                         }
3514                         isp_prt(isp, ISP_LOGDEBUG0, "%d.%jx retry later",
3515                             XS_TGT(ccb), (uintmax_t)XS_LUN(ccb));
3516                         cam_freeze_devq(ccb->ccb_h.path);
3517                         cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 1000, 0);
3518                         ccb->ccb_h.status = CAM_REQUEUE_REQ;
3519                         isp_free_pcmd(isp, ccb);
3520                         xpt_done(ccb);
3521                         break;
3522                 case CMD_EAGAIN:
3523                         isp_free_pcmd(isp, ccb);
3524                         cam_freeze_devq(ccb->ccb_h.path);
3525                         cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 100, 0);
3526                         ccb->ccb_h.status = CAM_REQUEUE_REQ;
3527                         xpt_done(ccb);
3528                         break;
3529                 case CMD_COMPLETE:
3530                         isp_done((struct ccb_scsiio *) ccb);
3531                         break;
3532                 default:
3533                         isp_prt(isp, ISP_LOGERR, "What's this? 0x%x at %d in file %s", error, __LINE__, __FILE__);
3534                         ccb->ccb_h.status = CAM_REQUEUE_REQ;
3535                         isp_free_pcmd(isp, ccb);
3536                         xpt_done(ccb);
3537                 }
3538                 break;
3539
3540 #ifdef  ISP_TARGET_MODE
3541         case XPT_EN_LUN:                /* Enable/Disable LUN as a target */
3542                 if (ccb->cel.enable) {
3543                         isp_enable_lun(isp, ccb);
3544                 } else {
3545                         isp_disable_lun(isp, ccb);
3546                 }
3547                 break;
3548         case XPT_IMMEDIATE_NOTIFY:      /* Add Immediate Notify Resource */
3549         case XPT_ACCEPT_TARGET_IO:      /* Add Accept Target IO Resource */
3550         {
3551                 tstate_t *tptr = get_lun_statep(isp, XS_CHANNEL(ccb), ccb->ccb_h.target_lun);
3552                 if (tptr == NULL) {
3553                         tptr = get_lun_statep(isp, XS_CHANNEL(ccb), CAM_LUN_WILDCARD);
3554                 }
3555                 if (tptr == NULL) {
3556                         const char *str;
3557                         uint32_t tag;
3558
3559                         if (ccb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) {
3560                                 str = "XPT_IMMEDIATE_NOTIFY";
3561                                 tag = ccb->cin1.seq_id;
3562                         } else {
3563                                 tag = ccb->atio.tag_id;
3564                                 str = "XPT_ACCEPT_TARGET_IO";
3565                         }
3566                         ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "%s: [0x%x] no state pointer found for %s\n", __func__, tag, str);
3567                         dump_tstates(isp, XS_CHANNEL(ccb));
3568                         ccb->ccb_h.status = CAM_DEV_NOT_THERE;
3569                         break;
3570                 }
3571                 ccb->ccb_h.spriv_field0 = 0;
3572                 ccb->ccb_h.spriv_ptr1 = isp;
3573
3574                 if (ccb->ccb_h.func_code == XPT_ACCEPT_TARGET_IO) {
3575                         if (ccb->atio.tag_id) {
3576                                 atio_private_data_t *atp = isp_find_atpd(isp, tptr, ccb->atio.tag_id);
3577                                 if (atp) {
3578                                         isp_put_atpd(isp, tptr, atp);
3579                                 }
3580                         }
3581                         tptr->atio_count++;
3582                         SLIST_INSERT_HEAD(&tptr->atios, &ccb->ccb_h, sim_links.sle);
3583                         ISP_PATH_PRT(isp, ISP_LOGTDEBUG2, ccb->ccb_h.path, "Put FREE ATIO (tag id 0x%x), count now %d\n",
3584                             ccb->atio.tag_id, tptr->atio_count);
3585                         ccb->atio.tag_id = 0;
3586                 } else if (ccb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) {
3587                         if (ccb->cin1.tag_id) {
3588                                 inot_private_data_t *ntp = isp_find_ntpd(isp, tptr, ccb->cin1.tag_id, ccb->cin1.seq_id);
3589                                 if (ntp) {
3590                                         isp_put_ntpd(isp, tptr, ntp);
3591                                 }
3592                         }
3593                         tptr->inot_count++;
3594                         SLIST_INSERT_HEAD(&tptr->inots, &ccb->ccb_h, sim_links.sle);
3595                         ISP_PATH_PRT(isp, ISP_LOGTDEBUG2, ccb->ccb_h.path, "Put FREE INOT, (seq id 0x%x) count now %d\n",
3596                             ccb->cin1.seq_id, tptr->inot_count);
3597                         ccb->cin1.seq_id = 0;
3598                 }
3599                 rls_lun_statep(isp, tptr);
3600                 ccb->ccb_h.status = CAM_REQ_INPROG;
3601                 break;
3602         }
3603         case XPT_NOTIFY_ACKNOWLEDGE:            /* notify ack */
3604         {
3605                 tstate_t *tptr;
3606                 inot_private_data_t *ntp;
3607
3608                 /*
3609                  * XXX: Because we cannot guarantee that the path information in the notify acknowledge ccb
3610                  * XXX: matches that for the immediate notify, we have to *search* for the notify structure
3611                  */
3612                 /*
3613                  * All the relevant path information is in the associated immediate notify
3614                  */
3615                 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "%s: [0x%x] NOTIFY ACKNOWLEDGE for 0x%x seen\n", __func__, ccb->cna2.tag_id, ccb->cna2.seq_id);
3616                 ntp = get_ntp_from_tagdata(isp, ccb->cna2.tag_id, ccb->cna2.seq_id, &tptr);
3617                 if (ntp == NULL) {
3618                         ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "%s: [0x%x] XPT_NOTIFY_ACKNOWLEDGE of 0x%x cannot find ntp private data\n", __func__,
3619                              ccb->cna2.tag_id, ccb->cna2.seq_id);
3620                         ccb->ccb_h.status = CAM_DEV_NOT_THERE;
3621                         xpt_done(ccb);
3622                         break;
3623                 }
3624                 if (isp_handle_platform_target_notify_ack(isp, &ntp->rd.nt,
3625                     (ccb->ccb_h.flags & CAM_SEND_STATUS) ? ccb->cna2.arg : 0)) {
3626                         rls_lun_statep(isp, tptr);
3627                         cam_freeze_devq(ccb->ccb_h.path);
3628                         cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 1000, 0);
3629                         ccb->ccb_h.status &= ~CAM_STATUS_MASK;
3630                         ccb->ccb_h.status |= CAM_REQUEUE_REQ;
3631                         break;
3632                 }
3633                 isp_put_ntpd(isp, tptr, ntp);
3634                 rls_lun_statep(isp, tptr);
3635                 ccb->ccb_h.status = CAM_REQ_CMP;
3636                 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "%s: [0x%x] calling xpt_done for tag 0x%x\n", __func__, ccb->cna2.tag_id, ccb->cna2.seq_id);
3637                 xpt_done(ccb);
3638                 break;
3639         }
3640         case XPT_CONT_TARGET_IO:
3641                 isp_target_start_ctio(isp, ccb, FROM_CAM);
3642                 break;
3643 #endif
3644         case XPT_RESET_DEV:             /* BDR the specified SCSI device */
3645                 bus = cam_sim_bus(xpt_path_sim(ccb->ccb_h.path));
3646                 tgt = ccb->ccb_h.target_id;
3647                 tgt |= (bus << 16);
3648
3649                 error = isp_control(isp, ISPCTL_RESET_DEV, bus, tgt);
3650                 if (error) {
3651                         ccb->ccb_h.status = CAM_REQ_CMP_ERR;
3652                 } else {
3653                         /*
3654                          * If we have a FC device, reset the Command
3655                          * Reference Number, because the target will expect
3656                          * that we re-start the CRN at 1 after a reset.
3657                          */
3658                         if (IS_FC(isp))
3659                                 isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1);
3660
3661                         ccb->ccb_h.status = CAM_REQ_CMP;
3662                 }
3663                 xpt_done(ccb);
3664                 break;
3665         case XPT_ABORT:                 /* Abort the specified CCB */
3666         {
3667                 union ccb *accb = ccb->cab.abort_ccb;
3668                 switch (accb->ccb_h.func_code) {
3669 #ifdef  ISP_TARGET_MODE
3670                 case XPT_ACCEPT_TARGET_IO:
3671                         isp_target_mark_aborted(isp, ccb);
3672                         break;
3673 #endif
3674                 case XPT_SCSI_IO:
3675                         error = isp_control(isp, ISPCTL_ABORT_CMD, accb);
3676                         if (error) {
3677                                 ccb->ccb_h.status = CAM_UA_ABORT;
3678                         } else {
3679                                 ccb->ccb_h.status = CAM_REQ_CMP;
3680                         }
3681                         break;
3682                 default:
3683                         ccb->ccb_h.status = CAM_REQ_INVALID;
3684                         break;
3685                 }
3686                 /*
3687                  * This is not a queued CCB, so the caller expects it to be
3688                  * complete when control is returned.
3689                  */
3690                 break;
3691         }
3692 #define IS_CURRENT_SETTINGS(c)  (c->type == CTS_TYPE_CURRENT_SETTINGS)
3693         case XPT_SET_TRAN_SETTINGS:     /* Nexus Settings */
3694                 cts = &ccb->cts;
3695                 if (!IS_CURRENT_SETTINGS(cts)) {
3696                         ccb->ccb_h.status = CAM_REQ_INVALID;
3697                         xpt_done(ccb);
3698                         break;
3699                 }
3700                 tgt = cts->ccb_h.target_id;
3701                 bus = cam_sim_bus(xpt_path_sim(cts->ccb_h.path));
3702                 if (IS_SCSI(isp)) {
3703                         struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi;
3704                         struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi;
3705                         sdparam *sdp = SDPARAM(isp, bus);
3706                         uint16_t *dptr;
3707
3708                         if (spi->valid == 0 && scsi->valid == 0) {
3709                                 ccb->ccb_h.status = CAM_REQ_CMP;
3710                                 xpt_done(ccb);
3711                                 break;
3712                         }
3713
3714                         /*
3715                          * We always update (internally) from goal_flags
3716                          * so any request to change settings just gets
3717                          * vectored to that location.
3718                          */
3719                         dptr = &sdp->isp_devparam[tgt].goal_flags;
3720
3721                         if ((spi->valid & CTS_SPI_VALID_DISC) != 0) {
3722                                 if ((spi->flags & CTS_SPI_FLAGS_DISC_ENB) != 0)
3723                                         *dptr |= DPARM_DISC;
3724                                 else
3725                                         *dptr &= ~DPARM_DISC;
3726                         }
3727
3728                         if ((scsi->valid & CTS_SCSI_VALID_TQ) != 0) {
3729                                 if ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0)
3730                                         *dptr |= DPARM_TQING;
3731                                 else
3732                                         *dptr &= ~DPARM_TQING;
3733                         }
3734
3735                         if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) != 0) {
3736                                 if (spi->bus_width == MSG_EXT_WDTR_BUS_16_BIT)
3737                                         *dptr |= DPARM_WIDE;
3738                                 else
3739                                         *dptr &= ~DPARM_WIDE;
3740                         }
3741
3742                         /*
3743                          * XXX: FIX ME
3744                          */
3745                         if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) && (spi->valid & CTS_SPI_VALID_SYNC_RATE) && (spi->sync_period && spi->sync_offset)) {
3746                                 *dptr |= DPARM_SYNC;
3747                                 /*
3748                                  * XXX: CHECK FOR LEGALITY
3749                                  */
3750                                 sdp->isp_devparam[tgt].goal_period = spi->sync_period;
3751                                 sdp->isp_devparam[tgt].goal_offset = spi->sync_offset;
3752                         } else {
3753                                 *dptr &= ~DPARM_SYNC;
3754                         }
3755                         isp_prt(isp, ISP_LOGDEBUG0, "SET (%d.%d.%jx) to flags %x off %x per %x", bus, tgt, (uintmax_t)cts->ccb_h.target_lun, sdp->isp_devparam[tgt].goal_flags,
3756                             sdp->isp_devparam[tgt].goal_offset, sdp->isp_devparam[tgt].goal_period);
3757                         sdp->isp_devparam[tgt].dev_update = 1;
3758                         sdp->update = 1;
3759                 }
3760                 ccb->ccb_h.status = CAM_REQ_CMP;
3761                 xpt_done(ccb);
3762                 break;
3763         case XPT_GET_TRAN_SETTINGS:
3764                 cts = &ccb->cts;
3765                 tgt = cts->ccb_h.target_id;
3766                 bus = cam_sim_bus(xpt_path_sim(cts->ccb_h.path));
3767                 if (IS_FC(isp)) {
3768                         fcparam *fcp = FCPARAM(isp, bus);
3769                         struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi;
3770                         struct ccb_trans_settings_fc *fc = &cts->xport_specific.fc;
3771
3772                         cts->protocol = PROTO_SCSI;
3773                         cts->protocol_version = SCSI_REV_2;
3774                         cts->transport = XPORT_FC;
3775                         cts->transport_version = 0;
3776
3777                         scsi->valid = CTS_SCSI_VALID_TQ;
3778                         scsi->flags = CTS_SCSI_FLAGS_TAG_ENB;
3779                         fc->valid = CTS_FC_VALID_SPEED;
3780                         fc->bitrate = 100000;
3781                         fc->bitrate *= fcp->isp_gbspeed;
3782                         if (tgt < MAX_FC_TARG) {
3783                                 fcportdb_t *lp = &fcp->portdb[tgt];
3784                                 fc->wwnn = lp->node_wwn;
3785                                 fc->wwpn = lp->port_wwn;
3786                                 fc->port = lp->portid;
3787                                 fc->valid |= CTS_FC_VALID_WWNN | CTS_FC_VALID_WWPN | CTS_FC_VALID_PORT;
3788                         }
3789                 } else {
3790                         struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi;
3791                         struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi;
3792                         sdparam *sdp = SDPARAM(isp, bus);
3793                         uint16_t dval, pval, oval;
3794
3795                         if (IS_CURRENT_SETTINGS(cts)) {
3796                                 sdp->isp_devparam[tgt].dev_refresh = 1;
3797                                 sdp->update = 1;
3798                                 (void) isp_control(isp, ISPCTL_UPDATE_PARAMS, bus);
3799                                 dval = sdp->isp_devparam[tgt].actv_flags;
3800                                 oval = sdp->isp_devparam[tgt].actv_offset;
3801                                 pval = sdp->isp_devparam[tgt].actv_period;
3802                         } else {
3803                                 dval = sdp->isp_devparam[tgt].nvrm_flags;
3804                                 oval = sdp->isp_devparam[tgt].nvrm_offset;
3805                                 pval = sdp->isp_devparam[tgt].nvrm_period;
3806                         }
3807
3808                         cts->protocol = PROTO_SCSI;
3809                         cts->protocol_version = SCSI_REV_2;
3810                         cts->transport = XPORT_SPI;
3811                         cts->transport_version = 2;
3812
3813                         spi->valid = 0;
3814                         scsi->valid = 0;
3815                         spi->flags = 0;
3816                         scsi->flags = 0;
3817                         if (dval & DPARM_DISC) {
3818                                 spi->flags |= CTS_SPI_FLAGS_DISC_ENB;
3819                         }
3820                         if ((dval & DPARM_SYNC) && oval && pval) {
3821                                 spi->sync_offset = oval;
3822                                 spi->sync_period = pval;
3823                         } else {
3824                                 spi->sync_offset = 0;
3825                                 spi->sync_period = 0;
3826                         }
3827                         spi->valid |= CTS_SPI_VALID_SYNC_OFFSET;
3828                         spi->valid |= CTS_SPI_VALID_SYNC_RATE;
3829                         spi->valid |= CTS_SPI_VALID_BUS_WIDTH;
3830                         if (dval & DPARM_WIDE) {
3831                                 spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT;
3832                         } else {
3833                                 spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT;
3834                         }
3835                         if (cts->ccb_h.target_lun != CAM_LUN_WILDCARD) {
3836                                 scsi->valid = CTS_SCSI_VALID_TQ;
3837                                 if (dval & DPARM_TQING) {
3838                                         scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB;
3839                                 }
3840                                 spi->valid |= CTS_SPI_VALID_DISC;
3841                         }
3842                         isp_prt(isp, ISP_LOGDEBUG0, "GET %s (%d.%d.%jx) to flags %x off %x per %x", IS_CURRENT_SETTINGS(cts)? "ACTIVE" : "NVRAM",
3843                             bus, tgt, (uintmax_t)cts->ccb_h.target_lun, dval, oval, pval);
3844                 }
3845                 ccb->ccb_h.status = CAM_REQ_CMP;
3846                 xpt_done(ccb);
3847                 break;
3848
3849         case XPT_CALC_GEOMETRY:
3850                 cam_calc_geometry(&ccb->ccg, 1);
3851                 xpt_done(ccb);
3852                 break;
3853
3854         case XPT_RESET_BUS:             /* Reset the specified bus */
3855                 bus = cam_sim_bus(sim);
3856                 error = isp_control(isp, ISPCTL_RESET_BUS, bus);
3857                 if (error) {
3858                         ccb->ccb_h.status = CAM_REQ_CMP_ERR;
3859                         xpt_done(ccb);
3860                         break;
3861                 }
3862                 if (bootverbose) {
3863                         xpt_print(ccb->ccb_h.path, "reset bus on channel %d\n", bus);
3864                 }
3865                 if (IS_FC(isp)) {
3866                         xpt_async(AC_BUS_RESET, ISP_FC_PC(isp, bus)->path, 0);
3867                 } else {
3868                         xpt_async(AC_BUS_RESET, ISP_SPI_PC(isp, bus)->path, 0);
3869                 }
3870                 ccb->ccb_h.status = CAM_REQ_CMP;
3871                 xpt_done(ccb);
3872                 break;
3873
3874         case XPT_TERM_IO:               /* Terminate the I/O process */
3875                 ccb->ccb_h.status = CAM_REQ_INVALID;
3876                 xpt_done(ccb);
3877                 break;
3878
3879         case XPT_SET_SIM_KNOB:          /* Set SIM knobs */
3880         {
3881                 struct ccb_sim_knob *kp = &ccb->knob;
3882                 fcparam *fcp;
3883
3884                 if (!IS_FC(isp)) {
3885                         ccb->ccb_h.status = CAM_REQ_INVALID;
3886                         xpt_done(ccb);
3887                         break;
3888                 }
3889
3890                 bus = cam_sim_bus(xpt_path_sim(kp->ccb_h.path));
3891                 fcp = FCPARAM(isp, bus);
3892
3893                 if (kp->xport_specific.fc.valid & KNOB_VALID_ADDRESS) {
3894                         fcp->isp_wwnn = ISP_FC_PC(isp, bus)->def_wwnn = kp->xport_specific.fc.wwnn;
3895                         fcp->isp_wwpn = ISP_FC_PC(isp, bus)->def_wwpn = kp->xport_specific.fc.wwpn;
3896                         isp_prt(isp, ISP_LOGALL, "Setting Channel %d wwns to 0x%jx 0x%jx", bus, fcp->isp_wwnn, fcp->isp_wwpn);
3897                 }
3898                 ccb->ccb_h.status = CAM_REQ_CMP;
3899                 if (kp->xport_specific.fc.valid & KNOB_VALID_ROLE) {
3900                         int rchange = 0;
3901                         int newrole = 0;
3902
3903                         switch (kp->xport_specific.fc.role) {
3904                         case KNOB_ROLE_NONE:
3905                                 if (fcp->role != ISP_ROLE_NONE) {
3906                                         rchange = 1;
3907                                         newrole = ISP_ROLE_NONE;
3908                                 }
3909                                 break;
3910                         case KNOB_ROLE_TARGET:
3911                                 if (fcp->role != ISP_ROLE_TARGET) {
3912                                         rchange = 1;
3913                                         newrole = ISP_ROLE_TARGET;
3914                                 }
3915                                 break;
3916                         case KNOB_ROLE_INITIATOR:
3917                                 if (fcp->role != ISP_ROLE_INITIATOR) {
3918                                         rchange = 1;
3919                                         newrole = ISP_ROLE_INITIATOR;
3920                                 }
3921                                 break;
3922                         case KNOB_ROLE_BOTH:
3923                                 if (fcp->role != ISP_ROLE_BOTH) {
3924                                         rchange = 1;
3925                                         newrole = ISP_ROLE_BOTH;
3926                                 }
3927                                 break;
3928                         }
3929                         if (rchange) {
3930                                 ISP_PATH_PRT(isp, ISP_LOGCONFIG, ccb->ccb_h.path, "changing role on from %d to %d\n", fcp->role, newrole);
3931                                 if (isp_control(isp, ISPCTL_CHANGE_ROLE,
3932                                     bus, newrole) != 0) {
3933                                         ccb->ccb_h.status = CAM_REQ_CMP_ERR;
3934                                         xpt_done(ccb);
3935                                         break;
3936                                 }
3937                         }
3938                 }
3939                 xpt_done(ccb);
3940                 break;
3941         }
3942         case XPT_GET_SIM_KNOB_OLD:      /* Get SIM knobs -- compat value */
3943         case XPT_GET_SIM_KNOB:          /* Get SIM knobs */
3944         {
3945                 struct ccb_sim_knob *kp = &ccb->knob;
3946
3947                 if (IS_FC(isp)) {
3948                         fcparam *fcp;
3949
3950                         bus = cam_sim_bus(xpt_path_sim(kp->ccb_h.path));
3951                         fcp = FCPARAM(isp, bus);
3952
3953                         kp->xport_specific.fc.wwnn = fcp->isp_wwnn;
3954                         kp->xport_specific.fc.wwpn = fcp->isp_wwpn;
3955                         switch (fcp->role) {
3956                         case ISP_ROLE_NONE:
3957                                 kp->xport_specific.fc.role = KNOB_ROLE_NONE;
3958                                 break;
3959                         case ISP_ROLE_TARGET:
3960                                 kp->xport_specific.fc.role = KNOB_ROLE_TARGET;
3961                                 break;
3962                         case ISP_ROLE_INITIATOR:
3963                                 kp->xport_specific.fc.role = KNOB_ROLE_INITIATOR;
3964                                 break;
3965                         case ISP_ROLE_BOTH:
3966                                 kp->xport_specific.fc.role = KNOB_ROLE_BOTH;
3967                                 break;
3968                         }
3969                         kp->xport_specific.fc.valid = KNOB_VALID_ADDRESS | KNOB_VALID_ROLE;
3970                         ccb->ccb_h.status = CAM_REQ_CMP;
3971                 } else {
3972                         ccb->ccb_h.status = CAM_REQ_INVALID;
3973                 }
3974                 xpt_done(ccb);
3975                 break;
3976         }
3977         case XPT_PATH_INQ:              /* Path routing inquiry */
3978         {
3979                 struct ccb_pathinq *cpi = &ccb->cpi;
3980
3981                 cpi->version_num = 1;
3982 #ifdef  ISP_TARGET_MODE
3983                 if (IS_FC(isp) && ISP_CAP_TMODE(isp) && ISP_CAP_SCCFW(isp))
3984                         cpi->target_sprt = PIT_PROCESSOR | PIT_DISCONNECT | PIT_TERM_IO;
3985                 else
3986 #endif
3987                         cpi->target_sprt = 0;
3988                 cpi->hba_eng_cnt = 0;
3989                 cpi->max_target = ISP_MAX_TARGETS(isp) - 1;
3990                 cpi->max_lun = ISP_MAX_LUNS(isp) == 0 ?
3991                     255 : ISP_MAX_LUNS(isp) - 1;
3992                 cpi->bus_id = cam_sim_bus(sim);
3993                 if (isp->isp_osinfo.sixtyfourbit)
3994                         cpi->maxio = (ISP_NSEG64_MAX - 1) * PAGE_SIZE;
3995                 else
3996                         cpi->maxio = (ISP_NSEG_MAX - 1) * PAGE_SIZE;
3997
3998                 bus = cam_sim_bus(xpt_path_sim(cpi->ccb_h.path));
3999                 if (IS_FC(isp)) {
4000                         fcparam *fcp = FCPARAM(isp, bus);
4001
4002                         cpi->hba_misc = PIM_NOBUSRESET | PIM_UNMAPPED;
4003 #if __FreeBSD_version >= 1000700
4004                         cpi->hba_misc |= PIM_EXTLUNS;
4005 #endif
4006 #if __FreeBSD_version >= 1000039
4007                         cpi->hba_misc |= PIM_NOSCAN;
4008 #endif
4009
4010                         /*
4011                          * Because our loop ID can shift from time to time,
4012                          * make our initiator ID out of range of our bus.
4013                          */
4014                         cpi->initiator_id = cpi->max_target + 1;
4015
4016                         /*
4017                          * Set base transfer capabilities for Fibre Channel, for this HBA.
4018                          */
4019                         if (IS_25XX(isp)) {
4020                                 cpi->base_transfer_speed = 8000000;
4021                         } else if (IS_24XX(isp)) {
4022                                 cpi->base_transfer_speed = 4000000;
4023                         } else if (IS_23XX(isp)) {
4024                                 cpi->base_transfer_speed = 2000000;
4025                         } else {
4026                                 cpi->base_transfer_speed = 1000000;
4027                         }
4028                         cpi->hba_inquiry = PI_TAG_ABLE;
4029                         cpi->transport = XPORT_FC;
4030                         cpi->transport_version = 0;
4031                         cpi->xport_specific.fc.wwnn = fcp->isp_wwnn;
4032                         cpi->xport_specific.fc.wwpn = fcp->isp_wwpn;
4033                         cpi->xport_specific.fc.port = fcp->isp_portid;
4034                         cpi->xport_specific.fc.bitrate = fcp->isp_gbspeed * 1000;
4035                 } else {
4036                         sdparam *sdp = SDPARAM(isp, bus);
4037                         cpi->hba_inquiry = PI_SDTR_ABLE|PI_TAG_ABLE|PI_WIDE_16;
4038                         cpi->hba_misc = PIM_UNMAPPED;
4039                         cpi->initiator_id = sdp->isp_initiator_id;
4040                         cpi->base_transfer_speed = 3300;
4041                         cpi->transport = XPORT_SPI;
4042                         cpi->transport_version = 2;
4043                 }
4044                 cpi->protocol = PROTO_SCSI;
4045                 cpi->protocol_version = SCSI_REV_2;
4046                 strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
4047                 strncpy(cpi->hba_vid, "Qlogic", HBA_IDLEN);
4048                 strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
4049                 cpi->unit_number = cam_sim_unit(sim);
4050                 cpi->ccb_h.status = CAM_REQ_CMP;
4051                 xpt_done(ccb);
4052                 break;
4053         }
4054         default:
4055                 ccb->ccb_h.status = CAM_REQ_INVALID;
4056                 xpt_done(ccb);
4057                 break;
4058         }
4059 }
4060
4061 #define ISPDDB  (CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB)
4062
4063 void
4064 isp_done(XS_T *sccb)
4065 {
4066         ispsoftc_t *isp = XS_ISP(sccb);
4067         uint32_t status;
4068
4069         if (XS_NOERR(sccb))
4070                 XS_SETERR(sccb, CAM_REQ_CMP);
4071
4072         if ((sccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP && (sccb->scsi_status != SCSI_STATUS_OK)) {
4073                 sccb->ccb_h.status &= ~CAM_STATUS_MASK;
4074                 if ((sccb->scsi_status == SCSI_STATUS_CHECK_COND) && (sccb->ccb_h.status & CAM_AUTOSNS_VALID) == 0) {
4075                         sccb->ccb_h.status |= CAM_AUTOSENSE_FAIL;
4076                 } else {
4077                         sccb->ccb_h.status |= CAM_SCSI_STATUS_ERROR;
4078                 }
4079         }
4080
4081         sccb->ccb_h.status &= ~CAM_SIM_QUEUED;
4082         status = sccb->ccb_h.status & CAM_STATUS_MASK;
4083         if (status != CAM_REQ_CMP) {
4084                 if (status != CAM_SEL_TIMEOUT)
4085                         isp_prt(isp, ISP_LOGDEBUG0,
4086                             "target %d lun %jx CAM status 0x%x SCSI status 0x%x",
4087                             XS_TGT(sccb), (uintmax_t)XS_LUN(sccb),
4088                             sccb->ccb_h.status, sccb->scsi_status);
4089                 else if ((IS_FC(isp))
4090                       && (XS_TGT(sccb) < MAX_FC_TARG)) {
4091                         fcparam *fcp;
4092
4093                         fcp = FCPARAM(isp, XS_CHANNEL(sccb));
4094                         fcp->portdb[XS_TGT(sccb)].is_target = 0;
4095                 }
4096                 if ((sccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
4097                         sccb->ccb_h.status |= CAM_DEV_QFRZN;
4098                         xpt_freeze_devq(sccb->ccb_h.path, 1);
4099                 }
4100         }
4101
4102         if ((CAM_DEBUGGED(sccb->ccb_h.path, ISPDDB)) && (sccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
4103                 xpt_print(sccb->ccb_h.path, "cam completion status 0x%x\n", sccb->ccb_h.status);
4104         }
4105
4106         if (ISP_PCMD(sccb)) {
4107                 if (callout_active(&PISP_PCMD(sccb)->wdog))
4108                         callout_stop(&PISP_PCMD(sccb)->wdog);
4109                 isp_free_pcmd(isp, (union ccb *) sccb);
4110         }
4111         xpt_done((union ccb *) sccb);
4112 }
4113
4114 void
4115 isp_async(ispsoftc_t *isp, ispasync_t cmd, ...)
4116 {
4117         int bus;
4118         static const char prom[] = "Chan %d [%d] WWPN 0x%16jx PortID 0x%06x handle 0x%x %s %s";
4119         char buf[64];
4120         char *msg = NULL;
4121         target_id_t tgt;
4122         fcportdb_t *lp;
4123         struct isp_fc *fc;
4124         struct cam_path *tmppath;
4125         struct ac_contract ac;
4126         struct ac_device_changed *adc;
4127         va_list ap;
4128
4129         switch (cmd) {
4130         case ISPASYNC_NEW_TGT_PARAMS:
4131         {
4132                 struct ccb_trans_settings_scsi *scsi;
4133                 struct ccb_trans_settings_spi *spi;
4134                 int flags, tgt;
4135                 sdparam *sdp;
4136                 struct ccb_trans_settings cts;
4137
4138                 memset(&cts, 0, sizeof (struct ccb_trans_settings));
4139
4140                 va_start(ap, cmd);
4141                 bus = va_arg(ap, int);
4142                 tgt = va_arg(ap, int);
4143                 va_end(ap);
4144                 sdp = SDPARAM(isp, bus);
4145
4146                 if (xpt_create_path(&tmppath, NULL, cam_sim_path(ISP_SPI_PC(isp, bus)->sim), tgt, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
4147                         isp_prt(isp, ISP_LOGWARN, "isp_async cannot make temp path for %d.%d", tgt, bus);
4148                         break;
4149                 }
4150                 flags = sdp->isp_devparam[tgt].actv_flags;
4151                 cts.type = CTS_TYPE_CURRENT_SETTINGS;
4152                 cts.protocol = PROTO_SCSI;
4153                 cts.transport = XPORT_SPI;
4154
4155                 scsi = &cts.proto_specific.scsi;
4156                 spi = &cts.xport_specific.spi;
4157
4158                 if (flags & DPARM_TQING) {
4159                         scsi->valid |= CTS_SCSI_VALID_TQ;
4160                         scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB;
4161                 }
4162
4163                 if (flags & DPARM_DISC) {
4164                         spi->valid |= CTS_SPI_VALID_DISC;
4165                         spi->flags |= CTS_SPI_FLAGS_DISC_ENB;
4166                 }
4167                 spi->flags |= CTS_SPI_VALID_BUS_WIDTH;
4168                 if (flags & DPARM_WIDE) {
4169                         spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT;
4170                 } else {
4171                         spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT;
4172                 }
4173                 if (flags & DPARM_SYNC) {
4174                         spi->valid |= CTS_SPI_VALID_SYNC_RATE;
4175                         spi->valid |= CTS_SPI_VALID_SYNC_OFFSET;
4176                         spi->sync_period = sdp->isp_devparam[tgt].actv_period;
4177                         spi->sync_offset = sdp->isp_devparam[tgt].actv_offset;
4178                 }
4179                 isp_prt(isp, ISP_LOGDEBUG2, "NEW_TGT_PARAMS bus %d tgt %d period %x offset %x flags %x", bus, tgt, sdp->isp_devparam[tgt].actv_period, sdp->isp_devparam[tgt].actv_offset, flags);
4180                 xpt_setup_ccb(&cts.ccb_h, tmppath, 1);
4181                 xpt_async(AC_TRANSFER_NEG, tmppath, &cts);
4182                 xpt_free_path(tmppath);
4183                 break;
4184         }
4185         case ISPASYNC_BUS_RESET:
4186         {
4187                 va_start(ap, cmd);
4188                 bus = va_arg(ap, int);
4189                 va_end(ap);
4190                 isp_prt(isp, ISP_LOGINFO, "SCSI bus reset on bus %d detected", bus);
4191                 if (IS_FC(isp)) {
4192                         xpt_async(AC_BUS_RESET, ISP_FC_PC(isp, bus)->path, NULL);
4193                 } else {
4194                         xpt_async(AC_BUS_RESET, ISP_SPI_PC(isp, bus)->path, NULL);
4195                 }
4196                 break;
4197         }
4198         case ISPASYNC_LIP:
4199                 if (msg == NULL)
4200                         msg = "LIP Received";
4201                 /* FALLTHROUGH */
4202         case ISPASYNC_LOOP_RESET:
4203                 if (msg == NULL)
4204                         msg = "LOOP Reset";
4205                 /* FALLTHROUGH */
4206         case ISPASYNC_LOOP_DOWN:
4207                 if (msg == NULL)
4208                         msg = "LOOP Down";
4209                 va_start(ap, cmd);
4210                 bus = va_arg(ap, int);
4211                 va_end(ap);
4212                 isp_fcp_reset_crn(isp, bus, /*tgt*/0, /*tgt_set*/ 0);
4213                 isp_loop_changed(isp, bus);
4214                 isp_prt(isp, ISP_LOGINFO, "Chan %d %s", bus, msg);
4215                 break;
4216         case ISPASYNC_LOOP_UP:
4217                 va_start(ap, cmd);
4218                 bus = va_arg(ap, int);
4219                 va_end(ap);
4220                 isp_loop_changed(isp, bus);
4221                 isp_prt(isp, ISP_LOGINFO, "Chan %d Loop UP", bus);
4222                 break;
4223         case ISPASYNC_DEV_ARRIVED:
4224                 va_start(ap, cmd);
4225                 bus = va_arg(ap, int);
4226                 lp = va_arg(ap, fcportdb_t *);
4227                 va_end(ap);
4228                 fc = ISP_FC_PC(isp, bus);
4229                 tgt = FC_PORTDB_TGT(isp, bus, lp);
4230                 isp_gen_role_str(buf, sizeof (buf), lp->prli_word3);
4231                 isp_prt(isp, ISP_LOGCONFIG, prom, bus, tgt, lp->port_wwn, lp->portid, lp->handle, buf, "arrived");
4232                 if ((FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) &&
4233                     (lp->prli_word3 & PRLI_WD3_TARGET_FUNCTION)) {
4234                         lp->is_target = 1;
4235                         isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1);
4236                         isp_make_here(isp, lp, bus, tgt);
4237                 }
4238                 if ((FCPARAM(isp, bus)->role & ISP_ROLE_TARGET) &&
4239                     (lp->prli_word3 & PRLI_WD3_INITIATOR_FUNCTION)) {
4240                         lp->is_initiator = 1;
4241                         ac.contract_number = AC_CONTRACT_DEV_CHG;
4242                         adc = (struct ac_device_changed *) ac.contract_data;
4243                         adc->wwpn = lp->port_wwn;
4244                         adc->port = lp->portid;
4245                         adc->target = tgt;
4246                         adc->arrived = 1;
4247                         xpt_async(AC_CONTRACT, fc->path, &ac);
4248                 }
4249                 break;
4250         case ISPASYNC_DEV_CHANGED:
4251                 va_start(ap, cmd);
4252                 bus = va_arg(ap, int);
4253                 lp = va_arg(ap, fcportdb_t *);
4254                 va_end(ap);
4255                 fc = ISP_FC_PC(isp, bus);
4256                 tgt = FC_PORTDB_TGT(isp, bus, lp);
4257                 isp_gen_role_str(buf, sizeof (buf), lp->new_prli_word3);
4258                 isp_prt(isp, ISP_LOGCONFIG, prom, bus, tgt, lp->port_wwn, lp->new_portid, lp->handle, buf, "changed");
4259 changed:
4260                 if (lp->is_target !=
4261                     ((FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) &&
4262                      (lp->new_prli_word3 & PRLI_WD3_TARGET_FUNCTION))) {
4263                         lp->is_target = !lp->is_target;
4264                         if (lp->is_target) {
4265                                 isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1);
4266                                 isp_make_here(isp, lp, bus, tgt);
4267                         } else {
4268                                 isp_make_gone(isp, lp, bus, tgt);
4269                                 isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1);
4270                         }
4271                 }
4272                 if (lp->is_initiator !=
4273                     ((FCPARAM(isp, bus)->role & ISP_ROLE_TARGET) &&
4274                      (lp->new_prli_word3 & PRLI_WD3_INITIATOR_FUNCTION))) {
4275                         lp->is_initiator = !lp->is_initiator;
4276                         ac.contract_number = AC_CONTRACT_DEV_CHG;
4277                         adc = (struct ac_device_changed *) ac.contract_data;
4278                         adc->wwpn = lp->port_wwn;
4279                         adc->port = lp->portid;
4280                         adc->target = tgt;
4281                         adc->arrived = lp->is_initiator;
4282                         xpt_async(AC_CONTRACT, fc->path, &ac);
4283                 }
4284                 break;
4285         case ISPASYNC_DEV_STAYED:
4286                 va_start(ap, cmd);
4287                 bus = va_arg(ap, int);
4288                 lp = va_arg(ap, fcportdb_t *);
4289                 va_end(ap);
4290                 fc = ISP_FC_PC(isp, bus);
4291                 tgt = FC_PORTDB_TGT(isp, bus, lp);
4292                 isp_gen_role_str(buf, sizeof (buf), lp->prli_word3);
4293                 isp_prt(isp, ISP_LOGCONFIG, prom, bus, tgt, lp->port_wwn, lp->portid, lp->handle, buf, "stayed");
4294                 goto changed;
4295         case ISPASYNC_DEV_GONE:
4296                 va_start(ap, cmd);
4297                 bus = va_arg(ap, int);
4298                 lp = va_arg(ap, fcportdb_t *);
4299                 va_end(ap);
4300                 fc = ISP_FC_PC(isp, bus);
4301                 tgt = FC_PORTDB_TGT(isp, bus, lp);
4302                 /*
4303                  * If this has a virtual target or initiator set the isp_gdt
4304                  * timer running on it to delay its departure.
4305                  */
4306                 isp_gen_role_str(buf, sizeof (buf), lp->prli_word3);
4307                 if (lp->is_target || lp->is_initiator) {
4308                         lp->state = FC_PORTDB_STATE_ZOMBIE;
4309                         lp->gone_timer = fc->gone_device_time;
4310                         isp_prt(isp, ISP_LOGCONFIG, prom, bus, tgt, lp->port_wwn, lp->portid, lp->handle, buf, "gone zombie");
4311                         if (fc->ready && !callout_active(&fc->gdt)) {
4312                                 isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0, "Chan %d Starting Gone Device Timer with %u seconds time now %lu", bus, lp->gone_timer, (unsigned long)time_uptime);
4313                                 callout_reset(&fc->gdt, hz, isp_gdt, fc);
4314                         }
4315                         break;
4316                 }
4317                 isp_prt(isp, ISP_LOGCONFIG, prom, bus, tgt, lp->port_wwn, lp->portid, lp->handle, buf, "gone");
4318                 break;
4319         case ISPASYNC_CHANGE_NOTIFY:
4320         {
4321                 char *msg;
4322                 int evt, nphdl, nlstate, portid, reason;
4323
4324                 va_start(ap, cmd);
4325                 bus = va_arg(ap, int);
4326                 evt = va_arg(ap, int);
4327                 if (evt == ISPASYNC_CHANGE_PDB) {
4328                         nphdl = va_arg(ap, int);
4329                         nlstate = va_arg(ap, int);
4330                         reason = va_arg(ap, int);
4331                 } else if (evt == ISPASYNC_CHANGE_SNS) {
4332                         portid = va_arg(ap, int);
4333                 } else {
4334                         nphdl = NIL_HANDLE;
4335                         nlstate = reason = 0;
4336                 }
4337                 va_end(ap);
4338                 fc = ISP_FC_PC(isp, bus);
4339
4340                 if (evt == ISPASYNC_CHANGE_PDB) {
4341                         msg = "Port Database Changed";
4342                         isp_prt(isp, ISP_LOGINFO,
4343                             "Chan %d %s (nphdl 0x%x state 0x%x reason 0x%x)",
4344                             bus, msg, nphdl, nlstate, reason);
4345                 } else if (evt == ISPASYNC_CHANGE_SNS) {
4346                         msg = "Name Server Database Changed";
4347                         isp_prt(isp, ISP_LOGINFO, "Chan %d %s (PortID 0x%06x)",
4348                             bus, msg, portid);
4349                 } else {
4350                         msg = "Other Change Notify";
4351                         isp_prt(isp, ISP_LOGINFO, "Chan %d %s", bus, msg);
4352                 }
4353                 isp_loop_changed(isp, bus);
4354                 break;
4355         }
4356 #ifdef  ISP_TARGET_MODE
4357         case ISPASYNC_TARGET_NOTIFY:
4358         {
4359                 isp_notify_t *notify;
4360                 va_start(ap, cmd);
4361                 notify = va_arg(ap, isp_notify_t *);
4362                 va_end(ap);
4363                 switch (notify->nt_ncode) {
4364                 case NT_ABORT_TASK:
4365                 case NT_ABORT_TASK_SET:
4366                 case NT_CLEAR_ACA:
4367                 case NT_CLEAR_TASK_SET:
4368                 case NT_LUN_RESET:
4369                 case NT_TARGET_RESET:
4370                 case NT_QUERY_TASK_SET:
4371                 case NT_QUERY_ASYNC_EVENT:
4372                         /*
4373                          * These are task management functions.
4374                          */
4375                         isp_handle_platform_target_tmf(isp, notify);
4376                         break;
4377                 case NT_BUS_RESET:
4378                 case NT_LIP_RESET:
4379                 case NT_LINK_UP:
4380                 case NT_LINK_DOWN:
4381                 case NT_HBA_RESET:
4382                         /*
4383                          * No action need be taken here.
4384                          */
4385                         break;
4386                 case NT_GLOBAL_LOGOUT:
4387                 case NT_LOGOUT:
4388                         /*
4389                          * This is device arrival/departure notification
4390                          */
4391                         isp_handle_platform_target_notify_ack(isp, notify, 0);
4392                         break;
4393                 default:
4394                         isp_prt(isp, ISP_LOGALL, "target notify code 0x%x", notify->nt_ncode);
4395                         isp_handle_platform_target_notify_ack(isp, notify, 0);
4396                         break;
4397                 }
4398                 break;
4399         }
4400         case ISPASYNC_TARGET_NOTIFY_ACK:
4401         {
4402                 void *inot;
4403                 va_start(ap, cmd);
4404                 inot = va_arg(ap, void *);
4405                 va_end(ap);
4406                 if (isp_notify_ack(isp, inot)) {
4407                         isp_tna_t *tp = malloc(sizeof (*tp), M_DEVBUF, M_NOWAIT);
4408                         if (tp) {
4409                                 tp->isp = isp;
4410                                 if (inot) {
4411                                         memcpy(tp->data, inot, sizeof (tp->data));
4412                                         tp->not = tp->data;
4413                                 } else {
4414                                         tp->not = NULL;
4415                                 }
4416                                 callout_init_mtx(&tp->timer, &isp->isp_lock, 0);
4417                                 callout_reset(&tp->timer, 5,
4418                                     isp_refire_notify_ack, tp);
4419                         } else {
4420                                 isp_prt(isp, ISP_LOGERR, "you lose- cannot allocate a notify refire");
4421                         }
4422                 }
4423                 break;
4424         }
4425         case ISPASYNC_TARGET_ACTION:
4426         {
4427                 isphdr_t *hp;
4428
4429                 va_start(ap, cmd);
4430                 hp = va_arg(ap, isphdr_t *);
4431                 va_end(ap);
4432                 switch (hp->rqs_entry_type) {
4433                 default:
4434                         isp_prt(isp, ISP_LOGWARN, "%s: unhandled target action 0x%x", __func__, hp->rqs_entry_type);
4435                         break;
4436                 case RQSTYPE_NOTIFY:
4437                         if (IS_24XX(isp)) {
4438                                 isp_handle_platform_notify_24xx(isp, (in_fcentry_24xx_t *) hp);
4439                         } else {
4440                                 isp_handle_platform_notify_fc(isp, (in_fcentry_t *) hp);
4441                         }
4442                         break;
4443                 case RQSTYPE_ATIO:
4444                         isp_handle_platform_atio7(isp, (at7_entry_t *) hp);
4445                         break;
4446                 case RQSTYPE_ATIO2:
4447                         isp_handle_platform_atio2(isp, (at2_entry_t *) hp);
4448                         break;
4449                 case RQSTYPE_CTIO7:
4450                 case RQSTYPE_CTIO3:
4451                 case RQSTYPE_CTIO2:
4452                 case RQSTYPE_CTIO:
4453                         isp_handle_platform_ctio(isp, hp);
4454                         break;
4455                 case RQSTYPE_ABTS_RCVD:
4456                 {
4457                         abts_t *abts = (abts_t *)hp;
4458                         isp_notify_t notify, *nt = &notify;
4459                         tstate_t *tptr;
4460                         fcportdb_t *lp;
4461                         uint16_t chan;
4462                         uint32_t sid, did;
4463
4464                         did = (abts->abts_did_hi << 16) | abts->abts_did_lo;
4465                         sid = (abts->abts_sid_hi << 16) | abts->abts_sid_lo;
4466                         ISP_MEMZERO(nt, sizeof (isp_notify_t));
4467
4468                         nt->nt_hba = isp;
4469                         nt->nt_did = did;
4470                         nt->nt_nphdl = abts->abts_nphdl;
4471                         nt->nt_sid = sid;
4472                         isp_find_chan_by_did(isp, did, &chan);
4473                         if (chan == ISP_NOCHAN) {
4474                                 nt->nt_tgt = TGT_ANY;
4475                         } else {
4476                                 nt->nt_tgt = FCPARAM(isp, chan)->isp_wwpn;
4477                                 if (isp_find_pdb_by_handle(isp, chan, abts->abts_nphdl, &lp)) {
4478                                         nt->nt_wwn = lp->port_wwn;
4479                                 } else {
4480                                         nt->nt_wwn = INI_ANY;
4481                                 }
4482                         }
4483                         /*
4484                          * Try hard to find the lun for this command.
4485                          */
4486                         tptr = get_lun_statep_from_tag(isp, chan, abts->abts_rxid_task);
4487                         if (tptr) {
4488                                 nt->nt_lun = tptr->ts_lun;
4489                                 rls_lun_statep(isp, tptr);
4490                         } else {
4491                                 nt->nt_lun = LUN_ANY;
4492                         }
4493                         nt->nt_need_ack = 1;
4494                         nt->nt_tagval = abts->abts_rxid_task;
4495                         nt->nt_tagval |= (((uint64_t) abts->abts_rxid_abts) << 32);
4496                         if (abts->abts_rxid_task == ISP24XX_NO_TASK) {
4497                                 isp_prt(isp, ISP_LOGTINFO, "[0x%x] ABTS from N-Port handle 0x%x Port 0x%06x has no task id (rx_id 0x%04x ox_id 0x%04x)",
4498                                     abts->abts_rxid_abts, abts->abts_nphdl, sid, abts->abts_rx_id, abts->abts_ox_id);
4499                         } else {
4500                                 isp_prt(isp, ISP_LOGTINFO, "[0x%x] ABTS from N-Port handle 0x%x Port 0x%06x for task 0x%x (rx_id 0x%04x ox_id 0x%04x)",
4501                                     abts->abts_rxid_abts, abts->abts_nphdl, sid, abts->abts_rxid_task, abts->abts_rx_id, abts->abts_ox_id);
4502                         }
4503                         nt->nt_channel = chan;
4504                         nt->nt_ncode = NT_ABORT_TASK;
4505                         nt->nt_lreserved = hp;
4506                         isp_handle_platform_target_tmf(isp, nt);
4507                         break;
4508                 }
4509                 }
4510                 break;
4511         }
4512 #endif
4513         case ISPASYNC_FW_CRASH:
4514         {
4515                 uint16_t mbox1, mbox6;
4516                 mbox1 = ISP_READ(isp, OUTMAILBOX1);
4517                 if (IS_DUALBUS(isp)) { 
4518                         mbox6 = ISP_READ(isp, OUTMAILBOX6);
4519                 } else {
4520                         mbox6 = 0;
4521                 }
4522                 isp_prt(isp, ISP_LOGERR, "Internal Firmware Error on bus %d @ RISC Address 0x%x", mbox6, mbox1);
4523                 mbox1 = isp->isp_osinfo.mbox_sleep_ok;
4524                 isp->isp_osinfo.mbox_sleep_ok = 0;
4525                 isp_reinit(isp, 1);
4526                 isp->isp_osinfo.mbox_sleep_ok = mbox1;
4527                 isp_async(isp, ISPASYNC_FW_RESTARTED, NULL);
4528                 break;
4529         }
4530         default:
4531                 isp_prt(isp, ISP_LOGERR, "unknown isp_async event %d", cmd);
4532                 break;
4533         }
4534 }
4535
4536
4537 /*
4538  * Locks are held before coming here.
4539  */
4540 void
4541 isp_uninit(ispsoftc_t *isp)
4542 {
4543         if (IS_24XX(isp)) {
4544                 ISP_WRITE(isp, BIU2400_HCCR, HCCR_2400_CMD_RESET);
4545         } else {
4546                 ISP_WRITE(isp, HCCR, HCCR_CMD_RESET);
4547         }
4548         ISP_DISABLE_INTS(isp);
4549 }
4550
4551 uint64_t
4552 isp_default_wwn(ispsoftc_t * isp, int chan, int isactive, int iswwnn)
4553 {
4554         uint64_t seed;
4555         struct isp_fc *fc = ISP_FC_PC(isp, chan);
4556
4557         /* First try to use explicitly configured WWNs. */
4558         seed = iswwnn ? fc->def_wwnn : fc->def_wwpn;
4559         if (seed)
4560                 return (seed);
4561
4562         /* Otherwise try to use WWNs from NVRAM. */
4563         if (isactive) {
4564                 seed = iswwnn ? FCPARAM(isp, chan)->isp_wwnn_nvram :
4565                     FCPARAM(isp, chan)->isp_wwpn_nvram;
4566                 if (seed)
4567                         return (seed);
4568         }
4569
4570         /* If still no WWNs, try to steal them from the first channel. */
4571         if (chan > 0) {
4572                 seed = iswwnn ? ISP_FC_PC(isp, 0)->def_wwnn :
4573                     ISP_FC_PC(isp, 0)->def_wwpn;
4574                 if (seed == 0) {
4575                         seed = iswwnn ? FCPARAM(isp, 0)->isp_wwnn_nvram :
4576                             FCPARAM(isp, 0)->isp_wwpn_nvram;
4577                 }
4578         }
4579
4580         /* If still nothing -- improvise. */
4581         if (seed == 0) {
4582                 seed = 0x400000007F000000ull + device_get_unit(isp->isp_dev);
4583                 if (!iswwnn)
4584                         seed ^= 0x0100000000000000ULL;
4585         }
4586
4587         /* For additional channels we have to improvise even more. */
4588         if (!iswwnn && chan > 0) {
4589                 /*
4590                  * We'll stick our channel number plus one first into bits
4591                  * 57..59 and thence into bits 52..55 which allows for 8 bits
4592                  * of channel which is enough for our maximum of 255 channels.
4593                  */
4594                 seed ^= 0x0100000000000000ULL;
4595                 seed ^= ((uint64_t) (chan + 1) & 0xf) << 56;
4596                 seed ^= ((uint64_t) ((chan + 1) >> 4) & 0xf) << 52;
4597         }
4598         return (seed);
4599 }
4600
4601 void
4602 isp_prt(ispsoftc_t *isp, int level, const char *fmt, ...)
4603 {
4604         int loc;
4605         char lbuf[200];
4606         va_list ap;
4607
4608         if (level != ISP_LOGALL && (level & isp->isp_dblev) == 0) {
4609                 return;
4610         }
4611         snprintf(lbuf, sizeof (lbuf), "%s: ", device_get_nameunit(isp->isp_dev));
4612         loc = strlen(lbuf);
4613         va_start(ap, fmt);
4614         vsnprintf(&lbuf[loc], sizeof (lbuf) - loc - 1, fmt, ap); 
4615         va_end(ap);
4616         printf("%s\n", lbuf);
4617 }
4618
4619 void
4620 isp_xs_prt(ispsoftc_t *isp, XS_T *xs, int level, const char *fmt, ...)
4621 {
4622         va_list ap;
4623         if (level != ISP_LOGALL && (level & isp->isp_dblev) == 0) {
4624                 return;
4625         }
4626         xpt_print_path(xs->ccb_h.path);
4627         va_start(ap, fmt);
4628         vprintf(fmt, ap);
4629         va_end(ap);
4630         printf("\n");
4631 }
4632
4633 uint64_t
4634 isp_nanotime_sub(struct timespec *b, struct timespec *a)
4635 {
4636         uint64_t elapsed;
4637         struct timespec x = *b;
4638         timespecsub(&x, a);
4639         elapsed = GET_NANOSEC(&x);
4640         if (elapsed == 0)
4641                 elapsed++;
4642         return (elapsed);
4643 }
4644
4645 int
4646 isp_mbox_acquire(ispsoftc_t *isp)
4647 {
4648         if (isp->isp_osinfo.mboxbsy) {
4649                 return (1);
4650         } else {
4651                 isp->isp_osinfo.mboxcmd_done = 0;
4652                 isp->isp_osinfo.mboxbsy = 1;
4653                 return (0);
4654         }
4655 }
4656
4657 void
4658 isp_mbox_wait_complete(ispsoftc_t *isp, mbreg_t *mbp)
4659 {
4660         unsigned int usecs = mbp->timeout;
4661         unsigned int max, olim, ilim;
4662
4663         if (usecs == 0) {
4664                 usecs = MBCMD_DEFAULT_TIMEOUT;
4665         }
4666         max = isp->isp_mbxwrk0 + 1;
4667
4668         if (isp->isp_osinfo.mbox_sleep_ok) {
4669                 unsigned int ms = (usecs + 999) / 1000;
4670
4671                 isp->isp_osinfo.mbox_sleep_ok = 0;
4672                 isp->isp_osinfo.mbox_sleeping = 1;
4673                 for (olim = 0; olim < max; olim++) {
4674                         msleep(&isp->isp_mbxworkp, &isp->isp_osinfo.lock, PRIBIO, "ispmbx_sleep", isp_mstohz(ms));
4675                         if (isp->isp_osinfo.mboxcmd_done) {
4676                                 break;
4677                         }
4678                 }
4679                 isp->isp_osinfo.mbox_sleep_ok = 1;
4680                 isp->isp_osinfo.mbox_sleeping = 0;
4681         } else {
4682                 for (olim = 0; olim < max; olim++) {
4683                         for (ilim = 0; ilim < usecs; ilim += 100) {
4684                                 uint16_t isr, sema, info;
4685                                 if (isp->isp_osinfo.mboxcmd_done) {
4686                                         break;
4687                                 }
4688                                 if (ISP_READ_ISR(isp, &isr, &sema, &info)) {
4689                                         isp_intr(isp, isr, sema, info);
4690                                         if (isp->isp_osinfo.mboxcmd_done) {
4691                                                 break;
4692                                         }
4693                                 }
4694                                 ISP_DELAY(100);
4695                         }
4696                         if (isp->isp_osinfo.mboxcmd_done) {
4697                                 break;
4698                         }
4699                 }
4700         }
4701         if (isp->isp_osinfo.mboxcmd_done == 0) {
4702                 isp_prt(isp, ISP_LOGWARN, "%s Mailbox Command (0x%x) Timeout (%uus) (started @ %s:%d)",
4703                     isp->isp_osinfo.mbox_sleep_ok? "Interrupting" : "Polled", isp->isp_lastmbxcmd, usecs, mbp->func, mbp->lineno);
4704                 mbp->param[0] = MBOX_TIMEOUT;
4705                 isp->isp_osinfo.mboxcmd_done = 1;
4706         }
4707 }
4708
4709 void
4710 isp_mbox_notify_done(ispsoftc_t *isp)
4711 {
4712         if (isp->isp_osinfo.mbox_sleeping) {
4713                 wakeup(&isp->isp_mbxworkp);
4714         }
4715         isp->isp_osinfo.mboxcmd_done = 1;
4716 }
4717
4718 void
4719 isp_mbox_release(ispsoftc_t *isp)
4720 {
4721         isp->isp_osinfo.mboxbsy = 0;
4722 }
4723
4724 int
4725 isp_fc_scratch_acquire(ispsoftc_t *isp, int chan)
4726 {
4727         int ret = 0;
4728         if (isp->isp_osinfo.pc.fc[chan].fcbsy) {
4729                 ret = -1;
4730         } else {
4731                 isp->isp_osinfo.pc.fc[chan].fcbsy = 1;
4732         }
4733         return (ret);
4734 }
4735
4736 int
4737 isp_mstohz(int ms)
4738 {
4739         int hz;
4740         struct timeval t;
4741         t.tv_sec = ms / 1000;
4742         t.tv_usec = (ms % 1000) * 1000;
4743         hz = tvtohz(&t);
4744         if (hz < 0) {
4745                 hz = 0x7fffffff;
4746         }
4747         if (hz == 0) {
4748                 hz = 1;
4749         }
4750         return (hz);
4751 }
4752
4753 void
4754 isp_platform_intr(void *arg)
4755 {
4756         ispsoftc_t *isp = arg;
4757         uint16_t isr, sema, info;
4758
4759         ISP_LOCK(isp);
4760         isp->isp_intcnt++;
4761         if (ISP_READ_ISR(isp, &isr, &sema, &info))
4762                 isp_intr(isp, isr, sema, info);
4763         else
4764                 isp->isp_intbogus++;
4765         ISP_UNLOCK(isp);
4766 }
4767
4768 void
4769 isp_common_dmateardown(ispsoftc_t *isp, struct ccb_scsiio *csio, uint32_t hdl)
4770 {
4771         if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
4772                 bus_dmamap_sync(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap, BUS_DMASYNC_POSTREAD);
4773         } else {
4774                 bus_dmamap_sync(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap, BUS_DMASYNC_POSTWRITE);
4775         }
4776         bus_dmamap_unload(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap);
4777 }
4778
4779 /*
4780  * Reset the command reference number for all LUNs on a specific target
4781  * (needed when a target arrives again) or for all targets on a port
4782  * (needed for events like a LIP).
4783  */
4784 void
4785 isp_fcp_reset_crn(ispsoftc_t *isp, int chan, uint32_t tgt, int tgt_set)
4786 {
4787         struct isp_fc *fc = ISP_FC_PC(isp, chan);
4788         struct isp_nexus *nxp;
4789         int i;
4790
4791         if (tgt_set == 0)
4792                 isp_prt(isp, ISP_LOGDEBUG0,
4793                     "Chan %d resetting CRN on all targets", chan);
4794         else
4795                 isp_prt(isp, ISP_LOGDEBUG0,
4796                     "Chan %d resetting CRN on target %u", chan, tgt);
4797
4798         for (i = 0; i < NEXUS_HASH_WIDTH; i++) {
4799                 for (nxp = fc->nexus_hash[i]; nxp != NULL; nxp = nxp->next) {
4800                         if (tgt_set == 0 || tgt == nxp->tgt)
4801                                 nxp->crnseed = 0;
4802                 }
4803         }
4804 }
4805
4806 int
4807 isp_fcp_next_crn(ispsoftc_t *isp, uint8_t *crnp, XS_T *cmd)
4808 {
4809         lun_id_t lun;
4810         uint32_t chan, tgt;
4811         struct isp_fc *fc;
4812         struct isp_nexus *nxp;
4813         int idx;
4814
4815         if (IS_2100(isp))
4816                 return (0);
4817
4818         chan = XS_CHANNEL(cmd);
4819         tgt = XS_TGT(cmd);
4820         lun = XS_LUN(cmd);
4821         fc = &isp->isp_osinfo.pc.fc[chan];
4822         idx = NEXUS_HASH(tgt, lun);
4823         nxp = fc->nexus_hash[idx];
4824
4825         while (nxp) {
4826                 if (nxp->tgt == tgt && nxp->lun == lun)
4827                         break;
4828                 nxp = nxp->next;
4829         }
4830         if (nxp == NULL) {
4831                 nxp = fc->nexus_free_list;
4832                 if (nxp == NULL) {
4833                         nxp = malloc(sizeof (struct isp_nexus), M_DEVBUF, M_ZERO|M_NOWAIT);
4834                         if (nxp == NULL) {
4835                                 return (-1);
4836                         }
4837                 } else {
4838                         fc->nexus_free_list = nxp->next;
4839                 }
4840                 nxp->tgt = tgt;
4841                 nxp->lun = lun;
4842                 nxp->next = fc->nexus_hash[idx];
4843                 fc->nexus_hash[idx] = nxp;
4844         }
4845         if (nxp->crnseed == 0)
4846                 nxp->crnseed = 1;
4847         PISP_PCMD(cmd)->crn = nxp->crnseed;
4848         *crnp = nxp->crnseed++;
4849         return (0);
4850 }
4851
4852 /*
4853  * We enter with the lock held
4854  */
4855 void
4856 isp_timer(void *arg)
4857 {
4858         ispsoftc_t *isp = arg;
4859 #ifdef  ISP_TARGET_MODE
4860         isp_tmcmd_restart(isp);
4861 #endif
4862         callout_reset(&isp->isp_osinfo.tmo, isp_timer_count, isp_timer, isp);
4863 }
4864
4865 isp_ecmd_t *
4866 isp_get_ecmd(ispsoftc_t *isp)
4867 {
4868         isp_ecmd_t *ecmd = isp->isp_osinfo.ecmd_free;
4869         if (ecmd) {
4870                 isp->isp_osinfo.ecmd_free = ecmd->next;
4871         }
4872         return (ecmd);
4873 }
4874
4875 void
4876 isp_put_ecmd(ispsoftc_t *isp, isp_ecmd_t *ecmd)
4877 {
4878         ecmd->next = isp->isp_osinfo.ecmd_free;
4879         isp->isp_osinfo.ecmd_free = ecmd;
4880 }