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 #include <dev/isp/isp_freebsd.h> 33 #include <sys/unistd.h> 34 #include <sys/kthread.h> 35 #include <sys/conf.h> 36 #include <sys/module.h> 37 #include <sys/ioccom.h> 38 #include <dev/isp/isp_ioctl.h> 39 #include <sys/devicestat.h> 40 #include <cam/cam_periph.h> 41 #include <cam/cam_xpt_periph.h> 42 43 #if __FreeBSD_version < 800002 44 #define THREAD_CREATE kthread_create 45 #else 46 #define THREAD_CREATE kproc_create 47 #endif 48 49 MODULE_VERSION(isp, 1); 50 MODULE_DEPEND(isp, cam, 1, 1, 1); 51 int isp_announced = 0; 52 int isp_fabric_hysteresis = 5; 53 int isp_loop_down_limit = 60; /* default loop down limit */ 54 int isp_change_is_bad = 0; /* "changed" devices are bad */ 55 int isp_quickboot_time = 7; /* don't wait more than N secs for loop up */ 56 int isp_gone_device_time = 30; /* grace time before reporting device lost */ 57 int isp_autoconfig = 1; /* automatically attach/detach devices */ 58 static const char *roles[4] = { 59 "(none)", "Target", "Initiator", "Target/Initiator" 60 }; 61 static const char prom3[] = "Chan %d PortID 0x%06x Departed from Target %u because of %s"; 62 static const char rqo[] = "%s: Request Queue Overflow\n"; 63 64 static void isp_freeze_loopdown(ispsoftc_t *, int, char *); 65 static d_ioctl_t ispioctl; 66 static void isp_intr_enable(void *); 67 static void isp_cam_async(void *, uint32_t, struct cam_path *, void *); 68 static void isp_poll(struct cam_sim *); 69 static timeout_t isp_watchdog; 70 static timeout_t isp_gdt; 71 static task_fn_t isp_gdt_task; 72 static timeout_t isp_ldt; 73 static task_fn_t isp_ldt_task; 74 static void isp_kthread(void *); 75 static void isp_action(struct cam_sim *, union ccb *); 76 #ifdef ISP_INTERNAL_TARGET 77 static void isp_target_thread_pi(void *); 78 static void isp_target_thread_fc(void *); 79 #endif 80 static void isp_timer(void *); 81 82 static struct cdevsw isp_cdevsw = { 83 .d_version = D_VERSION, 84 .d_ioctl = ispioctl, 85 .d_name = "isp", 86 }; 87 88 static int 89 isp_attach_chan(ispsoftc_t *isp, struct cam_devq *devq, int chan) 90 { 91 struct ccb_setasync csa; 92 struct cam_sim *sim; 93 struct cam_path *path; 94 95 /* 96 * Construct our SIM entry. 97 */ 98 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); 99 100 if (sim == NULL) { 101 return (ENOMEM); 102 } 103 104 ISP_LOCK(isp); 105 if (xpt_bus_register(sim, isp->isp_dev, chan) != CAM_SUCCESS) { 106 ISP_UNLOCK(isp); 107 cam_sim_free(sim, FALSE); 108 return (EIO); 109 } 110 ISP_UNLOCK(isp); 111 if (xpt_create_path_unlocked(&path, NULL, cam_sim_path(sim), CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 112 ISP_LOCK(isp); 113 xpt_bus_deregister(cam_sim_path(sim)); 114 ISP_UNLOCK(isp); 115 cam_sim_free(sim, FALSE); 116 return (ENXIO); 117 } 118 xpt_setup_ccb(&csa.ccb_h, path, 5); 119 csa.ccb_h.func_code = XPT_SASYNC_CB; 120 csa.event_enable = AC_LOST_DEVICE; 121 csa.callback = isp_cam_async; 122 csa.callback_arg = sim; 123 xpt_action((union ccb *)&csa); 124 125 if (IS_SCSI(isp)) { 126 struct isp_spi *spi = ISP_SPI_PC(isp, chan); 127 spi->sim = sim; 128 spi->path = path; 129 #ifdef ISP_INTERNAL_TARGET 130 ISP_SET_PC(isp, chan, proc_active, 1); 131 if (THREAD_CREATE(isp_target_thread_pi, spi, &spi->target_proc, 0, 0, "%s: isp_test_tgt%d", device_get_nameunit(isp->isp_osinfo.dev), chan)) { 132 ISP_SET_PC(isp, chan, proc_active, 0); 133 isp_prt(isp, ISP_LOGERR, "cannot create test target thread"); 134 } 135 #endif 136 } else { 137 fcparam *fcp = FCPARAM(isp, chan); 138 struct isp_fc *fc = ISP_FC_PC(isp, chan); 139 140 ISP_LOCK(isp); 141 fc->sim = sim; 142 fc->path = path; 143 fc->isp = isp; 144 fc->ready = 1; 145 146 callout_init_mtx(&fc->ldt, &isp->isp_osinfo.lock, 0); 147 callout_init_mtx(&fc->gdt, &isp->isp_osinfo.lock, 0); 148 TASK_INIT(&fc->ltask, 1, isp_ldt_task, fc); 149 TASK_INIT(&fc->gtask, 1, isp_gdt_task, fc); 150 151 /* 152 * We start by being "loop down" if we have an initiator role 153 */ 154 if (fcp->role & ISP_ROLE_INITIATOR) { 155 isp_freeze_loopdown(isp, chan, "isp_attach"); 156 callout_reset(&fc->ldt, isp_quickboot_time * hz, isp_ldt, fc); 157 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "Starting Initial Loop Down Timer @ %lu", (unsigned long) time_uptime); 158 } 159 ISP_UNLOCK(isp); 160 if (THREAD_CREATE(isp_kthread, fc, &fc->kproc, 0, 0, "%s: fc_thrd%d", device_get_nameunit(isp->isp_osinfo.dev), chan)) { 161 xpt_free_path(fc->path); 162 ISP_LOCK(isp); 163 if (callout_active(&fc->ldt)) { 164 callout_stop(&fc->ldt); 165 } 166 xpt_bus_deregister(cam_sim_path(fc->sim)); 167 ISP_UNLOCK(isp); 168 cam_sim_free(fc->sim, FALSE); 169 return (ENOMEM); 170 } 171 #ifdef ISP_INTERNAL_TARGET 172 ISP_SET_PC(isp, chan, proc_active, 1); 173 if (THREAD_CREATE(isp_target_thread_fc, fc, &fc->target_proc, 0, 0, "%s: isp_test_tgt%d", device_get_nameunit(isp->isp_osinfo.dev), chan)) { 174 ISP_SET_PC(isp, chan, proc_active, 0); 175 isp_prt(isp, ISP_LOGERR, "cannot create test target thread"); 176 } 177 #endif 178 if (chan == 0) { 179 struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(isp->isp_osinfo.dev); 180 struct sysctl_oid *tree = device_get_sysctl_tree(isp->isp_osinfo.dev); 181 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, "wwnn", CTLFLAG_RD, &FCPARAM(isp, 0)->isp_wwnn, "World Wide Node Name"); 182 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, "wwpn", CTLFLAG_RD, &FCPARAM(isp, 0)->isp_wwpn, "World Wide Port Name"); 183 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, "loop_down_limit", CTLFLAG_RW, &ISP_FC_PC(isp, 0)->loop_down_limit, 0, "Loop Down Limit"); 184 SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, "gone_device_time", CTLFLAG_RW, &ISP_FC_PC(isp, 0)->gone_device_time, 0, "Gone Device Time"); 185 } 186 } 187 return (0); 188 } 189 190 int 191 isp_attach(ispsoftc_t *isp) 192 { 193 const char *nu = device_get_nameunit(isp->isp_osinfo.dev); 194 int du = device_get_unit(isp->isp_dev); 195 int chan; 196 197 isp->isp_osinfo.ehook.ich_func = isp_intr_enable; 198 isp->isp_osinfo.ehook.ich_arg = isp; 199 /* 200 * Haha. Set this first, because if we're loaded as a module isp_intr_enable 201 * will be called right awawy, which will clear isp_osinfo.ehook_active, 202 * which would be unwise to then set again later. 203 */ 204 isp->isp_osinfo.ehook_active = 1; 205 if (config_intrhook_establish(&isp->isp_osinfo.ehook) != 0) { 206 isp_prt(isp, ISP_LOGERR, "could not establish interrupt enable hook"); 207 return (-EIO); 208 } 209 210 /* 211 * Create the device queue for our SIM(s). 212 */ 213 isp->isp_osinfo.devq = cam_simq_alloc(isp->isp_maxcmds); 214 if (isp->isp_osinfo.devq == NULL) { 215 config_intrhook_disestablish(&isp->isp_osinfo.ehook); 216 return (EIO); 217 } 218 219 for (chan = 0; chan < isp->isp_nchan; chan++) { 220 if (isp_attach_chan(isp, isp->isp_osinfo.devq, chan)) { 221 goto unwind; 222 } 223 } 224 225 callout_init_mtx(&isp->isp_osinfo.tmo, &isp->isp_osinfo.lock, 0); 226 callout_reset(&isp->isp_osinfo.tmo, hz, isp_timer, isp); 227 isp->isp_osinfo.timer_active = 1; 228 229 isp->isp_osinfo.cdev = make_dev(&isp_cdevsw, du, UID_ROOT, GID_OPERATOR, 0600, "%s", nu); 230 if (isp->isp_osinfo.cdev) { 231 isp->isp_osinfo.cdev->si_drv1 = isp; 232 } 233 return (0); 234 235 unwind: 236 while (--chan >= 0) { 237 struct cam_sim *sim; 238 struct cam_path *path; 239 if (IS_FC(isp)) { 240 sim = ISP_FC_PC(isp, chan)->sim; 241 path = ISP_FC_PC(isp, chan)->path; 242 } else { 243 sim = ISP_SPI_PC(isp, chan)->sim; 244 path = ISP_SPI_PC(isp, chan)->path; 245 } 246 xpt_free_path(path); 247 ISP_LOCK(isp); 248 xpt_bus_deregister(cam_sim_path(sim)); 249 ISP_UNLOCK(isp); 250 cam_sim_free(sim, FALSE); 251 } 252 if (isp->isp_osinfo.ehook_active) { 253 config_intrhook_disestablish(&isp->isp_osinfo.ehook); 254 isp->isp_osinfo.ehook_active = 0; 255 } 256 if (isp->isp_osinfo.cdev) { 257 destroy_dev(isp->isp_osinfo.cdev); 258 isp->isp_osinfo.cdev = NULL; 259 } 260 cam_simq_free(isp->isp_osinfo.devq); 261 isp->isp_osinfo.devq = NULL; 262 return (-1); 263 } 264 265 int 266 isp_detach(ispsoftc_t *isp) 267 { 268 struct cam_sim *sim; 269 struct cam_path *path; 270 struct ccb_setasync csa; 271 int chan; 272 273 ISP_LOCK(isp); 274 for (chan = isp->isp_nchan - 1; chan >= 0; chan -= 1) { 275 if (IS_FC(isp)) { 276 sim = ISP_FC_PC(isp, chan)->sim; 277 path = ISP_FC_PC(isp, chan)->path; 278 } else { 279 sim = ISP_SPI_PC(isp, chan)->sim; 280 path = ISP_SPI_PC(isp, chan)->path; 281 } 282 if (sim->refcount > 2) { 283 ISP_UNLOCK(isp); 284 return (EBUSY); 285 } 286 } 287 if (isp->isp_osinfo.timer_active) { 288 callout_stop(&isp->isp_osinfo.tmo); 289 isp->isp_osinfo.timer_active = 0; 290 } 291 for (chan = isp->isp_nchan - 1; chan >= 0; chan -= 1) { 292 if (IS_FC(isp)) { 293 sim = ISP_FC_PC(isp, chan)->sim; 294 path = ISP_FC_PC(isp, chan)->path; 295 } else { 296 sim = ISP_SPI_PC(isp, chan)->sim; 297 path = ISP_SPI_PC(isp, chan)->path; 298 } 299 xpt_setup_ccb(&csa.ccb_h, path, 5); 300 csa.ccb_h.func_code = XPT_SASYNC_CB; 301 csa.event_enable = 0; 302 csa.callback = isp_cam_async; 303 csa.callback_arg = sim; 304 xpt_action((union ccb *)&csa); 305 xpt_free_path(path); 306 xpt_bus_deregister(cam_sim_path(sim)); 307 cam_sim_free(sim, FALSE); 308 } 309 ISP_UNLOCK(isp); 310 if (isp->isp_osinfo.cdev) { 311 destroy_dev(isp->isp_osinfo.cdev); 312 isp->isp_osinfo.cdev = NULL; 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.devq != NULL) { 319 cam_simq_free(isp->isp_osinfo.devq); 320 isp->isp_osinfo.devq = NULL; 321 } 322 return (0); 323 } 324 325 static void 326 isp_freeze_loopdown(ispsoftc_t *isp, int chan, char *msg) 327 { 328 if (IS_FC(isp)) { 329 struct isp_fc *fc = ISP_FC_PC(isp, chan); 330 if (fc->simqfrozen == 0) { 331 isp_prt(isp, ISP_LOGDEBUG0, "%s: freeze simq (loopdown) chan %d", msg, chan); 332 fc->simqfrozen = SIMQFRZ_LOOPDOWN; 333 xpt_freeze_simq(fc->sim, 1); 334 } else { 335 isp_prt(isp, ISP_LOGDEBUG0, "%s: mark frozen (loopdown) chan %d", msg, chan); 336 fc->simqfrozen |= SIMQFRZ_LOOPDOWN; 337 } 338 } 339 } 340 341 static void 342 isp_unfreeze_loopdown(ispsoftc_t *isp, int chan) 343 { 344 if (IS_FC(isp)) { 345 struct isp_fc *fc = ISP_FC_PC(isp, chan); 346 int wasfrozen = fc->simqfrozen & SIMQFRZ_LOOPDOWN; 347 fc->simqfrozen &= ~SIMQFRZ_LOOPDOWN; 348 if (wasfrozen && fc->simqfrozen == 0) { 349 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d releasing simq", __func__, chan); 350 xpt_release_simq(fc->sim, 1); 351 } 352 } 353 } 354 355 356 static int 357 ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td) 358 { 359 ispsoftc_t *isp; 360 int nr, chan, retval = ENOTTY; 361 362 isp = dev->si_drv1; 363 364 switch (c) { 365 case ISP_SDBLEV: 366 { 367 int olddblev = isp->isp_dblev; 368 isp->isp_dblev = *(int *)addr; 369 *(int *)addr = olddblev; 370 retval = 0; 371 break; 372 } 373 case ISP_GETROLE: 374 chan = *(int *)addr; 375 if (chan < 0 || chan >= isp->isp_nchan) { 376 retval = -ENXIO; 377 break; 378 } 379 if (IS_FC(isp)) { 380 *(int *)addr = FCPARAM(isp, chan)->role; 381 } else { 382 *(int *)addr = SDPARAM(isp, chan)->role; 383 } 384 retval = 0; 385 break; 386 case ISP_SETROLE: 387 nr = *(int *)addr; 388 chan = nr >> 8; 389 if (chan < 0 || chan >= isp->isp_nchan) { 390 retval = -ENXIO; 391 break; 392 } 393 nr &= 0xff; 394 if (nr & ~(ISP_ROLE_INITIATOR|ISP_ROLE_TARGET)) { 395 retval = EINVAL; 396 break; 397 } 398 if (IS_FC(isp)) { 399 /* 400 * We don't really support dual role at present on FC cards. 401 * 402 * We should, but a bunch of things are currently broken, 403 * so don't allow it. 404 */ 405 if (nr == ISP_ROLE_BOTH) { 406 isp_prt(isp, ISP_LOGERR, "cannot support dual role at present"); 407 retval = EINVAL; 408 break; 409 } 410 *(int *)addr = FCPARAM(isp, chan)->role; 411 #ifdef ISP_INTERNAL_TARGET 412 ISP_LOCK(isp); 413 retval = isp_fc_change_role(isp, chan, nr); 414 ISP_UNLOCK(isp); 415 #else 416 FCPARAM(isp, chan)->role = nr; 417 #endif 418 } else { 419 *(int *)addr = SDPARAM(isp, chan)->role; 420 SDPARAM(isp, chan)->role = nr; 421 } 422 retval = 0; 423 break; 424 425 case ISP_RESETHBA: 426 ISP_LOCK(isp); 427 #ifdef ISP_TARGET_MODE 428 isp_del_all_wwn_entries(isp, ISP_NOCHAN); 429 #endif 430 isp_reinit(isp, 0); 431 ISP_UNLOCK(isp); 432 retval = 0; 433 break; 434 435 case ISP_RESCAN: 436 if (IS_FC(isp)) { 437 chan = *(int *)addr; 438 if (chan < 0 || chan >= isp->isp_nchan) { 439 retval = -ENXIO; 440 break; 441 } 442 ISP_LOCK(isp); 443 if (isp_fc_runstate(isp, chan, 5 * 1000000)) { 444 retval = EIO; 445 } else { 446 retval = 0; 447 } 448 ISP_UNLOCK(isp); 449 } 450 break; 451 452 case ISP_FC_LIP: 453 if (IS_FC(isp)) { 454 chan = *(int *)addr; 455 if (chan < 0 || chan >= isp->isp_nchan) { 456 retval = -ENXIO; 457 break; 458 } 459 ISP_LOCK(isp); 460 if (isp_control(isp, ISPCTL_SEND_LIP, chan)) { 461 retval = EIO; 462 } else { 463 retval = 0; 464 } 465 ISP_UNLOCK(isp); 466 } 467 break; 468 case ISP_FC_GETDINFO: 469 { 470 struct isp_fc_device *ifc = (struct isp_fc_device *) addr; 471 fcportdb_t *lp; 472 473 if (IS_SCSI(isp)) { 474 break; 475 } 476 if (ifc->loopid >= MAX_FC_TARG) { 477 retval = EINVAL; 478 break; 479 } 480 lp = &FCPARAM(isp, ifc->chan)->portdb[ifc->loopid]; 481 if (lp->state == FC_PORTDB_STATE_VALID || lp->target_mode) { 482 ifc->role = lp->roles; 483 ifc->loopid = lp->handle; 484 ifc->portid = lp->portid; 485 ifc->node_wwn = lp->node_wwn; 486 ifc->port_wwn = lp->port_wwn; 487 retval = 0; 488 } else { 489 retval = ENODEV; 490 } 491 break; 492 } 493 case ISP_GET_STATS: 494 { 495 isp_stats_t *sp = (isp_stats_t *) addr; 496 497 ISP_MEMZERO(sp, sizeof (*sp)); 498 sp->isp_stat_version = ISP_STATS_VERSION; 499 sp->isp_type = isp->isp_type; 500 sp->isp_revision = isp->isp_revision; 501 ISP_LOCK(isp); 502 sp->isp_stats[ISP_INTCNT] = isp->isp_intcnt; 503 sp->isp_stats[ISP_INTBOGUS] = isp->isp_intbogus; 504 sp->isp_stats[ISP_INTMBOXC] = isp->isp_intmboxc; 505 sp->isp_stats[ISP_INGOASYNC] = isp->isp_intoasync; 506 sp->isp_stats[ISP_RSLTCCMPLT] = isp->isp_rsltccmplt; 507 sp->isp_stats[ISP_FPHCCMCPLT] = isp->isp_fphccmplt; 508 sp->isp_stats[ISP_RSCCHIWAT] = isp->isp_rscchiwater; 509 sp->isp_stats[ISP_FPCCHIWAT] = isp->isp_fpcchiwater; 510 ISP_UNLOCK(isp); 511 retval = 0; 512 break; 513 } 514 case ISP_CLR_STATS: 515 ISP_LOCK(isp); 516 isp->isp_intcnt = 0; 517 isp->isp_intbogus = 0; 518 isp->isp_intmboxc = 0; 519 isp->isp_intoasync = 0; 520 isp->isp_rsltccmplt = 0; 521 isp->isp_fphccmplt = 0; 522 isp->isp_rscchiwater = 0; 523 isp->isp_fpcchiwater = 0; 524 ISP_UNLOCK(isp); 525 retval = 0; 526 break; 527 case ISP_FC_GETHINFO: 528 { 529 struct isp_hba_device *hba = (struct isp_hba_device *) addr; 530 int chan = hba->fc_channel; 531 532 if (chan < 0 || chan >= isp->isp_nchan) { 533 retval = ENXIO; 534 break; 535 } 536 hba->fc_fw_major = ISP_FW_MAJORX(isp->isp_fwrev); 537 hba->fc_fw_minor = ISP_FW_MINORX(isp->isp_fwrev); 538 hba->fc_fw_micro = ISP_FW_MICROX(isp->isp_fwrev); 539 hba->fc_nchannels = isp->isp_nchan; 540 if (IS_FC(isp)) { 541 hba->fc_nports = MAX_FC_TARG; 542 hba->fc_speed = FCPARAM(isp, hba->fc_channel)->isp_gbspeed; 543 hba->fc_topology = FCPARAM(isp, chan)->isp_topo + 1; 544 hba->fc_loopid = FCPARAM(isp, chan)->isp_loopid; 545 hba->nvram_node_wwn = FCPARAM(isp, chan)->isp_wwnn_nvram; 546 hba->nvram_port_wwn = FCPARAM(isp, chan)->isp_wwpn_nvram; 547 hba->active_node_wwn = FCPARAM(isp, chan)->isp_wwnn; 548 hba->active_port_wwn = FCPARAM(isp, chan)->isp_wwpn; 549 } else { 550 hba->fc_nports = MAX_TARGETS; 551 hba->fc_speed = 0; 552 hba->fc_topology = 0; 553 hba->nvram_node_wwn = 0ull; 554 hba->nvram_port_wwn = 0ull; 555 hba->active_node_wwn = 0ull; 556 hba->active_port_wwn = 0ull; 557 } 558 retval = 0; 559 break; 560 } 561 case ISP_TSK_MGMT: 562 { 563 int needmarker; 564 struct isp_fc_tsk_mgmt *fct = (struct isp_fc_tsk_mgmt *) addr; 565 uint16_t loopid; 566 mbreg_t mbs; 567 568 if (IS_SCSI(isp)) { 569 break; 570 } 571 572 chan = fct->chan; 573 if (chan < 0 || chan >= isp->isp_nchan) { 574 retval = -ENXIO; 575 break; 576 } 577 578 needmarker = retval = 0; 579 loopid = fct->loopid; 580 ISP_LOCK(isp); 581 if (IS_24XX(isp)) { 582 uint8_t local[QENTRY_LEN]; 583 isp24xx_tmf_t *tmf; 584 isp24xx_statusreq_t *sp; 585 fcparam *fcp = FCPARAM(isp, chan); 586 fcportdb_t *lp; 587 int i; 588 589 for (i = 0; i < MAX_FC_TARG; i++) { 590 lp = &fcp->portdb[i]; 591 if (lp->handle == loopid) { 592 break; 593 } 594 } 595 if (i == MAX_FC_TARG) { 596 retval = ENXIO; 597 ISP_UNLOCK(isp); 598 break; 599 } 600 /* XXX VALIDATE LP XXX */ 601 tmf = (isp24xx_tmf_t *) local; 602 ISP_MEMZERO(tmf, QENTRY_LEN); 603 tmf->tmf_header.rqs_entry_type = RQSTYPE_TSK_MGMT; 604 tmf->tmf_header.rqs_entry_count = 1; 605 tmf->tmf_nphdl = lp->handle; 606 tmf->tmf_delay = 2; 607 tmf->tmf_timeout = 2; 608 tmf->tmf_tidlo = lp->portid; 609 tmf->tmf_tidhi = lp->portid >> 16; 610 tmf->tmf_vpidx = ISP_GET_VPIDX(isp, chan); 611 tmf->tmf_lun[1] = fct->lun & 0xff; 612 if (fct->lun >= 256) { 613 tmf->tmf_lun[0] = 0x40 | (fct->lun >> 8); 614 } 615 switch (fct->action) { 616 case IPT_CLEAR_ACA: 617 tmf->tmf_flags = ISP24XX_TMF_CLEAR_ACA; 618 break; 619 case IPT_TARGET_RESET: 620 tmf->tmf_flags = ISP24XX_TMF_TARGET_RESET; 621 needmarker = 1; 622 break; 623 case IPT_LUN_RESET: 624 tmf->tmf_flags = ISP24XX_TMF_LUN_RESET; 625 needmarker = 1; 626 break; 627 case IPT_CLEAR_TASK_SET: 628 tmf->tmf_flags = ISP24XX_TMF_CLEAR_TASK_SET; 629 needmarker = 1; 630 break; 631 case IPT_ABORT_TASK_SET: 632 tmf->tmf_flags = ISP24XX_TMF_ABORT_TASK_SET; 633 needmarker = 1; 634 break; 635 default: 636 retval = EINVAL; 637 break; 638 } 639 if (retval) { 640 ISP_UNLOCK(isp); 641 break; 642 } 643 MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, 5000000); 644 mbs.param[1] = QENTRY_LEN; 645 mbs.param[2] = DMA_WD1(fcp->isp_scdma); 646 mbs.param[3] = DMA_WD0(fcp->isp_scdma); 647 mbs.param[6] = DMA_WD3(fcp->isp_scdma); 648 mbs.param[7] = DMA_WD2(fcp->isp_scdma); 649 650 if (FC_SCRATCH_ACQUIRE(isp, chan)) { 651 ISP_UNLOCK(isp); 652 retval = ENOMEM; 653 break; 654 } 655 isp_put_24xx_tmf(isp, tmf, fcp->isp_scratch); 656 MEMORYBARRIER(isp, SYNC_SFORDEV, 0, QENTRY_LEN, chan); 657 sp = (isp24xx_statusreq_t *) local; 658 sp->req_completion_status = 1; 659 retval = isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs); 660 MEMORYBARRIER(isp, SYNC_SFORCPU, QENTRY_LEN, QENTRY_LEN, chan); 661 isp_get_24xx_response(isp, &((isp24xx_statusreq_t *)fcp->isp_scratch)[1], sp); 662 FC_SCRATCH_RELEASE(isp, chan); 663 if (retval || sp->req_completion_status != 0) { 664 FC_SCRATCH_RELEASE(isp, chan); 665 retval = EIO; 666 } 667 if (retval == 0) { 668 if (needmarker) { 669 fcp->sendmarker = 1; 670 } 671 } 672 } else { 673 MBSINIT(&mbs, 0, MBLOGALL, 0); 674 if (ISP_CAP_2KLOGIN(isp) == 0) { 675 loopid <<= 8; 676 } 677 switch (fct->action) { 678 case IPT_CLEAR_ACA: 679 mbs.param[0] = MBOX_CLEAR_ACA; 680 mbs.param[1] = loopid; 681 mbs.param[2] = fct->lun; 682 break; 683 case IPT_TARGET_RESET: 684 mbs.param[0] = MBOX_TARGET_RESET; 685 mbs.param[1] = loopid; 686 needmarker = 1; 687 break; 688 case IPT_LUN_RESET: 689 mbs.param[0] = MBOX_LUN_RESET; 690 mbs.param[1] = loopid; 691 mbs.param[2] = fct->lun; 692 needmarker = 1; 693 break; 694 case IPT_CLEAR_TASK_SET: 695 mbs.param[0] = MBOX_CLEAR_TASK_SET; 696 mbs.param[1] = loopid; 697 mbs.param[2] = fct->lun; 698 needmarker = 1; 699 break; 700 case IPT_ABORT_TASK_SET: 701 mbs.param[0] = MBOX_ABORT_TASK_SET; 702 mbs.param[1] = loopid; 703 mbs.param[2] = fct->lun; 704 needmarker = 1; 705 break; 706 default: 707 retval = EINVAL; 708 break; 709 } 710 if (retval == 0) { 711 if (needmarker) { 712 FCPARAM(isp, chan)->sendmarker = 1; 713 } 714 retval = isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs); 715 if (retval) { 716 retval = EIO; 717 } 718 } 719 } 720 ISP_UNLOCK(isp); 721 break; 722 } 723 default: 724 break; 725 } 726 return (retval); 727 } 728 729 static void 730 isp_intr_enable(void *arg) 731 { 732 int chan; 733 ispsoftc_t *isp = arg; 734 ISP_LOCK(isp); 735 for (chan = 0; chan < isp->isp_nchan; chan++) { 736 if (IS_FC(isp)) { 737 if (FCPARAM(isp, chan)->role != ISP_ROLE_NONE) { 738 ISP_ENABLE_INTS(isp); 739 break; 740 } 741 } else { 742 if (SDPARAM(isp, chan)->role != ISP_ROLE_NONE) { 743 ISP_ENABLE_INTS(isp); 744 break; 745 } 746 } 747 } 748 isp->isp_osinfo.ehook_active = 0; 749 ISP_UNLOCK(isp); 750 /* Release our hook so that the boot can continue. */ 751 config_intrhook_disestablish(&isp->isp_osinfo.ehook); 752 } 753 754 /* 755 * Local Inlines 756 */ 757 758 static ISP_INLINE int isp_get_pcmd(ispsoftc_t *, union ccb *); 759 static ISP_INLINE void isp_free_pcmd(ispsoftc_t *, union ccb *); 760 761 static ISP_INLINE int 762 isp_get_pcmd(ispsoftc_t *isp, union ccb *ccb) 763 { 764 ISP_PCMD(ccb) = isp->isp_osinfo.pcmd_free; 765 if (ISP_PCMD(ccb) == NULL) { 766 return (-1); 767 } 768 isp->isp_osinfo.pcmd_free = ((struct isp_pcmd *)ISP_PCMD(ccb))->next; 769 return (0); 770 } 771 772 static ISP_INLINE void 773 isp_free_pcmd(ispsoftc_t *isp, union ccb *ccb) 774 { 775 ((struct isp_pcmd *)ISP_PCMD(ccb))->next = isp->isp_osinfo.pcmd_free; 776 isp->isp_osinfo.pcmd_free = ISP_PCMD(ccb); 777 ISP_PCMD(ccb) = NULL; 778 } 779 /* 780 * Put the target mode functions here, because some are inlines 781 */ 782 783 #ifdef ISP_TARGET_MODE 784 static ISP_INLINE int is_lun_enabled(ispsoftc_t *, int, lun_id_t); 785 static ISP_INLINE tstate_t *get_lun_statep(ispsoftc_t *, int, lun_id_t); 786 static ISP_INLINE tstate_t *get_lun_statep_from_tag(ispsoftc_t *, int, uint32_t); 787 static ISP_INLINE void rls_lun_statep(ispsoftc_t *, tstate_t *); 788 static ISP_INLINE inot_private_data_t *get_ntp_from_tagdata(ispsoftc_t *, uint32_t, uint32_t, tstate_t **); 789 static ISP_INLINE atio_private_data_t *isp_get_atpd(ispsoftc_t *, tstate_t *, uint32_t); 790 static ISP_INLINE void isp_put_atpd(ispsoftc_t *, tstate_t *, atio_private_data_t *); 791 static ISP_INLINE inot_private_data_t *isp_get_ntpd(ispsoftc_t *, tstate_t *); 792 static ISP_INLINE inot_private_data_t *isp_find_ntpd(ispsoftc_t *, tstate_t *, uint32_t, uint32_t); 793 static ISP_INLINE void isp_put_ntpd(ispsoftc_t *, tstate_t *, inot_private_data_t *); 794 static cam_status create_lun_state(ispsoftc_t *, int, struct cam_path *, tstate_t **); 795 static void destroy_lun_state(ispsoftc_t *, tstate_t *); 796 static void isp_enable_lun(ispsoftc_t *, union ccb *); 797 static void isp_enable_deferred_luns(ispsoftc_t *, int); 798 static cam_status isp_enable_deferred(ispsoftc_t *, int, lun_id_t); 799 static void isp_disable_lun(ispsoftc_t *, union ccb *); 800 static int isp_enable_target_mode(ispsoftc_t *, int); 801 static void isp_ledone(ispsoftc_t *, lun_entry_t *); 802 static timeout_t isp_refire_putback_atio; 803 static void isp_complete_ctio(union ccb *); 804 static void isp_target_putback_atio(union ccb *); 805 static void isp_target_start_ctio(ispsoftc_t *, union ccb *); 806 static void isp_handle_platform_atio(ispsoftc_t *, at_entry_t *); 807 static void isp_handle_platform_atio2(ispsoftc_t *, at2_entry_t *); 808 static void isp_handle_platform_atio7(ispsoftc_t *, at7_entry_t *); 809 static void isp_handle_platform_ctio(ispsoftc_t *, void *); 810 static void isp_handle_platform_notify_scsi(ispsoftc_t *, in_entry_t *); 811 static void isp_handle_platform_notify_fc(ispsoftc_t *, in_fcentry_t *); 812 static void isp_handle_platform_notify_24xx(ispsoftc_t *, in_fcentry_24xx_t *); 813 static int isp_handle_platform_target_notify_ack(ispsoftc_t *, isp_notify_t *); 814 static void isp_handle_platform_target_tmf(ispsoftc_t *, isp_notify_t *); 815 static void isp_target_mark_aborted(ispsoftc_t *, union ccb *); 816 static void isp_target_mark_aborted_early(ispsoftc_t *, tstate_t *, uint32_t); 817 818 static ISP_INLINE int 819 is_lun_enabled(ispsoftc_t *isp, int bus, lun_id_t lun) 820 { 821 tstate_t *tptr; 822 struct tslist *lhp; 823 824 ISP_GET_PC_ADDR(isp, bus, lun_hash[LUN_HASH_FUNC(lun)], lhp); 825 SLIST_FOREACH(tptr, lhp, next) { 826 if (xpt_path_lun_id(tptr->owner) == lun) { 827 return (1); 828 } 829 } 830 return (0); 831 } 832 833 static void 834 dump_tstates(ispsoftc_t *isp, int bus) 835 { 836 int i, j; 837 struct tslist *lhp; 838 tstate_t *tptr = NULL; 839 840 if (bus >= isp->isp_nchan) { 841 return; 842 } 843 for (i = 0; i < LUN_HASH_SIZE; i++) { 844 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp); 845 j = 0; 846 SLIST_FOREACH(tptr, lhp, next) { 847 xpt_print(tptr->owner, "[%d, %d] atio_cnt=%d inot_cnt=%d\n", i, j, tptr->atio_count, tptr->inot_count); 848 j++; 849 } 850 } 851 } 852 853 static ISP_INLINE tstate_t * 854 get_lun_statep(ispsoftc_t *isp, int bus, lun_id_t lun) 855 { 856 tstate_t *tptr = NULL; 857 struct tslist *lhp; 858 int i; 859 860 if (bus < isp->isp_nchan) { 861 for (i = 0; i < LUN_HASH_SIZE; i++) { 862 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp); 863 SLIST_FOREACH(tptr, lhp, next) { 864 if (xpt_path_lun_id(tptr->owner) == lun) { 865 tptr->hold++; 866 return (tptr); 867 } 868 } 869 } 870 } 871 return (NULL); 872 } 873 874 static ISP_INLINE tstate_t * 875 get_lun_statep_from_tag(ispsoftc_t *isp, int bus, uint32_t tagval) 876 { 877 tstate_t *tptr = NULL; 878 atio_private_data_t *atp; 879 struct tslist *lhp; 880 int i; 881 882 if (bus < isp->isp_nchan && tagval != 0) { 883 for (i = 0; i < LUN_HASH_SIZE; i++) { 884 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp); 885 SLIST_FOREACH(tptr, lhp, next) { 886 atp = isp_get_atpd(isp, tptr, tagval); 887 if (atp && atp->tag == tagval) { 888 tptr->hold++; 889 return (tptr); 890 } 891 } 892 } 893 } 894 return (NULL); 895 } 896 897 static ISP_INLINE inot_private_data_t * 898 get_ntp_from_tagdata(ispsoftc_t *isp, uint32_t tag_id, uint32_t seq_id, tstate_t **rslt) 899 { 900 inot_private_data_t *ntp; 901 tstate_t *tptr; 902 struct tslist *lhp; 903 int bus, i; 904 905 for (bus = 0; bus < isp->isp_nchan; bus++) { 906 for (i = 0; i < LUN_HASH_SIZE; i++) { 907 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp); 908 SLIST_FOREACH(tptr, lhp, next) { 909 ntp = isp_find_ntpd(isp, tptr, tag_id, seq_id); 910 if (ntp) { 911 *rslt = tptr; 912 tptr->hold++; 913 return (ntp); 914 } 915 } 916 } 917 } 918 return (NULL); 919 } 920 static ISP_INLINE void 921 rls_lun_statep(ispsoftc_t *isp, tstate_t *tptr) 922 { 923 KASSERT((tptr->hold), ("tptr not held")); 924 tptr->hold--; 925 } 926 927 static void 928 isp_tmcmd_restart(ispsoftc_t *isp) 929 { 930 inot_private_data_t *ntp; 931 tstate_t *tptr; 932 struct tslist *lhp; 933 int bus, i; 934 935 for (bus = 0; bus < isp->isp_nchan; bus++) { 936 for (i = 0; i < LUN_HASH_SIZE; i++) { 937 ISP_GET_PC_ADDR(isp, bus, lun_hash[i], lhp); 938 SLIST_FOREACH(tptr, lhp, next) { 939 inot_private_data_t *restart_queue = tptr->restart_queue; 940 tptr->restart_queue = NULL; 941 while (restart_queue) { 942 ntp = restart_queue; 943 restart_queue = ntp->rd.nt.nt_hba; 944 if (IS_24XX(isp)) { 945 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at7_entry_t *)ntp->rd.data)->at_rxid); 946 isp_handle_platform_atio7(isp, (at7_entry_t *) ntp->rd.data); 947 } else { 948 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at2_entry_t *)ntp->rd.data)->at_rxid); 949 isp_handle_platform_atio2(isp, (at2_entry_t *) ntp->rd.data); 950 } 951 isp_put_ntpd(isp, tptr, ntp); 952 if (tptr->restart_queue && restart_queue != NULL) { 953 ntp = tptr->restart_queue; 954 tptr->restart_queue = restart_queue; 955 while (restart_queue->rd.nt.nt_hba) { 956 restart_queue = restart_queue->rd.nt.nt_hba; 957 } 958 restart_queue->rd.nt.nt_hba = ntp; 959 break; 960 } 961 } 962 } 963 } 964 } 965 } 966 967 static ISP_INLINE atio_private_data_t * 968 isp_get_atpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag) 969 { 970 atio_private_data_t *atp; 971 972 if (tag == 0) { 973 atp = tptr->atfree; 974 if (atp) { 975 tptr->atfree = atp->next; 976 } 977 return (atp); 978 } 979 for (atp = tptr->atpool; atp < &tptr->atpool[ATPDPSIZE]; atp++) { 980 if (atp->tag == tag) { 981 return (atp); 982 } 983 } 984 return (NULL); 985 } 986 987 static ISP_INLINE void 988 isp_put_atpd(ispsoftc_t *isp, tstate_t *tptr, atio_private_data_t *atp) 989 { 990 atp->tag = 0; 991 atp->dead = 0; 992 atp->next = tptr->atfree; 993 tptr->atfree = atp; 994 } 995 996 static void 997 isp_dump_atpd(ispsoftc_t *isp, tstate_t *tptr) 998 { 999 atio_private_data_t *atp; 1000 const char *states[8] = { "Free", "ATIO", "CAM", "CTIO", "LAST_CTIO", "PDON", "?6", "7" }; 1001 1002 for (atp = tptr->atpool; atp < &tptr->atpool[ATPDPSIZE]; atp++) { 1003 if (atp->tag == 0) { 1004 continue; 1005 } 1006 xpt_print(tptr->owner, "ATP: [0x%x] origdlen %u bytes_xfrd %u last_xfr %u lun %u nphdl 0x%04x s_id 0x%06x d_id 0x%06x oxid 0x%04x state %s\n", 1007 atp->tag, atp->orig_datalen, atp->bytes_xfered, atp->last_xframt, atp->lun, atp->nphdl, atp->sid, atp->portid, atp->oxid, states[atp->state & 0x7]); 1008 } 1009 } 1010 1011 1012 static ISP_INLINE inot_private_data_t * 1013 isp_get_ntpd(ispsoftc_t *isp, tstate_t *tptr) 1014 { 1015 inot_private_data_t *ntp; 1016 ntp = tptr->ntfree; 1017 if (ntp) { 1018 tptr->ntfree = ntp->next; 1019 } 1020 return (ntp); 1021 } 1022 1023 static ISP_INLINE inot_private_data_t * 1024 isp_find_ntpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag_id, uint32_t seq_id) 1025 { 1026 inot_private_data_t *ntp; 1027 for (ntp = tptr->ntpool; ntp < &tptr->ntpool[ATPDPSIZE]; ntp++) { 1028 if (ntp->rd.tag_id == tag_id && ntp->rd.seq_id == seq_id) { 1029 return (ntp); 1030 } 1031 } 1032 return (NULL); 1033 } 1034 1035 static ISP_INLINE void 1036 isp_put_ntpd(ispsoftc_t *isp, tstate_t *tptr, inot_private_data_t *ntp) 1037 { 1038 ntp->rd.tag_id = ntp->rd.seq_id = 0; 1039 ntp->next = tptr->ntfree; 1040 tptr->ntfree = ntp; 1041 } 1042 1043 static cam_status 1044 create_lun_state(ispsoftc_t *isp, int bus, struct cam_path *path, tstate_t **rslt) 1045 { 1046 cam_status status; 1047 lun_id_t lun; 1048 struct tslist *lhp; 1049 tstate_t *tptr; 1050 int i; 1051 1052 lun = xpt_path_lun_id(path); 1053 if (lun != CAM_LUN_WILDCARD) { 1054 if (lun >= ISP_MAX_LUNS(isp)) { 1055 return (CAM_LUN_INVALID); 1056 } 1057 } 1058 if (is_lun_enabled(isp, bus, lun)) { 1059 return (CAM_LUN_ALRDY_ENA); 1060 } 1061 tptr = (tstate_t *) malloc(sizeof (tstate_t), M_DEVBUF, M_NOWAIT|M_ZERO); 1062 if (tptr == NULL) { 1063 return (CAM_RESRC_UNAVAIL); 1064 } 1065 status = xpt_create_path(&tptr->owner, NULL, xpt_path_path_id(path), xpt_path_target_id(path), lun); 1066 if (status != CAM_REQ_CMP) { 1067 free(tptr, M_DEVBUF); 1068 return (status); 1069 } 1070 SLIST_INIT(&tptr->atios); 1071 SLIST_INIT(&tptr->inots); 1072 for (i = 0; i < ATPDPSIZE-1; i++) { 1073 tptr->atpool[i].next = &tptr->atpool[i+1]; 1074 tptr->ntpool[i].next = &tptr->ntpool[i+1]; 1075 } 1076 tptr->atfree = tptr->atpool; 1077 tptr->ntfree = tptr->ntpool; 1078 tptr->hold = 1; 1079 ISP_GET_PC_ADDR(isp, bus, lun_hash[LUN_HASH_FUNC(xpt_path_lun_id(tptr->owner))], lhp); 1080 SLIST_INSERT_HEAD(lhp, tptr, next); 1081 *rslt = tptr; 1082 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, path, "created tstate\n"); 1083 return (CAM_REQ_CMP); 1084 } 1085 1086 static ISP_INLINE void 1087 destroy_lun_state(ispsoftc_t *isp, tstate_t *tptr) 1088 { 1089 struct tslist *lhp; 1090 KASSERT((tptr->hold == 0), ("tptr still held")); 1091 ISP_GET_PC_ADDR(isp, xpt_path_path_id(tptr->owner), lun_hash[LUN_HASH_FUNC(xpt_path_lun_id(tptr->owner))], lhp); 1092 SLIST_REMOVE(lhp, tptr, tstate, next); 1093 xpt_free_path(tptr->owner); 1094 free(tptr, M_DEVBUF); 1095 } 1096 1097 /* 1098 * Enable a lun. 1099 */ 1100 static void 1101 isp_enable_lun(ispsoftc_t *isp, union ccb *ccb) 1102 { 1103 tstate_t *tptr = NULL; 1104 int bus, tm_enabled, target_role; 1105 target_id_t target; 1106 lun_id_t lun; 1107 1108 /* 1109 * We only support either a wildcard target/lun or a target ID of zero and a non-wildcard lun 1110 */ 1111 bus = XS_CHANNEL(ccb); 1112 target = ccb->ccb_h.target_id; 1113 lun = ccb->ccb_h.target_lun; 1114 if (target != CAM_TARGET_WILDCARD && target != 0) { 1115 ccb->ccb_h.status = CAM_TID_INVALID; 1116 xpt_done(ccb); 1117 return; 1118 } 1119 if (target == CAM_TARGET_WILDCARD && lun != CAM_LUN_WILDCARD) { 1120 ccb->ccb_h.status = CAM_LUN_INVALID; 1121 xpt_done(ccb); 1122 return; 1123 } 1124 1125 if (target != CAM_TARGET_WILDCARD && lun == CAM_LUN_WILDCARD) { 1126 ccb->ccb_h.status = CAM_LUN_INVALID; 1127 xpt_done(ccb); 1128 return; 1129 } 1130 if (isp->isp_dblev & ISP_LOGTDEBUG0) { 1131 xpt_print(ccb->ccb_h.path, "enabling lun 0x%x on channel %d\n", lun, bus); 1132 } 1133 1134 /* 1135 * Wait until we're not busy with the lun enables subsystem 1136 */ 1137 while (isp->isp_osinfo.tmbusy) { 1138 isp->isp_osinfo.tmwanted = 1; 1139 mtx_sleep(isp, &isp->isp_lock, PRIBIO, "want_isp_enable_lun", 0); 1140 } 1141 isp->isp_osinfo.tmbusy = 1; 1142 1143 /* 1144 * This is as a good a place as any to check f/w capabilities. 1145 */ 1146 1147 if (IS_FC(isp)) { 1148 if (ISP_CAP_TMODE(isp) == 0) { 1149 xpt_print(ccb->ccb_h.path, "firmware does not support target mode\n"); 1150 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL; 1151 goto done; 1152 } 1153 /* 1154 * We *could* handle non-SCCLUN f/w, but we'd have to 1155 * dork with our already fragile enable/disable code. 1156 */ 1157 if (ISP_CAP_SCCFW(isp) == 0) { 1158 xpt_print(ccb->ccb_h.path, "firmware not SCCLUN capable\n"); 1159 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL; 1160 goto done; 1161 } 1162 1163 target_role = (FCPARAM(isp, bus)->role & ISP_ROLE_TARGET) != 0; 1164 1165 } else { 1166 target_role = (SDPARAM(isp, bus)->role & ISP_ROLE_TARGET) != 0; 1167 } 1168 1169 /* 1170 * Create the state pointer. 1171 * It should not already exist. 1172 */ 1173 tptr = get_lun_statep(isp, bus, lun); 1174 if (tptr) { 1175 ccb->ccb_h.status = CAM_LUN_ALRDY_ENA; 1176 goto done; 1177 } 1178 ccb->ccb_h.status = create_lun_state(isp, bus, ccb->ccb_h.path, &tptr); 1179 if (ccb->ccb_h.status != CAM_REQ_CMP) { 1180 goto done; 1181 } 1182 1183 /* 1184 * We have a tricky maneuver to perform here. 1185 * 1186 * If target mode isn't already enabled here, 1187 * *and* our current role includes target mode, 1188 * we enable target mode here. 1189 * 1190 */ 1191 ISP_GET_PC(isp, bus, tm_enabled, tm_enabled); 1192 if (tm_enabled == 0 && target_role != 0) { 1193 if (isp_enable_target_mode(isp, bus)) { 1194 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 1195 destroy_lun_state(isp, tptr); 1196 tptr = NULL; 1197 goto done; 1198 } 1199 tm_enabled = 1; 1200 } 1201 1202 /* 1203 * Now check to see whether this bus is in target mode already. 1204 * 1205 * If not, a later role change into target mode will finish the job. 1206 */ 1207 if (tm_enabled == 0) { 1208 ISP_SET_PC(isp, bus, tm_enable_defer, 1); 1209 ccb->ccb_h.status = CAM_REQ_CMP; 1210 xpt_print(ccb->ccb_h.path, "Target Mode Not Enabled Yet- Lun Enables Deferred\n"); 1211 goto done; 1212 } 1213 1214 /* 1215 * Enable the lun. 1216 */ 1217 ccb->ccb_h.status = isp_enable_deferred(isp, bus, lun); 1218 1219 done: 1220 if (ccb->ccb_h.status != CAM_REQ_CMP && tptr) { 1221 destroy_lun_state(isp, tptr); 1222 tptr = NULL; 1223 } 1224 if (tptr) { 1225 rls_lun_statep(isp, tptr); 1226 } 1227 isp->isp_osinfo.tmbusy = 0; 1228 if (isp->isp_osinfo.tmwanted) { 1229 isp->isp_osinfo.tmwanted = 0; 1230 wakeup(isp); 1231 } 1232 xpt_done(ccb); 1233 } 1234 1235 static void 1236 isp_enable_deferred_luns(ispsoftc_t *isp, int bus) 1237 { 1238 /* 1239 * XXX: not entirely implemented yet 1240 */ 1241 (void) isp_enable_deferred(isp, bus, 0); 1242 } 1243 1244 static uint32_t 1245 isp_enable_deferred(ispsoftc_t *isp, int bus, lun_id_t lun) 1246 { 1247 cam_status status; 1248 1249 isp_prt(isp, ISP_LOGTINFO, "%s: bus %d lun %u", __func__, bus, lun); 1250 if (IS_24XX(isp) || (IS_FC(isp) && ISP_FC_PC(isp, bus)->tm_luns_enabled)) { 1251 status = CAM_REQ_CMP; 1252 } else { 1253 int cmd_cnt, not_cnt; 1254 1255 if (IS_23XX(isp)) { 1256 cmd_cnt = DFLT_CMND_CNT; 1257 not_cnt = DFLT_INOT_CNT; 1258 } else { 1259 cmd_cnt = 64; 1260 not_cnt = 8; 1261 } 1262 status = CAM_REQ_INPROG; 1263 isp->isp_osinfo.rptr = &status; 1264 if (isp_lun_cmd(isp, RQSTYPE_ENABLE_LUN, bus, lun, DFLT_CMND_CNT, DFLT_INOT_CNT)) { 1265 status = CAM_RESRC_UNAVAIL; 1266 } else { 1267 mtx_sleep(&status, &isp->isp_lock, PRIBIO, "isp_enable_deferred", 0); 1268 } 1269 isp->isp_osinfo.rptr = NULL; 1270 } 1271 1272 if (status == CAM_REQ_CMP) { 1273 ISP_SET_PC(isp, bus, tm_luns_enabled, 1); 1274 isp_prt(isp, ISP_LOGTINFO, "bus %d lun %u now enabled for target mode", bus, lun); 1275 } 1276 return (status); 1277 } 1278 1279 static void 1280 isp_disable_lun(ispsoftc_t *isp, union ccb *ccb) 1281 { 1282 tstate_t *tptr = NULL; 1283 int bus; 1284 cam_status status; 1285 target_id_t target; 1286 lun_id_t lun; 1287 1288 bus = XS_CHANNEL(ccb); 1289 target = ccb->ccb_h.target_id; 1290 lun = ccb->ccb_h.target_lun; 1291 if (target != CAM_TARGET_WILDCARD && target != 0) { 1292 ccb->ccb_h.status = CAM_TID_INVALID; 1293 xpt_done(ccb); 1294 return; 1295 } 1296 if (target == CAM_TARGET_WILDCARD && lun != CAM_LUN_WILDCARD) { 1297 ccb->ccb_h.status = CAM_LUN_INVALID; 1298 xpt_done(ccb); 1299 return; 1300 } 1301 1302 if (target != CAM_TARGET_WILDCARD && lun == CAM_LUN_WILDCARD) { 1303 ccb->ccb_h.status = CAM_LUN_INVALID; 1304 xpt_done(ccb); 1305 return; 1306 } 1307 if (isp->isp_dblev & ISP_LOGTDEBUG0) { 1308 xpt_print(ccb->ccb_h.path, "enabling lun 0x%x on channel %d\n", lun, bus); 1309 } 1310 1311 /* 1312 * See if we're busy disabling a lun now. 1313 */ 1314 while (isp->isp_osinfo.tmbusy) { 1315 isp->isp_osinfo.tmwanted = 1; 1316 mtx_sleep(isp, &isp->isp_lock, PRIBIO, "want_isp_disable_lun", 0); 1317 } 1318 isp->isp_osinfo.tmbusy = 1; 1319 1320 /* 1321 * Find the state pointer. 1322 */ 1323 if ((tptr = get_lun_statep(isp, bus, lun)) == NULL) { 1324 ccb->ccb_h.status = CAM_PATH_INVALID; 1325 goto done; 1326 } 1327 1328 /* 1329 * If we're a 24XX card, we're done. 1330 */ 1331 if (IS_24XX(isp)) { 1332 status = CAM_REQ_CMP; 1333 goto done; 1334 } 1335 1336 /* 1337 * For SCC FW, we only deal with lun zero. 1338 */ 1339 if (IS_FC(isp)) { 1340 lun = 0; 1341 } 1342 1343 isp->isp_osinfo.rptr = &status; 1344 status = CAM_REQ_INPROG; 1345 if (isp_lun_cmd(isp, RQSTYPE_ENABLE_LUN, bus, lun, 0, 0)) { 1346 status = CAM_RESRC_UNAVAIL; 1347 } else { 1348 mtx_sleep(ccb, &isp->isp_lock, PRIBIO, "isp_disable_lun", 0); 1349 } 1350 done: 1351 if (status == CAM_REQ_CMP) { 1352 xpt_print(ccb->ccb_h.path, "now disabled for target mode\n"); 1353 } 1354 if (tptr) { 1355 destroy_lun_state(isp, tptr); 1356 } 1357 isp->isp_osinfo.rptr = NULL; 1358 isp->isp_osinfo.tmbusy = 0; 1359 if (isp->isp_osinfo.tmwanted) { 1360 isp->isp_osinfo.tmwanted = 0; 1361 wakeup(isp); 1362 } 1363 xpt_done(ccb); 1364 } 1365 1366 static int 1367 isp_enable_target_mode(ispsoftc_t *isp, int bus) 1368 { 1369 int ct; 1370 1371 ISP_GET_PC(isp, bus, tm_enabled, ct); 1372 if (ct != 0) { 1373 return (0); 1374 } 1375 1376 if (IS_SCSI(isp)) { 1377 mbreg_t mbs; 1378 1379 MBSINIT(&mbs, MBOX_ENABLE_TARGET_MODE, MBLOGALL, 0); 1380 mbs.param[0] = MBOX_ENABLE_TARGET_MODE; 1381 mbs.param[1] = ENABLE_TARGET_FLAG|ENABLE_TQING_FLAG; 1382 mbs.param[2] = bus << 7; 1383 if (isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs) < 0 || mbs.param[0] != MBOX_COMMAND_COMPLETE) { 1384 isp_prt(isp, ISP_LOGERR, "Unable to add Target Role to Bus %d", bus); 1385 return (EIO); 1386 } 1387 SDPARAM(isp, bus)->role |= ISP_ROLE_TARGET; 1388 } 1389 ISP_SET_PC(isp, bus, tm_enabled, 1); 1390 isp_prt(isp, ISP_LOGINFO, "Target Role added to Bus %d", bus); 1391 return (0); 1392 } 1393 1394 #ifdef NEEDED 1395 static int 1396 isp_disable_target_mode(ispsoftc_t *isp, int bus) 1397 { 1398 int ct; 1399 1400 ISP_GET_PC(isp, bus, tm_enabled, ct); 1401 if (ct == 0) { 1402 return (0); 1403 } 1404 1405 if (IS_SCSI(isp)) { 1406 mbreg_t mbs; 1407 1408 MBSINIT(&mbs, MBOX_ENABLE_TARGET_MODE, MBLOGALL, 0); 1409 mbs.param[2] = bus << 7; 1410 if (isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs) < 0 || mbs.param[0] != MBOX_COMMAND_COMPLETE) { 1411 isp_prt(isp, ISP_LOGERR, "Unable to subtract Target Role to Bus %d", bus); 1412 return (EIO); 1413 } 1414 SDPARAM(isp, bus)->role &= ~ISP_ROLE_TARGET; 1415 } 1416 ISP_SET_PC(isp, bus, tm_enabled, 0); 1417 isp_prt(isp, ISP_LOGINFO, "Target Role subtracted from Bus %d", bus); 1418 return (0); 1419 } 1420 #endif 1421 1422 static void 1423 isp_ledone(ispsoftc_t *isp, lun_entry_t *lep) 1424 { 1425 uint32_t *rptr; 1426 1427 rptr = isp->isp_osinfo.rptr; 1428 if (lep->le_status != LUN_OK) { 1429 isp_prt(isp, ISP_LOGERR, "ENABLE/MODIFY LUN returned 0x%x", lep->le_status); 1430 if (rptr) { 1431 *rptr = CAM_REQ_CMP_ERR; 1432 wakeup_one(rptr); 1433 } 1434 } else { 1435 if (rptr) { 1436 *rptr = CAM_REQ_CMP; 1437 wakeup_one(rptr); 1438 } 1439 } 1440 } 1441 1442 static void 1443 isp_target_start_ctio(ispsoftc_t *isp, union ccb *ccb) 1444 { 1445 void *qe; 1446 tstate_t *tptr; 1447 atio_private_data_t *atp; 1448 struct ccb_scsiio *cso = &ccb->csio; 1449 uint32_t dmaresult, handle; 1450 uint8_t local[QENTRY_LEN]; 1451 1452 /* 1453 * Do some sanity checks. 1454 */ 1455 if (cso->dxfer_len == 0) { 1456 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) == 0) { 1457 xpt_print(ccb->ccb_h.path, "a data transfer length of zero but no status to send is wrong\n"); 1458 ccb->ccb_h.status = CAM_REQ_INVALID; 1459 xpt_done(ccb); 1460 return; 1461 } 1462 } 1463 1464 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), XS_LUN(ccb)); 1465 if (tptr == NULL) { 1466 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), CAM_LUN_WILDCARD); 1467 if (tptr == NULL) { 1468 xpt_print(ccb->ccb_h.path, "%s: [0x%x] cannot find tstate pointer in %s\n", __func__, cso->tag_id); 1469 dump_tstates(isp, XS_CHANNEL(ccb)); 1470 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 1471 xpt_done(ccb); 1472 return; 1473 } 1474 } 1475 1476 atp = isp_get_atpd(isp, tptr, cso->tag_id); 1477 if (atp == NULL) { 1478 xpt_print(ccb->ccb_h.path, "%s: [0x%x] cannot find private data adjunct\n", __func__, cso->tag_id); 1479 isp_dump_atpd(isp, tptr); 1480 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 1481 xpt_done(ccb); 1482 return; 1483 } 1484 if (atp->dead) { 1485 xpt_print(ccb->ccb_h.path, "%s: [0x%x] stopping sending a CTIO for a dead command\n", __func__, cso->tag_id); 1486 ccb->ccb_h.status = CAM_REQ_ABORTED; 1487 xpt_done(ccb); 1488 return; 1489 } 1490 1491 /* 1492 * Check to make sure we're still in target mode. 1493 */ 1494 if ((FCPARAM(isp, XS_CHANNEL(ccb))->role & ISP_ROLE_TARGET) == 0) { 1495 xpt_print(ccb->ccb_h.path, "%s: [0x%x] stopping sending a CTIO because we're no longer in target mode\n", __func__, cso->tag_id); 1496 ccb->ccb_h.status = CAM_PROVIDE_FAIL; 1497 xpt_done(ccb); 1498 return; 1499 } 1500 1501 /* 1502 * Get some resources 1503 */ 1504 if (isp_get_pcmd(isp, ccb)) { 1505 rls_lun_statep(isp, tptr); 1506 xpt_print(ccb->ccb_h.path, "out of PCMDs\n"); 1507 cam_freeze_devq(ccb->ccb_h.path); 1508 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 250, 0); 1509 ccb->ccb_h.status = CAM_REQUEUE_REQ; 1510 xpt_done(ccb); 1511 return; 1512 } 1513 qe = isp_getrqentry(isp); 1514 if (qe == NULL) { 1515 xpt_print(ccb->ccb_h.path, rqo, __func__); 1516 cam_freeze_devq(ccb->ccb_h.path); 1517 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 250, 0); 1518 ccb->ccb_h.status = CAM_REQUEUE_REQ; 1519 goto out; 1520 } 1521 memset(local, 0, QENTRY_LEN); 1522 1523 /* 1524 * We're either moving data or completing a command here. 1525 */ 1526 if (IS_24XX(isp)) { 1527 ct7_entry_t *cto = (ct7_entry_t *) local; 1528 1529 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7; 1530 cto->ct_header.rqs_entry_count = 1; 1531 cto->ct_header.rqs_seqno = 1; 1532 cto->ct_nphdl = atp->nphdl; 1533 cto->ct_rxid = atp->tag; 1534 cto->ct_iid_lo = atp->portid; 1535 cto->ct_iid_hi = atp->portid >> 16; 1536 cto->ct_oxid = atp->oxid; 1537 cto->ct_vpidx = ISP_GET_VPIDX(isp, XS_CHANNEL(ccb)); 1538 cto->ct_scsi_status = cso->scsi_status; 1539 cto->ct_timeout = 120; 1540 cto->ct_flags = atp->tattr << CT7_TASK_ATTR_SHIFT; 1541 if (ccb->ccb_h.flags & CAM_SEND_STATUS) { 1542 cto->ct_flags |= CT7_SENDSTATUS; 1543 } 1544 if (cso->dxfer_len == 0) { 1545 cto->ct_flags |= CT7_FLAG_MODE1 | CT7_NO_DATA; 1546 if ((ccb->ccb_h.flags & CAM_SEND_SENSE) != 0) { 1547 int m = min(cso->sense_len, sizeof (struct scsi_sense_data)); 1548 cto->rsp.m1.ct_resplen = cto->ct_senselen = min(m, MAXRESPLEN_24XX); 1549 memcpy(cto->rsp.m1.ct_resp, &cso->sense_data, cto->ct_senselen); 1550 cto->ct_scsi_status |= (FCP_SNSLEN_VALID << 8); 1551 } 1552 } else { 1553 cto->ct_flags |= CT7_FLAG_MODE0; 1554 if ((cso->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1555 cto->ct_flags |= CT7_DATA_IN; 1556 } else { 1557 cto->ct_flags |= CT7_DATA_OUT; 1558 } 1559 cto->rsp.m0.reloff = atp->bytes_xfered; 1560 /* 1561 * Don't overrun the limits placed on us 1562 */ 1563 if (atp->bytes_xfered + cso->dxfer_len > atp->orig_datalen) { 1564 cso->dxfer_len = atp->orig_datalen - atp->bytes_xfered; 1565 } 1566 atp->last_xframt = cso->dxfer_len; 1567 cto->rsp.m0.ct_xfrlen = cso->dxfer_len; 1568 } 1569 if (cto->ct_flags & CT7_SENDSTATUS) { 1570 int lvl = (cso->scsi_status)? ISP_LOGTINFO : ISP_LOGTDEBUG0; 1571 cto->ct_resid = atp->orig_datalen - (atp->bytes_xfered + cso->dxfer_len); 1572 if (cto->ct_resid < 0) { 1573 cto->ct_scsi_status |= (FCP_RESID_OVERFLOW << 8); 1574 } else if (cto->ct_resid > 0) { 1575 cto->ct_scsi_status |= (FCP_RESID_UNDERFLOW << 8); 1576 } 1577 atp->state = ATPD_STATE_LAST_CTIO; 1578 ISP_PATH_PRT(isp, lvl, cso->ccb_h.path, "%s: CTIO7[%x] CDB0=%x scsi status %x flags %x resid %d xfrlen %u offset %u\n", __func__, cto->ct_rxid, 1579 atp->cdb0, cto->ct_scsi_status, cto->ct_flags, cto->ct_resid, cso->dxfer_len, atp->bytes_xfered); 1580 } else { 1581 cto->ct_resid = 0; 1582 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, cso->ccb_h.path, "%s: CTIO7[%x] flags %x xfrlen %u offset %u\n", __func__, cto->ct_rxid, cto->ct_flags, 1583 cso->dxfer_len, atp->bytes_xfered); 1584 atp->state = ATPD_STATE_CTIO; 1585 } 1586 } else if (IS_FC(isp)) { 1587 ct2_entry_t *cto = (ct2_entry_t *) local; 1588 1589 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO2; 1590 cto->ct_header.rqs_entry_count = 1; 1591 cto->ct_header.rqs_seqno = 1; 1592 if (ISP_CAP_2KLOGIN(isp) == 0) { 1593 ((ct2e_entry_t *)cto)->ct_iid = cso->init_id; 1594 } else { 1595 cto->ct_iid = cso->init_id; 1596 if (ISP_CAP_SCCFW(isp) == 0) { 1597 cto->ct_lun = ccb->ccb_h.target_lun; 1598 } 1599 } 1600 1601 1602 cto->ct_rxid = cso->tag_id; 1603 if (cso->dxfer_len == 0) { 1604 cto->ct_flags |= CT2_FLAG_MODE1 | CT2_NO_DATA | CT2_SENDSTATUS; 1605 cto->rsp.m1.ct_scsi_status = cso->scsi_status; 1606 cto->ct_resid = atp->orig_datalen - atp->bytes_xfered; 1607 if (cto->ct_resid < 0) { 1608 cto->rsp.m1.ct_scsi_status |= CT2_DATA_OVER; 1609 } else if (cto->ct_resid > 0) { 1610 cto->rsp.m1.ct_scsi_status |= CT2_DATA_UNDER; 1611 } 1612 if ((ccb->ccb_h.flags & CAM_SEND_SENSE) != 0) { 1613 int m = min(cso->sense_len, MAXRESPLEN); 1614 memcpy(cto->rsp.m1.ct_resp, &cso->sense_data, m); 1615 cto->rsp.m1.ct_senselen = m; 1616 cto->rsp.m1.ct_scsi_status |= CT2_SNSLEN_VALID; 1617 } else if (cso->scsi_status == SCSI_STATUS_CHECK_COND) { 1618 /* 1619 * XXX: DEBUG 1620 */ 1621 xpt_print(ccb->ccb_h.path, "CHECK CONDITION being sent without associated SENSE DATA for CDB=0x%x\n", atp->cdb0); 1622 } 1623 } else { 1624 cto->ct_flags |= CT2_FLAG_MODE0; 1625 if ((cso->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1626 cto->ct_flags |= CT2_DATA_IN; 1627 } else { 1628 cto->ct_flags |= CT2_DATA_OUT; 1629 } 1630 cto->ct_reloff = atp->bytes_xfered; 1631 cto->rsp.m0.ct_xfrlen = cso->dxfer_len; 1632 /* 1633 * Don't overrun the limits placed on us 1634 */ 1635 if (atp->bytes_xfered + cso->dxfer_len > atp->orig_datalen) { 1636 cso->dxfer_len = atp->orig_datalen - atp->bytes_xfered; 1637 } 1638 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) != 0) { 1639 cto->ct_flags |= CT2_SENDSTATUS; 1640 cto->rsp.m0.ct_scsi_status = cso->scsi_status; 1641 cto->ct_resid = atp->orig_datalen - (atp->bytes_xfered + cso->dxfer_len); 1642 if (cto->ct_resid < 0) { 1643 cto->rsp.m0.ct_scsi_status |= CT2_DATA_OVER; 1644 } else if (cto->ct_resid > 0) { 1645 cto->rsp.m0.ct_scsi_status |= CT2_DATA_UNDER; 1646 } 1647 } else { 1648 atp->last_xframt = cso->dxfer_len; 1649 } 1650 /* 1651 * If we're sending data and status back together, 1652 * we can't also send back sense data as well. 1653 */ 1654 ccb->ccb_h.flags &= ~CAM_SEND_SENSE; 1655 } 1656 1657 if (cto->ct_flags & CT2_SENDSTATUS) { 1658 int lvl = (cso->scsi_status)? ISP_LOGTINFO : ISP_LOGTDEBUG0; 1659 cto->ct_flags |= CT2_CCINCR; 1660 atp->state = ATPD_STATE_LAST_CTIO; 1661 ISP_PATH_PRT(isp, lvl, cso->ccb_h.path, "%s: CTIO2[%x] CDB0=%x scsi status %x flags %x resid %d xfrlen %u offset %u\n", __func__, cto->ct_rxid, 1662 atp->cdb0, cto->rsp.m0.ct_scsi_status, cto->ct_flags, cto->ct_resid, cso->dxfer_len, atp->bytes_xfered); 1663 } else { 1664 cto->ct_resid = 0; 1665 atp->state = ATPD_STATE_CTIO; 1666 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "%s: CTIO2[%x] flags %x xfrlen %u offset %u\n", __func__, cto->ct_rxid, cto->ct_flags, 1667 cso->dxfer_len, atp->bytes_xfered); 1668 } 1669 cto->ct_timeout = 10; 1670 } else { 1671 ct_entry_t *cto = (ct_entry_t *) local; 1672 1673 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO; 1674 cto->ct_header.rqs_entry_count = 1; 1675 cto->ct_header.rqs_seqno = 1; 1676 cto->ct_iid = cso->init_id; 1677 cto->ct_iid |= XS_CHANNEL(ccb) << 7; 1678 cto->ct_tgt = ccb->ccb_h.target_id; 1679 cto->ct_lun = ccb->ccb_h.target_lun; 1680 cto->ct_fwhandle = cso->tag_id >> 16; 1681 if (AT_HAS_TAG(cso->tag_id)) { 1682 cto->ct_tag_val = cso->tag_id; 1683 cto->ct_flags |= CT_TQAE; 1684 } 1685 if (ccb->ccb_h.flags & CAM_DIS_DISCONNECT) { 1686 cto->ct_flags |= CT_NODISC; 1687 } 1688 if (cso->dxfer_len == 0) { 1689 cto->ct_flags |= CT_NO_DATA; 1690 } else if ((cso->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1691 cto->ct_flags |= CT_DATA_IN; 1692 } else { 1693 cto->ct_flags |= CT_DATA_OUT; 1694 } 1695 if (ccb->ccb_h.flags & CAM_SEND_STATUS) { 1696 cto->ct_flags |= CT_SENDSTATUS|CT_CCINCR; 1697 cto->ct_scsi_status = cso->scsi_status; 1698 cto->ct_resid = cso->resid; 1699 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "%s: CTIO[%x] scsi status %x resid %d tag_id %x\n", __func__, 1700 cto->ct_fwhandle, cso->scsi_status, cso->resid, cso->tag_id); 1701 } 1702 ccb->ccb_h.flags &= ~CAM_SEND_SENSE; 1703 cto->ct_timeout = 10; 1704 } 1705 1706 if (isp_allocate_xs_tgt(isp, ccb, &handle)) { 1707 xpt_print(ccb->ccb_h.path, "No XFLIST pointers for %s\n", __func__); 1708 ccb->ccb_h.status = CAM_REQUEUE_REQ; 1709 goto out; 1710 } 1711 1712 1713 /* 1714 * Call the dma setup routines for this entry (and any subsequent 1715 * CTIOs) if there's data to move, and then tell the f/w it's got 1716 * new things to play with. As with isp_start's usage of DMA setup, 1717 * any swizzling is done in the machine dependent layer. Because 1718 * of this, we put the request onto the queue area first in native 1719 * format. 1720 */ 1721 1722 if (IS_24XX(isp)) { 1723 ct7_entry_t *cto = (ct7_entry_t *) local; 1724 cto->ct_syshandle = handle; 1725 } else if (IS_FC(isp)) { 1726 ct2_entry_t *cto = (ct2_entry_t *) local; 1727 cto->ct_syshandle = handle; 1728 } else { 1729 ct_entry_t *cto = (ct_entry_t *) local; 1730 cto->ct_syshandle = handle; 1731 } 1732 1733 dmaresult = ISP_DMASETUP(isp, cso, (ispreq_t *) local); 1734 if (dmaresult == CMD_QUEUED) { 1735 isp->isp_nactive++; 1736 ccb->ccb_h.status |= CAM_SIM_QUEUED; 1737 rls_lun_statep(isp, tptr); 1738 return; 1739 } 1740 if (dmaresult == CMD_EAGAIN) { 1741 ccb->ccb_h.status = CAM_REQUEUE_REQ; 1742 } else { 1743 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 1744 } 1745 isp_destroy_tgt_handle(isp, handle); 1746 out: 1747 rls_lun_statep(isp, tptr); 1748 isp_free_pcmd(isp, ccb); 1749 xpt_done(ccb); 1750 } 1751 1752 static void 1753 isp_refire_putback_atio(void *arg) 1754 { 1755 union ccb *ccb = arg; 1756 ispsoftc_t *isp = XS_ISP(ccb); 1757 ISP_LOCK(isp); 1758 isp_target_putback_atio(ccb); 1759 ISP_UNLOCK(isp); 1760 } 1761 1762 static void 1763 isp_target_putback_atio(union ccb *ccb) 1764 { 1765 ispsoftc_t *isp; 1766 struct ccb_scsiio *cso; 1767 void *qe; 1768 1769 isp = XS_ISP(ccb); 1770 1771 qe = isp_getrqentry(isp); 1772 if (qe == NULL) { 1773 xpt_print(ccb->ccb_h.path, rqo, __func__); 1774 (void) timeout(isp_refire_putback_atio, ccb, 10); 1775 return; 1776 } 1777 memset(qe, 0, QENTRY_LEN); 1778 cso = &ccb->csio; 1779 if (IS_FC(isp)) { 1780 at2_entry_t local, *at = &local; 1781 ISP_MEMZERO(at, sizeof (at2_entry_t)); 1782 at->at_header.rqs_entry_type = RQSTYPE_ATIO2; 1783 at->at_header.rqs_entry_count = 1; 1784 if (ISP_CAP_SCCFW(isp)) { 1785 at->at_scclun = (uint16_t) ccb->ccb_h.target_lun; 1786 } else { 1787 at->at_lun = (uint8_t) ccb->ccb_h.target_lun; 1788 } 1789 at->at_status = CT_OK; 1790 at->at_rxid = cso->tag_id; 1791 at->at_iid = cso->ccb_h.target_id; 1792 isp_put_atio2(isp, at, qe); 1793 } else { 1794 at_entry_t local, *at = &local; 1795 ISP_MEMZERO(at, sizeof (at_entry_t)); 1796 at->at_header.rqs_entry_type = RQSTYPE_ATIO; 1797 at->at_header.rqs_entry_count = 1; 1798 at->at_iid = cso->init_id; 1799 at->at_iid |= XS_CHANNEL(ccb) << 7; 1800 at->at_tgt = cso->ccb_h.target_id; 1801 at->at_lun = cso->ccb_h.target_lun; 1802 at->at_status = CT_OK; 1803 at->at_tag_val = AT_GET_TAG(cso->tag_id); 1804 at->at_handle = AT_GET_HANDLE(cso->tag_id); 1805 isp_put_atio(isp, at, qe); 1806 } 1807 ISP_TDQE(isp, "isp_target_putback_atio", isp->isp_reqidx, qe); 1808 ISP_SYNC_REQUEST(isp); 1809 isp_complete_ctio(ccb); 1810 } 1811 1812 static void 1813 isp_complete_ctio(union ccb *ccb) 1814 { 1815 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INPROG) { 1816 ccb->ccb_h.status |= CAM_REQ_CMP; 1817 } 1818 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 1819 isp_free_pcmd(XS_ISP(ccb), ccb); 1820 xpt_done(ccb); 1821 } 1822 1823 /* 1824 * Handle ATIO stuff that the generic code can't. 1825 * This means handling CDBs. 1826 */ 1827 1828 static void 1829 isp_handle_platform_atio(ispsoftc_t *isp, at_entry_t *aep) 1830 { 1831 tstate_t *tptr; 1832 int status, bus; 1833 struct ccb_accept_tio *atiop; 1834 atio_private_data_t *atp; 1835 1836 /* 1837 * The firmware status (except for the QLTM_SVALID bit) 1838 * indicates why this ATIO was sent to us. 1839 * 1840 * If QLTM_SVALID is set, the firmware has recommended Sense Data. 1841 * 1842 * If the DISCONNECTS DISABLED bit is set in the flags field, 1843 * we're still connected on the SCSI bus. 1844 */ 1845 status = aep->at_status; 1846 if ((status & ~QLTM_SVALID) == AT_PHASE_ERROR) { 1847 /* 1848 * Bus Phase Sequence error. We should have sense data 1849 * suggested by the f/w. I'm not sure quite yet what 1850 * to do about this for CAM. 1851 */ 1852 isp_prt(isp, ISP_LOGWARN, "PHASE ERROR"); 1853 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0); 1854 return; 1855 } 1856 if ((status & ~QLTM_SVALID) != AT_CDB) { 1857 isp_prt(isp, ISP_LOGWARN, "bad atio (0x%x) leaked to platform", status); 1858 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0); 1859 return; 1860 } 1861 1862 bus = GET_BUS_VAL(aep->at_iid); 1863 tptr = get_lun_statep(isp, bus, aep->at_lun); 1864 if (tptr == NULL) { 1865 tptr = get_lun_statep(isp, bus, CAM_LUN_WILDCARD); 1866 if (tptr == NULL) { 1867 /* 1868 * Because we can't autofeed sense data back with 1869 * a command for parallel SCSI, we can't give back 1870 * a CHECK CONDITION. We'll give back a BUSY status 1871 * instead. This works out okay because the only 1872 * time we should, in fact, get this, is in the 1873 * case that somebody configured us without the 1874 * blackhole driver, so they get what they deserve. 1875 */ 1876 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0); 1877 return; 1878 } 1879 } 1880 1881 atp = isp_get_atpd(isp, tptr, 0); 1882 atiop = (struct ccb_accept_tio *) SLIST_FIRST(&tptr->atios); 1883 if (atiop == NULL || atp == NULL) { 1884 /* 1885 * Because we can't autofeed sense data back with 1886 * a command for parallel SCSI, we can't give back 1887 * a CHECK CONDITION. We'll give back a QUEUE FULL status 1888 * instead. This works out okay because the only time we 1889 * should, in fact, get this, is in the case that we've 1890 * run out of ATIOS. 1891 */ 1892 xpt_print(tptr->owner, "no %s for lun %d from initiator %d\n", (atp == NULL && atiop == NULL)? "ATIOs *or* ATPS" : 1893 ((atp == NULL)? "ATPs" : "ATIOs"), aep->at_lun, aep->at_iid); 1894 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0); 1895 if (atp) { 1896 isp_put_atpd(isp, tptr, atp); 1897 } 1898 rls_lun_statep(isp, tptr); 1899 return; 1900 } 1901 atp->tag = aep->at_tag_val; 1902 if (atp->tag == 0) { 1903 atp->tag = ~0; 1904 } 1905 atp->state = ATPD_STATE_ATIO; 1906 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle); 1907 tptr->atio_count--; 1908 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, atiop->ccb_h.path, "Take FREE ATIO count now %d\n", tptr->atio_count); 1909 atiop->ccb_h.target_id = aep->at_tgt; 1910 atiop->ccb_h.target_lun = aep->at_lun; 1911 if (aep->at_flags & AT_NODISC) { 1912 atiop->ccb_h.flags = CAM_DIS_DISCONNECT; 1913 } else { 1914 atiop->ccb_h.flags = 0; 1915 } 1916 1917 if (status & QLTM_SVALID) { 1918 size_t amt = ISP_MIN(QLTM_SENSELEN, sizeof (atiop->sense_data)); 1919 atiop->sense_len = amt; 1920 ISP_MEMCPY(&atiop->sense_data, aep->at_sense, amt); 1921 } else { 1922 atiop->sense_len = 0; 1923 } 1924 1925 atiop->init_id = GET_IID_VAL(aep->at_iid); 1926 atiop->cdb_len = aep->at_cdblen; 1927 ISP_MEMCPY(atiop->cdb_io.cdb_bytes, aep->at_cdb, aep->at_cdblen); 1928 atiop->ccb_h.status = CAM_CDB_RECVD; 1929 /* 1930 * Construct a tag 'id' based upon tag value (which may be 0..255) 1931 * and the handle (which we have to preserve). 1932 */ 1933 atiop->tag_id = atp->tag; 1934 if (aep->at_flags & AT_TQAE) { 1935 atiop->tag_action = aep->at_tag_type; 1936 atiop->ccb_h.status |= CAM_TAG_ACTION_VALID; 1937 } 1938 atp->orig_datalen = 0; 1939 atp->bytes_xfered = 0; 1940 atp->last_xframt = 0; 1941 atp->lun = aep->at_lun; 1942 atp->nphdl = aep->at_iid; 1943 atp->portid = PORT_NONE; 1944 atp->oxid = 0; 1945 atp->cdb0 = atiop->cdb_io.cdb_bytes[0]; 1946 atp->tattr = aep->at_tag_type; 1947 atp->state = ATPD_STATE_CAM; 1948 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, tptr->owner, "ATIO[%x] CDB=0x%x lun %d\n", aep->at_tag_val, atp->cdb0, atp->lun); 1949 rls_lun_statep(isp, tptr); 1950 } 1951 1952 static void 1953 isp_handle_platform_atio2(ispsoftc_t *isp, at2_entry_t *aep) 1954 { 1955 lun_id_t lun; 1956 fcportdb_t *lp; 1957 tstate_t *tptr; 1958 struct ccb_accept_tio *atiop; 1959 uint16_t nphdl; 1960 atio_private_data_t *atp; 1961 inot_private_data_t *ntp; 1962 1963 /* 1964 * The firmware status (except for the QLTM_SVALID bit) 1965 * indicates why this ATIO was sent to us. 1966 * 1967 * If QLTM_SVALID is set, the firmware has recommended Sense Data. 1968 */ 1969 if ((aep->at_status & ~QLTM_SVALID) != AT_CDB) { 1970 isp_prt(isp, ISP_LOGWARN, "bogus atio (0x%x) leaked to platform", aep->at_status); 1971 isp_endcmd(isp, aep, SCSI_STATUS_BUSY, 0); 1972 return; 1973 } 1974 1975 if (ISP_CAP_SCCFW(isp)) { 1976 lun = aep->at_scclun; 1977 } else { 1978 lun = aep->at_lun; 1979 } 1980 if (ISP_CAP_2KLOGIN(isp)) { 1981 nphdl = ((at2e_entry_t *)aep)->at_iid; 1982 } else { 1983 nphdl = aep->at_iid; 1984 } 1985 tptr = get_lun_statep(isp, 0, lun); 1986 if (tptr == NULL) { 1987 tptr = get_lun_statep(isp, 0, CAM_LUN_WILDCARD); 1988 if (tptr == NULL) { 1989 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] no state pointer for lun %d", aep->at_rxid, lun); 1990 isp_endcmd(isp, aep, SCSI_STATUS_CHECK_COND | ECMD_SVALID | (0x5 << 12) | (0x25 << 16), 0); 1991 return; 1992 } 1993 } 1994 1995 /* 1996 * Start any commands pending resources first. 1997 */ 1998 if (tptr->restart_queue) { 1999 inot_private_data_t *restart_queue = tptr->restart_queue; 2000 tptr->restart_queue = NULL; 2001 while (restart_queue) { 2002 ntp = restart_queue; 2003 restart_queue = ntp->rd.nt.nt_hba; 2004 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at2_entry_t *)ntp->rd.data)->at_rxid); 2005 isp_handle_platform_atio2(isp, (at2_entry_t *) ntp->rd.data); 2006 isp_put_ntpd(isp, tptr, ntp); 2007 /* 2008 * If a recursion caused the restart queue to start to fill again, 2009 * stop and splice the new list on top of the old list and restore 2010 * it and go to noresrc. 2011 */ 2012 if (tptr->restart_queue) { 2013 ntp = tptr->restart_queue; 2014 tptr->restart_queue = restart_queue; 2015 while (restart_queue->rd.nt.nt_hba) { 2016 restart_queue = restart_queue->rd.nt.nt_hba; 2017 } 2018 restart_queue->rd.nt.nt_hba = ntp; 2019 goto noresrc; 2020 } 2021 } 2022 } 2023 2024 atiop = (struct ccb_accept_tio *) SLIST_FIRST(&tptr->atios); 2025 if (atiop == NULL) { 2026 goto noresrc; 2027 } 2028 2029 atp = isp_get_atpd(isp, tptr, 0); 2030 if (atp == NULL) { 2031 goto noresrc; 2032 } 2033 2034 atp->tag = aep->at_rxid; 2035 atp->state = ATPD_STATE_ATIO; 2036 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle); 2037 tptr->atio_count--; 2038 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, atiop->ccb_h.path, "Take FREE ATIO count now %d\n", tptr->atio_count); 2039 atiop->ccb_h.target_id = FCPARAM(isp, 0)->isp_loopid; 2040 atiop->ccb_h.target_lun = lun; 2041 2042 /* 2043 * We don't get 'suggested' sense data as we do with SCSI cards. 2044 */ 2045 atiop->sense_len = 0; 2046 if (ISP_CAP_2KLOGIN(isp)) { 2047 /* 2048 * NB: We could not possibly have 2K logins if we 2049 * NB: also did not have SCC FW. 2050 */ 2051 atiop->init_id = ((at2e_entry_t *)aep)->at_iid; 2052 } else { 2053 atiop->init_id = aep->at_iid; 2054 } 2055 2056 /* 2057 * If we're not in the port database, add ourselves. 2058 */ 2059 if (!IS_2100(isp) && isp_find_pdb_by_loopid(isp, 0, atiop->init_id, &lp) == 0) { 2060 uint64_t iid = 2061 (((uint64_t) aep->at_wwpn[0]) << 48) | 2062 (((uint64_t) aep->at_wwpn[1]) << 32) | 2063 (((uint64_t) aep->at_wwpn[2]) << 16) | 2064 (((uint64_t) aep->at_wwpn[3]) << 0); 2065 /* 2066 * However, make sure we delete ourselves if otherwise 2067 * we were there but at a different loop id. 2068 */ 2069 if (isp_find_pdb_by_wwn(isp, 0, iid, &lp)) { 2070 isp_del_wwn_entry(isp, 0, iid, lp->handle, lp->portid); 2071 } 2072 isp_add_wwn_entry(isp, 0, iid, atiop->init_id, PORT_ANY); 2073 } 2074 atiop->cdb_len = ATIO2_CDBLEN; 2075 ISP_MEMCPY(atiop->cdb_io.cdb_bytes, aep->at_cdb, ATIO2_CDBLEN); 2076 atiop->ccb_h.status = CAM_CDB_RECVD; 2077 atiop->tag_id = atp->tag; 2078 switch (aep->at_taskflags & ATIO2_TC_ATTR_MASK) { 2079 case ATIO2_TC_ATTR_SIMPLEQ: 2080 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2081 atiop->tag_action = MSG_SIMPLE_Q_TAG; 2082 break; 2083 case ATIO2_TC_ATTR_HEADOFQ: 2084 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2085 atiop->tag_action = MSG_HEAD_OF_Q_TAG; 2086 break; 2087 case ATIO2_TC_ATTR_ORDERED: 2088 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2089 atiop->tag_action = MSG_ORDERED_Q_TAG; 2090 break; 2091 case ATIO2_TC_ATTR_ACAQ: /* ?? */ 2092 case ATIO2_TC_ATTR_UNTAGGED: 2093 default: 2094 atiop->tag_action = 0; 2095 break; 2096 } 2097 2098 atp->orig_datalen = aep->at_datalen; 2099 atp->bytes_xfered = 0; 2100 atp->last_xframt = 0; 2101 atp->lun = lun; 2102 atp->nphdl = atiop->init_id; 2103 atp->sid = PORT_ANY; 2104 atp->oxid = aep->at_oxid; 2105 atp->cdb0 = aep->at_cdb[0]; 2106 atp->tattr = aep->at_taskflags & ATIO2_TC_ATTR_MASK; 2107 atp->state = ATPD_STATE_CAM; 2108 xpt_done((union ccb *)atiop); 2109 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, tptr->owner, "ATIO2[%x] CDB=0x%x lun %d datalen %u\n", aep->at_rxid, atp->cdb0, lun, atp->orig_datalen); 2110 rls_lun_statep(isp, tptr); 2111 return; 2112 noresrc: 2113 ntp = isp_get_ntpd(isp, tptr); 2114 if (ntp == NULL) { 2115 rls_lun_statep(isp, tptr); 2116 isp_endcmd(isp, aep, nphdl, 0, SCSI_STATUS_BUSY, 0); 2117 return; 2118 } 2119 memcpy(ntp->rd.data, aep, QENTRY_LEN); 2120 ntp->rd.nt.nt_hba = tptr->restart_queue; 2121 tptr->restart_queue = ntp; 2122 rls_lun_statep(isp, tptr); 2123 } 2124 2125 static void 2126 isp_handle_platform_atio7(ispsoftc_t *isp, at7_entry_t *aep) 2127 { 2128 int cdbxlen; 2129 uint16_t lun, chan, nphdl = NIL_HANDLE; 2130 uint32_t did, sid; 2131 uint64_t wwn = INI_NONE; 2132 fcportdb_t *lp; 2133 tstate_t *tptr; 2134 struct ccb_accept_tio *atiop; 2135 atio_private_data_t *atp = NULL; 2136 inot_private_data_t *ntp; 2137 2138 did = (aep->at_hdr.d_id[0] << 16) | (aep->at_hdr.d_id[1] << 8) | aep->at_hdr.d_id[2]; 2139 sid = (aep->at_hdr.s_id[0] << 16) | (aep->at_hdr.s_id[1] << 8) | aep->at_hdr.s_id[2]; 2140 lun = (aep->at_cmnd.fcp_cmnd_lun[0] << 8) | aep->at_cmnd.fcp_cmnd_lun[1]; 2141 2142 /* 2143 * Find the N-port handle, and Virtual Port Index for this command. 2144 * 2145 * If we can't, we're somewhat in trouble because we can't actually respond w/o that information. 2146 * We also, as a matter of course, need to know the WWN of the initiator too. 2147 */ 2148 if (ISP_CAP_MULTI_ID(isp)) { 2149 /* 2150 * Find the right channel based upon D_ID 2151 */ 2152 isp_find_chan_by_did(isp, did, &chan); 2153 2154 if (chan == ISP_NOCHAN) { 2155 NANOTIME_T now; 2156 2157 /* 2158 * If we don't recognizer our own D_DID, terminate the exchange, unless we're within 2 seconds of startup 2159 * It's a bit tricky here as we need to stash this command *somewhere*. 2160 */ 2161 GET_NANOTIME(&now); 2162 if (NANOTIME_SUB(&isp->isp_init_time, &now) > 2000000000ULL) { 2163 isp_prt(isp, ISP_LOGWARN, "%s: [RX_ID 0x%x] D_ID %x not found on any channel- dropping", __func__, aep->at_rxid, did); 2164 isp_endcmd(isp, aep, NIL_HANDLE, ISP_NOCHAN, ECMD_TERMINATE, 0); 2165 return; 2166 } 2167 tptr = get_lun_statep(isp, 0, 0); 2168 if (tptr == NULL) { 2169 tptr = get_lun_statep(isp, 0, CAM_LUN_WILDCARD); 2170 if (tptr == NULL) { 2171 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); 2172 isp_endcmd(isp, aep, NIL_HANDLE, ISP_NOCHAN, ECMD_TERMINATE, 0); 2173 return; 2174 } 2175 } 2176 isp_prt(isp, ISP_LOGWARN, "%s: [RX_ID 0x%x] D_ID %x not found on any channel- deferring", __func__, aep->at_rxid, did); 2177 goto noresrc; 2178 } 2179 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); 2180 } else { 2181 chan = 0; 2182 } 2183 2184 /* 2185 * Find the PDB entry for this initiator 2186 */ 2187 if (isp_find_pdb_by_sid(isp, chan, sid, &lp) == 0) { 2188 /* 2189 * If we're not in the port database terminate the exchange. 2190 */ 2191 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", 2192 __func__, aep->at_rxid, did, chan, sid); 2193 isp_endcmd(isp, aep, NIL_HANDLE, chan, ECMD_TERMINATE, 0); 2194 return; 2195 } 2196 nphdl = lp->handle; 2197 wwn = lp->port_wwn; 2198 2199 /* 2200 * Get the tstate pointer 2201 */ 2202 tptr = get_lun_statep(isp, chan, lun); 2203 if (tptr == NULL) { 2204 tptr = get_lun_statep(isp, chan, CAM_LUN_WILDCARD); 2205 if (tptr == NULL) { 2206 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] no state pointer for lun %d or wildcard", aep->at_rxid, lun); 2207 isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_CHECK_COND | ECMD_SVALID | (0x5 << 12) | (0x25 << 16), 0); 2208 return; 2209 } 2210 } 2211 2212 /* 2213 * Start any commands pending resources first. 2214 */ 2215 if (tptr->restart_queue) { 2216 inot_private_data_t *restart_queue = tptr->restart_queue; 2217 tptr->restart_queue = NULL; 2218 while (restart_queue) { 2219 ntp = restart_queue; 2220 restart_queue = ntp->rd.nt.nt_hba; 2221 isp_prt(isp, ISP_LOGTDEBUG0, "%s: restarting resrc deprived %x", __func__, ((at7_entry_t *)ntp->rd.data)->at_rxid); 2222 isp_handle_platform_atio7(isp, (at7_entry_t *) ntp->rd.data); 2223 isp_put_ntpd(isp, tptr, ntp); 2224 /* 2225 * If a recursion caused the restart queue to start to fill again, 2226 * stop and splice the new list on top of the old list and restore 2227 * it and go to noresrc. 2228 */ 2229 if (tptr->restart_queue) { 2230 if (restart_queue) { 2231 ntp = tptr->restart_queue; 2232 tptr->restart_queue = restart_queue; 2233 while (restart_queue->rd.nt.nt_hba) { 2234 restart_queue = restart_queue->rd.nt.nt_hba; 2235 } 2236 restart_queue->rd.nt.nt_hba = ntp; 2237 } 2238 goto noresrc; 2239 } 2240 } 2241 } 2242 2243 /* 2244 * If the f/w is out of resources, just send a BUSY status back. 2245 */ 2246 if (aep->at_rxid == AT7_NORESRC_RXID) { 2247 rls_lun_statep(isp, tptr); 2248 isp_endcmd(isp, aep, nphdl, chan, SCSI_BUSY, 0); 2249 return; 2250 } 2251 2252 /* 2253 * If we're out of resources, just send a BUSY status back. 2254 */ 2255 atiop = (struct ccb_accept_tio *) SLIST_FIRST(&tptr->atios); 2256 if (atiop == NULL) { 2257 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] out of atios", aep->at_rxid); 2258 goto noresrc; 2259 } 2260 2261 atp = isp_get_atpd(isp, tptr, 0); 2262 if (atp == NULL) { 2263 isp_prt(isp, ISP_LOGTDEBUG0, "[0x%x] out of atps", aep->at_rxid); 2264 goto noresrc; 2265 } 2266 if (isp_get_atpd(isp, tptr, aep->at_rxid)) { 2267 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)\n", 2268 aep->at_rxid, nphdl, sid, aep->at_hdr.ox_id); 2269 /* 2270 * It's not a "no resource" condition- but we can treat it like one 2271 */ 2272 goto noresrc; 2273 } 2274 2275 atp->tag = aep->at_rxid; 2276 atp->state = ATPD_STATE_ATIO; 2277 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle); 2278 tptr->atio_count--; 2279 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, atiop->ccb_h.path, "Take FREE ATIO count now %d\n", tptr->atio_count); 2280 atiop->init_id = nphdl; 2281 atiop->ccb_h.target_id = FCPARAM(isp, chan)->isp_loopid; 2282 atiop->ccb_h.target_lun = lun; 2283 atiop->sense_len = 0; 2284 cdbxlen = aep->at_cmnd.fcp_cmnd_alen_datadir >> FCP_CMND_ADDTL_CDBLEN_SHIFT; 2285 if (cdbxlen) { 2286 isp_prt(isp, ISP_LOGWARN, "additional CDBLEN ignored"); 2287 } 2288 cdbxlen = sizeof (aep->at_cmnd.cdb_dl.sf.fcp_cmnd_cdb); 2289 ISP_MEMCPY(atiop->cdb_io.cdb_bytes, aep->at_cmnd.cdb_dl.sf.fcp_cmnd_cdb, cdbxlen); 2290 atiop->cdb_len = cdbxlen; 2291 atiop->ccb_h.status = CAM_CDB_RECVD; 2292 atiop->tag_id = atp->tag; 2293 switch (aep->at_cmnd.fcp_cmnd_task_attribute & FCP_CMND_TASK_ATTR_MASK) { 2294 case FCP_CMND_TASK_ATTR_SIMPLE: 2295 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2296 atiop->tag_action = MSG_SIMPLE_Q_TAG; 2297 break; 2298 case FCP_CMND_TASK_ATTR_HEAD: 2299 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2300 atiop->tag_action = MSG_HEAD_OF_Q_TAG; 2301 break; 2302 case FCP_CMND_TASK_ATTR_ORDERED: 2303 atiop->ccb_h.flags = CAM_TAG_ACTION_VALID; 2304 atiop->tag_action = MSG_ORDERED_Q_TAG; 2305 break; 2306 default: 2307 /* FALLTHROUGH */ 2308 case FCP_CMND_TASK_ATTR_ACA: 2309 case FCP_CMND_TASK_ATTR_UNTAGGED: 2310 atiop->tag_action = 0; 2311 break; 2312 } 2313 atp->orig_datalen = aep->at_cmnd.cdb_dl.sf.fcp_cmnd_dl; 2314 atp->bytes_xfered = 0; 2315 atp->last_xframt = 0; 2316 atp->lun = lun; 2317 atp->nphdl = nphdl; 2318 atp->portid = sid; 2319 atp->oxid = aep->at_hdr.ox_id; 2320 atp->cdb0 = atiop->cdb_io.cdb_bytes[0]; 2321 atp->tattr = aep->at_cmnd.fcp_cmnd_task_attribute & FCP_CMND_TASK_ATTR_MASK; 2322 atp->state = ATPD_STATE_CAM; 2323 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, tptr->owner, "ATIO7[%x] CDB=0x%x lun %d datalen %u\n", aep->at_rxid, atp->cdb0, lun, atp->orig_datalen); 2324 xpt_done((union ccb *)atiop); 2325 rls_lun_statep(isp, tptr); 2326 return; 2327 noresrc: 2328 if (atp) { 2329 isp_put_atpd(isp, tptr, atp); 2330 } 2331 ntp = isp_get_ntpd(isp, tptr); 2332 if (ntp == NULL) { 2333 rls_lun_statep(isp, tptr); 2334 isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_BUSY, 0); 2335 return; 2336 } 2337 memcpy(ntp->rd.data, aep, QENTRY_LEN); 2338 ntp->rd.nt.nt_hba = tptr->restart_queue; 2339 tptr->restart_queue = ntp; 2340 rls_lun_statep(isp, tptr); 2341 } 2342 2343 static void 2344 isp_handle_platform_ctio(ispsoftc_t *isp, void *arg) 2345 { 2346 union ccb *ccb; 2347 int sentstatus, ok, notify_cam, resid = 0; 2348 tstate_t *tptr = NULL; 2349 atio_private_data_t *atp = NULL; 2350 int bus; 2351 uint32_t tval, handle; 2352 2353 /* 2354 * CTIO handles are 16 bits. 2355 * CTIO2 and CTIO7 are 32 bits. 2356 */ 2357 2358 if (IS_SCSI(isp)) { 2359 handle = ((ct_entry_t *)arg)->ct_syshandle; 2360 } else { 2361 handle = ((ct2_entry_t *)arg)->ct_syshandle; 2362 } 2363 ccb = isp_find_xs_tgt(isp, handle); 2364 if (ccb == NULL) { 2365 isp_print_bytes(isp, "null ccb in isp_handle_platform_ctio", QENTRY_LEN, arg); 2366 return; 2367 } 2368 isp_destroy_tgt_handle(isp, handle); 2369 bus = XS_CHANNEL(ccb); 2370 tptr = get_lun_statep(isp, bus, XS_LUN(ccb)); 2371 if (tptr == NULL) { 2372 tptr = get_lun_statep(isp, bus, CAM_LUN_WILDCARD); 2373 } 2374 KASSERT((tptr != NULL), ("cannot get state pointer")); 2375 if (isp->isp_nactive) { 2376 isp->isp_nactive++; 2377 } 2378 if (IS_24XX(isp)) { 2379 ct7_entry_t *ct = arg; 2380 2381 atp = isp_get_atpd(isp, tptr, ct->ct_rxid); 2382 if (atp == NULL) { 2383 rls_lun_statep(isp, tptr); 2384 isp_prt(isp, ISP_LOGERR, "%s: cannot find adjunct for %x after I/O", __func__, ct->ct_rxid); 2385 return; 2386 } 2387 2388 sentstatus = ct->ct_flags & CT7_SENDSTATUS; 2389 ok = (ct->ct_nphdl == CT7_OK); 2390 if (ok && sentstatus && (ccb->ccb_h.flags & CAM_SEND_SENSE)) { 2391 ccb->ccb_h.status |= CAM_SENT_SENSE; 2392 } 2393 notify_cam = ct->ct_header.rqs_seqno & 0x1; 2394 if ((ct->ct_flags & CT7_DATAMASK) != CT7_NO_DATA) { 2395 resid = ct->ct_resid; 2396 atp->bytes_xfered += (atp->last_xframt - resid); 2397 atp->last_xframt = 0; 2398 } 2399 if (ct->ct_nphdl == CT_HBA_RESET) { 2400 ok = 0; 2401 notify_cam = 1; 2402 sentstatus = 1; 2403 ccb->ccb_h.status |= CAM_UNREC_HBA_ERROR; 2404 } else if (!ok) { 2405 ccb->ccb_h.status |= CAM_REQ_CMP_ERR; 2406 } 2407 tval = atp->tag; 2408 isp_prt(isp, ok? ISP_LOGTDEBUG0 : ISP_LOGWARN, "%s: CTIO7[%x] sts 0x%x flg 0x%x sns %d resid %d %s", __func__, 2409 ct->ct_rxid, ct->ct_nphdl, ct->ct_flags, (ccb->ccb_h.status & CAM_SENT_SENSE) != 0, resid, sentstatus? "FIN" : "MID"); 2410 atp->state = ATPD_STATE_PDON; /* XXX: should really come after isp_complete_ctio */ 2411 } else if (IS_FC(isp)) { 2412 ct2_entry_t *ct = arg; 2413 2414 atp = isp_get_atpd(isp, tptr, ct->ct_rxid); 2415 if (atp == NULL) { 2416 rls_lun_statep(isp, tptr); 2417 isp_prt(isp, ISP_LOGERR, "%s: cannot find adjunct for %x after I/O", __func__, ct->ct_rxid); 2418 return; 2419 } 2420 sentstatus = ct->ct_flags & CT2_SENDSTATUS; 2421 ok = (ct->ct_status & ~QLTM_SVALID) == CT_OK; 2422 if (ok && sentstatus && (ccb->ccb_h.flags & CAM_SEND_SENSE)) { 2423 ccb->ccb_h.status |= CAM_SENT_SENSE; 2424 } 2425 notify_cam = ct->ct_header.rqs_seqno & 0x1; 2426 if ((ct->ct_flags & CT2_DATAMASK) != CT2_NO_DATA) { 2427 resid = ct->ct_resid; 2428 atp->bytes_xfered += (atp->last_xframt - resid); 2429 atp->last_xframt = 0; 2430 } 2431 if (ct->ct_status == CT_HBA_RESET) { 2432 ok = 0; 2433 notify_cam = 1; 2434 sentstatus = 1; 2435 ccb->ccb_h.status |= CAM_UNREC_HBA_ERROR; 2436 } else if (!ok) { 2437 ccb->ccb_h.status |= CAM_REQ_CMP_ERR; 2438 } 2439 isp_prt(isp, ok? ISP_LOGTDEBUG0 : ISP_LOGWARN, "%s: CTIO2[%x] sts 0x%x flg 0x%x sns %d resid %d %s", __func__, 2440 ct->ct_rxid, ct->ct_status, ct->ct_flags, (ccb->ccb_h.status & CAM_SENT_SENSE) != 0, resid, sentstatus? "FIN" : "MID"); 2441 tval = atp->tag; 2442 atp->state = ATPD_STATE_PDON; /* XXX: should really come after isp_complete_ctio */ 2443 } else { 2444 ct_entry_t *ct = arg; 2445 sentstatus = ct->ct_flags & CT_SENDSTATUS; 2446 ok = (ct->ct_status & ~QLTM_SVALID) == CT_OK; 2447 /* 2448 * We *ought* to be able to get back to the original ATIO 2449 * here, but for some reason this gets lost. It's just as 2450 * well because it's squirrelled away as part of periph 2451 * private data. 2452 * 2453 * We can live without it as long as we continue to use 2454 * the auto-replenish feature for CTIOs. 2455 */ 2456 notify_cam = ct->ct_header.rqs_seqno & 0x1; 2457 if (ct->ct_status == (CT_HBA_RESET & 0xff)) { 2458 ok = 0; 2459 notify_cam = 1; 2460 sentstatus = 1; 2461 ccb->ccb_h.status |= CAM_UNREC_HBA_ERROR; 2462 } else if (!ok) { 2463 ccb->ccb_h.status |= CAM_REQ_CMP_ERR; 2464 } else if (ct->ct_status & QLTM_SVALID) { 2465 char *sp = (char *)ct; 2466 sp += CTIO_SENSE_OFFSET; 2467 ccb->csio.sense_len = min(sizeof (ccb->csio.sense_data), QLTM_SENSELEN); 2468 ISP_MEMCPY(&ccb->csio.sense_data, sp, ccb->csio.sense_len); 2469 ccb->ccb_h.status |= CAM_AUTOSNS_VALID; 2470 } 2471 if ((ct->ct_flags & CT_DATAMASK) != CT_NO_DATA) { 2472 resid = ct->ct_resid; 2473 } 2474 isp_prt(isp, ISP_LOGTDEBUG0, "%s: CTIO[%x] tag %x S_ID 0x%x lun %d sts %x flg %x resid %d %s", __func__, 2475 ct->ct_fwhandle, ct->ct_tag_val, ct->ct_iid, ct->ct_lun, ct->ct_status, ct->ct_flags, resid, sentstatus? "FIN" : "MID"); 2476 tval = ct->ct_fwhandle; 2477 } 2478 ccb->csio.resid += resid; 2479 2480 /* 2481 * We're here either because intermediate data transfers are done 2482 * and/or the final status CTIO (which may have joined with a 2483 * Data Transfer) is done. 2484 * 2485 * In any case, for this platform, the upper layers figure out 2486 * what to do next, so all we do here is collect status and 2487 * pass information along. Any DMA handles have already been 2488 * freed. 2489 */ 2490 if (notify_cam == 0) { 2491 isp_prt(isp, ISP_LOGTDEBUG0, " INTER CTIO[0x%x] done", tval); 2492 return; 2493 } 2494 if (tptr) { 2495 rls_lun_statep(isp, tptr); 2496 } 2497 isp_prt(isp, ISP_LOGTDEBUG0, "%s CTIO[0x%x] done", (sentstatus)? " FINAL " : "MIDTERM ", tval); 2498 2499 if (!ok && !IS_24XX(isp)) { 2500 isp_target_putback_atio(ccb); 2501 } else { 2502 isp_complete_ctio(ccb); 2503 } 2504 } 2505 2506 static void 2507 isp_handle_platform_notify_scsi(ispsoftc_t *isp, in_entry_t *inot) 2508 { 2509 (void) isp_notify_ack(isp, inot); 2510 } 2511 2512 static void 2513 isp_handle_platform_notify_fc(ispsoftc_t *isp, in_fcentry_t *inp) 2514 { 2515 int needack = 1; 2516 switch (inp->in_status) { 2517 case IN_PORT_LOGOUT: 2518 /* 2519 * XXX: Need to delete this initiator's WWN from the database 2520 * XXX: Need to send this LOGOUT upstream 2521 */ 2522 isp_prt(isp, ISP_LOGWARN, "port logout of S_ID 0x%x", inp->in_iid); 2523 break; 2524 case IN_PORT_CHANGED: 2525 isp_prt(isp, ISP_LOGWARN, "port changed for S_ID 0x%x", inp->in_iid); 2526 break; 2527 case IN_GLOBAL_LOGO: 2528 isp_del_all_wwn_entries(isp, 0); 2529 isp_prt(isp, ISP_LOGINFO, "all ports logged out"); 2530 break; 2531 case IN_ABORT_TASK: 2532 { 2533 tstate_t *tptr; 2534 uint16_t lun; 2535 uint32_t loopid; 2536 uint64_t wwn; 2537 atio_private_data_t *atp; 2538 fcportdb_t *lp; 2539 struct ccb_immediate_notify *inot = NULL; 2540 2541 if (ISP_CAP_SCCFW(isp)) { 2542 lun = inp->in_scclun; 2543 } else { 2544 lun = inp->in_lun; 2545 } 2546 if (ISP_CAP_2KLOGIN(isp)) { 2547 loopid = ((in_fcentry_e_t *)inp)->in_iid; 2548 } else { 2549 loopid = inp->in_iid; 2550 } 2551 if (isp_find_pdb_by_loopid(isp, 0, loopid, &lp)) { 2552 wwn = lp->port_wwn; 2553 } else { 2554 wwn = INI_ANY; 2555 } 2556 tptr = get_lun_statep(isp, 0, lun); 2557 if (tptr == NULL) { 2558 tptr = get_lun_statep(isp, 0, CAM_LUN_WILDCARD); 2559 if (tptr == NULL) { 2560 isp_prt(isp, ISP_LOGWARN, "ABORT TASK for lun %u- but no tstate", lun); 2561 return; 2562 } 2563 } 2564 atp = isp_get_atpd(isp, tptr, inp->in_seqid); 2565 2566 if (atp) { 2567 inot = (struct ccb_immediate_notify *) SLIST_FIRST(&tptr->inots); 2568 isp_prt(isp, ISP_LOGTDEBUG0, "ABORT TASK RX_ID %x WWN 0x%016llx state %d", inp->in_seqid, (unsigned long long) wwn, atp->state); 2569 if (inot) { 2570 tptr->inot_count--; 2571 SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle); 2572 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, inot->ccb_h.path, "%s: Take FREE INOT count now %d\n", __func__, tptr->inot_count); 2573 } else { 2574 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, tptr->owner, "out of INOT structures\n"); 2575 } 2576 } else { 2577 ISP_PATH_PRT(isp, ISP_LOGWARN, tptr->owner, "abort task RX_ID %x from wwn 0x%016llx, state unknown\n", inp->in_seqid, wwn); 2578 } 2579 if (inot) { 2580 isp_notify_t tmp, *nt = &tmp; 2581 ISP_MEMZERO(nt, sizeof (isp_notify_t)); 2582 nt->nt_hba = isp; 2583 nt->nt_tgt = FCPARAM(isp, 0)->isp_wwpn; 2584 nt->nt_wwn = wwn; 2585 nt->nt_nphdl = loopid; 2586 nt->nt_sid = PORT_ANY; 2587 nt->nt_did = PORT_ANY; 2588 nt->nt_lun = lun; 2589 nt->nt_need_ack = 1; 2590 nt->nt_channel = 0; 2591 nt->nt_ncode = NT_ABORT_TASK; 2592 nt->nt_lreserved = inot; 2593 isp_handle_platform_target_tmf(isp, nt); 2594 needack = 0; 2595 } 2596 rls_lun_statep(isp, tptr); 2597 break; 2598 } 2599 default: 2600 break; 2601 } 2602 if (needack) { 2603 (void) isp_notify_ack(isp, inp); 2604 } 2605 } 2606 2607 static void 2608 isp_handle_platform_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot) 2609 { 2610 uint16_t nphdl; 2611 uint32_t portid; 2612 fcportdb_t *lp; 2613 uint8_t *ptr = NULL; 2614 uint64_t wwn; 2615 2616 nphdl = inot->in_nphdl; 2617 if (nphdl != NIL_HANDLE) { 2618 portid = inot->in_portid_hi << 16 | inot->in_portid_lo; 2619 } else { 2620 portid = PORT_ANY; 2621 } 2622 2623 switch (inot->in_status) { 2624 case IN24XX_ELS_RCVD: 2625 { 2626 char buf[16], *msg; 2627 int chan = ISP_GET_VPIDX(isp, inot->in_vpidx); 2628 2629 /* 2630 * Note that we're just getting notification that an ELS was received 2631 * (possibly with some associated information sent upstream). This is 2632 * *not* the same as being given the ELS frame to accept or reject. 2633 */ 2634 switch (inot->in_status_subcode) { 2635 case LOGO: 2636 msg = "LOGO"; 2637 if (ISP_FW_NEWER_THAN(isp, 4, 0, 25)) { 2638 ptr = (uint8_t *)inot; /* point to unswizzled entry! */ 2639 wwn = (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF]) << 56) | 2640 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+1]) << 48) | 2641 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+2]) << 40) | 2642 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+3]) << 32) | 2643 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+4]) << 24) | 2644 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+5]) << 16) | 2645 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+6]) << 8) | 2646 (((uint64_t) ptr[IN24XX_LOGO_WWPN_OFF+7])); 2647 } else { 2648 wwn = INI_ANY; 2649 } 2650 isp_del_wwn_entry(isp, chan, wwn, nphdl, portid); 2651 break; 2652 case PRLO: 2653 msg = "PRLO"; 2654 break; 2655 case PLOGI: 2656 case PRLI: 2657 /* 2658 * Treat PRLI the same as PLOGI and make a database entry for it. 2659 */ 2660 if (inot->in_status_subcode == PLOGI) 2661 msg = "PLOGI"; 2662 else 2663 msg = "PRLI"; 2664 if (ISP_FW_NEWER_THAN(isp, 4, 0, 25)) { 2665 ptr = (uint8_t *)inot; /* point to unswizzled entry! */ 2666 wwn = (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF]) << 56) | 2667 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+1]) << 48) | 2668 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+2]) << 40) | 2669 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+3]) << 32) | 2670 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+4]) << 24) | 2671 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+5]) << 16) | 2672 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+6]) << 8) | 2673 (((uint64_t) ptr[IN24XX_PLOGI_WWPN_OFF+7])); 2674 } else { 2675 wwn = INI_NONE; 2676 } 2677 isp_add_wwn_entry(isp, chan, wwn, nphdl, portid); 2678 break; 2679 case PDISC: 2680 msg = "PDISC"; 2681 break; 2682 case ADISC: 2683 msg = "ADISC"; 2684 break; 2685 default: 2686 ISP_SNPRINTF(buf, sizeof (buf), "ELS 0x%x", inot->in_status_subcode); 2687 msg = buf; 2688 break; 2689 } 2690 if (inot->in_flags & IN24XX_FLAG_PUREX_IOCB) { 2691 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); 2692 break; 2693 } 2694 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, 2695 inot->in_rxid, inot->in_oxid); 2696 (void) isp_notify_ack(isp, inot); 2697 break; 2698 } 2699 2700 case IN24XX_PORT_LOGOUT: 2701 ptr = "PORT LOGOUT"; 2702 if (isp_find_pdb_by_loopid(isp, ISP_GET_VPIDX(isp, inot->in_vpidx), nphdl, &lp)) { 2703 isp_del_wwn_entry(isp, ISP_GET_VPIDX(isp, inot->in_vpidx), lp->port_wwn, nphdl, lp->portid); 2704 } 2705 /* FALLTHROUGH */ 2706 case IN24XX_PORT_CHANGED: 2707 if (ptr == NULL) { 2708 ptr = "PORT CHANGED"; 2709 } 2710 /* FALLTHROUGH */ 2711 case IN24XX_LIP_RESET: 2712 if (ptr == NULL) { 2713 ptr = "LIP RESET"; 2714 } 2715 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), ptr, inot->in_status_subcode, nphdl); 2716 2717 /* 2718 * All subcodes here are irrelevant. What is relevant 2719 * is that we need to terminate all active commands from 2720 * this initiator (known by N-port handle). 2721 */ 2722 /* XXX IMPLEMENT XXX */ 2723 (void) isp_notify_ack(isp, inot); 2724 break; 2725 2726 case IN24XX_LINK_RESET: 2727 case IN24XX_LINK_FAILED: 2728 case IN24XX_SRR_RCVD: 2729 default: 2730 (void) isp_notify_ack(isp, inot); 2731 break; 2732 } 2733 } 2734 2735 static int 2736 isp_handle_platform_target_notify_ack(ispsoftc_t *isp, isp_notify_t *mp) 2737 { 2738 2739 if (isp->isp_state != ISP_RUNSTATE) { 2740 isp_prt(isp, ISP_LOGTINFO, "Notify Code 0x%x (qevalid=%d) acked- h/w not ready (dropping)", mp->nt_ncode, mp->nt_lreserved != NULL); 2741 return (0); 2742 } 2743 2744 /* 2745 * This case is for a Task Management Function, which shows up as an ATIO7 entry. 2746 */ 2747 if (IS_24XX(isp) && mp->nt_lreserved && ((isphdr_t *)mp->nt_lreserved)->rqs_entry_type == RQSTYPE_ATIO) { 2748 ct7_entry_t local, *cto = &local; 2749 at7_entry_t *aep = (at7_entry_t *)mp->nt_lreserved; 2750 fcportdb_t *lp; 2751 uint32_t sid; 2752 uint16_t nphdl; 2753 2754 sid = (aep->at_hdr.s_id[0] << 16) | (aep->at_hdr.s_id[1] << 8) | aep->at_hdr.s_id[2]; 2755 if (isp_find_pdb_by_sid(isp, mp->nt_channel, sid, &lp)) { 2756 nphdl = lp->handle; 2757 } else { 2758 nphdl = NIL_HANDLE; 2759 } 2760 ISP_MEMZERO(&local, sizeof (local)); 2761 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7; 2762 cto->ct_header.rqs_entry_count = 1; 2763 cto->ct_nphdl = nphdl; 2764 cto->ct_rxid = aep->at_rxid; 2765 cto->ct_vpidx = mp->nt_channel; 2766 cto->ct_iid_lo = sid; 2767 cto->ct_iid_hi = sid >> 16; 2768 cto->ct_oxid = aep->at_hdr.ox_id; 2769 cto->ct_flags = CT7_SENDSTATUS|CT7_NOACK|CT7_NO_DATA|CT7_FLAG_MODE1; 2770 cto->ct_flags |= (aep->at_ta_len >> 12) << CT7_TASK_ATTR_SHIFT; 2771 return (isp_target_put_entry(isp, &local)); 2772 } 2773 2774 /* 2775 * This case is for a responding to an ABTS frame 2776 */ 2777 if (IS_24XX(isp) && mp->nt_lreserved && ((isphdr_t *)mp->nt_lreserved)->rqs_entry_type == RQSTYPE_ABTS_RCVD) { 2778 2779 /* 2780 * Overload nt_need_ack here to mark whether we've terminated the associated command. 2781 */ 2782 if (mp->nt_need_ack) { 2783 uint8_t storage[QENTRY_LEN]; 2784 ct7_entry_t *cto = (ct7_entry_t *) storage; 2785 abts_t *abts = (abts_t *)mp->nt_lreserved; 2786 2787 ISP_MEMZERO(cto, sizeof (ct7_entry_t)); 2788 isp_prt(isp, ISP_LOGTDEBUG0, "%s: [%x] terminating after ABTS received", __func__, abts->abts_rxid_task); 2789 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO7; 2790 cto->ct_header.rqs_entry_count = 1; 2791 cto->ct_nphdl = mp->nt_nphdl; 2792 cto->ct_rxid = abts->abts_rxid_task; 2793 cto->ct_iid_lo = mp->nt_sid; 2794 cto->ct_iid_hi = mp->nt_sid >> 16; 2795 cto->ct_oxid = abts->abts_ox_id; 2796 cto->ct_vpidx = mp->nt_channel; 2797 cto->ct_flags = CT7_NOACK|CT7_TERMINATE; 2798 if (isp_target_put_entry(isp, cto)) { 2799 return (ENOMEM); 2800 } 2801 mp->nt_need_ack = 0; 2802 } 2803 if (isp_acknak_abts(isp, mp->nt_lreserved, 0) == ENOMEM) { 2804 return (ENOMEM); 2805 } else { 2806 return (0); 2807 } 2808 } 2809 2810 /* 2811 * Handle logout cases here 2812 */ 2813 if (mp->nt_ncode == NT_GLOBAL_LOGOUT) { 2814 isp_del_all_wwn_entries(isp, mp->nt_channel); 2815 } 2816 2817 if (mp->nt_ncode == NT_LOGOUT) { 2818 if (!IS_2100(isp) && IS_FC(isp)) { 2819 isp_del_wwn_entries(isp, mp); 2820 } 2821 } 2822 2823 /* 2824 * General purpose acknowledgement 2825 */ 2826 if (mp->nt_need_ack) { 2827 isp_prt(isp, ISP_LOGTINFO, "Notify Code 0x%x (qevalid=%d) being acked", mp->nt_ncode, mp->nt_lreserved != NULL); 2828 return (isp_notify_ack(isp, mp->nt_lreserved)); 2829 } 2830 return (0); 2831 } 2832 2833 /* 2834 * Handle task management functions. 2835 * 2836 * We show up here with a notify structure filled out. 2837 * 2838 * The nt_lreserved tag points to the original queue entry 2839 */ 2840 static void 2841 isp_handle_platform_target_tmf(ispsoftc_t *isp, isp_notify_t *notify) 2842 { 2843 tstate_t *tptr; 2844 fcportdb_t *lp; 2845 struct ccb_immediate_notify *inot; 2846 inot_private_data_t *ntp = NULL; 2847 lun_id_t lun; 2848 2849 isp_prt(isp, ISP_LOGTDEBUG0, "%s: code 0x%x sid 0x%x tagval 0x%016llx chan %d lun 0x%x", __func__, notify->nt_ncode, 2850 notify->nt_sid, (unsigned long long) notify->nt_tagval, notify->nt_channel, notify->nt_lun); 2851 /* 2852 * NB: This assignment is necessary because of tricky type conversion. 2853 * XXX: This is tricky and I need to check this. If the lun isn't known 2854 * XXX: for the task management function, it does not of necessity follow 2855 * XXX: that it should go up stream to the wildcard listener. 2856 */ 2857 if (notify->nt_lun == LUN_ANY) { 2858 lun = CAM_LUN_WILDCARD; 2859 } else { 2860 lun = notify->nt_lun; 2861 } 2862 tptr = get_lun_statep(isp, notify->nt_channel, lun); 2863 if (tptr == NULL) { 2864 tptr = get_lun_statep(isp, notify->nt_channel, CAM_LUN_WILDCARD); 2865 if (tptr == NULL) { 2866 isp_prt(isp, ISP_LOGWARN, "%s: no state pointer found for chan %d lun 0x%x", __func__, notify->nt_channel, lun); 2867 goto bad; 2868 } 2869 } 2870 inot = (struct ccb_immediate_notify *) SLIST_FIRST(&tptr->inots); 2871 if (inot == NULL) { 2872 isp_prt(isp, ISP_LOGWARN, "%s: out of immediate notify structures for chan %d lun 0x%x", __func__, notify->nt_channel, lun); 2873 goto bad; 2874 } 2875 2876 if (isp_find_pdb_by_sid(isp, notify->nt_channel, notify->nt_sid, &lp) == 0) { 2877 inot->initiator_id = CAM_TARGET_WILDCARD; 2878 } else { 2879 inot->initiator_id = lp->handle; 2880 } 2881 inot->seq_id = notify->nt_tagval; 2882 inot->tag_id = notify->nt_tagval >> 32; 2883 2884 switch (notify->nt_ncode) { 2885 case NT_ABORT_TASK: 2886 isp_target_mark_aborted_early(isp, tptr, inot->tag_id); 2887 inot->arg = MSG_ABORT_TASK; 2888 break; 2889 case NT_ABORT_TASK_SET: 2890 isp_target_mark_aborted_early(isp, tptr, TAG_ANY); 2891 inot->arg = MSG_ABORT_TASK_SET; 2892 break; 2893 case NT_CLEAR_ACA: 2894 inot->arg = MSG_CLEAR_ACA; 2895 break; 2896 case NT_CLEAR_TASK_SET: 2897 inot->arg = MSG_CLEAR_TASK_SET; 2898 break; 2899 case NT_LUN_RESET: 2900 inot->arg = MSG_LOGICAL_UNIT_RESET; 2901 break; 2902 case NT_TARGET_RESET: 2903 inot->arg = MSG_TARGET_RESET; 2904 break; 2905 default: 2906 isp_prt(isp, ISP_LOGWARN, "%s: unknown TMF code 0x%x for chan %d lun 0x%x", __func__, notify->nt_ncode, notify->nt_channel, lun); 2907 goto bad; 2908 } 2909 2910 ntp = isp_get_ntpd(isp, tptr); 2911 if (ntp == NULL) { 2912 isp_prt(isp, ISP_LOGWARN, "%s: out of inotify private structures", __func__); 2913 goto bad; 2914 } 2915 ISP_MEMCPY(&ntp->rd.nt, notify, sizeof (isp_notify_t)); 2916 if (notify->nt_lreserved) { 2917 ISP_MEMCPY(&ntp->rd.data, notify->nt_lreserved, QENTRY_LEN); 2918 ntp->rd.nt.nt_lreserved = &ntp->rd.data; 2919 } 2920 ntp->rd.seq_id = notify->nt_tagval; 2921 ntp->rd.tag_id = notify->nt_tagval >> 32; 2922 2923 tptr->inot_count--; 2924 SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle); 2925 rls_lun_statep(isp, tptr); 2926 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, inot->ccb_h.path, "%s: Take FREE INOT count now %d\n", __func__, tptr->inot_count); 2927 inot->ccb_h.status = CAM_MESSAGE_RECV; 2928 xpt_done((union ccb *)inot); 2929 return; 2930 bad: 2931 if (tptr) { 2932 rls_lun_statep(isp, tptr); 2933 } 2934 if (notify->nt_need_ack && notify->nt_lreserved) { 2935 if (((isphdr_t *)notify->nt_lreserved)->rqs_entry_type == RQSTYPE_ABTS_RCVD) { 2936 (void) isp_acknak_abts(isp, notify->nt_lreserved, ENOMEM); 2937 } else { 2938 (void) isp_notify_ack(isp, notify->nt_lreserved); 2939 } 2940 } 2941 } 2942 2943 /* 2944 * Find the associated private data and mark it as dead so 2945 * we don't try to work on it any further. 2946 */ 2947 static void 2948 isp_target_mark_aborted(ispsoftc_t *isp, union ccb *ccb) 2949 { 2950 tstate_t *tptr; 2951 atio_private_data_t *atp; 2952 2953 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), XS_LUN(ccb)); 2954 if (tptr == NULL) { 2955 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), CAM_LUN_WILDCARD); 2956 if (tptr == NULL) { 2957 ccb->ccb_h.status = CAM_REQ_INVALID; 2958 return; 2959 } 2960 } 2961 2962 atp = isp_get_atpd(isp, tptr, ccb->atio.tag_id); 2963 if (atp == NULL) { 2964 ccb->ccb_h.status = CAM_REQ_INVALID; 2965 return; 2966 } 2967 atp->dead = 1; 2968 ccb->ccb_h.status = CAM_REQ_CMP; 2969 } 2970 2971 static void 2972 isp_target_mark_aborted_early(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag_id) 2973 { 2974 atio_private_data_t *atp; 2975 inot_private_data_t *restart_queue = tptr->restart_queue; 2976 2977 /* 2978 * First, clean any commands pending restart 2979 */ 2980 tptr->restart_queue = NULL; 2981 while (restart_queue) { 2982 uint32_t this_tag_id; 2983 inot_private_data_t *ntp = restart_queue; 2984 2985 restart_queue = ntp->rd.nt.nt_hba; 2986 2987 if (IS_24XX(isp)) { 2988 this_tag_id = ((at7_entry_t *)ntp->rd.data)->at_rxid; 2989 } else { 2990 this_tag_id = ((at2_entry_t *)ntp->rd.data)->at_rxid; 2991 } 2992 if ((uint64_t)tag_id == TAG_ANY || tag_id == this_tag_id) { 2993 isp_put_ntpd(isp, tptr, ntp); 2994 } else { 2995 ntp->rd.nt.nt_hba = tptr->restart_queue; 2996 tptr->restart_queue = ntp; 2997 } 2998 } 2999 3000 /* 3001 * Now mark other ones dead as well. 3002 */ 3003 for (atp = tptr->atpool; atp < &tptr->atpool[ATPDPSIZE]; atp++) { 3004 if ((uint64_t)tag_id == TAG_ANY || atp->tag == tag_id) { 3005 atp->dead = 1; 3006 } 3007 } 3008 } 3009 3010 3011 #ifdef ISP_INTERNAL_TARGET 3012 // #define ISP_FORCE_TIMEOUT 1 3013 // #define ISP_TEST_WWNS 1 3014 // #define ISP_TEST_SEPARATE_STATUS 1 3015 3016 #define ccb_data_offset ppriv_field0 3017 #define ccb_atio ppriv_ptr1 3018 #define ccb_inot ppriv_ptr1 3019 3020 #define MAX_ISP_TARG_TRANSFER (2 << 20) 3021 #define NISP_TARG_CMDS 1024 3022 #define NISP_TARG_NOTIFIES 1024 3023 #define DISK_SHIFT 9 3024 #define JUNK_SIZE 256 3025 3026 #ifndef VERIFY_10 3027 #define VERIFY_10 0x2f 3028 #endif 3029 3030 TAILQ_HEAD(ccb_queue, ccb_hdr); 3031 extern u_int vm_kmem_size; 3032 static int ca; 3033 static uint32_t disk_size; 3034 static uint8_t *disk_data = NULL; 3035 static uint8_t *junk_data; 3036 static MALLOC_DEFINE(M_ISPTARG, "ISPTARG", "ISP TARGET data"); 3037 struct isptarg_softc { 3038 /* CCBs (CTIOs, ATIOs, INOTs) pending on the controller */ 3039 struct ccb_queue work_queue; 3040 struct ccb_queue rework_queue; 3041 struct ccb_queue running_queue; 3042 struct ccb_queue inot_queue; 3043 struct cam_periph *periph; 3044 struct cam_path *path; 3045 ispsoftc_t *isp; 3046 }; 3047 static periph_ctor_t isptargctor; 3048 static periph_dtor_t isptargdtor; 3049 static periph_start_t isptargstart; 3050 static periph_init_t isptarginit; 3051 static void isptarg_done(struct cam_periph *, union ccb *); 3052 static void isptargasync(void *, u_int32_t, struct cam_path *, void *); 3053 3054 3055 static int isptarg_rwparm(uint8_t *, uint8_t *, uint64_t, uint32_t, uint8_t **, uint32_t *, int *); 3056 3057 static struct periph_driver isptargdriver = 3058 { 3059 isptarginit, "isptarg", TAILQ_HEAD_INITIALIZER(isptargdriver.units), /* generation */ 0 3060 }; 3061 3062 static void 3063 isptarginit(void) 3064 { 3065 } 3066 3067 static void 3068 isptargnotify(ispsoftc_t *isp, union ccb *iccb, struct ccb_immediate_notify *inot) 3069 { 3070 struct ccb_notify_acknowledge *ack = &iccb->cna2; 3071 3072 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, inot->ccb_h.path, "%s: [0x%x] immediate notify for 0x%x from 0x%x status 0x%x arg 0x%x\n", __func__, 3073 inot->tag_id, inot->initiator_id, inot->seq_id, inot->ccb_h.status, inot->arg); 3074 ack->ccb_h.func_code = XPT_NOTIFY_ACKNOWLEDGE; 3075 ack->ccb_h.flags = 0; 3076 ack->ccb_h.retry_count = 0; 3077 ack->ccb_h.cbfcnp = isptarg_done; 3078 ack->ccb_h.timeout = 0; 3079 ack->ccb_h.ccb_inot = inot; 3080 ack->tag_id = inot->tag_id; 3081 ack->seq_id = inot->seq_id; 3082 ack->initiator_id = inot->initiator_id; 3083 xpt_action(iccb); 3084 } 3085 3086 static void 3087 isptargstart(struct cam_periph *periph, union ccb *iccb) 3088 { 3089 const uint8_t niliqd[SHORT_INQUIRY_LENGTH] = { 3090 0x7f, 0x0, 0x5, 0x2, 32, 0, 0, 0x32, 3091 'F', 'R', 'E', 'E', 'B', 'S', 'D', ' ', 3092 'S', 'C', 'S', 'I', ' ', 'N', 'U', 'L', 3093 'L', ' ', 'D', 'E', 'V', 'I', 'C', 'E', 3094 '0', '0', '0', '1' 3095 }; 3096 const uint8_t iqd[SHORT_INQUIRY_LENGTH] = { 3097 0, 0x0, 0x5, 0x2, 32, 0, 0, 0x32, 3098 'F', 'R', 'E', 'E', 'B', 'S', 'D', ' ', 3099 'S', 'C', 'S', 'I', ' ', 'M', 'E', 'M', 3100 'O', 'R', 'Y', ' ', 'D', 'I', 'S', 'K', 3101 '0', '0', '0', '1' 3102 }; 3103 int i, more = 0, last; 3104 struct isptarg_softc *softc = periph->softc; 3105 struct ccb_scsiio *csio; 3106 lun_id_t return_lun; 3107 struct ccb_accept_tio *atio; 3108 uint8_t *cdb, *ptr, status; 3109 uint8_t *data_ptr; 3110 uint32_t data_len, flags; 3111 struct ccb_hdr *ccbh; 3112 3113 mtx_assert(periph->sim->mtx, MA_OWNED); 3114 ISP_PATH_PRT(softc->isp, ISP_LOGTDEBUG0, iccb->ccb_h.path, "%s: function code 0x%x INOTQ=%c WORKQ=%c REWORKQ=%c\n", __func__, iccb->ccb_h.func_code, 3115 TAILQ_FIRST(&softc->inot_queue)? 'y' : 'n', TAILQ_FIRST(&softc->work_queue)? 'y' : 'n', TAILQ_FIRST(&softc->rework_queue)? 'y' : 'n'); 3116 /* 3117 * Check for immediate notifies first 3118 */ 3119 ccbh = TAILQ_FIRST(&softc->inot_queue); 3120 if (ccbh) { 3121 TAILQ_REMOVE(&softc->inot_queue, ccbh, periph_links.tqe); 3122 if (TAILQ_FIRST(&softc->inot_queue) || TAILQ_FIRST(&softc->work_queue) || TAILQ_FIRST(&softc->rework_queue)) { 3123 xpt_schedule(periph, 1); 3124 } 3125 isptargnotify(softc->isp, iccb, (struct ccb_immediate_notify *)ccbh); 3126 return; 3127 } 3128 3129 /* 3130 * Check the rework (continuation) work queue first. 3131 */ 3132 ccbh = TAILQ_FIRST(&softc->rework_queue); 3133 if (ccbh) { 3134 atio = (struct ccb_accept_tio *)ccbh; 3135 TAILQ_REMOVE(&softc->rework_queue, ccbh, periph_links.tqe); 3136 more = TAILQ_FIRST(&softc->work_queue) || TAILQ_FIRST(&softc->rework_queue); 3137 } else { 3138 ccbh = TAILQ_FIRST(&softc->work_queue); 3139 if (ccbh == NULL) { 3140 ISP_PATH_PRT(softc->isp, ISP_LOGTDEBUG0, iccb->ccb_h.path, "%s: woken up but no work?\n", __func__); 3141 xpt_release_ccb(iccb); 3142 return; 3143 } 3144 atio = (struct ccb_accept_tio *)ccbh; 3145 TAILQ_REMOVE(&softc->work_queue, ccbh, periph_links.tqe); 3146 more = TAILQ_FIRST(&softc->work_queue) != NULL; 3147 atio->ccb_h.ccb_data_offset = 0; 3148 } 3149 3150 if (atio->tag_id == 0xffffffff || atio->ccb_h.func_code != XPT_ACCEPT_TARGET_IO) { 3151 panic("BAD ATIO"); 3152 } 3153 3154 data_ptr = NULL; 3155 data_len = 0; 3156 csio = &iccb->csio; 3157 status = SCSI_STATUS_OK; 3158 flags = CAM_SEND_STATUS; 3159 memset(&atio->sense_data, 0, sizeof (atio->sense_data)); 3160 cdb = atio->cdb_io.cdb_bytes; 3161 ISP_PATH_PRT(softc->isp, ISP_LOGTDEBUG0, ccbh->path, "%s: [0x%x] processing ATIO from 0x%x CDB=0x%x data_offset=%u\n", __func__, atio->tag_id, atio->init_id, 3162 cdb[0], atio->ccb_h.ccb_data_offset); 3163 3164 return_lun = XS_LUN(atio); 3165 if (return_lun != 0) { 3166 xpt_print(atio->ccb_h.path, "[0x%x] Non-Zero Lun %d: cdb0=0x%x\n", atio->tag_id, return_lun, cdb[0]); 3167 if (cdb[0] != INQUIRY && cdb[0] != REPORT_LUNS && cdb[0] != REQUEST_SENSE) { 3168 status = SCSI_STATUS_CHECK_COND; 3169 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_ILLEGAL_REQUEST; 3170 atio->sense_data.add_sense_code = 0x25; 3171 atio->sense_data.add_sense_code_qual = 0x0; 3172 atio->sense_len = sizeof (atio->sense_data); 3173 } 3174 return_lun = CAM_LUN_WILDCARD; 3175 } 3176 3177 switch (cdb[0]) { 3178 case REQUEST_SENSE: 3179 flags |= CAM_DIR_IN; 3180 data_len = sizeof (atio->sense_data); 3181 junk_data[0] = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_NO_SENSE; 3182 memset(junk_data+1, 0, data_len-1); 3183 if (data_len > cdb[4]) { 3184 data_len = cdb[4]; 3185 } 3186 if (data_len) { 3187 data_ptr = junk_data; 3188 } 3189 break; 3190 case READ_6: 3191 case READ_10: 3192 case READ_12: 3193 case READ_16: 3194 if (isptarg_rwparm(cdb, disk_data, disk_size, atio->ccb_h.ccb_data_offset, &data_ptr, &data_len, &last)) { 3195 status = SCSI_STATUS_CHECK_COND; 3196 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3197 atio->sense_data.add_sense_code = 0x5; 3198 atio->sense_data.add_sense_code_qual = 0x24; 3199 atio->sense_len = sizeof (atio->sense_data); 3200 } else { 3201 #ifdef ISP_FORCE_TIMEOUT 3202 { 3203 static int foo; 3204 if (foo++ == 500) { 3205 if (more) { 3206 xpt_schedule(periph, 1); 3207 } 3208 foo = 0; 3209 return; 3210 } 3211 } 3212 #endif 3213 #ifdef ISP_TEST_SEPARATE_STATUS 3214 if (last && data_len) { 3215 last = 0; 3216 } 3217 #endif 3218 if (last == 0) { 3219 flags &= ~CAM_SEND_STATUS; 3220 } 3221 if (data_len) { 3222 atio->ccb_h.ccb_data_offset += data_len; 3223 flags |= CAM_DIR_IN; 3224 } else { 3225 flags |= CAM_DIR_NONE; 3226 } 3227 } 3228 break; 3229 case WRITE_6: 3230 case WRITE_10: 3231 case WRITE_12: 3232 case WRITE_16: 3233 if (isptarg_rwparm(cdb, disk_data, disk_size, atio->ccb_h.ccb_data_offset, &data_ptr, &data_len, &last)) { 3234 status = SCSI_STATUS_CHECK_COND; 3235 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3236 atio->sense_data.add_sense_code = 0x5; 3237 atio->sense_data.add_sense_code_qual = 0x24; 3238 atio->sense_len = sizeof (atio->sense_data); 3239 } else { 3240 #ifdef ISP_FORCE_TIMEOUT 3241 { 3242 static int foo; 3243 if (foo++ == 500) { 3244 if (more) { 3245 xpt_schedule(periph, 1); 3246 } 3247 foo = 0; 3248 return; 3249 } 3250 } 3251 #endif 3252 #ifdef ISP_TEST_SEPARATE_STATUS 3253 if (last && data_len) { 3254 last = 0; 3255 } 3256 #endif 3257 if (last == 0) { 3258 flags &= ~CAM_SEND_STATUS; 3259 } 3260 if (data_len) { 3261 atio->ccb_h.ccb_data_offset += data_len; 3262 flags |= CAM_DIR_OUT; 3263 } else { 3264 flags |= CAM_DIR_NONE; 3265 } 3266 } 3267 break; 3268 case INQUIRY: 3269 flags |= CAM_DIR_IN; 3270 if (cdb[1] || cdb[2] || cdb[3]) { 3271 status = SCSI_STATUS_CHECK_COND; 3272 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3273 atio->sense_data.add_sense_code = 0x5; 3274 atio->sense_data.add_sense_code_qual = 0x20; 3275 atio->sense_len = sizeof (atio->sense_data); 3276 break; 3277 } 3278 data_len = sizeof (iqd); 3279 if (data_len > cdb[4]) { 3280 data_len = cdb[4]; 3281 } 3282 if (data_len) { 3283 if (XS_LUN(iccb) != 0) { 3284 memcpy(junk_data, niliqd, sizeof (iqd)); 3285 } else { 3286 memcpy(junk_data, iqd, sizeof (iqd)); 3287 } 3288 data_ptr = junk_data; 3289 } 3290 break; 3291 case TEST_UNIT_READY: 3292 flags |= CAM_DIR_NONE; 3293 if (ca) { 3294 ca = 0; 3295 status = SCSI_STATUS_CHECK_COND; 3296 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3297 atio->sense_data.add_sense_code = 0x28; 3298 atio->sense_data.add_sense_code_qual = 0x0; 3299 atio->sense_len = sizeof (atio->sense_data); 3300 } 3301 break; 3302 case SYNCHRONIZE_CACHE: 3303 case START_STOP: 3304 case RESERVE: 3305 case RELEASE: 3306 case VERIFY_10: 3307 flags |= CAM_DIR_NONE; 3308 break; 3309 3310 case READ_CAPACITY: 3311 flags |= CAM_DIR_IN; 3312 if (cdb[2] || cdb[3] || cdb[4] || cdb[5]) { 3313 status = SCSI_STATUS_CHECK_COND; 3314 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3315 atio->sense_data.add_sense_code = 0x5; 3316 atio->sense_data.add_sense_code_qual = 0x24; 3317 atio->sense_len = sizeof (atio->sense_data); 3318 break; 3319 } 3320 if (cdb[8] & 0x1) { /* PMI */ 3321 junk_data[0] = 0xff; 3322 junk_data[1] = 0xff; 3323 junk_data[2] = 0xff; 3324 junk_data[3] = 0xff; 3325 } else { 3326 uint64_t last_blk = (disk_size >> DISK_SHIFT) - 1; 3327 if (last_blk < 0xffffffffULL) { 3328 junk_data[0] = (last_blk >> 24) & 0xff; 3329 junk_data[1] = (last_blk >> 16) & 0xff; 3330 junk_data[2] = (last_blk >> 8) & 0xff; 3331 junk_data[3] = (last_blk) & 0xff; 3332 } else { 3333 junk_data[0] = 0xff; 3334 junk_data[1] = 0xff; 3335 junk_data[2] = 0xff; 3336 junk_data[3] = 0xff; 3337 } 3338 } 3339 junk_data[4] = ((1 << DISK_SHIFT) >> 24) & 0xff; 3340 junk_data[5] = ((1 << DISK_SHIFT) >> 16) & 0xff; 3341 junk_data[6] = ((1 << DISK_SHIFT) >> 8) & 0xff; 3342 junk_data[7] = ((1 << DISK_SHIFT)) & 0xff; 3343 data_ptr = junk_data; 3344 data_len = 8; 3345 break; 3346 case REPORT_LUNS: 3347 flags |= CAM_DIR_IN; 3348 memset(junk_data, 0, JUNK_SIZE); 3349 junk_data[0] = (1 << 3) >> 24; 3350 junk_data[1] = (1 << 3) >> 16; 3351 junk_data[2] = (1 << 3) >> 8; 3352 junk_data[3] = (1 << 3); 3353 ptr = NULL; 3354 for (i = 0; i < 1; i++) { 3355 ptr = &junk_data[8 + (1 << 3)]; 3356 if (i >= 256) { 3357 ptr[0] = 0x40 | ((i >> 8) & 0x3f); 3358 } 3359 ptr[1] = i; 3360 } 3361 data_ptr = junk_data; 3362 data_len = (ptr + 8) - junk_data; 3363 break; 3364 3365 default: 3366 flags |= CAM_DIR_NONE; 3367 status = SCSI_STATUS_CHECK_COND; 3368 atio->sense_data.error_code = SSD_ERRCODE_VALID|SSD_CURRENT_ERROR|SSD_KEY_UNIT_ATTENTION; 3369 atio->sense_data.add_sense_code = 0x5; 3370 atio->sense_data.add_sense_code_qual = 0x20; 3371 atio->sense_len = sizeof (atio->sense_data); 3372 break; 3373 } 3374 3375 /* 3376 * If we are done with the transaction, tell the 3377 * controller to send status and perform a CMD_CMPLT. 3378 * If we have associated sense data, see if we can 3379 * send that too. 3380 */ 3381 if (status == SCSI_STATUS_CHECK_COND) { 3382 flags |= CAM_SEND_SENSE; 3383 csio->sense_len = atio->sense_len; 3384 csio->sense_data = atio->sense_data; 3385 flags &= ~CAM_DIR_MASK; 3386 data_len = 0; 3387 data_ptr = NULL; 3388 } 3389 cam_fill_ctio(csio, 0, isptarg_done, flags, MSG_SIMPLE_Q_TAG, atio->tag_id, atio->init_id, status, data_ptr, data_len, 0); 3390 iccb->ccb_h.target_id = atio->ccb_h.target_id; 3391 iccb->ccb_h.target_lun = return_lun; 3392 iccb->ccb_h.ccb_atio = atio; 3393 xpt_action(iccb); 3394 3395 if ((atio->ccb_h.status & CAM_DEV_QFRZN) != 0) { 3396 cam_release_devq(periph->path, 0, 0, 0, 0); 3397 atio->ccb_h.status &= ~CAM_DEV_QFRZN; 3398 } 3399 if (more) { 3400 xpt_schedule(periph, 1); 3401 } 3402 } 3403 3404 static cam_status 3405 isptargctor(struct cam_periph *periph, void *arg) 3406 { 3407 struct isptarg_softc *softc; 3408 3409 softc = (struct isptarg_softc *)arg; 3410 periph->softc = softc; 3411 softc->periph = periph; 3412 softc->path = periph->path; 3413 ISP_PATH_PRT(softc->isp, ISP_LOGTDEBUG0, periph->path, "%s called\n", __func__); 3414 return (CAM_REQ_CMP); 3415 } 3416 3417 static void 3418 isptargdtor(struct cam_periph *periph) 3419 { 3420 struct isptarg_softc *softc; 3421 softc = (struct isptarg_softc *)periph->softc; 3422 ISP_PATH_PRT(softc->isp, ISP_LOGTDEBUG0, periph->path, "%s called\n", __func__); 3423 softc->periph = NULL; 3424 softc->path = NULL; 3425 periph->softc = NULL; 3426 } 3427 3428 static void 3429 isptarg_done(struct cam_periph *periph, union ccb *ccb) 3430 { 3431 struct isptarg_softc *softc; 3432 ispsoftc_t *isp; 3433 struct ccb_accept_tio *atio; 3434 struct ccb_immediate_notify *inot; 3435 cam_status status; 3436 3437 softc = (struct isptarg_softc *)periph->softc; 3438 isp = softc->isp; 3439 status = ccb->ccb_h.status & CAM_STATUS_MASK; 3440 3441 switch (ccb->ccb_h.func_code) { 3442 case XPT_ACCEPT_TARGET_IO: 3443 atio = (struct ccb_accept_tio *) ccb; 3444 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "[0x%x] ATIO seen in %s\n", atio->tag_id, __func__); 3445 TAILQ_INSERT_TAIL(&softc->work_queue, &ccb->ccb_h, periph_links.tqe); 3446 xpt_schedule(periph, 1); 3447 break; 3448 case XPT_IMMEDIATE_NOTIFY: 3449 inot = (struct ccb_immediate_notify *) ccb; 3450 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "[0x%x] INOT for 0x%x seen in %s\n", inot->tag_id, inot->seq_id, __func__); 3451 TAILQ_INSERT_TAIL(&softc->inot_queue, &ccb->ccb_h, periph_links.tqe); 3452 xpt_schedule(periph, 1); 3453 break; 3454 case XPT_CONT_TARGET_IO: 3455 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 3456 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0); 3457 ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 3458 } 3459 atio = ccb->ccb_h.ccb_atio; 3460 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 3461 cam_error_print(ccb, CAM_ESF_ALL, CAM_EPF_ALL); 3462 xpt_action((union ccb *)atio); 3463 } else if ((ccb->ccb_h.flags & CAM_SEND_STATUS) == 0) { 3464 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "[0x%x] MID CTIO seen in %s\n", atio->tag_id, __func__); 3465 TAILQ_INSERT_TAIL(&softc->rework_queue, &atio->ccb_h, periph_links.tqe); 3466 xpt_schedule(periph, 1); 3467 } else { 3468 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "[0x%x] FINAL CTIO seen in %s\n", atio->tag_id, __func__); 3469 xpt_action((union ccb *)atio); 3470 } 3471 xpt_release_ccb(ccb); 3472 break; 3473 case XPT_NOTIFY_ACKNOWLEDGE: 3474 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 3475 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0); 3476 ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 3477 } 3478 inot = ccb->ccb_h.ccb_inot; 3479 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, inot->ccb_h.path, "[0x%x] recycle notify for tag 0x%x\n", inot->tag_id, inot->seq_id); 3480 xpt_release_ccb(ccb); 3481 xpt_action((union ccb *)inot); 3482 break; 3483 default: 3484 xpt_print(ccb->ccb_h.path, "unexpected code 0x%x\n", ccb->ccb_h.func_code); 3485 break; 3486 } 3487 } 3488 3489 static void 3490 isptargasync(void *callback_arg, u_int32_t code, struct cam_path *path, void *arg) 3491 { 3492 struct ac_contract *acp = arg; 3493 struct ac_device_changed *fc = (struct ac_device_changed *) acp->contract_data; 3494 3495 if (code != AC_CONTRACT) { 3496 return; 3497 } 3498 xpt_print(path, "0x%016llx Port ID 0x%06x %s\n", (unsigned long long) fc->wwpn, fc->port, fc->arrived? "arrived" : "departed"); 3499 } 3500 3501 static void 3502 isp_target_thread(ispsoftc_t *isp, int chan) 3503 { 3504 union ccb *ccb = NULL; 3505 int i; 3506 void *wchan; 3507 cam_status status; 3508 struct isptarg_softc *softc = NULL; 3509 struct cam_periph *periph = NULL, *wperiph = NULL; 3510 struct cam_path *path, *wpath; 3511 struct cam_sim *sim; 3512 3513 if (disk_data == NULL) { 3514 disk_size = roundup2(vm_kmem_size >> 1, (1ULL << 20)); 3515 if (disk_size < (50 << 20)) { 3516 disk_size = 50 << 20; 3517 } 3518 disk_data = malloc(disk_size, M_ISPTARG, M_WAITOK | M_ZERO); 3519 if (disk_data == NULL) { 3520 isp_prt(isp, ISP_LOGERR, "%s: could not allocate disk data", __func__); 3521 goto out; 3522 } 3523 isp_prt(isp, ISP_LOGINFO, "allocated a %ju MiB disk", (uintmax_t) (disk_size >> 20)); 3524 } 3525 junk_data = malloc(JUNK_SIZE, M_ISPTARG, M_WAITOK | M_ZERO); 3526 if (junk_data == NULL) { 3527 isp_prt(isp, ISP_LOGERR, "%s: could not allocate junk", __func__); 3528 goto out; 3529 } 3530 3531 3532 softc = malloc(sizeof (*softc), M_ISPTARG, M_WAITOK | M_ZERO); 3533 if (softc == NULL) { 3534 isp_prt(isp, ISP_LOGERR, "%s: could not allocate softc", __func__); 3535 goto out; 3536 } 3537 TAILQ_INIT(&softc->work_queue); 3538 TAILQ_INIT(&softc->rework_queue); 3539 TAILQ_INIT(&softc->running_queue); 3540 TAILQ_INIT(&softc->inot_queue); 3541 softc->isp = isp; 3542 3543 periphdriver_register(&isptargdriver); 3544 ISP_GET_PC(isp, chan, sim, sim); 3545 ISP_GET_PC(isp, chan, path, path); 3546 status = xpt_create_path_unlocked(&wpath, NULL, cam_sim_path(sim), CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD); 3547 if (status != CAM_REQ_CMP) { 3548 isp_prt(isp, ISP_LOGERR, "%s: could not allocate wildcard path", __func__); 3549 return; 3550 } 3551 status = xpt_create_path_unlocked(&path, NULL, cam_sim_path(sim), 0, 0); 3552 if (status != CAM_REQ_CMP) { 3553 xpt_free_path(wpath); 3554 isp_prt(isp, ISP_LOGERR, "%s: could not allocate path", __func__); 3555 return; 3556 } 3557 3558 ccb = xpt_alloc_ccb(); 3559 3560 ISP_LOCK(isp); 3561 status = cam_periph_alloc(isptargctor, NULL, isptargdtor, isptargstart, "isptarg", CAM_PERIPH_BIO, wpath, NULL, 0, softc); 3562 if (status != CAM_REQ_CMP) { 3563 ISP_UNLOCK(isp); 3564 isp_prt(isp, ISP_LOGERR, "%s: cam_periph_alloc for wildcard failed", __func__); 3565 goto out; 3566 } 3567 wperiph = cam_periph_find(wpath, "isptarg"); 3568 if (wperiph == NULL) { 3569 ISP_UNLOCK(isp); 3570 isp_prt(isp, ISP_LOGERR, "%s: wildcard periph already allocated but doesn't exist", __func__); 3571 goto out; 3572 } 3573 3574 status = cam_periph_alloc(isptargctor, NULL, isptargdtor, isptargstart, "isptarg", CAM_PERIPH_BIO, path, NULL, 0, softc); 3575 if (status != CAM_REQ_CMP) { 3576 ISP_UNLOCK(isp); 3577 isp_prt(isp, ISP_LOGERR, "%s: cam_periph_alloc failed", __func__); 3578 goto out; 3579 } 3580 3581 periph = cam_periph_find(path, "isptarg"); 3582 if (periph == NULL) { 3583 ISP_UNLOCK(isp); 3584 isp_prt(isp, ISP_LOGERR, "%s: periph already allocated but doesn't exist", __func__); 3585 goto out; 3586 } 3587 3588 status = xpt_register_async(AC_CONTRACT, isptargasync, isp, wpath); 3589 if (status != CAM_REQ_CMP) { 3590 ISP_UNLOCK(isp); 3591 isp_prt(isp, ISP_LOGERR, "%s: xpt_register_async failed", __func__); 3592 goto out; 3593 } 3594 3595 ISP_UNLOCK(isp); 3596 3597 ccb = xpt_alloc_ccb(); 3598 3599 /* 3600 * Make sure role is none. 3601 */ 3602 xpt_setup_ccb(&ccb->ccb_h, periph->path, 10); 3603 ccb->ccb_h.func_code = XPT_SET_SIM_KNOB; 3604 ccb->knob.xport_specific.fc.role = KNOB_ROLE_NONE; 3605 #ifdef ISP_TEST_WWNS 3606 ccb->knob.xport_specific.fc.valid = KNOB_VALID_ROLE | KNOB_VALID_ADDRESS; 3607 ccb->knob.xport_specific.fc.wwnn = 0x508004d000000000ULL | (device_get_unit(isp->isp_osinfo.dev) << 8) | (chan << 16); 3608 ccb->knob.xport_specific.fc.wwpn = 0x508004d000000001ULL | (device_get_unit(isp->isp_osinfo.dev) << 8) | (chan << 16); 3609 #else 3610 ccb->knob.xport_specific.fc.valid = KNOB_VALID_ROLE; 3611 #endif 3612 3613 ISP_LOCK(isp); 3614 xpt_action(ccb); 3615 ISP_UNLOCK(isp); 3616 3617 /* 3618 * Now enable luns 3619 */ 3620 xpt_setup_ccb(&ccb->ccb_h, periph->path, 10); 3621 ccb->ccb_h.func_code = XPT_EN_LUN; 3622 ccb->cel.enable = 1; 3623 ISP_LOCK(isp); 3624 xpt_action(ccb); 3625 ISP_UNLOCK(isp); 3626 if (ccb->ccb_h.status != CAM_REQ_CMP) { 3627 xpt_free_ccb(ccb); 3628 xpt_print(periph->path, "failed to enable lun (0x%x)\n", ccb->ccb_h.status); 3629 goto out; 3630 } 3631 3632 xpt_setup_ccb(&ccb->ccb_h, wperiph->path, 10); 3633 ccb->ccb_h.func_code = XPT_EN_LUN; 3634 ccb->cel.enable = 1; 3635 ISP_LOCK(isp); 3636 xpt_action(ccb); 3637 ISP_UNLOCK(isp); 3638 if (ccb->ccb_h.status != CAM_REQ_CMP) { 3639 xpt_free_ccb(ccb); 3640 xpt_print(wperiph->path, "failed to enable lun (0x%x)\n", ccb->ccb_h.status); 3641 goto out; 3642 } 3643 xpt_free_ccb(ccb); 3644 3645 /* 3646 * Add resources 3647 */ 3648 ISP_GET_PC_ADDR(isp, chan, target_proc, wchan); 3649 for (i = 0; i < 4; i++) { 3650 ccb = malloc(sizeof (*ccb), M_ISPTARG, M_WAITOK | M_ZERO); 3651 xpt_setup_ccb(&ccb->ccb_h, wperiph->path, 1); 3652 ccb->ccb_h.func_code = XPT_ACCEPT_TARGET_IO; 3653 ccb->ccb_h.cbfcnp = isptarg_done; 3654 ISP_LOCK(isp); 3655 xpt_action(ccb); 3656 ISP_UNLOCK(isp); 3657 } 3658 for (i = 0; i < NISP_TARG_CMDS; i++) { 3659 ccb = malloc(sizeof (*ccb), M_ISPTARG, M_WAITOK | M_ZERO); 3660 xpt_setup_ccb(&ccb->ccb_h, periph->path, 1); 3661 ccb->ccb_h.func_code = XPT_ACCEPT_TARGET_IO; 3662 ccb->ccb_h.cbfcnp = isptarg_done; 3663 ISP_LOCK(isp); 3664 xpt_action(ccb); 3665 ISP_UNLOCK(isp); 3666 } 3667 for (i = 0; i < 4; i++) { 3668 ccb = malloc(sizeof (*ccb), M_ISPTARG, M_WAITOK | M_ZERO); 3669 xpt_setup_ccb(&ccb->ccb_h, wperiph->path, 1); 3670 ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; 3671 ccb->ccb_h.cbfcnp = isptarg_done; 3672 ISP_LOCK(isp); 3673 xpt_action(ccb); 3674 ISP_UNLOCK(isp); 3675 } 3676 for (i = 0; i < NISP_TARG_NOTIFIES; i++) { 3677 ccb = malloc(sizeof (*ccb), M_ISPTARG, M_WAITOK | M_ZERO); 3678 xpt_setup_ccb(&ccb->ccb_h, periph->path, 1); 3679 ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; 3680 ccb->ccb_h.cbfcnp = isptarg_done; 3681 ISP_LOCK(isp); 3682 xpt_action(ccb); 3683 ISP_UNLOCK(isp); 3684 } 3685 3686 /* 3687 * Now turn it all back on 3688 */ 3689 xpt_setup_ccb(&ccb->ccb_h, periph->path, 10); 3690 ccb->ccb_h.func_code = XPT_SET_SIM_KNOB; 3691 ccb->knob.xport_specific.fc.valid = KNOB_VALID_ROLE; 3692 ccb->knob.xport_specific.fc.role = KNOB_ROLE_TARGET; 3693 ISP_LOCK(isp); 3694 xpt_action(ccb); 3695 ISP_UNLOCK(isp); 3696 3697 /* 3698 * Okay, while things are still active, sleep... 3699 */ 3700 ISP_LOCK(isp); 3701 for (;;) { 3702 ISP_GET_PC(isp, chan, proc_active, i); 3703 if (i == 0) { 3704 break; 3705 } 3706 msleep(wchan, &isp->isp_lock, PUSER, "tsnooze", 0); 3707 } 3708 ISP_UNLOCK(isp); 3709 3710 out: 3711 if (wperiph) { 3712 cam_periph_invalidate(wperiph); 3713 } 3714 if (periph) { 3715 cam_periph_invalidate(periph); 3716 } 3717 if (junk_data) { 3718 free(junk_data, M_ISPTARG); 3719 } 3720 if (disk_data) { 3721 free(disk_data, M_ISPTARG); 3722 } 3723 if (softc) { 3724 free(softc, M_ISPTARG); 3725 } 3726 xpt_free_path(path); 3727 xpt_free_path(wpath); 3728 } 3729 3730 static void 3731 isp_target_thread_pi(void *arg) 3732 { 3733 struct isp_spi *pi = arg; 3734 isp_target_thread(cam_sim_softc(pi->sim), cam_sim_bus(pi->sim)); 3735 } 3736 3737 static void 3738 isp_target_thread_fc(void *arg) 3739 { 3740 struct isp_fc *fc = arg; 3741 isp_target_thread(cam_sim_softc(fc->sim), cam_sim_bus(fc->sim)); 3742 } 3743 3744 static int 3745 isptarg_rwparm(uint8_t *cdb, uint8_t *dp, uint64_t dl, uint32_t offset, uint8_t **kp, uint32_t *tl, int *lp) 3746 { 3747 uint32_t cnt, curcnt; 3748 uint64_t lba; 3749 3750 switch (cdb[0]) { 3751 case WRITE_16: 3752 case READ_16: 3753 cnt = (((uint32_t)cdb[10]) << 24) | 3754 (((uint32_t)cdb[11]) << 16) | 3755 (((uint32_t)cdb[12]) << 8) | 3756 ((uint32_t)cdb[13]); 3757 3758 lba = (((uint64_t)cdb[2]) << 56) | 3759 (((uint64_t)cdb[3]) << 48) | 3760 (((uint64_t)cdb[4]) << 40) | 3761 (((uint64_t)cdb[5]) << 32) | 3762 (((uint64_t)cdb[6]) << 24) | 3763 (((uint64_t)cdb[7]) << 16) | 3764 (((uint64_t)cdb[8]) << 8) | 3765 ((uint64_t)cdb[9]); 3766 break; 3767 case WRITE_12: 3768 case READ_12: 3769 cnt = (((uint32_t)cdb[6]) << 16) | 3770 (((uint32_t)cdb[7]) << 8) | 3771 ((u_int32_t)cdb[8]); 3772 3773 lba = (((uint32_t)cdb[2]) << 24) | 3774 (((uint32_t)cdb[3]) << 16) | 3775 (((uint32_t)cdb[4]) << 8) | 3776 ((uint32_t)cdb[5]); 3777 break; 3778 case WRITE_10: 3779 case READ_10: 3780 cnt = (((uint32_t)cdb[7]) << 8) | 3781 ((u_int32_t)cdb[8]); 3782 3783 lba = (((uint32_t)cdb[2]) << 24) | 3784 (((uint32_t)cdb[3]) << 16) | 3785 (((uint32_t)cdb[4]) << 8) | 3786 ((uint32_t)cdb[5]); 3787 break; 3788 case WRITE_6: 3789 case READ_6: 3790 cnt = cdb[4]; 3791 if (cnt == 0) { 3792 cnt = 256; 3793 } 3794 lba = (((uint32_t)cdb[1] & 0x1f) << 16) | 3795 (((uint32_t)cdb[2]) << 8) | 3796 ((uint32_t)cdb[3]); 3797 break; 3798 default: 3799 return (-1); 3800 } 3801 3802 cnt <<= DISK_SHIFT; 3803 lba <<= DISK_SHIFT; 3804 3805 if (offset == cnt) { 3806 *lp = 1; 3807 return (0); 3808 } 3809 3810 if (lba + cnt > dl) { 3811 return (-1); 3812 } 3813 3814 3815 curcnt = MAX_ISP_TARG_TRANSFER; 3816 if (offset + curcnt >= cnt) { 3817 curcnt = cnt - offset; 3818 *lp = 1; 3819 } else { 3820 *lp = 0; 3821 } 3822 *tl = curcnt; 3823 *kp = &dp[lba + offset]; 3824 return (0); 3825 } 3826 3827 #endif 3828 #endif 3829 3830 static void 3831 isp_cam_async(void *cbarg, uint32_t code, struct cam_path *path, void *arg) 3832 { 3833 struct cam_sim *sim; 3834 int bus, tgt; 3835 ispsoftc_t *isp; 3836 3837 sim = (struct cam_sim *)cbarg; 3838 isp = (ispsoftc_t *) cam_sim_softc(sim); 3839 bus = cam_sim_bus(sim); 3840 tgt = xpt_path_target_id(path); 3841 3842 switch (code) { 3843 case AC_LOST_DEVICE: 3844 if (IS_SCSI(isp)) { 3845 uint16_t oflags, nflags; 3846 sdparam *sdp = SDPARAM(isp, bus); 3847 3848 if (tgt >= 0) { 3849 nflags = sdp->isp_devparam[tgt].nvrm_flags; 3850 #ifndef ISP_TARGET_MODE 3851 nflags &= DPARM_SAFE_DFLT; 3852 if (isp->isp_loaded_fw) { 3853 nflags |= DPARM_NARROW | DPARM_ASYNC; 3854 } 3855 #else 3856 nflags = DPARM_DEFAULT; 3857 #endif 3858 oflags = sdp->isp_devparam[tgt].goal_flags; 3859 sdp->isp_devparam[tgt].goal_flags = nflags; 3860 sdp->isp_devparam[tgt].dev_update = 1; 3861 sdp->update = 1; 3862 (void) isp_control(isp, ISPCTL_UPDATE_PARAMS, bus); 3863 sdp->isp_devparam[tgt].goal_flags = oflags; 3864 } 3865 } 3866 break; 3867 default: 3868 isp_prt(isp, ISP_LOGWARN, "isp_cam_async: Code 0x%x", code); 3869 break; 3870 } 3871 } 3872 3873 static void 3874 isp_poll(struct cam_sim *sim) 3875 { 3876 ispsoftc_t *isp = cam_sim_softc(sim); 3877 uint32_t isr; 3878 uint16_t sema, mbox; 3879 3880 if (ISP_READ_ISR(isp, &isr, &sema, &mbox)) { 3881 isp_intr(isp, isr, sema, mbox); 3882 } 3883 } 3884 3885 3886 static void 3887 isp_watchdog(void *arg) 3888 { 3889 struct ccb_scsiio *xs = arg; 3890 ispsoftc_t *isp; 3891 uint32_t ohandle = ISP_HANDLE_FREE, handle; 3892 3893 isp = XS_ISP(xs); 3894 3895 handle = isp_find_handle(isp, xs); 3896 3897 if (handle != ISP_HANDLE_FREE && !XS_CMD_WPEND_P(xs)) { 3898 isp_xs_prt(isp, xs, ISP_LOGWARN, "first watchdog (handle 0x%x) timed out- deferring for grace period", handle); 3899 callout_reset(&PISP_PCMD(xs)->wdog, 2 * hz, isp_watchdog, xs); 3900 XS_CMD_S_WPEND(xs); 3901 return; 3902 } 3903 XS_C_TACTIVE(xs); 3904 3905 /* 3906 * Hand crank the interrupt code just to be sure the command isn't stuck somewhere. 3907 */ 3908 if (handle != ISP_HANDLE_FREE) { 3909 uint32_t isr; 3910 uint16_t sema, mbox; 3911 if (ISP_READ_ISR(isp, &isr, &sema, &mbox) != 0) { 3912 isp_intr(isp, isr, sema, mbox); 3913 } 3914 ohandle = handle; 3915 handle = isp_find_handle(isp, xs); 3916 } 3917 if (handle != ISP_HANDLE_FREE) { 3918 /* 3919 * Try and make sure the command is really dead before 3920 * we release the handle (and DMA resources) for reuse. 3921 * 3922 * If we are successful in aborting the command then 3923 * we're done here because we'll get the command returned 3924 * back separately. 3925 */ 3926 if (isp_control(isp, ISPCTL_ABORT_CMD, xs) == 0) { 3927 return; 3928 } 3929 3930 /* 3931 * Note that after calling the above, the command may in 3932 * fact have been completed. 3933 */ 3934 xs = isp_find_xs(isp, handle); 3935 3936 /* 3937 * If the command no longer exists, then we won't 3938 * be able to find the xs again with this handle. 3939 */ 3940 if (xs == NULL) { 3941 return; 3942 } 3943 3944 /* 3945 * After this point, the command is really dead. 3946 */ 3947 if (XS_XFRLEN(xs)) { 3948 ISP_DMAFREE(isp, xs, handle); 3949 } 3950 isp_destroy_handle(isp, handle); 3951 isp_prt(isp, ISP_LOGERR, "%s: timeout for handle 0x%x", __func__, handle); 3952 XS_SETERR(xs, CAM_CMD_TIMEOUT); 3953 isp_prt_endcmd(isp, xs); 3954 isp_done(xs); 3955 } else { 3956 if (ohandle != ISP_HANDLE_FREE) { 3957 isp_prt(isp, ISP_LOGWARN, "%s: timeout for handle 0x%x, recovered during interrupt", __func__, ohandle); 3958 } else { 3959 isp_prt(isp, ISP_LOGWARN, "%s: timeout for handle already free", __func__); 3960 } 3961 } 3962 } 3963 3964 static void 3965 isp_make_here(ispsoftc_t *isp, int chan, int tgt) 3966 { 3967 union ccb *ccb; 3968 struct isp_fc *fc = ISP_FC_PC(isp, chan); 3969 3970 if (isp_autoconfig == 0) { 3971 return; 3972 } 3973 3974 /* 3975 * Allocate a CCB, create a wildcard path for this target and schedule a rescan. 3976 */ 3977 ccb = xpt_alloc_ccb_nowait(); 3978 if (ccb == NULL) { 3979 isp_prt(isp, ISP_LOGWARN, "Chan %d unable to alloc CCB for rescan", chan); 3980 return; 3981 } 3982 if (xpt_create_path(&ccb->ccb_h.path, xpt_periph, cam_sim_path(fc->sim), tgt, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 3983 isp_prt(isp, ISP_LOGWARN, "unable to create path for rescan"); 3984 xpt_free_ccb(ccb); 3985 return; 3986 } 3987 xpt_rescan(ccb); 3988 } 3989 3990 static void 3991 isp_make_gone(ispsoftc_t *isp, int chan, int tgt) 3992 { 3993 struct cam_path *tp; 3994 struct isp_fc *fc = ISP_FC_PC(isp, chan); 3995 3996 if (isp_autoconfig == 0) { 3997 return; 3998 } 3999 if (xpt_create_path(&tp, NULL, cam_sim_path(fc->sim), tgt, CAM_LUN_WILDCARD) == CAM_REQ_CMP) { 4000 xpt_async(AC_LOST_DEVICE, tp, NULL); 4001 xpt_free_path(tp); 4002 } 4003 } 4004 4005 /* 4006 * Gone Device Timer Function- when we have decided that a device has gone 4007 * away, we wait a specific period of time prior to telling the OS it has 4008 * gone away. 4009 * 4010 * This timer function fires once a second and then scans the port database 4011 * for devices that are marked dead but still have a virtual target assigned. 4012 * We decrement a counter for that port database entry, and when it hits zero, 4013 * we tell the OS the device has gone away. 4014 */ 4015 static void 4016 isp_gdt(void *arg) 4017 { 4018 struct isp_fc *fc = arg; 4019 taskqueue_enqueue(taskqueue_thread, &fc->gtask); 4020 } 4021 4022 static void 4023 isp_gdt_task(void *arg, int pending) 4024 { 4025 struct isp_fc *fc = arg; 4026 ispsoftc_t *isp = fc->isp; 4027 int chan = fc - isp->isp_osinfo.pc.fc; 4028 fcportdb_t *lp; 4029 int dbidx, tgt, more_to_do = 0; 4030 4031 ISP_LOCK(isp); 4032 isp_prt(isp, ISP_LOGDEBUG0, "Chan %d GDT timer expired", chan); 4033 for (dbidx = 0; dbidx < MAX_FC_TARG; dbidx++) { 4034 lp = &FCPARAM(isp, chan)->portdb[dbidx]; 4035 4036 if (lp->state != FC_PORTDB_STATE_ZOMBIE) { 4037 continue; 4038 } 4039 if (lp->dev_map_idx == 0 || lp->target_mode) { 4040 continue; 4041 } 4042 if (lp->gone_timer != 0) { 4043 isp_prt(isp, ISP_LOGSANCFG, "%s: Chan %d more to do for target %u (timer=%u)", __func__, chan, lp->dev_map_idx - 1, lp->gone_timer); 4044 lp->gone_timer -= 1; 4045 more_to_do++; 4046 continue; 4047 } 4048 tgt = lp->dev_map_idx - 1; 4049 FCPARAM(isp, chan)->isp_dev_map[tgt] = 0; 4050 lp->dev_map_idx = 0; 4051 lp->state = FC_PORTDB_STATE_NIL; 4052 isp_prt(isp, ISP_LOGCONFIG, prom3, chan, lp->portid, tgt, "Gone Device Timeout"); 4053 isp_make_gone(isp, chan, tgt); 4054 } 4055 if (fc->ready) { 4056 if (more_to_do) { 4057 callout_reset(&fc->gdt, hz, isp_gdt, fc); 4058 } else { 4059 callout_deactivate(&fc->gdt); 4060 isp_prt(isp, ISP_LOGSANCFG, "Chan %d Stopping Gone Device Timer @ %lu", chan, (unsigned long) time_uptime); 4061 } 4062 } 4063 ISP_UNLOCK(isp); 4064 } 4065 4066 /* 4067 * Loop Down Timer Function- when loop goes down, a timer is started and 4068 * and after it expires we come here and take all probational devices that 4069 * the OS knows about and the tell the OS that they've gone away. 4070 * 4071 * We don't clear the devices out of our port database because, when loop 4072 * come back up, we have to do some actual cleanup with the chip at that 4073 * point (implicit PLOGO, e.g., to get the chip's port database state right). 4074 */ 4075 static void 4076 isp_ldt(void *arg) 4077 { 4078 struct isp_fc *fc = arg; 4079 taskqueue_enqueue(taskqueue_thread, &fc->ltask); 4080 } 4081 4082 static void 4083 isp_ldt_task(void *arg, int pending) 4084 { 4085 struct isp_fc *fc = arg; 4086 ispsoftc_t *isp = fc->isp; 4087 int chan = fc - isp->isp_osinfo.pc.fc; 4088 fcportdb_t *lp; 4089 int dbidx, tgt, i; 4090 4091 ISP_LOCK(isp); 4092 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "Chan %d Loop Down Timer expired @ %lu", chan, (unsigned long) time_uptime); 4093 callout_deactivate(&fc->ldt); 4094 4095 /* 4096 * Notify to the OS all targets who we now consider have departed. 4097 */ 4098 for (dbidx = 0; dbidx < MAX_FC_TARG; dbidx++) { 4099 lp = &FCPARAM(isp, chan)->portdb[dbidx]; 4100 4101 if (lp->state != FC_PORTDB_STATE_PROBATIONAL) { 4102 continue; 4103 } 4104 if (lp->dev_map_idx == 0 || lp->target_mode) { 4105 continue; 4106 } 4107 4108 /* 4109 * XXX: CLEAN UP AND COMPLETE ANY PENDING COMMANDS FIRST! 4110 */ 4111 4112 4113 for (i = 0; i < isp->isp_maxcmds; i++) { 4114 struct ccb_scsiio *xs; 4115 4116 if (!ISP_VALID_HANDLE(isp, isp->isp_xflist[i].handle)) { 4117 continue; 4118 } 4119 if ((xs = isp->isp_xflist[i].cmd) == NULL) { 4120 continue; 4121 } 4122 if (dbidx != (FCPARAM(isp, chan)->isp_dev_map[XS_TGT(xs)] - 1)) { 4123 continue; 4124 } 4125 isp_prt(isp, ISP_LOGWARN, "command handle 0x%08x for %d.%d.%d orphaned by loop down timeout", 4126 isp->isp_xflist[i].handle, chan, XS_TGT(xs), XS_LUN(xs)); 4127 } 4128 4129 /* 4130 * Mark that we've announced that this device is gone.... 4131 */ 4132 lp->reserved = 1; 4133 4134 /* 4135 * but *don't* change the state of the entry. Just clear 4136 * any target id stuff and announce to CAM that the 4137 * device is gone. This way any necessary PLOGO stuff 4138 * will happen when loop comes back up. 4139 */ 4140 4141 tgt = lp->dev_map_idx - 1; 4142 FCPARAM(isp, chan)->isp_dev_map[tgt] = 0; 4143 lp->dev_map_idx = 0; 4144 lp->state = FC_PORTDB_STATE_NIL; 4145 isp_prt(isp, ISP_LOGCONFIG, prom3, chan, lp->portid, tgt, "Loop Down Timeout"); 4146 isp_make_gone(isp, chan, tgt); 4147 } 4148 4149 if (FCPARAM(isp, chan)->role & ISP_ROLE_INITIATOR) { 4150 isp_unfreeze_loopdown(isp, chan); 4151 } 4152 /* 4153 * The loop down timer has expired. Wake up the kthread 4154 * to notice that fact (or make it false). 4155 */ 4156 fc->loop_dead = 1; 4157 fc->loop_down_time = fc->loop_down_limit+1; 4158 wakeup(fc); 4159 ISP_UNLOCK(isp); 4160 } 4161 4162 static void 4163 isp_kthread(void *arg) 4164 { 4165 struct isp_fc *fc = arg; 4166 ispsoftc_t *isp = fc->isp; 4167 int chan = fc - isp->isp_osinfo.pc.fc; 4168 int slp = 0; 4169 4170 mtx_lock(&isp->isp_osinfo.lock); 4171 4172 for (;;) { 4173 int lb, lim; 4174 4175 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d checking FC state", __func__, chan); 4176 lb = isp_fc_runstate(isp, chan, 250000); 4177 4178 /* 4179 * Our action is different based upon whether we're supporting 4180 * Initiator mode or not. If we are, we might freeze the simq 4181 * when loop is down and set all sorts of different delays to 4182 * check again. 4183 * 4184 * If not, we simply just wait for loop to come up. 4185 */ 4186 if (lb && (FCPARAM(isp, chan)->role & ISP_ROLE_INITIATOR)) { 4187 /* 4188 * Increment loop down time by the last sleep interval 4189 */ 4190 fc->loop_down_time += slp; 4191 4192 if (lb < 0) { 4193 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d FC loop not up (down count %d)", __func__, chan, fc->loop_down_time); 4194 } else { 4195 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d FC got to %d (down count %d)", __func__, chan, lb, fc->loop_down_time); 4196 } 4197 4198 /* 4199 * If we've never seen loop up and we've waited longer 4200 * than quickboot time, or we've seen loop up but we've 4201 * waited longer than loop_down_limit, give up and go 4202 * to sleep until loop comes up. 4203 */ 4204 if (FCPARAM(isp, chan)->loop_seen_once == 0) { 4205 lim = isp_quickboot_time; 4206 } else { 4207 lim = fc->loop_down_limit; 4208 } 4209 if (fc->loop_down_time >= lim) { 4210 isp_freeze_loopdown(isp, chan, "loop limit hit"); 4211 slp = 0; 4212 } else if (fc->loop_down_time < 10) { 4213 slp = 1; 4214 } else if (fc->loop_down_time < 30) { 4215 slp = 5; 4216 } else if (fc->loop_down_time < 60) { 4217 slp = 10; 4218 } else if (fc->loop_down_time < 120) { 4219 slp = 20; 4220 } else { 4221 slp = 30; 4222 } 4223 4224 } else if (lb) { 4225 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d FC Loop Down", __func__, chan); 4226 fc->loop_down_time += slp; 4227 slp = 60; 4228 } else { 4229 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d FC state OK", __func__, chan); 4230 fc->loop_down_time = 0; 4231 slp = 0; 4232 } 4233 4234 4235 /* 4236 * If this is past the first loop up or the loop is dead and if we'd frozen the simq, unfreeze it 4237 * now so that CAM can start sending us commands. 4238 * 4239 * If the FC state isn't okay yet, they'll hit that in isp_start which will freeze the queue again 4240 * or kill the commands, as appropriate. 4241 */ 4242 4243 if (FCPARAM(isp, chan)->loop_seen_once || fc->loop_dead) { 4244 isp_unfreeze_loopdown(isp, chan); 4245 } 4246 4247 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d sleep time %d", __func__, chan, slp); 4248 4249 msleep(fc, &isp->isp_osinfo.lock, PRIBIO, "ispf", slp * hz); 4250 4251 /* 4252 * If slp is zero, we're waking up for the first time after 4253 * things have been okay. In this case, we set a deferral state 4254 * for all commands and delay hysteresis seconds before starting 4255 * the FC state evaluation. This gives the loop/fabric a chance 4256 * to settle. 4257 */ 4258 if (slp == 0 && fc->hysteresis) { 4259 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "%s: Chan %d sleep hysteresis ticks %d", __func__, chan, fc->hysteresis * hz); 4260 mtx_unlock(&isp->isp_osinfo.lock); 4261 pause("ispt", fc->hysteresis * hz); 4262 mtx_lock(&isp->isp_osinfo.lock); 4263 } 4264 } 4265 mtx_unlock(&isp->isp_osinfo.lock); 4266 } 4267 4268 static void 4269 isp_action(struct cam_sim *sim, union ccb *ccb) 4270 { 4271 int bus, tgt, ts, error, lim; 4272 ispsoftc_t *isp; 4273 struct ccb_trans_settings *cts; 4274 4275 CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("isp_action\n")); 4276 4277 isp = (ispsoftc_t *)cam_sim_softc(sim); 4278 mtx_assert(&isp->isp_lock, MA_OWNED); 4279 4280 if (isp->isp_state != ISP_RUNSTATE && ccb->ccb_h.func_code == XPT_SCSI_IO) { 4281 isp_init(isp); 4282 if (isp->isp_state != ISP_INITSTATE) { 4283 /* 4284 * Lie. Say it was a selection timeout. 4285 */ 4286 ccb->ccb_h.status = CAM_SEL_TIMEOUT | CAM_DEV_QFRZN; 4287 xpt_freeze_devq(ccb->ccb_h.path, 1); 4288 xpt_done(ccb); 4289 return; 4290 } 4291 isp->isp_state = ISP_RUNSTATE; 4292 } 4293 isp_prt(isp, ISP_LOGDEBUG2, "isp_action code %x", ccb->ccb_h.func_code); 4294 ISP_PCMD(ccb) = NULL; 4295 4296 switch (ccb->ccb_h.func_code) { 4297 case XPT_SCSI_IO: /* Execute the requested I/O operation */ 4298 bus = XS_CHANNEL(ccb); 4299 /* 4300 * Do a couple of preliminary checks... 4301 */ 4302 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) { 4303 if ((ccb->ccb_h.flags & CAM_CDB_PHYS) != 0) { 4304 ccb->ccb_h.status = CAM_REQ_INVALID; 4305 xpt_done(ccb); 4306 break; 4307 } 4308 } 4309 #ifdef DIAGNOSTIC 4310 if (ccb->ccb_h.target_id > (ISP_MAX_TARGETS(isp) - 1)) { 4311 xpt_print(ccb->ccb_h.path, "invalid target\n"); 4312 ccb->ccb_h.status = CAM_PATH_INVALID; 4313 } else if (ccb->ccb_h.target_lun > (ISP_MAX_LUNS(isp) - 1)) { 4314 xpt_print(ccb->ccb_h.path, "invalid lun\n"); 4315 ccb->ccb_h.status = CAM_PATH_INVALID; 4316 } 4317 if (ccb->ccb_h.status == CAM_PATH_INVALID) { 4318 xpt_done(ccb); 4319 break; 4320 } 4321 #endif 4322 ccb->csio.scsi_status = SCSI_STATUS_OK; 4323 if (isp_get_pcmd(isp, ccb)) { 4324 isp_prt(isp, ISP_LOGWARN, "out of PCMDs"); 4325 cam_freeze_devq(ccb->ccb_h.path); 4326 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 250, 0); 4327 xpt_done(ccb); 4328 break; 4329 } 4330 error = isp_start((XS_T *) ccb); 4331 switch (error) { 4332 case CMD_QUEUED: 4333 XS_CMD_S_CLEAR(ccb); 4334 ccb->ccb_h.status |= CAM_SIM_QUEUED; 4335 if (ccb->ccb_h.timeout == CAM_TIME_INFINITY) { 4336 break; 4337 } 4338 ts = ccb->ccb_h.timeout; 4339 if (ts == CAM_TIME_DEFAULT) { 4340 ts = 60*1000; 4341 } 4342 ts = isp_mstohz(ts); 4343 XS_S_TACTIVE(ccb); 4344 callout_reset(&PISP_PCMD(ccb)->wdog, ts, isp_watchdog, ccb); 4345 break; 4346 case CMD_RQLATER: 4347 /* 4348 * We get this result for FC devices if the loop state isn't ready yet 4349 * or if the device in question has gone zombie on us. 4350 * 4351 * If we've never seen Loop UP at all, we requeue this request and wait 4352 * for the initial loop up delay to expire. 4353 */ 4354 lim = ISP_FC_PC(isp, bus)->loop_down_limit; 4355 if (FCPARAM(isp, bus)->loop_seen_once == 0 || ISP_FC_PC(isp, bus)->loop_down_time >= lim) { 4356 if (FCPARAM(isp, bus)->loop_seen_once == 0) { 4357 isp_prt(isp, ISP_LOGDEBUG0, "%d.%d loop not seen yet @ %lu", XS_TGT(ccb), XS_LUN(ccb), (unsigned long) time_uptime); 4358 } else { 4359 isp_prt(isp, ISP_LOGDEBUG0, "%d.%d downtime (%d) > lim (%d)", XS_TGT(ccb), XS_LUN(ccb), ISP_FC_PC(isp, bus)->loop_down_time, lim); 4360 } 4361 ccb->ccb_h.status = CAM_SEL_TIMEOUT|CAM_DEV_QFRZN; 4362 xpt_freeze_devq(ccb->ccb_h.path, 1); 4363 isp_free_pcmd(isp, ccb); 4364 xpt_done(ccb); 4365 break; 4366 } 4367 isp_prt(isp, ISP_LOGDEBUG0, "%d.%d retry later", XS_TGT(ccb), XS_LUN(ccb)); 4368 cam_freeze_devq(ccb->ccb_h.path); 4369 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 1000, 0); 4370 XS_SETERR(ccb, CAM_REQUEUE_REQ); 4371 isp_free_pcmd(isp, ccb); 4372 xpt_done(ccb); 4373 break; 4374 case CMD_EAGAIN: 4375 isp_free_pcmd(isp, ccb); 4376 cam_freeze_devq(ccb->ccb_h.path); 4377 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 100, 0); 4378 XS_SETERR(ccb, CAM_REQUEUE_REQ); 4379 xpt_done(ccb); 4380 break; 4381 case CMD_COMPLETE: 4382 isp_done((struct ccb_scsiio *) ccb); 4383 break; 4384 default: 4385 isp_prt(isp, ISP_LOGERR, "What's this? 0x%x at %d in file %s", error, __LINE__, __FILE__); 4386 XS_SETERR(ccb, CAM_REQ_CMP_ERR); 4387 isp_free_pcmd(isp, ccb); 4388 xpt_done(ccb); 4389 } 4390 break; 4391 4392 #ifdef ISP_TARGET_MODE 4393 case XPT_EN_LUN: /* Enable/Disable LUN as a target */ 4394 if (ccb->cel.enable) { 4395 isp_enable_lun(isp, ccb); 4396 } else { 4397 isp_disable_lun(isp, ccb); 4398 } 4399 break; 4400 case XPT_IMMED_NOTIFY: 4401 case XPT_IMMEDIATE_NOTIFY: /* Add Immediate Notify Resource */ 4402 case XPT_ACCEPT_TARGET_IO: /* Add Accept Target IO Resource */ 4403 { 4404 tstate_t *tptr = get_lun_statep(isp, XS_CHANNEL(ccb), ccb->ccb_h.target_lun); 4405 if (tptr == NULL) { 4406 tptr = get_lun_statep(isp, XS_CHANNEL(ccb), CAM_LUN_WILDCARD); 4407 } 4408 if (tptr == NULL) { 4409 const char *str; 4410 uint32_t tag; 4411 4412 if (ccb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) { 4413 str = "XPT_IMMEDIATE_NOTIFY"; 4414 tag = ccb->cin1.seq_id; 4415 } else { 4416 tag = ccb->atio.tag_id; 4417 str = "XPT_ACCEPT_TARGET_IO"; 4418 } 4419 ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "%s: [0x%x] no state pointer found for %s\n", __func__, tag, str); 4420 dump_tstates(isp, XS_CHANNEL(ccb)); 4421 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 4422 break; 4423 } 4424 ccb->ccb_h.sim_priv.entries[0].field = 0; 4425 ccb->ccb_h.sim_priv.entries[1].ptr = isp; 4426 ccb->ccb_h.flags = 0; 4427 4428 if (ccb->ccb_h.func_code == XPT_ACCEPT_TARGET_IO) { 4429 if (ccb->atio.tag_id) { 4430 atio_private_data_t *atp = isp_get_atpd(isp, tptr, ccb->atio.tag_id); 4431 if (atp) { 4432 isp_put_atpd(isp, tptr, atp); 4433 } 4434 } 4435 tptr->atio_count++; 4436 SLIST_INSERT_HEAD(&tptr->atios, &ccb->ccb_h, sim_links.sle); 4437 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "Put FREE ATIO (tag id 0x%x), count now %d\n", 4438 ((struct ccb_accept_tio *)ccb)->tag_id, tptr->atio_count); 4439 } else if (ccb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) { 4440 if (ccb->cin1.tag_id) { 4441 inot_private_data_t *ntp = isp_find_ntpd(isp, tptr, ccb->cin1.tag_id, ccb->cin1.seq_id); 4442 if (ntp) { 4443 isp_put_ntpd(isp, tptr, ntp); 4444 } 4445 } 4446 tptr->inot_count++; 4447 SLIST_INSERT_HEAD(&tptr->inots, &ccb->ccb_h, sim_links.sle); 4448 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "Put FREE INOT, (seq id 0x%x) count now %d\n", 4449 ((struct ccb_immediate_notify *)ccb)->seq_id, tptr->inot_count); 4450 } else if (ccb->ccb_h.func_code == XPT_IMMED_NOTIFY) { 4451 tptr->inot_count++; 4452 SLIST_INSERT_HEAD(&tptr->inots, &ccb->ccb_h, sim_links.sle); 4453 ISP_PATH_PRT(isp, ISP_LOGTDEBUG0, ccb->ccb_h.path, "Put FREE INOT, (seq id 0x%x) count now %d\n", 4454 ((struct ccb_immediate_notify *)ccb)->seq_id, tptr->inot_count); 4455 } 4456 rls_lun_statep(isp, tptr); 4457 ccb->ccb_h.status = CAM_REQ_INPROG; 4458 break; 4459 } 4460 case XPT_NOTIFY_ACK: 4461 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 4462 break; 4463 case XPT_NOTIFY_ACKNOWLEDGE: /* notify ack */ 4464 { 4465 tstate_t *tptr; 4466 inot_private_data_t *ntp; 4467 4468 /* 4469 * XXX: Because we cannot guarantee that the path information in the notify acknowledge ccb 4470 * XXX: matches that for the immediate notify, we have to *search* for the notify structure 4471 */ 4472 /* 4473 * All the relevant path information is in the associated immediate notify 4474 */ 4475 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); 4476 ntp = get_ntp_from_tagdata(isp, ccb->cna2.tag_id, ccb->cna2.seq_id, &tptr); 4477 if (ntp == NULL) { 4478 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__, 4479 ccb->cna2.tag_id, ccb->cna2.seq_id); 4480 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 4481 xpt_done(ccb); 4482 break; 4483 } 4484 if (isp_handle_platform_target_notify_ack(isp, &ntp->rd.nt)) { 4485 rls_lun_statep(isp, tptr); 4486 cam_freeze_devq(ccb->ccb_h.path); 4487 cam_release_devq(ccb->ccb_h.path, RELSIM_RELEASE_AFTER_TIMEOUT, 0, 1000, 0); 4488 XS_SETERR(ccb, CAM_REQUEUE_REQ); 4489 break; 4490 } 4491 isp_put_ntpd(isp, tptr, ntp); 4492 rls_lun_statep(isp, tptr); 4493 ccb->ccb_h.status = CAM_REQ_CMP; 4494 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); 4495 xpt_done(ccb); 4496 break; 4497 } 4498 case XPT_CONT_TARGET_IO: 4499 isp_target_start_ctio(isp, ccb); 4500 break; 4501 #endif 4502 case XPT_RESET_DEV: /* BDR the specified SCSI device */ 4503 4504 bus = cam_sim_bus(xpt_path_sim(ccb->ccb_h.path)); 4505 tgt = ccb->ccb_h.target_id; 4506 tgt |= (bus << 16); 4507 4508 error = isp_control(isp, ISPCTL_RESET_DEV, bus, tgt); 4509 if (error) { 4510 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 4511 } else { 4512 ccb->ccb_h.status = CAM_REQ_CMP; 4513 } 4514 xpt_done(ccb); 4515 break; 4516 case XPT_ABORT: /* Abort the specified CCB */ 4517 { 4518 union ccb *accb = ccb->cab.abort_ccb; 4519 switch (accb->ccb_h.func_code) { 4520 #ifdef ISP_TARGET_MODE 4521 case XPT_ACCEPT_TARGET_IO: 4522 isp_target_mark_aborted(isp, accb); 4523 break; 4524 #endif 4525 case XPT_SCSI_IO: 4526 error = isp_control(isp, ISPCTL_ABORT_CMD, ccb); 4527 if (error) { 4528 ccb->ccb_h.status = CAM_UA_ABORT; 4529 } else { 4530 ccb->ccb_h.status = CAM_REQ_CMP; 4531 } 4532 break; 4533 default: 4534 ccb->ccb_h.status = CAM_REQ_INVALID; 4535 break; 4536 } 4537 /* 4538 * This is not a queued CCB, so the caller expects it to be 4539 * complete when control is returned. 4540 */ 4541 break; 4542 } 4543 #define IS_CURRENT_SETTINGS(c) (c->type == CTS_TYPE_CURRENT_SETTINGS) 4544 case XPT_SET_TRAN_SETTINGS: /* Nexus Settings */ 4545 cts = &ccb->cts; 4546 if (!IS_CURRENT_SETTINGS(cts)) { 4547 ccb->ccb_h.status = CAM_REQ_INVALID; 4548 xpt_done(ccb); 4549 break; 4550 } 4551 tgt = cts->ccb_h.target_id; 4552 bus = cam_sim_bus(xpt_path_sim(cts->ccb_h.path)); 4553 if (IS_SCSI(isp)) { 4554 struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi; 4555 struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi; 4556 sdparam *sdp = SDPARAM(isp, bus); 4557 uint16_t *dptr; 4558 4559 if (spi->valid == 0 && scsi->valid == 0) { 4560 ccb->ccb_h.status = CAM_REQ_CMP; 4561 xpt_done(ccb); 4562 break; 4563 } 4564 4565 /* 4566 * We always update (internally) from goal_flags 4567 * so any request to change settings just gets 4568 * vectored to that location. 4569 */ 4570 dptr = &sdp->isp_devparam[tgt].goal_flags; 4571 4572 if ((spi->valid & CTS_SPI_VALID_DISC) != 0) { 4573 if ((spi->flags & CTS_SPI_FLAGS_DISC_ENB) != 0) 4574 *dptr |= DPARM_DISC; 4575 else 4576 *dptr &= ~DPARM_DISC; 4577 } 4578 4579 if ((scsi->valid & CTS_SCSI_VALID_TQ) != 0) { 4580 if ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0) 4581 *dptr |= DPARM_TQING; 4582 else 4583 *dptr &= ~DPARM_TQING; 4584 } 4585 4586 if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) != 0) { 4587 if (spi->bus_width == MSG_EXT_WDTR_BUS_16_BIT) 4588 *dptr |= DPARM_WIDE; 4589 else 4590 *dptr &= ~DPARM_WIDE; 4591 } 4592 4593 /* 4594 * XXX: FIX ME 4595 */ 4596 if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) && (spi->valid & CTS_SPI_VALID_SYNC_RATE) && (spi->sync_period && spi->sync_offset)) { 4597 *dptr |= DPARM_SYNC; 4598 /* 4599 * XXX: CHECK FOR LEGALITY 4600 */ 4601 sdp->isp_devparam[tgt].goal_period = spi->sync_period; 4602 sdp->isp_devparam[tgt].goal_offset = spi->sync_offset; 4603 } else { 4604 *dptr &= ~DPARM_SYNC; 4605 } 4606 isp_prt(isp, ISP_LOGDEBUG0, "SET (%d.%d.%d) to flags %x off %x per %x", bus, tgt, cts->ccb_h.target_lun, sdp->isp_devparam[tgt].goal_flags, 4607 sdp->isp_devparam[tgt].goal_offset, sdp->isp_devparam[tgt].goal_period); 4608 sdp->isp_devparam[tgt].dev_update = 1; 4609 sdp->update = 1; 4610 } 4611 ccb->ccb_h.status = CAM_REQ_CMP; 4612 xpt_done(ccb); 4613 break; 4614 case XPT_GET_TRAN_SETTINGS: 4615 cts = &ccb->cts; 4616 tgt = cts->ccb_h.target_id; 4617 bus = cam_sim_bus(xpt_path_sim(cts->ccb_h.path)); 4618 if (IS_FC(isp)) { 4619 fcparam *fcp = FCPARAM(isp, bus); 4620 struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi; 4621 struct ccb_trans_settings_fc *fc = &cts->xport_specific.fc; 4622 unsigned int hdlidx; 4623 4624 cts->protocol = PROTO_SCSI; 4625 cts->protocol_version = SCSI_REV_2; 4626 cts->transport = XPORT_FC; 4627 cts->transport_version = 0; 4628 4629 scsi->valid = CTS_SCSI_VALID_TQ; 4630 scsi->flags = CTS_SCSI_FLAGS_TAG_ENB; 4631 fc->valid = CTS_FC_VALID_SPEED; 4632 fc->bitrate = 100000; 4633 fc->bitrate *= fcp->isp_gbspeed; 4634 hdlidx = fcp->isp_dev_map[tgt] - 1; 4635 if (hdlidx < MAX_FC_TARG) { 4636 fcportdb_t *lp = &fcp->portdb[hdlidx]; 4637 fc->wwnn = lp->node_wwn; 4638 fc->wwpn = lp->port_wwn; 4639 fc->port = lp->portid; 4640 fc->valid |= CTS_FC_VALID_WWNN | CTS_FC_VALID_WWPN | CTS_FC_VALID_PORT; 4641 } 4642 } else { 4643 struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi; 4644 struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi; 4645 sdparam *sdp = SDPARAM(isp, bus); 4646 uint16_t dval, pval, oval; 4647 4648 if (IS_CURRENT_SETTINGS(cts)) { 4649 sdp->isp_devparam[tgt].dev_refresh = 1; 4650 sdp->update = 1; 4651 (void) isp_control(isp, ISPCTL_UPDATE_PARAMS, bus); 4652 dval = sdp->isp_devparam[tgt].actv_flags; 4653 oval = sdp->isp_devparam[tgt].actv_offset; 4654 pval = sdp->isp_devparam[tgt].actv_period; 4655 } else { 4656 dval = sdp->isp_devparam[tgt].nvrm_flags; 4657 oval = sdp->isp_devparam[tgt].nvrm_offset; 4658 pval = sdp->isp_devparam[tgt].nvrm_period; 4659 } 4660 4661 cts->protocol = PROTO_SCSI; 4662 cts->protocol_version = SCSI_REV_2; 4663 cts->transport = XPORT_SPI; 4664 cts->transport_version = 2; 4665 4666 spi->valid = 0; 4667 scsi->valid = 0; 4668 spi->flags = 0; 4669 scsi->flags = 0; 4670 if (dval & DPARM_DISC) { 4671 spi->flags |= CTS_SPI_FLAGS_DISC_ENB; 4672 } 4673 if ((dval & DPARM_SYNC) && oval && pval) { 4674 spi->sync_offset = oval; 4675 spi->sync_period = pval; 4676 } else { 4677 spi->sync_offset = 0; 4678 spi->sync_period = 0; 4679 } 4680 spi->valid |= CTS_SPI_VALID_SYNC_OFFSET; 4681 spi->valid |= CTS_SPI_VALID_SYNC_RATE; 4682 spi->valid |= CTS_SPI_VALID_BUS_WIDTH; 4683 if (dval & DPARM_WIDE) { 4684 spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT; 4685 } else { 4686 spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT; 4687 } 4688 if (cts->ccb_h.target_lun != CAM_LUN_WILDCARD) { 4689 scsi->valid = CTS_SCSI_VALID_TQ; 4690 if (dval & DPARM_TQING) { 4691 scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB; 4692 } 4693 spi->valid |= CTS_SPI_VALID_DISC; 4694 } 4695 isp_prt(isp, ISP_LOGDEBUG0, "GET %s (%d.%d.%d) to flags %x off %x per %x", IS_CURRENT_SETTINGS(cts)? "ACTIVE" : "NVRAM", 4696 bus, tgt, cts->ccb_h.target_lun, dval, oval, pval); 4697 } 4698 ccb->ccb_h.status = CAM_REQ_CMP; 4699 xpt_done(ccb); 4700 break; 4701 4702 case XPT_CALC_GEOMETRY: 4703 cam_calc_geometry(&ccb->ccg, 1); 4704 xpt_done(ccb); 4705 break; 4706 4707 case XPT_RESET_BUS: /* Reset the specified bus */ 4708 bus = cam_sim_bus(sim); 4709 error = isp_control(isp, ISPCTL_RESET_BUS, bus); 4710 if (error) { 4711 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 4712 xpt_done(ccb); 4713 break; 4714 } 4715 if (bootverbose) { 4716 xpt_print(ccb->ccb_h.path, "reset bus on channel %d\n", bus); 4717 } 4718 if (IS_FC(isp)) { 4719 xpt_async(AC_BUS_RESET, ISP_FC_PC(isp, bus)->path, 0); 4720 } else { 4721 xpt_async(AC_BUS_RESET, ISP_SPI_PC(isp, bus)->path, 0); 4722 } 4723 ccb->ccb_h.status = CAM_REQ_CMP; 4724 xpt_done(ccb); 4725 break; 4726 4727 case XPT_TERM_IO: /* Terminate the I/O process */ 4728 ccb->ccb_h.status = CAM_REQ_INVALID; 4729 xpt_done(ccb); 4730 break; 4731 4732 case XPT_SET_SIM_KNOB: /* Set SIM knobs */ 4733 { 4734 struct ccb_sim_knob *kp = &ccb->knob; 4735 fcparam *fcp; 4736 4737 4738 if (!IS_FC(isp)) { 4739 ccb->ccb_h.status = CAM_REQ_INVALID; 4740 xpt_done(ccb); 4741 break; 4742 } 4743 4744 bus = cam_sim_bus(xpt_path_sim(kp->ccb_h.path)); 4745 fcp = FCPARAM(isp, bus); 4746 4747 if (kp->xport_specific.fc.valid & KNOB_VALID_ADDRESS) { 4748 fcp->isp_wwnn = ISP_FC_PC(isp, bus)->def_wwnn = kp->xport_specific.fc.wwnn; 4749 fcp->isp_wwpn = ISP_FC_PC(isp, bus)->def_wwpn = kp->xport_specific.fc.wwpn; 4750 isp_prt(isp, ISP_LOGALL, "Setting Channel %d wwns to 0x%jx 0x%jx", bus, fcp->isp_wwnn, fcp->isp_wwpn); 4751 } 4752 ccb->ccb_h.status = CAM_REQ_CMP; 4753 if (kp->xport_specific.fc.valid & KNOB_VALID_ROLE) { 4754 int rchange = 0; 4755 int newrole = 0; 4756 4757 switch (kp->xport_specific.fc.role) { 4758 case KNOB_ROLE_NONE: 4759 if (fcp->role != ISP_ROLE_NONE) { 4760 rchange = 1; 4761 newrole = ISP_ROLE_NONE; 4762 } 4763 break; 4764 case KNOB_ROLE_TARGET: 4765 if (fcp->role != ISP_ROLE_TARGET) { 4766 rchange = 1; 4767 newrole = ISP_ROLE_TARGET; 4768 } 4769 break; 4770 case KNOB_ROLE_INITIATOR: 4771 if (fcp->role != ISP_ROLE_INITIATOR) { 4772 rchange = 1; 4773 newrole = ISP_ROLE_INITIATOR; 4774 } 4775 break; 4776 case KNOB_ROLE_BOTH: 4777 #if 0 4778 if (fcp->role != ISP_ROLE_BOTH) { 4779 rchange = 1; 4780 newrole = ISP_ROLE_BOTH; 4781 } 4782 #else 4783 /* 4784 * We don't really support dual role at present on FC cards. 4785 * 4786 * We should, but a bunch of things are currently broken, 4787 * so don't allow it. 4788 */ 4789 isp_prt(isp, ISP_LOGERR, "cannot support dual role at present"); 4790 ccb->ccb_h.status = CAM_REQ_INVALID; 4791 #endif 4792 break; 4793 } 4794 if (rchange) { 4795 if (isp_fc_change_role(isp, bus, newrole) != 0) { 4796 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 4797 #ifdef ISP_TARGET_MODE 4798 } else if (newrole == ISP_ROLE_TARGET || newrole == ISP_ROLE_BOTH) { 4799 isp_enable_deferred_luns(isp, bus); 4800 #endif 4801 } 4802 } 4803 } 4804 xpt_done(ccb); 4805 break; 4806 } 4807 case XPT_GET_SIM_KNOB: /* Set SIM knobs */ 4808 { 4809 struct ccb_sim_knob *kp = &ccb->knob; 4810 4811 if (IS_FC(isp)) { 4812 fcparam *fcp; 4813 4814 bus = cam_sim_bus(xpt_path_sim(kp->ccb_h.path)); 4815 fcp = FCPARAM(isp, bus); 4816 4817 kp->xport_specific.fc.wwnn = fcp->isp_wwnn; 4818 kp->xport_specific.fc.wwpn = fcp->isp_wwpn; 4819 switch (fcp->role) { 4820 case ISP_ROLE_NONE: 4821 kp->xport_specific.fc.role = KNOB_ROLE_NONE; 4822 break; 4823 case ISP_ROLE_TARGET: 4824 kp->xport_specific.fc.role = KNOB_ROLE_TARGET; 4825 break; 4826 case ISP_ROLE_INITIATOR: 4827 kp->xport_specific.fc.role = KNOB_ROLE_INITIATOR; 4828 break; 4829 case ISP_ROLE_BOTH: 4830 kp->xport_specific.fc.role = KNOB_ROLE_BOTH; 4831 break; 4832 } 4833 kp->xport_specific.fc.valid = KNOB_VALID_ADDRESS | KNOB_VALID_ROLE; 4834 ccb->ccb_h.status = CAM_REQ_CMP; 4835 } else { 4836 ccb->ccb_h.status = CAM_REQ_INVALID; 4837 } 4838 xpt_done(ccb); 4839 break; 4840 } 4841 case XPT_PATH_INQ: /* Path routing inquiry */ 4842 { 4843 struct ccb_pathinq *cpi = &ccb->cpi; 4844 4845 cpi->version_num = 1; 4846 #ifdef ISP_TARGET_MODE 4847 cpi->target_sprt = PIT_PROCESSOR | PIT_DISCONNECT | PIT_TERM_IO; 4848 #else 4849 cpi->target_sprt = 0; 4850 #endif 4851 cpi->hba_eng_cnt = 0; 4852 cpi->max_target = ISP_MAX_TARGETS(isp) - 1; 4853 cpi->max_lun = ISP_MAX_LUNS(isp) - 1; 4854 cpi->bus_id = cam_sim_bus(sim); 4855 bus = cam_sim_bus(xpt_path_sim(cpi->ccb_h.path)); 4856 if (IS_FC(isp)) { 4857 fcparam *fcp = FCPARAM(isp, bus); 4858 4859 cpi->hba_misc = PIM_NOBUSRESET; 4860 4861 /* 4862 * Because our loop ID can shift from time to time, 4863 * make our initiator ID out of range of our bus. 4864 */ 4865 cpi->initiator_id = cpi->max_target + 1; 4866 4867 /* 4868 * Set base transfer capabilities for Fibre Channel, for this HBA. 4869 */ 4870 if (IS_25XX(isp)) { 4871 cpi->base_transfer_speed = 8000000; 4872 } else if (IS_24XX(isp)) { 4873 cpi->base_transfer_speed = 4000000; 4874 } else if (IS_23XX(isp)) { 4875 cpi->base_transfer_speed = 2000000; 4876 } else { 4877 cpi->base_transfer_speed = 1000000; 4878 } 4879 cpi->hba_inquiry = PI_TAG_ABLE; 4880 cpi->transport = XPORT_FC; 4881 cpi->transport_version = 0; 4882 cpi->xport_specific.fc.wwnn = fcp->isp_wwnn; 4883 cpi->xport_specific.fc.wwpn = fcp->isp_wwpn; 4884 cpi->xport_specific.fc.port = fcp->isp_portid; 4885 cpi->xport_specific.fc.bitrate = fcp->isp_gbspeed * 1000; 4886 } else { 4887 sdparam *sdp = SDPARAM(isp, bus); 4888 cpi->hba_inquiry = PI_SDTR_ABLE|PI_TAG_ABLE|PI_WIDE_16; 4889 cpi->hba_misc = 0; 4890 cpi->initiator_id = sdp->isp_initiator_id; 4891 cpi->base_transfer_speed = 3300; 4892 cpi->transport = XPORT_SPI; 4893 cpi->transport_version = 2; 4894 } 4895 cpi->protocol = PROTO_SCSI; 4896 cpi->protocol_version = SCSI_REV_2; 4897 strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); 4898 strncpy(cpi->hba_vid, "Qlogic", HBA_IDLEN); 4899 strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN); 4900 cpi->unit_number = cam_sim_unit(sim); 4901 cpi->ccb_h.status = CAM_REQ_CMP; 4902 xpt_done(ccb); 4903 break; 4904 } 4905 default: 4906 ccb->ccb_h.status = CAM_REQ_INVALID; 4907 xpt_done(ccb); 4908 break; 4909 } 4910 } 4911 4912 #define ISPDDB (CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB) 4913 4914 void 4915 isp_done(XS_T *sccb) 4916 { 4917 ispsoftc_t *isp = XS_ISP(sccb); 4918 uint32_t status; 4919 4920 if (XS_NOERR(sccb)) 4921 XS_SETERR(sccb, CAM_REQ_CMP); 4922 4923 if ((sccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP && (sccb->scsi_status != SCSI_STATUS_OK)) { 4924 sccb->ccb_h.status &= ~CAM_STATUS_MASK; 4925 if ((sccb->scsi_status == SCSI_STATUS_CHECK_COND) && (sccb->ccb_h.status & CAM_AUTOSNS_VALID) == 0) { 4926 sccb->ccb_h.status |= CAM_AUTOSENSE_FAIL; 4927 } else { 4928 sccb->ccb_h.status |= CAM_SCSI_STATUS_ERROR; 4929 } 4930 } 4931 4932 sccb->ccb_h.status &= ~CAM_SIM_QUEUED; 4933 status = sccb->ccb_h.status & CAM_STATUS_MASK; 4934 if (status != CAM_REQ_CMP) { 4935 if (status != CAM_SEL_TIMEOUT) 4936 isp_prt(isp, ISP_LOGDEBUG0, "target %d lun %d CAM status 0x%x SCSI status 0x%x", XS_TGT(sccb), XS_LUN(sccb), sccb->ccb_h.status, sccb->scsi_status); 4937 if ((sccb->ccb_h.status & CAM_DEV_QFRZN) == 0) { 4938 sccb->ccb_h.status |= CAM_DEV_QFRZN; 4939 xpt_freeze_devq(sccb->ccb_h.path, 1); 4940 } 4941 } 4942 4943 if ((CAM_DEBUGGED(sccb->ccb_h.path, ISPDDB)) && (sccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 4944 xpt_print(sccb->ccb_h.path, "cam completion status 0x%x\n", sccb->ccb_h.status); 4945 } 4946 4947 XS_CMD_S_DONE(sccb); 4948 if (XS_TACTIVE_P(sccb)) 4949 callout_stop(&PISP_PCMD(sccb)->wdog); 4950 XS_CMD_S_CLEAR(sccb); 4951 isp_free_pcmd(isp, (union ccb *) sccb); 4952 xpt_done((union ccb *) sccb); 4953 } 4954 4955 void 4956 isp_async(ispsoftc_t *isp, ispasync_t cmd, ...) 4957 { 4958 int bus; 4959 static const char prom[] = "Chan %d PortID 0x%06x handle 0x%x role %s %s WWPN 0x%08x%08x"; 4960 static const char prom2[] = "Chan %d PortID 0x%06x handle 0x%x role %s %s tgt %u WWPN 0x%08x%08x"; 4961 char *msg = NULL; 4962 target_id_t tgt; 4963 fcportdb_t *lp; 4964 struct isp_fc *fc; 4965 struct cam_path *tmppath; 4966 va_list ap; 4967 4968 switch (cmd) { 4969 case ISPASYNC_NEW_TGT_PARAMS: 4970 { 4971 struct ccb_trans_settings_scsi *scsi; 4972 struct ccb_trans_settings_spi *spi; 4973 int flags, tgt; 4974 sdparam *sdp; 4975 struct ccb_trans_settings cts; 4976 4977 memset(&cts, 0, sizeof (struct ccb_trans_settings)); 4978 4979 va_start(ap, cmd); 4980 bus = va_arg(ap, int); 4981 tgt = va_arg(ap, int); 4982 va_end(ap); 4983 sdp = SDPARAM(isp, bus); 4984 4985 if (xpt_create_path(&tmppath, NULL, cam_sim_path(ISP_SPI_PC(isp, bus)->sim), tgt, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 4986 isp_prt(isp, ISP_LOGWARN, "isp_async cannot make temp path for %d.%d", tgt, bus); 4987 break; 4988 } 4989 flags = sdp->isp_devparam[tgt].actv_flags; 4990 cts.type = CTS_TYPE_CURRENT_SETTINGS; 4991 cts.protocol = PROTO_SCSI; 4992 cts.transport = XPORT_SPI; 4993 4994 scsi = &cts.proto_specific.scsi; 4995 spi = &cts.xport_specific.spi; 4996 4997 if (flags & DPARM_TQING) { 4998 scsi->valid |= CTS_SCSI_VALID_TQ; 4999 scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB; 5000 } 5001 5002 if (flags & DPARM_DISC) { 5003 spi->valid |= CTS_SPI_VALID_DISC; 5004 spi->flags |= CTS_SPI_FLAGS_DISC_ENB; 5005 } 5006 spi->flags |= CTS_SPI_VALID_BUS_WIDTH; 5007 if (flags & DPARM_WIDE) { 5008 spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT; 5009 } else { 5010 spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT; 5011 } 5012 if (flags & DPARM_SYNC) { 5013 spi->valid |= CTS_SPI_VALID_SYNC_RATE; 5014 spi->valid |= CTS_SPI_VALID_SYNC_OFFSET; 5015 spi->sync_period = sdp->isp_devparam[tgt].actv_period; 5016 spi->sync_offset = sdp->isp_devparam[tgt].actv_offset; 5017 } 5018 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); 5019 xpt_setup_ccb(&cts.ccb_h, tmppath, 1); 5020 xpt_async(AC_TRANSFER_NEG, tmppath, &cts); 5021 xpt_free_path(tmppath); 5022 break; 5023 } 5024 case ISPASYNC_BUS_RESET: 5025 { 5026 va_start(ap, cmd); 5027 bus = va_arg(ap, int); 5028 va_end(ap); 5029 isp_prt(isp, ISP_LOGINFO, "SCSI bus reset on bus %d detected", bus); 5030 if (IS_FC(isp)) { 5031 xpt_async(AC_BUS_RESET, ISP_FC_PC(isp, bus)->path, NULL); 5032 } else { 5033 xpt_async(AC_BUS_RESET, ISP_SPI_PC(isp, bus)->path, NULL); 5034 } 5035 break; 5036 } 5037 case ISPASYNC_LIP: 5038 if (msg == NULL) { 5039 msg = "LIP Received"; 5040 } 5041 /* FALLTHROUGH */ 5042 case ISPASYNC_LOOP_RESET: 5043 if (msg == NULL) { 5044 msg = "LOOP Reset"; 5045 } 5046 /* FALLTHROUGH */ 5047 case ISPASYNC_LOOP_DOWN: 5048 { 5049 if (msg == NULL) { 5050 msg = "LOOP Down"; 5051 } 5052 va_start(ap, cmd); 5053 bus = va_arg(ap, int); 5054 va_end(ap); 5055 5056 FCPARAM(isp, bus)->link_active = 0; 5057 5058 fc = ISP_FC_PC(isp, bus); 5059 if (cmd == ISPASYNC_LOOP_DOWN && fc->ready) { 5060 /* 5061 * We don't do any simq freezing if we are only in target mode 5062 */ 5063 if (FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) { 5064 if (fc->path) { 5065 isp_freeze_loopdown(isp, bus, msg); 5066 } 5067 if (!callout_active(&fc->ldt)) { 5068 callout_reset(&fc->ldt, fc->loop_down_limit * hz, isp_ldt, fc); 5069 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "Starting Loop Down Timer @ %lu", (unsigned long) time_uptime); 5070 } 5071 } 5072 } 5073 isp_prt(isp, ISP_LOGINFO, "Chan %d: %s", bus, msg); 5074 break; 5075 } 5076 case ISPASYNC_LOOP_UP: 5077 va_start(ap, cmd); 5078 bus = va_arg(ap, int); 5079 va_end(ap); 5080 fc = ISP_FC_PC(isp, bus); 5081 /* 5082 * Now we just note that Loop has come up. We don't 5083 * actually do anything because we're waiting for a 5084 * Change Notify before activating the FC cleanup 5085 * thread to look at the state of the loop again. 5086 */ 5087 FCPARAM(isp, bus)->link_active = 1; 5088 fc->loop_dead = 0; 5089 fc->loop_down_time = 0; 5090 isp_prt(isp, ISP_LOGINFO, "Chan %d Loop UP", bus); 5091 break; 5092 case ISPASYNC_DEV_ARRIVED: 5093 va_start(ap, cmd); 5094 bus = va_arg(ap, int); 5095 lp = va_arg(ap, fcportdb_t *); 5096 va_end(ap); 5097 fc = ISP_FC_PC(isp, bus); 5098 lp->reserved = 0; 5099 lp->gone_timer = 0; 5100 if ((FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) && (lp->roles & (SVC3_TGT_ROLE >> SVC3_ROLE_SHIFT))) { 5101 int dbidx = lp - FCPARAM(isp, bus)->portdb; 5102 int i; 5103 5104 for (i = 0; i < MAX_FC_TARG; i++) { 5105 if (i >= FL_ID && i <= SNS_ID) { 5106 continue; 5107 } 5108 if (FCPARAM(isp, bus)->isp_dev_map[i] == 0) { 5109 break; 5110 } 5111 } 5112 if (i < MAX_FC_TARG) { 5113 FCPARAM(isp, bus)->isp_dev_map[i] = dbidx + 1; 5114 lp->dev_map_idx = i + 1; 5115 } else { 5116 isp_prt(isp, ISP_LOGWARN, "out of target ids"); 5117 isp_dump_portdb(isp, bus); 5118 } 5119 } 5120 if (lp->dev_map_idx) { 5121 tgt = lp->dev_map_idx - 1; 5122 isp_prt(isp, ISP_LOGCONFIG, prom2, bus, lp->portid, lp->handle, roles[lp->roles], "arrived at", tgt, (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5123 isp_make_here(isp, bus, tgt); 5124 } else { 5125 isp_prt(isp, ISP_LOGCONFIG, prom, bus, lp->portid, lp->handle, roles[lp->roles], "arrived", (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5126 } 5127 break; 5128 case ISPASYNC_DEV_CHANGED: 5129 va_start(ap, cmd); 5130 bus = va_arg(ap, int); 5131 lp = va_arg(ap, fcportdb_t *); 5132 va_end(ap); 5133 fc = ISP_FC_PC(isp, bus); 5134 lp->reserved = 0; 5135 lp->gone_timer = 0; 5136 if (isp_change_is_bad) { 5137 lp->state = FC_PORTDB_STATE_NIL; 5138 if (lp->dev_map_idx) { 5139 tgt = lp->dev_map_idx - 1; 5140 FCPARAM(isp, bus)->isp_dev_map[tgt] = 0; 5141 lp->dev_map_idx = 0; 5142 isp_prt(isp, ISP_LOGCONFIG, prom3, bus, lp->portid, tgt, "change is bad"); 5143 isp_make_gone(isp, bus, tgt); 5144 } else { 5145 isp_prt(isp, ISP_LOGCONFIG, prom, bus, lp->portid, lp->handle, roles[lp->roles], "changed and departed", 5146 (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5147 } 5148 } else { 5149 lp->portid = lp->new_portid; 5150 lp->roles = lp->new_roles; 5151 if (lp->dev_map_idx) { 5152 int t = lp->dev_map_idx - 1; 5153 FCPARAM(isp, bus)->isp_dev_map[t] = (lp - FCPARAM(isp, bus)->portdb) + 1; 5154 tgt = lp->dev_map_idx - 1; 5155 isp_prt(isp, ISP_LOGCONFIG, prom2, bus, lp->portid, lp->handle, roles[lp->roles], "changed at", tgt, 5156 (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5157 } else { 5158 isp_prt(isp, ISP_LOGCONFIG, prom, bus, lp->portid, lp->handle, roles[lp->roles], "changed", (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5159 } 5160 } 5161 break; 5162 case ISPASYNC_DEV_STAYED: 5163 va_start(ap, cmd); 5164 bus = va_arg(ap, int); 5165 lp = va_arg(ap, fcportdb_t *); 5166 va_end(ap); 5167 if (lp->dev_map_idx) { 5168 tgt = lp->dev_map_idx - 1; 5169 isp_prt(isp, ISP_LOGCONFIG, prom2, bus, lp->portid, lp->handle, roles[lp->roles], "stayed at", tgt, 5170 (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5171 } else { 5172 isp_prt(isp, ISP_LOGCONFIG, prom, bus, lp->portid, lp->handle, roles[lp->roles], "stayed", 5173 (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5174 } 5175 break; 5176 case ISPASYNC_DEV_GONE: 5177 va_start(ap, cmd); 5178 bus = va_arg(ap, int); 5179 lp = va_arg(ap, fcportdb_t *); 5180 va_end(ap); 5181 fc = ISP_FC_PC(isp, bus); 5182 /* 5183 * If this has a virtual target and we haven't marked it 5184 * that we're going to have isp_gdt tell the OS it's gone, 5185 * set the isp_gdt timer running on it. 5186 * 5187 * If it isn't marked that isp_gdt is going to get rid of it, 5188 * announce that it's gone. 5189 * 5190 */ 5191 if (lp->dev_map_idx && lp->reserved == 0) { 5192 lp->reserved = 1; 5193 lp->state = FC_PORTDB_STATE_ZOMBIE; 5194 lp->gone_timer = ISP_FC_PC(isp, bus)->gone_device_time; 5195 if (fc->ready && !callout_active(&fc->gdt)) { 5196 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "Chan %d Starting Gone Device Timer with %u seconds time now %lu", bus, lp->gone_timer, (unsigned long)time_uptime); 5197 callout_reset(&fc->gdt, hz, isp_gdt, fc); 5198 } 5199 tgt = lp->dev_map_idx - 1; 5200 isp_prt(isp, ISP_LOGCONFIG, prom2, bus, lp->portid, lp->handle, roles[lp->roles], "gone zombie at", tgt, (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5201 } else if (lp->reserved == 0) { 5202 isp_prt(isp, ISP_LOGCONFIG, prom, bus, lp->portid, lp->handle, roles[lp->roles], "departed", (uint32_t) (lp->port_wwn >> 32), (uint32_t) lp->port_wwn); 5203 } 5204 break; 5205 case ISPASYNC_CHANGE_NOTIFY: 5206 { 5207 char *msg; 5208 int evt, nphdl, nlstate, reason; 5209 5210 va_start(ap, cmd); 5211 bus = va_arg(ap, int); 5212 evt = va_arg(ap, int); 5213 if (IS_24XX(isp) && evt == ISPASYNC_CHANGE_PDB) { 5214 nphdl = va_arg(ap, int); 5215 nlstate = va_arg(ap, int); 5216 reason = va_arg(ap, int); 5217 } else { 5218 nphdl = NIL_HANDLE; 5219 nlstate = reason = 0; 5220 } 5221 va_end(ap); 5222 fc = ISP_FC_PC(isp, bus); 5223 5224 if (evt == ISPASYNC_CHANGE_PDB) { 5225 msg = "Chan %d Port Database Changed"; 5226 } else if (evt == ISPASYNC_CHANGE_SNS) { 5227 msg = "Chan %d Name Server Database Changed"; 5228 } else { 5229 msg = "Chan %d Other Change Notify"; 5230 } 5231 5232 /* 5233 * If the loop down timer is running, cancel it. 5234 */ 5235 if (fc->ready && callout_active(&fc->ldt)) { 5236 isp_prt(isp, ISP_LOGSANCFG|ISP_LOGDEBUG0, "Stopping Loop Down Timer @ %lu", (unsigned long) time_uptime); 5237 callout_stop(&fc->ldt); 5238 } 5239 isp_prt(isp, ISP_LOGINFO, msg, bus); 5240 if (FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) { 5241 isp_freeze_loopdown(isp, bus, msg); 5242 } 5243 wakeup(fc); 5244 break; 5245 } 5246 #ifdef ISP_TARGET_MODE 5247 case ISPASYNC_TARGET_NOTIFY: 5248 { 5249 isp_notify_t *notify; 5250 va_start(ap, cmd); 5251 notify = va_arg(ap, isp_notify_t *); 5252 va_end(ap); 5253 switch (notify->nt_ncode) { 5254 case NT_ABORT_TASK: 5255 case NT_ABORT_TASK_SET: 5256 case NT_CLEAR_ACA: 5257 case NT_CLEAR_TASK_SET: 5258 case NT_LUN_RESET: 5259 case NT_TARGET_RESET: 5260 /* 5261 * These are task management functions. 5262 */ 5263 isp_handle_platform_target_tmf(isp, notify); 5264 break; 5265 case NT_BUS_RESET: 5266 case NT_LIP_RESET: 5267 case NT_LINK_UP: 5268 case NT_LINK_DOWN: 5269 /* 5270 * No action need be taken here. 5271 */ 5272 break; 5273 case NT_HBA_RESET: 5274 isp_del_all_wwn_entries(isp, ISP_NOCHAN); 5275 break; 5276 case NT_LOGOUT: 5277 /* 5278 * This is device arrival/departure notification 5279 */ 5280 isp_handle_platform_target_notify_ack(isp, notify); 5281 break; 5282 case NT_ARRIVED: 5283 { 5284 struct ac_contract ac; 5285 struct ac_device_changed *fc; 5286 5287 ac.contract_number = AC_CONTRACT_DEV_CHG; 5288 fc = (struct ac_device_changed *) ac.contract_data; 5289 fc->wwpn = notify->nt_wwn; 5290 fc->port = notify->nt_sid; 5291 fc->target = notify->nt_nphdl; 5292 fc->arrived = 1; 5293 xpt_async(AC_CONTRACT, ISP_FC_PC(isp, notify->nt_channel)->path, &ac); 5294 break; 5295 } 5296 case NT_DEPARTED: 5297 { 5298 struct ac_contract ac; 5299 struct ac_device_changed *fc; 5300 5301 ac.contract_number = AC_CONTRACT_DEV_CHG; 5302 fc = (struct ac_device_changed *) ac.contract_data; 5303 fc->wwpn = notify->nt_wwn; 5304 fc->port = notify->nt_sid; 5305 fc->target = notify->nt_nphdl; 5306 fc->arrived = 0; 5307 xpt_async(AC_CONTRACT, ISP_FC_PC(isp, notify->nt_channel)->path, &ac); 5308 break; 5309 } 5310 default: 5311 isp_prt(isp, ISP_LOGALL, "target notify code 0x%x", notify->nt_ncode); 5312 isp_handle_platform_target_notify_ack(isp, notify); 5313 break; 5314 } 5315 break; 5316 } 5317 case ISPASYNC_TARGET_ACTION: 5318 { 5319 isphdr_t *hp; 5320 5321 va_start(ap, cmd); 5322 hp = va_arg(ap, isphdr_t *); 5323 va_end(ap); 5324 switch (hp->rqs_entry_type) { 5325 default: 5326 isp_prt(isp, ISP_LOGWARN, "%s: unhandled target action 0x%x", __func__, hp->rqs_entry_type); 5327 break; 5328 case RQSTYPE_NOTIFY: 5329 if (IS_SCSI(isp)) { 5330 isp_handle_platform_notify_scsi(isp, (in_entry_t *) hp); 5331 } else if (IS_24XX(isp)) { 5332 isp_handle_platform_notify_24xx(isp, (in_fcentry_24xx_t *) hp); 5333 } else { 5334 isp_handle_platform_notify_fc(isp, (in_fcentry_t *) hp); 5335 } 5336 break; 5337 case RQSTYPE_ATIO: 5338 if (IS_24XX(isp)) { 5339 isp_handle_platform_atio7(isp, (at7_entry_t *) hp); 5340 } else { 5341 isp_handle_platform_atio(isp, (at_entry_t *) hp); 5342 } 5343 break; 5344 case RQSTYPE_ATIO2: 5345 isp_handle_platform_atio2(isp, (at2_entry_t *) hp); 5346 break; 5347 case RQSTYPE_CTIO7: 5348 case RQSTYPE_CTIO3: 5349 case RQSTYPE_CTIO2: 5350 case RQSTYPE_CTIO: 5351 isp_handle_platform_ctio(isp, hp); 5352 break; 5353 case RQSTYPE_ABTS_RCVD: 5354 { 5355 abts_t *abts = (abts_t *)hp; 5356 isp_notify_t notify, *nt = ¬ify; 5357 tstate_t *tptr; 5358 fcportdb_t *lp; 5359 uint16_t chan; 5360 uint32_t sid, did; 5361 5362 did = (abts->abts_did_hi << 16) | abts->abts_did_lo; 5363 sid = (abts->abts_sid_hi << 16) | abts->abts_sid_lo; 5364 ISP_MEMZERO(nt, sizeof (isp_notify_t)); 5365 5366 nt->nt_hba = isp; 5367 nt->nt_did = did; 5368 nt->nt_nphdl = abts->abts_nphdl; 5369 nt->nt_sid = sid; 5370 isp_find_chan_by_did(isp, did, &chan); 5371 if (chan == ISP_NOCHAN) { 5372 nt->nt_tgt = TGT_ANY; 5373 } else { 5374 nt->nt_tgt = FCPARAM(isp, chan)->isp_wwpn; 5375 if (isp_find_pdb_by_loopid(isp, chan, abts->abts_nphdl, &lp)) { 5376 nt->nt_wwn = lp->port_wwn; 5377 } else { 5378 nt->nt_wwn = INI_ANY; 5379 } 5380 } 5381 /* 5382 * Try hard to find the lun for this command. 5383 */ 5384 tptr = get_lun_statep_from_tag(isp, chan, abts->abts_rxid_task); 5385 if (tptr) { 5386 nt->nt_lun = xpt_path_lun_id(tptr->owner); 5387 rls_lun_statep(isp, tptr); 5388 } else { 5389 nt->nt_lun = LUN_ANY; 5390 } 5391 nt->nt_need_ack = 1; 5392 nt->nt_tagval = abts->abts_rxid_task; 5393 nt->nt_tagval |= (((uint64_t) abts->abts_rxid_abts) << 32); 5394 if (abts->abts_rxid_task == ISP24XX_NO_TASK) { 5395 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)", 5396 abts->abts_rxid_abts, abts->abts_nphdl, sid, abts->abts_rx_id, abts->abts_ox_id); 5397 } else { 5398 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)", 5399 abts->abts_rxid_abts, abts->abts_nphdl, sid, abts->abts_rxid_task, abts->abts_rx_id, abts->abts_ox_id); 5400 } 5401 nt->nt_channel = chan; 5402 nt->nt_ncode = NT_ABORT_TASK; 5403 nt->nt_lreserved = hp; 5404 isp_handle_platform_target_tmf(isp, nt); 5405 break; 5406 } 5407 case RQSTYPE_ENABLE_LUN: 5408 case RQSTYPE_MODIFY_LUN: 5409 isp_ledone(isp, (lun_entry_t *) hp); 5410 break; 5411 } 5412 break; 5413 } 5414 #endif 5415 case ISPASYNC_FW_CRASH: 5416 { 5417 uint16_t mbox1, mbox6; 5418 mbox1 = ISP_READ(isp, OUTMAILBOX1); 5419 if (IS_DUALBUS(isp)) { 5420 mbox6 = ISP_READ(isp, OUTMAILBOX6); 5421 } else { 5422 mbox6 = 0; 5423 } 5424 isp_prt(isp, ISP_LOGERR, "Internal Firmware Error on bus %d @ RISC Address 0x%x", mbox6, mbox1); 5425 mbox1 = isp->isp_osinfo.mbox_sleep_ok; 5426 isp->isp_osinfo.mbox_sleep_ok = 0; 5427 isp_reinit(isp, 1); 5428 isp->isp_osinfo.mbox_sleep_ok = mbox1; 5429 isp_async(isp, ISPASYNC_FW_RESTARTED, NULL); 5430 break; 5431 } 5432 default: 5433 isp_prt(isp, ISP_LOGERR, "unknown isp_async event %d", cmd); 5434 break; 5435 } 5436 } 5437 5438 5439 /* 5440 * Locks are held before coming here. 5441 */ 5442 void 5443 isp_uninit(ispsoftc_t *isp) 5444 { 5445 if (IS_24XX(isp)) { 5446 ISP_WRITE(isp, BIU2400_HCCR, HCCR_2400_CMD_RESET); 5447 } else { 5448 ISP_WRITE(isp, HCCR, HCCR_CMD_RESET); 5449 } 5450 ISP_DISABLE_INTS(isp); 5451 } 5452 5453 /* 5454 * When we want to get the 'default' WWNs (when lacking NVRAM), we pick them 5455 * up from our platform default (defww{p|n}n) and morph them based upon 5456 * channel. 5457 * 5458 * When we want to get the 'active' WWNs, we get NVRAM WWNs and then morph them 5459 * based upon channel. 5460 */ 5461 5462 uint64_t 5463 isp_default_wwn(ispsoftc_t * isp, int chan, int isactive, int iswwnn) 5464 { 5465 uint64_t seed; 5466 struct isp_fc *fc = ISP_FC_PC(isp, chan); 5467 5468 /* 5469 * If we're asking for a active WWN, the default overrides get 5470 * returned, otherwise the NVRAM value is picked. 5471 * 5472 * If we're asking for a default WWN, we just pick the default override. 5473 */ 5474 if (isactive) { 5475 seed = iswwnn ? fc->def_wwnn : fc->def_wwpn; 5476 if (seed) { 5477 return (seed); 5478 } 5479 seed = iswwnn ? FCPARAM(isp, chan)->isp_wwnn_nvram : FCPARAM(isp, chan)->isp_wwpn_nvram; 5480 if (seed) { 5481 return (seed); 5482 } 5483 return (0x400000007F000009ull); 5484 } else { 5485 seed = iswwnn ? fc->def_wwnn : fc->def_wwpn; 5486 } 5487 5488 5489 /* 5490 * For channel zero just return what we have. For either ACTIVE or 5491 * DEFAULT cases, we depend on default override of NVRAM values for 5492 * channel zero. 5493 */ 5494 if (chan == 0) { 5495 return (seed); 5496 } 5497 5498 /* 5499 * For other channels, we are doing one of three things: 5500 * 5501 * 1. If what we have now is non-zero, return it. Otherwise we morph 5502 * values from channel 0. 2. If we're here for a WWPN we synthesize 5503 * it if Channel 0's wwpn has a type 2 NAA. 3. If we're here for a 5504 * WWNN we synthesize it if Channel 0's wwnn has a type 2 NAA. 5505 */ 5506 5507 if (seed) { 5508 return (seed); 5509 } 5510 if (isactive) { 5511 seed = iswwnn ? FCPARAM(isp, 0)->isp_wwnn_nvram : FCPARAM(isp, 0)->isp_wwpn_nvram; 5512 } else { 5513 seed = iswwnn ? ISP_FC_PC(isp, 0)->def_wwnn : ISP_FC_PC(isp, 0)->def_wwpn; 5514 } 5515 5516 if (((seed >> 60) & 0xf) == 2) { 5517 /* 5518 * The type 2 NAA fields for QLogic cards appear be laid out 5519 * thusly: 5520 * 5521 * bits 63..60 NAA == 2 bits 59..57 unused/zero bit 56 5522 * port (1) or node (0) WWN distinguishor bit 48 5523 * physical port on dual-port chips (23XX/24XX) 5524 * 5525 * This is somewhat nutty, particularly since bit 48 is 5526 * irrelevant as they assign separate serial numbers to 5527 * different physical ports anyway. 5528 * 5529 * We'll stick our channel number plus one first into bits 5530 * 57..59 and thence into bits 52..55 which allows for 8 bits 5531 * of channel which is comfortably more than our maximum 5532 * (126) now. 5533 */ 5534 seed &= ~0x0FF0000000000000ULL; 5535 if (iswwnn == 0) { 5536 seed |= ((uint64_t) (chan + 1) & 0xf) << 56; 5537 seed |= ((uint64_t) ((chan + 1) >> 4) & 0xf) << 52; 5538 } 5539 } else { 5540 seed = 0; 5541 } 5542 return (seed); 5543 } 5544 5545 void 5546 isp_prt(ispsoftc_t *isp, int level, const char *fmt, ...) 5547 { 5548 int loc; 5549 char lbuf[128]; 5550 va_list ap; 5551 5552 if (level != ISP_LOGALL && (level & isp->isp_dblev) == 0) { 5553 return; 5554 } 5555 sprintf(lbuf, "%s: ", device_get_nameunit(isp->isp_dev)); 5556 loc = strlen(lbuf); 5557 va_start(ap, fmt); 5558 vsnprintf(&lbuf[loc], sizeof (lbuf) - loc - 1, fmt, ap); 5559 va_end(ap); 5560 printf("%s\n", lbuf); 5561 } 5562 5563 void 5564 isp_xs_prt(ispsoftc_t *isp, XS_T *xs, int level, const char *fmt, ...) 5565 { 5566 va_list ap; 5567 if (level != ISP_LOGALL && (level & isp->isp_dblev) == 0) { 5568 return; 5569 } 5570 xpt_print_path(xs->ccb_h.path); 5571 va_start(ap, fmt); 5572 vprintf(fmt, ap); 5573 va_end(ap); 5574 printf("\n"); 5575 } 5576 5577 uint64_t 5578 isp_nanotime_sub(struct timespec *b, struct timespec *a) 5579 { 5580 uint64_t elapsed; 5581 struct timespec x = *b; 5582 timespecsub(&x, a); 5583 elapsed = GET_NANOSEC(&x); 5584 if (elapsed == 0) 5585 elapsed++; 5586 return (elapsed); 5587 } 5588 5589 int 5590 isp_mbox_acquire(ispsoftc_t *isp) 5591 { 5592 if (isp->isp_osinfo.mboxbsy) { 5593 return (1); 5594 } else { 5595 isp->isp_osinfo.mboxcmd_done = 0; 5596 isp->isp_osinfo.mboxbsy = 1; 5597 return (0); 5598 } 5599 } 5600 5601 void 5602 isp_mbox_wait_complete(ispsoftc_t *isp, mbreg_t *mbp) 5603 { 5604 unsigned int usecs = mbp->timeout; 5605 unsigned int max, olim, ilim; 5606 5607 if (usecs == 0) { 5608 usecs = MBCMD_DEFAULT_TIMEOUT; 5609 } 5610 max = isp->isp_mbxwrk0 + 1; 5611 5612 if (isp->isp_osinfo.mbox_sleep_ok) { 5613 unsigned int ms = (usecs + 999) / 1000; 5614 5615 isp->isp_osinfo.mbox_sleep_ok = 0; 5616 isp->isp_osinfo.mbox_sleeping = 1; 5617 for (olim = 0; olim < max; olim++) { 5618 msleep(&isp->isp_mbxworkp, &isp->isp_osinfo.lock, PRIBIO, "ispmbx_sleep", isp_mstohz(ms)); 5619 if (isp->isp_osinfo.mboxcmd_done) { 5620 break; 5621 } 5622 } 5623 isp->isp_osinfo.mbox_sleep_ok = 1; 5624 isp->isp_osinfo.mbox_sleeping = 0; 5625 } else { 5626 for (olim = 0; olim < max; olim++) { 5627 for (ilim = 0; ilim < usecs; ilim += 100) { 5628 uint32_t isr; 5629 uint16_t sema, mbox; 5630 if (isp->isp_osinfo.mboxcmd_done) { 5631 break; 5632 } 5633 if (ISP_READ_ISR(isp, &isr, &sema, &mbox)) { 5634 isp_intr(isp, isr, sema, mbox); 5635 if (isp->isp_osinfo.mboxcmd_done) { 5636 break; 5637 } 5638 } 5639 ISP_DELAY(100); 5640 } 5641 if (isp->isp_osinfo.mboxcmd_done) { 5642 break; 5643 } 5644 } 5645 } 5646 if (isp->isp_osinfo.mboxcmd_done == 0) { 5647 isp_prt(isp, ISP_LOGWARN, "%s Mailbox Command (0x%x) Timeout (%uus) (started @ %s:%d)", 5648 isp->isp_osinfo.mbox_sleep_ok? "Interrupting" : "Polled", isp->isp_lastmbxcmd, usecs, mbp->func, mbp->lineno); 5649 mbp->param[0] = MBOX_TIMEOUT; 5650 isp->isp_osinfo.mboxcmd_done = 1; 5651 } 5652 } 5653 5654 void 5655 isp_mbox_notify_done(ispsoftc_t *isp) 5656 { 5657 if (isp->isp_osinfo.mbox_sleeping) { 5658 wakeup(&isp->isp_mbxworkp); 5659 } 5660 isp->isp_osinfo.mboxcmd_done = 1; 5661 } 5662 5663 void 5664 isp_mbox_release(ispsoftc_t *isp) 5665 { 5666 isp->isp_osinfo.mboxbsy = 0; 5667 } 5668 5669 int 5670 isp_fc_scratch_acquire(ispsoftc_t *isp, int chan) 5671 { 5672 int ret = 0; 5673 if (isp->isp_osinfo.pc.fc[chan].fcbsy) { 5674 ret = -1; 5675 } else { 5676 isp->isp_osinfo.pc.fc[chan].fcbsy = 1; 5677 } 5678 return (ret); 5679 } 5680 5681 int 5682 isp_mstohz(int ms) 5683 { 5684 int hz; 5685 struct timeval t; 5686 t.tv_sec = ms / 1000; 5687 t.tv_usec = (ms % 1000) * 1000; 5688 hz = tvtohz(&t); 5689 if (hz < 0) { 5690 hz = 0x7fffffff; 5691 } 5692 if (hz == 0) { 5693 hz = 1; 5694 } 5695 return (hz); 5696 } 5697 5698 void 5699 isp_platform_intr(void *arg) 5700 { 5701 ispsoftc_t *isp = arg; 5702 uint32_t isr; 5703 uint16_t sema, mbox; 5704 5705 ISP_LOCK(isp); 5706 isp->isp_intcnt++; 5707 if (ISP_READ_ISR(isp, &isr, &sema, &mbox) == 0) { 5708 isp->isp_intbogus++; 5709 } else { 5710 isp_intr(isp, isr, sema, mbox); 5711 } 5712 ISP_UNLOCK(isp); 5713 } 5714 5715 void 5716 isp_common_dmateardown(ispsoftc_t *isp, struct ccb_scsiio *csio, uint32_t hdl) 5717 { 5718 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 5719 bus_dmamap_sync(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap, BUS_DMASYNC_POSTREAD); 5720 } else { 5721 bus_dmamap_sync(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap, BUS_DMASYNC_POSTWRITE); 5722 } 5723 bus_dmamap_unload(isp->isp_osinfo.dmat, PISP_PCMD(csio)->dmap); 5724 } 5725 5726 void 5727 isp_timer(void *arg) 5728 { 5729 ispsoftc_t *isp = arg; 5730 #ifdef ISP_TARGET_MODE 5731 isp_tmcmd_restart(isp); 5732 #endif 5733 callout_reset(&isp->isp_osinfo.tmo, hz, isp_timer, isp); 5734 } 5735