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