1 /*- 2 * FreeBSD/CAM specific routines for LSI '909 FC adapters. 3 * FreeBSD Version. 4 * 5 * Copyright (c) 2000, 2001 by Greg Ansley 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice immediately at the beginning of the file, without modification, 12 * this list of conditions, and the following disclaimer. 13 * 2. The name of the author may not be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 /*- 29 * Copyright (c) 2002, 2006 by Matthew Jacob 30 * All rights reserved. 31 * 32 * Redistribution and use in source and binary forms, with or without 33 * modification, are permitted provided that the following conditions are 34 * met: 35 * 1. Redistributions of source code must retain the above copyright 36 * notice, this list of conditions and the following disclaimer. 37 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 38 * substantially similar to the "NO WARRANTY" disclaimer below 39 * ("Disclaimer") and any redistribution must be conditioned upon including 40 * a substantially similar Disclaimer requirement for further binary 41 * redistribution. 42 * 3. Neither the names of the above listed copyright holders nor the names 43 * of any contributors may be used to endorse or promote products derived 44 * from this software without specific prior written permission. 45 * 46 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 47 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 48 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 49 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 50 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 51 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 52 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 53 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 54 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 55 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE COPYRIGHT 56 * OWNER OR CONTRIBUTOR IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 57 * 58 * Support from Chris Ellsworth in order to make SAS adapters work 59 * is gratefully acknowledged. 60 * 61 * Support from LSI-Logic has also gone a great deal toward making this a 62 * workable subsystem and is gratefully acknowledged. 63 */ 64 /*- 65 * Copyright (c) 2004, Avid Technology, Inc. and its contributors. 66 * Copyright (c) 2005, WHEEL Sp. z o.o. 67 * Copyright (c) 2004, 2005 Justin T. Gibbs 68 * All rights reserved. 69 * 70 * Redistribution and use in source and binary forms, with or without 71 * modification, are permitted provided that the following conditions are 72 * met: 73 * 1. Redistributions of source code must retain the above copyright 74 * notice, this list of conditions and the following disclaimer. 75 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 76 * substantially similar to the "NO WARRANTY" disclaimer below 77 * ("Disclaimer") and any redistribution must be conditioned upon including 78 * a substantially similar Disclaimer requirement for further binary 79 * redistribution. 80 * 3. Neither the names of the above listed copyright holders nor the names 81 * of any contributors may be used to endorse or promote products derived 82 * from this software without specific prior written permission. 83 * 84 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 85 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 86 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 87 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 88 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 89 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 90 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 91 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 92 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 93 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE COPYRIGHT 94 * OWNER OR CONTRIBUTOR IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 95 */ 96 #include <sys/cdefs.h> 97 __FBSDID("$FreeBSD$"); 98 99 #include <dev/mpt/mpt.h> 100 #include <dev/mpt/mpt_cam.h> 101 #include <dev/mpt/mpt_raid.h> 102 103 #include "dev/mpt/mpilib/mpi_ioc.h" /* XXX Fix Event Handling!!! */ 104 #include "dev/mpt/mpilib/mpi_init.h" 105 #include "dev/mpt/mpilib/mpi_targ.h" 106 #include "dev/mpt/mpilib/mpi_fc.h" 107 #include "dev/mpt/mpilib/mpi_sas.h" 108 109 #include <sys/callout.h> 110 #include <sys/kthread.h> 111 #include <sys/sysctl.h> 112 113 static void mpt_poll(struct cam_sim *); 114 static timeout_t mpt_timeout; 115 static void mpt_action(struct cam_sim *, union ccb *); 116 static int 117 mpt_get_spi_settings(struct mpt_softc *, struct ccb_trans_settings *); 118 static void mpt_setwidth(struct mpt_softc *, int, int); 119 static void mpt_setsync(struct mpt_softc *, int, int, int); 120 static int mpt_update_spi_config(struct mpt_softc *, int); 121 122 static mpt_reply_handler_t mpt_scsi_reply_handler; 123 static mpt_reply_handler_t mpt_scsi_tmf_reply_handler; 124 static mpt_reply_handler_t mpt_fc_els_reply_handler; 125 static int mpt_scsi_reply_frame_handler(struct mpt_softc *, request_t *, 126 MSG_DEFAULT_REPLY *); 127 static int mpt_bus_reset(struct mpt_softc *, target_id_t, lun_id_t, int); 128 static int mpt_fc_reset_link(struct mpt_softc *, int); 129 130 static int mpt_spawn_recovery_thread(struct mpt_softc *mpt); 131 static void mpt_terminate_recovery_thread(struct mpt_softc *mpt); 132 static void mpt_recovery_thread(void *arg); 133 static void mpt_recover_commands(struct mpt_softc *mpt); 134 135 static int mpt_scsi_send_tmf(struct mpt_softc *, u_int, u_int, u_int, 136 target_id_t, lun_id_t, u_int, int); 137 138 static void mpt_fc_post_els(struct mpt_softc *mpt, request_t *, int); 139 static void mpt_post_target_command(struct mpt_softc *, request_t *, int); 140 static int mpt_add_els_buffers(struct mpt_softc *mpt); 141 static int mpt_add_target_commands(struct mpt_softc *mpt); 142 static int mpt_enable_lun(struct mpt_softc *, target_id_t, lun_id_t); 143 static int mpt_disable_lun(struct mpt_softc *, target_id_t, lun_id_t); 144 static void mpt_target_start_io(struct mpt_softc *, union ccb *); 145 static cam_status mpt_abort_target_ccb(struct mpt_softc *, union ccb *); 146 static int mpt_abort_target_cmd(struct mpt_softc *, request_t *); 147 static void mpt_scsi_tgt_status(struct mpt_softc *, union ccb *, request_t *, 148 uint8_t, uint8_t const *, u_int); 149 static void 150 mpt_scsi_tgt_tsk_mgmt(struct mpt_softc *, request_t *, mpt_task_mgmt_t, 151 tgt_resource_t *, int); 152 static void mpt_tgt_dump_tgt_state(struct mpt_softc *, request_t *); 153 static void mpt_tgt_dump_req_state(struct mpt_softc *, request_t *); 154 static mpt_reply_handler_t mpt_scsi_tgt_reply_handler; 155 static mpt_reply_handler_t mpt_sata_pass_reply_handler; 156 157 static uint32_t scsi_io_handler_id = MPT_HANDLER_ID_NONE; 158 static uint32_t scsi_tmf_handler_id = MPT_HANDLER_ID_NONE; 159 static uint32_t fc_els_handler_id = MPT_HANDLER_ID_NONE; 160 static uint32_t sata_pass_handler_id = MPT_HANDLER_ID_NONE; 161 162 static mpt_probe_handler_t mpt_cam_probe; 163 static mpt_attach_handler_t mpt_cam_attach; 164 static mpt_enable_handler_t mpt_cam_enable; 165 static mpt_ready_handler_t mpt_cam_ready; 166 static mpt_event_handler_t mpt_cam_event; 167 static mpt_reset_handler_t mpt_cam_ioc_reset; 168 static mpt_detach_handler_t mpt_cam_detach; 169 170 static struct mpt_personality mpt_cam_personality = 171 { 172 .name = "mpt_cam", 173 .probe = mpt_cam_probe, 174 .attach = mpt_cam_attach, 175 .enable = mpt_cam_enable, 176 .ready = mpt_cam_ready, 177 .event = mpt_cam_event, 178 .reset = mpt_cam_ioc_reset, 179 .detach = mpt_cam_detach, 180 }; 181 182 DECLARE_MPT_PERSONALITY(mpt_cam, SI_ORDER_SECOND); 183 MODULE_DEPEND(mpt_cam, cam, 1, 1, 1); 184 185 int mpt_enable_sata_wc = -1; 186 TUNABLE_INT("hw.mpt.enable_sata_wc", &mpt_enable_sata_wc); 187 188 static int 189 mpt_cam_probe(struct mpt_softc *mpt) 190 { 191 int role; 192 193 /* 194 * Only attach to nodes that support the initiator or target role 195 * (or want to) or have RAID physical devices that need CAM pass-thru 196 * support. 197 */ 198 if (mpt->do_cfg_role) { 199 role = mpt->cfg_role; 200 } else { 201 role = mpt->role; 202 } 203 if ((role & (MPT_ROLE_TARGET|MPT_ROLE_INITIATOR)) != 0 || 204 (mpt->ioc_page2 != NULL && mpt->ioc_page2->MaxPhysDisks != 0)) { 205 return (0); 206 } 207 return (ENODEV); 208 } 209 210 static int 211 mpt_cam_attach(struct mpt_softc *mpt) 212 { 213 struct cam_devq *devq; 214 mpt_handler_t handler; 215 int maxq; 216 int error; 217 218 MPT_LOCK(mpt); 219 TAILQ_INIT(&mpt->request_timeout_list); 220 maxq = (mpt->ioc_facts.GlobalCredits < MPT_MAX_REQUESTS(mpt))? 221 mpt->ioc_facts.GlobalCredits : MPT_MAX_REQUESTS(mpt); 222 223 handler.reply_handler = mpt_scsi_reply_handler; 224 error = mpt_register_handler(mpt, MPT_HANDLER_REPLY, handler, 225 &scsi_io_handler_id); 226 if (error != 0) { 227 MPT_UNLOCK(mpt); 228 goto cleanup; 229 } 230 231 handler.reply_handler = mpt_scsi_tmf_reply_handler; 232 error = mpt_register_handler(mpt, MPT_HANDLER_REPLY, handler, 233 &scsi_tmf_handler_id); 234 if (error != 0) { 235 MPT_UNLOCK(mpt); 236 goto cleanup; 237 } 238 239 /* 240 * If we're fibre channel and could support target mode, we register 241 * an ELS reply handler and give it resources. 242 */ 243 if (mpt->is_fc && (mpt->role & MPT_ROLE_TARGET) != 0) { 244 handler.reply_handler = mpt_fc_els_reply_handler; 245 error = mpt_register_handler(mpt, MPT_HANDLER_REPLY, handler, 246 &fc_els_handler_id); 247 if (error != 0) { 248 MPT_UNLOCK(mpt); 249 goto cleanup; 250 } 251 if (mpt_add_els_buffers(mpt) == FALSE) { 252 error = ENOMEM; 253 MPT_UNLOCK(mpt); 254 goto cleanup; 255 } 256 maxq -= mpt->els_cmds_allocated; 257 } 258 259 /* 260 * If we support target mode, we register a reply handler for it, 261 * but don't add command resources until we actually enable target 262 * mode. 263 */ 264 if (mpt->is_fc && (mpt->role & MPT_ROLE_TARGET) != 0) { 265 handler.reply_handler = mpt_scsi_tgt_reply_handler; 266 error = mpt_register_handler(mpt, MPT_HANDLER_REPLY, handler, 267 &mpt->scsi_tgt_handler_id); 268 if (error != 0) { 269 MPT_UNLOCK(mpt); 270 goto cleanup; 271 } 272 } 273 274 if (mpt->is_sas) { 275 handler.reply_handler = mpt_sata_pass_reply_handler; 276 error = mpt_register_handler(mpt, MPT_HANDLER_REPLY, handler, 277 &sata_pass_handler_id); 278 if (error != 0) { 279 MPT_UNLOCK(mpt); 280 goto cleanup; 281 } 282 } 283 284 /* 285 * We keep one request reserved for timeout TMF requests. 286 */ 287 mpt->tmf_req = mpt_get_request(mpt, FALSE); 288 if (mpt->tmf_req == NULL) { 289 mpt_prt(mpt, "Unable to allocate dedicated TMF request!\n"); 290 error = ENOMEM; 291 MPT_UNLOCK(mpt); 292 goto cleanup; 293 } 294 295 /* 296 * Mark the request as free even though not on the free list. 297 * There is only one TMF request allowed to be outstanding at 298 * a time and the TMF routines perform their own allocation 299 * tracking using the standard state flags. 300 */ 301 mpt->tmf_req->state = REQ_STATE_FREE; 302 maxq--; 303 304 /* 305 * The rest of this is CAM foo, for which we need to drop our lock 306 */ 307 MPT_UNLOCK(mpt); 308 309 if (mpt_spawn_recovery_thread(mpt) != 0) { 310 mpt_prt(mpt, "Unable to spawn recovery thread!\n"); 311 error = ENOMEM; 312 goto cleanup; 313 } 314 315 /* 316 * Create the device queue for our SIM(s). 317 */ 318 devq = cam_simq_alloc(maxq); 319 if (devq == NULL) { 320 mpt_prt(mpt, "Unable to allocate CAM SIMQ!\n"); 321 error = ENOMEM; 322 goto cleanup; 323 } 324 325 /* 326 * Construct our SIM entry. 327 */ 328 mpt->sim = 329 mpt_sim_alloc(mpt_action, mpt_poll, "mpt", mpt, 1, maxq, devq); 330 if (mpt->sim == NULL) { 331 mpt_prt(mpt, "Unable to allocate CAM SIM!\n"); 332 cam_simq_free(devq); 333 error = ENOMEM; 334 goto cleanup; 335 } 336 337 /* 338 * Register exactly this bus. 339 */ 340 MPT_LOCK(mpt); 341 if (xpt_bus_register(mpt->sim, mpt->dev, 0) != CAM_SUCCESS) { 342 mpt_prt(mpt, "Bus registration Failed!\n"); 343 error = ENOMEM; 344 MPT_UNLOCK(mpt); 345 goto cleanup; 346 } 347 348 if (xpt_create_path(&mpt->path, NULL, cam_sim_path(mpt->sim), 349 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 350 mpt_prt(mpt, "Unable to allocate Path!\n"); 351 error = ENOMEM; 352 MPT_UNLOCK(mpt); 353 goto cleanup; 354 } 355 MPT_UNLOCK(mpt); 356 357 /* 358 * Only register a second bus for RAID physical 359 * devices if the controller supports RAID. 360 */ 361 if (mpt->ioc_page2 == NULL || mpt->ioc_page2->MaxPhysDisks == 0) { 362 return (0); 363 } 364 365 /* 366 * Create a "bus" to export all hidden disks to CAM. 367 */ 368 mpt->phydisk_sim = 369 mpt_sim_alloc(mpt_action, mpt_poll, "mpt", mpt, 1, maxq, devq); 370 if (mpt->phydisk_sim == NULL) { 371 mpt_prt(mpt, "Unable to allocate Physical Disk CAM SIM!\n"); 372 error = ENOMEM; 373 goto cleanup; 374 } 375 376 /* 377 * Register this bus. 378 */ 379 MPT_LOCK(mpt); 380 if (xpt_bus_register(mpt->phydisk_sim, mpt->dev, 1) != 381 CAM_SUCCESS) { 382 mpt_prt(mpt, "Physical Disk Bus registration Failed!\n"); 383 error = ENOMEM; 384 MPT_UNLOCK(mpt); 385 goto cleanup; 386 } 387 388 if (xpt_create_path(&mpt->phydisk_path, NULL, 389 cam_sim_path(mpt->phydisk_sim), 390 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 391 mpt_prt(mpt, "Unable to allocate Physical Disk Path!\n"); 392 error = ENOMEM; 393 MPT_UNLOCK(mpt); 394 goto cleanup; 395 } 396 MPT_UNLOCK(mpt); 397 mpt_lprt(mpt, MPT_PRT_DEBUG, "attached cam\n"); 398 return (0); 399 400 cleanup: 401 mpt_cam_detach(mpt); 402 return (error); 403 } 404 405 /* 406 * Read FC configuration information 407 */ 408 static int 409 mpt_read_config_info_fc(struct mpt_softc *mpt) 410 { 411 struct sysctl_ctx_list *ctx; 412 struct sysctl_oid *tree; 413 char *topology = NULL; 414 int rv; 415 416 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_FC_PORT, 0, 417 0, &mpt->mpt_fcport_page0.Header, FALSE, 5000); 418 if (rv) { 419 return (-1); 420 } 421 mpt_lprt(mpt, MPT_PRT_DEBUG, "FC Port Page 0 Header: %x %x %x %x\n", 422 mpt->mpt_fcport_page0.Header.PageVersion, 423 mpt->mpt_fcport_page0.Header.PageLength, 424 mpt->mpt_fcport_page0.Header.PageNumber, 425 mpt->mpt_fcport_page0.Header.PageType); 426 427 428 rv = mpt_read_cur_cfg_page(mpt, 0, &mpt->mpt_fcport_page0.Header, 429 sizeof(mpt->mpt_fcport_page0), FALSE, 5000); 430 if (rv) { 431 mpt_prt(mpt, "failed to read FC Port Page 0\n"); 432 return (-1); 433 } 434 mpt2host_config_page_fc_port_0(&mpt->mpt_fcport_page0); 435 436 switch (mpt->mpt_fcport_page0.CurrentSpeed) { 437 case MPI_FCPORTPAGE0_CURRENT_SPEED_1GBIT: 438 mpt->mpt_fcport_speed = 1; 439 break; 440 case MPI_FCPORTPAGE0_CURRENT_SPEED_2GBIT: 441 mpt->mpt_fcport_speed = 2; 442 break; 443 case MPI_FCPORTPAGE0_CURRENT_SPEED_10GBIT: 444 mpt->mpt_fcport_speed = 10; 445 break; 446 case MPI_FCPORTPAGE0_CURRENT_SPEED_4GBIT: 447 mpt->mpt_fcport_speed = 4; 448 break; 449 default: 450 mpt->mpt_fcport_speed = 0; 451 break; 452 } 453 454 switch (mpt->mpt_fcport_page0.Flags & 455 MPI_FCPORTPAGE0_FLAGS_ATTACH_TYPE_MASK) { 456 case MPI_FCPORTPAGE0_FLAGS_ATTACH_NO_INIT: 457 mpt->mpt_fcport_speed = 0; 458 topology = "<NO LOOP>"; 459 break; 460 case MPI_FCPORTPAGE0_FLAGS_ATTACH_POINT_TO_POINT: 461 topology = "N-Port"; 462 break; 463 case MPI_FCPORTPAGE0_FLAGS_ATTACH_PRIVATE_LOOP: 464 topology = "NL-Port"; 465 break; 466 case MPI_FCPORTPAGE0_FLAGS_ATTACH_FABRIC_DIRECT: 467 topology = "F-Port"; 468 break; 469 case MPI_FCPORTPAGE0_FLAGS_ATTACH_PUBLIC_LOOP: 470 topology = "FL-Port"; 471 break; 472 default: 473 mpt->mpt_fcport_speed = 0; 474 topology = "?"; 475 break; 476 } 477 478 mpt->scinfo.fc.wwnn = ((uint64_t)mpt->mpt_fcport_page0.WWNN.High << 32) 479 | mpt->mpt_fcport_page0.WWNN.Low; 480 mpt->scinfo.fc.wwpn = ((uint64_t)mpt->mpt_fcport_page0.WWPN.High << 32) 481 | mpt->mpt_fcport_page0.WWPN.Low; 482 mpt->scinfo.fc.portid = mpt->mpt_fcport_page0.PortIdentifier; 483 484 mpt_lprt(mpt, MPT_PRT_INFO, 485 "FC Port Page 0: Topology <%s> WWNN 0x%16jx WWPN 0x%16jx " 486 "Speed %u-Gbit\n", topology, 487 (uintmax_t)mpt->scinfo.fc.wwnn, (uintmax_t)mpt->scinfo.fc.wwpn, 488 mpt->mpt_fcport_speed); 489 MPT_UNLOCK(mpt); 490 ctx = device_get_sysctl_ctx(mpt->dev); 491 tree = device_get_sysctl_tree(mpt->dev); 492 493 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, 494 "wwnn", CTLFLAG_RD, &mpt->scinfo.fc.wwnn, 495 "World Wide Node Name"); 496 497 SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, 498 "wwpn", CTLFLAG_RD, &mpt->scinfo.fc.wwpn, 499 "World Wide Port Name"); 500 501 MPT_LOCK(mpt); 502 return (0); 503 } 504 505 /* 506 * Set FC configuration information. 507 */ 508 static int 509 mpt_set_initial_config_fc(struct mpt_softc *mpt) 510 { 511 CONFIG_PAGE_FC_PORT_1 fc; 512 U32 fl; 513 int r, doit = 0; 514 int role; 515 516 r = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_FC_PORT, 1, 0, 517 &fc.Header, FALSE, 5000); 518 if (r) { 519 mpt_prt(mpt, "failed to read FC page 1 header\n"); 520 return (mpt_fc_reset_link(mpt, 1)); 521 } 522 523 r = mpt_read_cfg_page(mpt, MPI_CONFIG_ACTION_PAGE_READ_NVRAM, 0, 524 &fc.Header, sizeof (fc), FALSE, 5000); 525 if (r) { 526 mpt_prt(mpt, "failed to read FC page 1\n"); 527 return (mpt_fc_reset_link(mpt, 1)); 528 } 529 mpt2host_config_page_fc_port_1(&fc); 530 531 /* 532 * Check our flags to make sure we support the role we want. 533 */ 534 doit = 0; 535 role = 0; 536 fl = fc.Flags; 537 538 if (fl & MPI_FCPORTPAGE1_FLAGS_PROT_FCP_INIT) { 539 role |= MPT_ROLE_INITIATOR; 540 } 541 if (fl & MPI_FCPORTPAGE1_FLAGS_PROT_FCP_TARG) { 542 role |= MPT_ROLE_TARGET; 543 } 544 545 fl &= ~MPI_FCPORTPAGE1_FLAGS_PROT_MASK; 546 547 if (mpt->do_cfg_role == 0) { 548 role = mpt->cfg_role; 549 } else { 550 mpt->do_cfg_role = 0; 551 } 552 553 if (role != mpt->cfg_role) { 554 if (mpt->cfg_role & MPT_ROLE_INITIATOR) { 555 if ((role & MPT_ROLE_INITIATOR) == 0) { 556 mpt_prt(mpt, "adding initiator role\n"); 557 fl |= MPI_FCPORTPAGE1_FLAGS_PROT_FCP_INIT; 558 doit++; 559 } else { 560 mpt_prt(mpt, "keeping initiator role\n"); 561 } 562 } else if (role & MPT_ROLE_INITIATOR) { 563 mpt_prt(mpt, "removing initiator role\n"); 564 doit++; 565 } 566 if (mpt->cfg_role & MPT_ROLE_TARGET) { 567 if ((role & MPT_ROLE_TARGET) == 0) { 568 mpt_prt(mpt, "adding target role\n"); 569 fl |= MPI_FCPORTPAGE1_FLAGS_PROT_FCP_TARG; 570 doit++; 571 } else { 572 mpt_prt(mpt, "keeping target role\n"); 573 } 574 } else if (role & MPT_ROLE_TARGET) { 575 mpt_prt(mpt, "removing target role\n"); 576 doit++; 577 } 578 mpt->role = mpt->cfg_role; 579 } 580 581 if (fl & MPI_FCPORTPAGE1_FLAGS_PROT_FCP_TARG) { 582 if ((fl & MPI_FCPORTPAGE1_FLAGS_TARGET_MODE_OXID) == 0) { 583 mpt_prt(mpt, "adding OXID option\n"); 584 fl |= MPI_FCPORTPAGE1_FLAGS_TARGET_MODE_OXID; 585 doit++; 586 } 587 } 588 589 if (doit) { 590 fc.Flags = fl; 591 host2mpt_config_page_fc_port_1(&fc); 592 r = mpt_write_cfg_page(mpt, 593 MPI_CONFIG_ACTION_PAGE_WRITE_NVRAM, 0, &fc.Header, 594 sizeof(fc), FALSE, 5000); 595 if (r != 0) { 596 mpt_prt(mpt, "failed to update NVRAM with changes\n"); 597 return (0); 598 } 599 mpt_prt(mpt, "NOTE: NVRAM changes will not take " 600 "effect until next reboot or IOC reset\n"); 601 } 602 return (0); 603 } 604 605 static int 606 mptsas_sas_io_unit_pg0(struct mpt_softc *mpt, struct mptsas_portinfo *portinfo) 607 { 608 ConfigExtendedPageHeader_t hdr; 609 struct mptsas_phyinfo *phyinfo; 610 SasIOUnitPage0_t *buffer; 611 int error, len, i; 612 613 error = mpt_read_extcfg_header(mpt, MPI_SASIOUNITPAGE0_PAGEVERSION, 614 0, 0, MPI_CONFIG_EXTPAGETYPE_SAS_IO_UNIT, 615 &hdr, 0, 10000); 616 if (error) 617 goto out; 618 if (hdr.ExtPageLength == 0) { 619 error = ENXIO; 620 goto out; 621 } 622 623 len = hdr.ExtPageLength * 4; 624 buffer = malloc(len, M_DEVBUF, M_NOWAIT|M_ZERO); 625 if (buffer == NULL) { 626 error = ENOMEM; 627 goto out; 628 } 629 630 error = mpt_read_extcfg_page(mpt, MPI_CONFIG_ACTION_PAGE_READ_CURRENT, 631 0, &hdr, buffer, len, 0, 10000); 632 if (error) { 633 free(buffer, M_DEVBUF); 634 goto out; 635 } 636 637 portinfo->num_phys = buffer->NumPhys; 638 portinfo->phy_info = malloc(sizeof(*portinfo->phy_info) * 639 portinfo->num_phys, M_DEVBUF, M_NOWAIT|M_ZERO); 640 if (portinfo->phy_info == NULL) { 641 free(buffer, M_DEVBUF); 642 error = ENOMEM; 643 goto out; 644 } 645 646 for (i = 0; i < portinfo->num_phys; i++) { 647 phyinfo = &portinfo->phy_info[i]; 648 phyinfo->phy_num = i; 649 phyinfo->port_id = buffer->PhyData[i].Port; 650 phyinfo->negotiated_link_rate = 651 buffer->PhyData[i].NegotiatedLinkRate; 652 phyinfo->handle = 653 le16toh(buffer->PhyData[i].ControllerDevHandle); 654 } 655 656 free(buffer, M_DEVBUF); 657 out: 658 return (error); 659 } 660 661 static int 662 mptsas_sas_phy_pg0(struct mpt_softc *mpt, struct mptsas_phyinfo *phy_info, 663 uint32_t form, uint32_t form_specific) 664 { 665 ConfigExtendedPageHeader_t hdr; 666 SasPhyPage0_t *buffer; 667 int error; 668 669 error = mpt_read_extcfg_header(mpt, MPI_SASPHY0_PAGEVERSION, 0, 0, 670 MPI_CONFIG_EXTPAGETYPE_SAS_PHY, &hdr, 671 0, 10000); 672 if (error) 673 goto out; 674 if (hdr.ExtPageLength == 0) { 675 error = ENXIO; 676 goto out; 677 } 678 679 buffer = malloc(sizeof(SasPhyPage0_t), M_DEVBUF, M_NOWAIT|M_ZERO); 680 if (buffer == NULL) { 681 error = ENOMEM; 682 goto out; 683 } 684 685 error = mpt_read_extcfg_page(mpt, MPI_CONFIG_ACTION_PAGE_READ_CURRENT, 686 form + form_specific, &hdr, buffer, 687 sizeof(SasPhyPage0_t), 0, 10000); 688 if (error) { 689 free(buffer, M_DEVBUF); 690 goto out; 691 } 692 693 phy_info->hw_link_rate = buffer->HwLinkRate; 694 phy_info->programmed_link_rate = buffer->ProgrammedLinkRate; 695 phy_info->identify.dev_handle = le16toh(buffer->OwnerDevHandle); 696 phy_info->attached.dev_handle = le16toh(buffer->AttachedDevHandle); 697 698 free(buffer, M_DEVBUF); 699 out: 700 return (error); 701 } 702 703 static int 704 mptsas_sas_device_pg0(struct mpt_softc *mpt, struct mptsas_devinfo *device_info, 705 uint32_t form, uint32_t form_specific) 706 { 707 ConfigExtendedPageHeader_t hdr; 708 SasDevicePage0_t *buffer; 709 uint64_t sas_address; 710 int error = 0; 711 712 bzero(device_info, sizeof(*device_info)); 713 error = mpt_read_extcfg_header(mpt, MPI_SASDEVICE0_PAGEVERSION, 0, 0, 714 MPI_CONFIG_EXTPAGETYPE_SAS_DEVICE, 715 &hdr, 0, 10000); 716 if (error) 717 goto out; 718 if (hdr.ExtPageLength == 0) { 719 error = ENXIO; 720 goto out; 721 } 722 723 buffer = malloc(sizeof(SasDevicePage0_t), M_DEVBUF, M_NOWAIT|M_ZERO); 724 if (buffer == NULL) { 725 error = ENOMEM; 726 goto out; 727 } 728 729 error = mpt_read_extcfg_page(mpt, MPI_CONFIG_ACTION_PAGE_READ_CURRENT, 730 form + form_specific, &hdr, buffer, 731 sizeof(SasDevicePage0_t), 0, 10000); 732 if (error) { 733 free(buffer, M_DEVBUF); 734 goto out; 735 } 736 737 device_info->dev_handle = le16toh(buffer->DevHandle); 738 device_info->parent_dev_handle = le16toh(buffer->ParentDevHandle); 739 device_info->enclosure_handle = le16toh(buffer->EnclosureHandle); 740 device_info->slot = le16toh(buffer->Slot); 741 device_info->phy_num = buffer->PhyNum; 742 device_info->physical_port = buffer->PhysicalPort; 743 device_info->target_id = buffer->TargetID; 744 device_info->bus = buffer->Bus; 745 bcopy(&buffer->SASAddress, &sas_address, sizeof(uint64_t)); 746 device_info->sas_address = le64toh(sas_address); 747 device_info->device_info = le32toh(buffer->DeviceInfo); 748 749 free(buffer, M_DEVBUF); 750 out: 751 return (error); 752 } 753 754 /* 755 * Read SAS configuration information. Nothing to do yet. 756 */ 757 static int 758 mpt_read_config_info_sas(struct mpt_softc *mpt) 759 { 760 struct mptsas_portinfo *portinfo; 761 struct mptsas_phyinfo *phyinfo; 762 int error, i; 763 764 portinfo = malloc(sizeof(*portinfo), M_DEVBUF, M_NOWAIT|M_ZERO); 765 if (portinfo == NULL) 766 return (ENOMEM); 767 768 error = mptsas_sas_io_unit_pg0(mpt, portinfo); 769 if (error) { 770 free(portinfo, M_DEVBUF); 771 return (0); 772 } 773 774 for (i = 0; i < portinfo->num_phys; i++) { 775 phyinfo = &portinfo->phy_info[i]; 776 error = mptsas_sas_phy_pg0(mpt, phyinfo, 777 (MPI_SAS_PHY_PGAD_FORM_PHY_NUMBER << 778 MPI_SAS_PHY_PGAD_FORM_SHIFT), i); 779 if (error) 780 break; 781 error = mptsas_sas_device_pg0(mpt, &phyinfo->identify, 782 (MPI_SAS_DEVICE_PGAD_FORM_HANDLE << 783 MPI_SAS_DEVICE_PGAD_FORM_SHIFT), 784 phyinfo->handle); 785 if (error) 786 break; 787 phyinfo->identify.phy_num = phyinfo->phy_num = i; 788 if (phyinfo->attached.dev_handle) 789 error = mptsas_sas_device_pg0(mpt, 790 &phyinfo->attached, 791 (MPI_SAS_DEVICE_PGAD_FORM_HANDLE << 792 MPI_SAS_DEVICE_PGAD_FORM_SHIFT), 793 phyinfo->attached.dev_handle); 794 if (error) 795 break; 796 } 797 mpt->sas_portinfo = portinfo; 798 return (0); 799 } 800 801 static void 802 mptsas_set_sata_wc(struct mpt_softc *mpt, struct mptsas_devinfo *devinfo, 803 int enabled) 804 { 805 SataPassthroughRequest_t *pass; 806 request_t *req; 807 int error, status; 808 809 req = mpt_get_request(mpt, 0); 810 if (req == NULL) 811 return; 812 813 pass = req->req_vbuf; 814 bzero(pass, sizeof(SataPassthroughRequest_t)); 815 pass->Function = MPI_FUNCTION_SATA_PASSTHROUGH; 816 pass->TargetID = devinfo->target_id; 817 pass->Bus = devinfo->bus; 818 pass->PassthroughFlags = 0; 819 pass->ConnectionRate = MPI_SATA_PT_REQ_CONNECT_RATE_NEGOTIATED; 820 pass->DataLength = 0; 821 pass->MsgContext = htole32(req->index | sata_pass_handler_id); 822 pass->CommandFIS[0] = 0x27; 823 pass->CommandFIS[1] = 0x80; 824 pass->CommandFIS[2] = 0xef; 825 pass->CommandFIS[3] = (enabled) ? 0x02 : 0x82; 826 pass->CommandFIS[7] = 0x40; 827 pass->CommandFIS[15] = 0x08; 828 829 mpt_check_doorbell(mpt); 830 mpt_send_cmd(mpt, req); 831 error = mpt_wait_req(mpt, req, REQ_STATE_DONE, REQ_STATE_DONE, 0, 832 10 * 1000); 833 if (error) { 834 mpt_free_request(mpt, req); 835 printf("error %d sending passthrough\n", error); 836 return; 837 } 838 839 status = le16toh(req->IOCStatus); 840 if (status != MPI_IOCSTATUS_SUCCESS) { 841 mpt_free_request(mpt, req); 842 printf("IOCSTATUS %d\n", status); 843 return; 844 } 845 846 mpt_free_request(mpt, req); 847 } 848 849 /* 850 * Set SAS configuration information. Nothing to do yet. 851 */ 852 static int 853 mpt_set_initial_config_sas(struct mpt_softc *mpt) 854 { 855 struct mptsas_phyinfo *phyinfo; 856 int i; 857 858 if ((mpt_enable_sata_wc != -1) && (mpt->sas_portinfo != NULL)) { 859 for (i = 0; i < mpt->sas_portinfo->num_phys; i++) { 860 phyinfo = &mpt->sas_portinfo->phy_info[i]; 861 if (phyinfo->attached.dev_handle == 0) 862 continue; 863 if ((phyinfo->attached.device_info & 864 MPI_SAS_DEVICE_INFO_SATA_DEVICE) == 0) 865 continue; 866 if (bootverbose) 867 device_printf(mpt->dev, 868 "%sabling SATA WC on phy %d\n", 869 (mpt_enable_sata_wc) ? "En" : "Dis", i); 870 mptsas_set_sata_wc(mpt, &phyinfo->attached, 871 mpt_enable_sata_wc); 872 } 873 } 874 875 return (0); 876 } 877 878 static int 879 mpt_sata_pass_reply_handler(struct mpt_softc *mpt, request_t *req, 880 uint32_t reply_desc, MSG_DEFAULT_REPLY *reply_frame) 881 { 882 883 if (req != NULL) { 884 if (reply_frame != NULL) { 885 req->IOCStatus = le16toh(reply_frame->IOCStatus); 886 } 887 req->state &= ~REQ_STATE_QUEUED; 888 req->state |= REQ_STATE_DONE; 889 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 890 if ((req->state & REQ_STATE_NEED_WAKEUP) != 0) { 891 wakeup(req); 892 } else if ((req->state & REQ_STATE_TIMEDOUT) != 0) { 893 /* 894 * Whew- we can free this request (late completion) 895 */ 896 mpt_free_request(mpt, req); 897 } 898 } 899 900 return (TRUE); 901 } 902 903 /* 904 * Read SCSI configuration information 905 */ 906 static int 907 mpt_read_config_info_spi(struct mpt_softc *mpt) 908 { 909 int rv, i; 910 911 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_SCSI_PORT, 0, 0, 912 &mpt->mpt_port_page0.Header, FALSE, 5000); 913 if (rv) { 914 return (-1); 915 } 916 mpt_lprt(mpt, MPT_PRT_DEBUG, "SPI Port Page 0 Header: %x %x %x %x\n", 917 mpt->mpt_port_page0.Header.PageVersion, 918 mpt->mpt_port_page0.Header.PageLength, 919 mpt->mpt_port_page0.Header.PageNumber, 920 mpt->mpt_port_page0.Header.PageType); 921 922 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_SCSI_PORT, 1, 0, 923 &mpt->mpt_port_page1.Header, FALSE, 5000); 924 if (rv) { 925 return (-1); 926 } 927 mpt_lprt(mpt, MPT_PRT_DEBUG, "SPI Port Page 1 Header: %x %x %x %x\n", 928 mpt->mpt_port_page1.Header.PageVersion, 929 mpt->mpt_port_page1.Header.PageLength, 930 mpt->mpt_port_page1.Header.PageNumber, 931 mpt->mpt_port_page1.Header.PageType); 932 933 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_SCSI_PORT, 2, 0, 934 &mpt->mpt_port_page2.Header, FALSE, 5000); 935 if (rv) { 936 return (-1); 937 } 938 mpt_lprt(mpt, MPT_PRT_DEBUG, "SPI Port Page 2 Header: %x %x %x %x\n", 939 mpt->mpt_port_page2.Header.PageVersion, 940 mpt->mpt_port_page2.Header.PageLength, 941 mpt->mpt_port_page2.Header.PageNumber, 942 mpt->mpt_port_page2.Header.PageType); 943 944 for (i = 0; i < 16; i++) { 945 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_SCSI_DEVICE, 946 0, i, &mpt->mpt_dev_page0[i].Header, FALSE, 5000); 947 if (rv) { 948 return (-1); 949 } 950 mpt_lprt(mpt, MPT_PRT_DEBUG, 951 "SPI Target %d Device Page 0 Header: %x %x %x %x\n", i, 952 mpt->mpt_dev_page0[i].Header.PageVersion, 953 mpt->mpt_dev_page0[i].Header.PageLength, 954 mpt->mpt_dev_page0[i].Header.PageNumber, 955 mpt->mpt_dev_page0[i].Header.PageType); 956 957 rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_SCSI_DEVICE, 958 1, i, &mpt->mpt_dev_page1[i].Header, FALSE, 5000); 959 if (rv) { 960 return (-1); 961 } 962 mpt_lprt(mpt, MPT_PRT_DEBUG, 963 "SPI Target %d Device Page 1 Header: %x %x %x %x\n", i, 964 mpt->mpt_dev_page1[i].Header.PageVersion, 965 mpt->mpt_dev_page1[i].Header.PageLength, 966 mpt->mpt_dev_page1[i].Header.PageNumber, 967 mpt->mpt_dev_page1[i].Header.PageType); 968 } 969 970 /* 971 * At this point, we don't *have* to fail. As long as we have 972 * valid config header information, we can (barely) lurch 973 * along. 974 */ 975 976 rv = mpt_read_cur_cfg_page(mpt, 0, &mpt->mpt_port_page0.Header, 977 sizeof(mpt->mpt_port_page0), FALSE, 5000); 978 if (rv) { 979 mpt_prt(mpt, "failed to read SPI Port Page 0\n"); 980 } else { 981 mpt2host_config_page_scsi_port_0(&mpt->mpt_port_page0); 982 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 983 "SPI Port Page 0: Capabilities %x PhysicalInterface %x\n", 984 mpt->mpt_port_page0.Capabilities, 985 mpt->mpt_port_page0.PhysicalInterface); 986 } 987 988 rv = mpt_read_cur_cfg_page(mpt, 0, &mpt->mpt_port_page1.Header, 989 sizeof(mpt->mpt_port_page1), FALSE, 5000); 990 if (rv) { 991 mpt_prt(mpt, "failed to read SPI Port Page 1\n"); 992 } else { 993 mpt2host_config_page_scsi_port_1(&mpt->mpt_port_page1); 994 mpt_lprt(mpt, MPT_PRT_DEBUG, 995 "SPI Port Page 1: Configuration %x OnBusTimerValue %x\n", 996 mpt->mpt_port_page1.Configuration, 997 mpt->mpt_port_page1.OnBusTimerValue); 998 } 999 1000 rv = mpt_read_cur_cfg_page(mpt, 0, &mpt->mpt_port_page2.Header, 1001 sizeof(mpt->mpt_port_page2), FALSE, 5000); 1002 if (rv) { 1003 mpt_prt(mpt, "failed to read SPI Port Page 2\n"); 1004 } else { 1005 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 1006 "Port Page 2: Flags %x Settings %x\n", 1007 mpt->mpt_port_page2.PortFlags, 1008 mpt->mpt_port_page2.PortSettings); 1009 mpt2host_config_page_scsi_port_2(&mpt->mpt_port_page2); 1010 for (i = 0; i < 16; i++) { 1011 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 1012 " Port Page 2 Tgt %d: timo %x SF %x Flags %x\n", 1013 i, mpt->mpt_port_page2.DeviceSettings[i].Timeout, 1014 mpt->mpt_port_page2.DeviceSettings[i].SyncFactor, 1015 mpt->mpt_port_page2.DeviceSettings[i].DeviceFlags); 1016 } 1017 } 1018 1019 for (i = 0; i < 16; i++) { 1020 rv = mpt_read_cur_cfg_page(mpt, i, 1021 &mpt->mpt_dev_page0[i].Header, sizeof(*mpt->mpt_dev_page0), 1022 FALSE, 5000); 1023 if (rv) { 1024 mpt_prt(mpt, 1025 "cannot read SPI Target %d Device Page 0\n", i); 1026 continue; 1027 } 1028 mpt2host_config_page_scsi_device_0(&mpt->mpt_dev_page0[i]); 1029 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 1030 "target %d page 0: Negotiated Params %x Information %x\n", 1031 i, mpt->mpt_dev_page0[i].NegotiatedParameters, 1032 mpt->mpt_dev_page0[i].Information); 1033 1034 rv = mpt_read_cur_cfg_page(mpt, i, 1035 &mpt->mpt_dev_page1[i].Header, sizeof(*mpt->mpt_dev_page1), 1036 FALSE, 5000); 1037 if (rv) { 1038 mpt_prt(mpt, 1039 "cannot read SPI Target %d Device Page 1\n", i); 1040 continue; 1041 } 1042 mpt2host_config_page_scsi_device_1(&mpt->mpt_dev_page1[i]); 1043 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 1044 "target %d page 1: Requested Params %x Configuration %x\n", 1045 i, mpt->mpt_dev_page1[i].RequestedParameters, 1046 mpt->mpt_dev_page1[i].Configuration); 1047 } 1048 return (0); 1049 } 1050 1051 /* 1052 * Validate SPI configuration information. 1053 * 1054 * In particular, validate SPI Port Page 1. 1055 */ 1056 static int 1057 mpt_set_initial_config_spi(struct mpt_softc *mpt) 1058 { 1059 int error, i, pp1val; 1060 1061 mpt->mpt_disc_enable = 0xff; 1062 mpt->mpt_tag_enable = 0; 1063 1064 pp1val = ((1 << mpt->mpt_ini_id) << 1065 MPI_SCSIPORTPAGE1_CFG_SHIFT_PORT_RESPONSE_ID) | mpt->mpt_ini_id; 1066 if (mpt->mpt_port_page1.Configuration != pp1val) { 1067 CONFIG_PAGE_SCSI_PORT_1 tmp; 1068 1069 mpt_prt(mpt, "SPI Port Page 1 Config value bad (%x)- should " 1070 "be %x\n", mpt->mpt_port_page1.Configuration, pp1val); 1071 tmp = mpt->mpt_port_page1; 1072 tmp.Configuration = pp1val; 1073 host2mpt_config_page_scsi_port_1(&tmp); 1074 error = mpt_write_cur_cfg_page(mpt, 0, 1075 &tmp.Header, sizeof(tmp), FALSE, 5000); 1076 if (error) { 1077 return (-1); 1078 } 1079 error = mpt_read_cur_cfg_page(mpt, 0, 1080 &tmp.Header, sizeof(tmp), FALSE, 5000); 1081 if (error) { 1082 return (-1); 1083 } 1084 mpt2host_config_page_scsi_port_1(&tmp); 1085 if (tmp.Configuration != pp1val) { 1086 mpt_prt(mpt, 1087 "failed to reset SPI Port Page 1 Config value\n"); 1088 return (-1); 1089 } 1090 mpt->mpt_port_page1 = tmp; 1091 } 1092 1093 /* 1094 * The purpose of this exercise is to get 1095 * all targets back to async/narrow. 1096 * 1097 * We skip this step if the BIOS has already negotiated 1098 * speeds with the targets. 1099 */ 1100 i = mpt->mpt_port_page2.PortSettings & 1101 MPI_SCSIPORTPAGE2_PORT_MASK_NEGO_MASTER_SETTINGS; 1102 if (i == MPI_SCSIPORTPAGE2_PORT_ALL_MASTER_SETTINGS) { 1103 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 1104 "honoring BIOS transfer negotiations\n"); 1105 } else { 1106 for (i = 0; i < 16; i++) { 1107 mpt->mpt_dev_page1[i].RequestedParameters = 0; 1108 mpt->mpt_dev_page1[i].Configuration = 0; 1109 (void) mpt_update_spi_config(mpt, i); 1110 } 1111 } 1112 return (0); 1113 } 1114 1115 static int 1116 mpt_cam_enable(struct mpt_softc *mpt) 1117 { 1118 int error; 1119 1120 MPT_LOCK(mpt); 1121 1122 error = EIO; 1123 if (mpt->is_fc) { 1124 if (mpt_read_config_info_fc(mpt)) { 1125 goto out; 1126 } 1127 if (mpt_set_initial_config_fc(mpt)) { 1128 goto out; 1129 } 1130 } else if (mpt->is_sas) { 1131 if (mpt_read_config_info_sas(mpt)) { 1132 goto out; 1133 } 1134 if (mpt_set_initial_config_sas(mpt)) { 1135 goto out; 1136 } 1137 } else if (mpt->is_spi) { 1138 if (mpt_read_config_info_spi(mpt)) { 1139 goto out; 1140 } 1141 if (mpt_set_initial_config_spi(mpt)) { 1142 goto out; 1143 } 1144 } 1145 error = 0; 1146 1147 out: 1148 MPT_UNLOCK(mpt); 1149 return (error); 1150 } 1151 1152 static void 1153 mpt_cam_ready(struct mpt_softc *mpt) 1154 { 1155 1156 /* 1157 * If we're in target mode, hang out resources now 1158 * so we don't cause the world to hang talking to us. 1159 */ 1160 if (mpt->is_fc && (mpt->role & MPT_ROLE_TARGET)) { 1161 /* 1162 * Try to add some target command resources 1163 */ 1164 MPT_LOCK(mpt); 1165 if (mpt_add_target_commands(mpt) == FALSE) { 1166 mpt_prt(mpt, "failed to add target commands\n"); 1167 } 1168 MPT_UNLOCK(mpt); 1169 } 1170 mpt->ready = 1; 1171 } 1172 1173 static void 1174 mpt_cam_detach(struct mpt_softc *mpt) 1175 { 1176 mpt_handler_t handler; 1177 1178 MPT_LOCK(mpt); 1179 mpt->ready = 0; 1180 mpt_terminate_recovery_thread(mpt); 1181 1182 handler.reply_handler = mpt_scsi_reply_handler; 1183 mpt_deregister_handler(mpt, MPT_HANDLER_REPLY, handler, 1184 scsi_io_handler_id); 1185 handler.reply_handler = mpt_scsi_tmf_reply_handler; 1186 mpt_deregister_handler(mpt, MPT_HANDLER_REPLY, handler, 1187 scsi_tmf_handler_id); 1188 handler.reply_handler = mpt_fc_els_reply_handler; 1189 mpt_deregister_handler(mpt, MPT_HANDLER_REPLY, handler, 1190 fc_els_handler_id); 1191 handler.reply_handler = mpt_scsi_tgt_reply_handler; 1192 mpt_deregister_handler(mpt, MPT_HANDLER_REPLY, handler, 1193 mpt->scsi_tgt_handler_id); 1194 handler.reply_handler = mpt_sata_pass_reply_handler; 1195 mpt_deregister_handler(mpt, MPT_HANDLER_REPLY, handler, 1196 sata_pass_handler_id); 1197 1198 if (mpt->tmf_req != NULL) { 1199 mpt->tmf_req->state = REQ_STATE_ALLOCATED; 1200 mpt_free_request(mpt, mpt->tmf_req); 1201 mpt->tmf_req = NULL; 1202 } 1203 if (mpt->sas_portinfo != NULL) { 1204 free(mpt->sas_portinfo, M_DEVBUF); 1205 mpt->sas_portinfo = NULL; 1206 } 1207 1208 if (mpt->sim != NULL) { 1209 xpt_free_path(mpt->path); 1210 xpt_bus_deregister(cam_sim_path(mpt->sim)); 1211 cam_sim_free(mpt->sim, TRUE); 1212 mpt->sim = NULL; 1213 } 1214 1215 if (mpt->phydisk_sim != NULL) { 1216 xpt_free_path(mpt->phydisk_path); 1217 xpt_bus_deregister(cam_sim_path(mpt->phydisk_sim)); 1218 cam_sim_free(mpt->phydisk_sim, TRUE); 1219 mpt->phydisk_sim = NULL; 1220 } 1221 MPT_UNLOCK(mpt); 1222 } 1223 1224 /* This routine is used after a system crash to dump core onto the swap device. 1225 */ 1226 static void 1227 mpt_poll(struct cam_sim *sim) 1228 { 1229 struct mpt_softc *mpt; 1230 1231 mpt = (struct mpt_softc *)cam_sim_softc(sim); 1232 mpt_intr(mpt); 1233 } 1234 1235 /* 1236 * Watchdog timeout routine for SCSI requests. 1237 */ 1238 static void 1239 mpt_timeout(void *arg) 1240 { 1241 union ccb *ccb; 1242 struct mpt_softc *mpt; 1243 request_t *req; 1244 1245 ccb = (union ccb *)arg; 1246 mpt = ccb->ccb_h.ccb_mpt_ptr; 1247 1248 MPT_LOCK_ASSERT(mpt); 1249 req = ccb->ccb_h.ccb_req_ptr; 1250 mpt_prt(mpt, "request %p:%u timed out for ccb %p (req->ccb %p)\n", req, 1251 req->serno, ccb, req->ccb); 1252 /* XXX: WHAT ARE WE TRYING TO DO HERE? */ 1253 if ((req->state & REQ_STATE_QUEUED) == REQ_STATE_QUEUED) { 1254 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 1255 TAILQ_INSERT_TAIL(&mpt->request_timeout_list, req, links); 1256 req->state |= REQ_STATE_TIMEDOUT; 1257 mpt_wakeup_recovery_thread(mpt); 1258 } 1259 } 1260 1261 /* 1262 * Callback routine from bus_dmamap_load_ccb(9) or, in simple cases, called 1263 * directly. 1264 * 1265 * Takes a list of physical segments and builds the SGL for SCSI IO command 1266 * and forwards the commard to the IOC after one last check that CAM has not 1267 * aborted the transaction. 1268 */ 1269 static void 1270 mpt_execute_req_a64(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1271 { 1272 request_t *req, *trq; 1273 char *mpt_off; 1274 union ccb *ccb; 1275 struct mpt_softc *mpt; 1276 bus_addr_t chain_list_addr; 1277 int first_lim, seg, this_seg_lim; 1278 uint32_t addr, cur_off, flags, nxt_off, tf; 1279 void *sglp = NULL; 1280 MSG_REQUEST_HEADER *hdrp; 1281 SGE_SIMPLE64 *se; 1282 SGE_CHAIN64 *ce; 1283 int istgt = 0; 1284 1285 req = (request_t *)arg; 1286 ccb = req->ccb; 1287 1288 mpt = ccb->ccb_h.ccb_mpt_ptr; 1289 req = ccb->ccb_h.ccb_req_ptr; 1290 1291 hdrp = req->req_vbuf; 1292 mpt_off = req->req_vbuf; 1293 1294 if (error == 0 && ((uint32_t)nseg) >= mpt->max_seg_cnt) { 1295 error = EFBIG; 1296 } 1297 1298 if (error == 0) { 1299 switch (hdrp->Function) { 1300 case MPI_FUNCTION_SCSI_IO_REQUEST: 1301 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH: 1302 istgt = 0; 1303 sglp = &((PTR_MSG_SCSI_IO_REQUEST)hdrp)->SGL; 1304 break; 1305 case MPI_FUNCTION_TARGET_ASSIST: 1306 istgt = 1; 1307 sglp = &((PTR_MSG_TARGET_ASSIST_REQUEST)hdrp)->SGL; 1308 break; 1309 default: 1310 mpt_prt(mpt, "bad fct 0x%x in mpt_execute_req_a64\n", 1311 hdrp->Function); 1312 error = EINVAL; 1313 break; 1314 } 1315 } 1316 1317 if (error == 0 && ((uint32_t)nseg) >= mpt->max_seg_cnt) { 1318 error = EFBIG; 1319 mpt_prt(mpt, "segment count %d too large (max %u)\n", 1320 nseg, mpt->max_seg_cnt); 1321 } 1322 1323 bad: 1324 if (error != 0) { 1325 if (error != EFBIG && error != ENOMEM) { 1326 mpt_prt(mpt, "mpt_execute_req_a64: err %d\n", error); 1327 } 1328 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INPROG) { 1329 cam_status status; 1330 mpt_freeze_ccb(ccb); 1331 if (error == EFBIG) { 1332 status = CAM_REQ_TOO_BIG; 1333 } else if (error == ENOMEM) { 1334 if (mpt->outofbeer == 0) { 1335 mpt->outofbeer = 1; 1336 xpt_freeze_simq(mpt->sim, 1); 1337 mpt_lprt(mpt, MPT_PRT_DEBUG, 1338 "FREEZEQ\n"); 1339 } 1340 status = CAM_REQUEUE_REQ; 1341 } else { 1342 status = CAM_REQ_CMP_ERR; 1343 } 1344 mpt_set_ccb_status(ccb, status); 1345 } 1346 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 1347 request_t *cmd_req = 1348 MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 1349 MPT_TGT_STATE(mpt, cmd_req)->state = TGT_STATE_IN_CAM; 1350 MPT_TGT_STATE(mpt, cmd_req)->ccb = NULL; 1351 MPT_TGT_STATE(mpt, cmd_req)->req = NULL; 1352 } 1353 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 1354 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 1355 xpt_done(ccb); 1356 mpt_free_request(mpt, req); 1357 return; 1358 } 1359 1360 /* 1361 * No data to transfer? 1362 * Just make a single simple SGL with zero length. 1363 */ 1364 1365 if (mpt->verbose >= MPT_PRT_DEBUG) { 1366 int tidx = ((char *)sglp) - mpt_off; 1367 memset(&mpt_off[tidx], 0xff, MPT_REQUEST_AREA - tidx); 1368 } 1369 1370 if (nseg == 0) { 1371 SGE_SIMPLE32 *se1 = (SGE_SIMPLE32 *) sglp; 1372 MPI_pSGE_SET_FLAGS(se1, 1373 (MPI_SGE_FLAGS_LAST_ELEMENT | MPI_SGE_FLAGS_END_OF_BUFFER | 1374 MPI_SGE_FLAGS_SIMPLE_ELEMENT | MPI_SGE_FLAGS_END_OF_LIST)); 1375 se1->FlagsLength = htole32(se1->FlagsLength); 1376 goto out; 1377 } 1378 1379 1380 flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT | MPI_SGE_FLAGS_64_BIT_ADDRESSING; 1381 if (istgt == 0) { 1382 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) { 1383 flags |= MPI_SGE_FLAGS_HOST_TO_IOC; 1384 } 1385 } else { 1386 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1387 flags |= MPI_SGE_FLAGS_HOST_TO_IOC; 1388 } 1389 } 1390 1391 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) { 1392 bus_dmasync_op_t op; 1393 if (istgt == 0) { 1394 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1395 op = BUS_DMASYNC_PREREAD; 1396 } else { 1397 op = BUS_DMASYNC_PREWRITE; 1398 } 1399 } else { 1400 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1401 op = BUS_DMASYNC_PREWRITE; 1402 } else { 1403 op = BUS_DMASYNC_PREREAD; 1404 } 1405 } 1406 bus_dmamap_sync(mpt->buffer_dmat, req->dmap, op); 1407 } 1408 1409 /* 1410 * Okay, fill in what we can at the end of the command frame. 1411 * If we have up to MPT_NSGL_FIRST, we can fit them all into 1412 * the command frame. 1413 * 1414 * Otherwise, we fill up through MPT_NSGL_FIRST less one 1415 * SIMPLE64 pointers and start doing CHAIN64 entries after 1416 * that. 1417 */ 1418 1419 if (nseg < MPT_NSGL_FIRST(mpt)) { 1420 first_lim = nseg; 1421 } else { 1422 /* 1423 * Leave room for CHAIN element 1424 */ 1425 first_lim = MPT_NSGL_FIRST(mpt) - 1; 1426 } 1427 1428 se = (SGE_SIMPLE64 *) sglp; 1429 for (seg = 0; seg < first_lim; seg++, se++, dm_segs++) { 1430 tf = flags; 1431 memset(se, 0, sizeof (*se)); 1432 MPI_pSGE_SET_LENGTH(se, dm_segs->ds_len); 1433 se->Address.Low = htole32(dm_segs->ds_addr & 0xffffffff); 1434 if (sizeof(bus_addr_t) > 4) { 1435 addr = ((uint64_t)dm_segs->ds_addr) >> 32; 1436 /* SAS1078 36GB limitation WAR */ 1437 if (mpt->is_1078 && (((uint64_t)dm_segs->ds_addr + 1438 MPI_SGE_LENGTH(se->FlagsLength)) >> 32) == 9) { 1439 addr |= (1U << 31); 1440 tf |= MPI_SGE_FLAGS_LOCAL_ADDRESS; 1441 } 1442 se->Address.High = htole32(addr); 1443 } 1444 if (seg == first_lim - 1) { 1445 tf |= MPI_SGE_FLAGS_LAST_ELEMENT; 1446 } 1447 if (seg == nseg - 1) { 1448 tf |= MPI_SGE_FLAGS_END_OF_LIST | 1449 MPI_SGE_FLAGS_END_OF_BUFFER; 1450 } 1451 MPI_pSGE_SET_FLAGS(se, tf); 1452 se->FlagsLength = htole32(se->FlagsLength); 1453 } 1454 1455 if (seg == nseg) { 1456 goto out; 1457 } 1458 1459 /* 1460 * Tell the IOC where to find the first chain element. 1461 */ 1462 hdrp->ChainOffset = ((char *)se - (char *)hdrp) >> 2; 1463 nxt_off = MPT_RQSL(mpt); 1464 trq = req; 1465 1466 /* 1467 * Make up the rest of the data segments out of a chain element 1468 * (contained in the current request frame) which points to 1469 * SIMPLE64 elements in the next request frame, possibly ending 1470 * with *another* chain element (if there's more). 1471 */ 1472 while (seg < nseg) { 1473 /* 1474 * Point to the chain descriptor. Note that the chain 1475 * descriptor is at the end of the *previous* list (whether 1476 * chain or simple). 1477 */ 1478 ce = (SGE_CHAIN64 *) se; 1479 1480 /* 1481 * Before we change our current pointer, make sure we won't 1482 * overflow the request area with this frame. Note that we 1483 * test against 'greater than' here as it's okay in this case 1484 * to have next offset be just outside the request area. 1485 */ 1486 if ((nxt_off + MPT_RQSL(mpt)) > MPT_REQUEST_AREA) { 1487 nxt_off = MPT_REQUEST_AREA; 1488 goto next_chain; 1489 } 1490 1491 /* 1492 * Set our SGE element pointer to the beginning of the chain 1493 * list and update our next chain list offset. 1494 */ 1495 se = (SGE_SIMPLE64 *) &mpt_off[nxt_off]; 1496 cur_off = nxt_off; 1497 nxt_off += MPT_RQSL(mpt); 1498 1499 /* 1500 * Now initialize the chain descriptor. 1501 */ 1502 memset(ce, 0, sizeof (*ce)); 1503 1504 /* 1505 * Get the physical address of the chain list. 1506 */ 1507 chain_list_addr = trq->req_pbuf; 1508 chain_list_addr += cur_off; 1509 if (sizeof (bus_addr_t) > 4) { 1510 ce->Address.High = 1511 htole32(((uint64_t)chain_list_addr) >> 32); 1512 } 1513 ce->Address.Low = htole32(chain_list_addr & 0xffffffff); 1514 ce->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT | 1515 MPI_SGE_FLAGS_64_BIT_ADDRESSING; 1516 1517 /* 1518 * If we have more than a frame's worth of segments left, 1519 * set up the chain list to have the last element be another 1520 * chain descriptor. 1521 */ 1522 if ((nseg - seg) > MPT_NSGL(mpt)) { 1523 this_seg_lim = seg + MPT_NSGL(mpt) - 1; 1524 /* 1525 * The length of the chain is the length in bytes of the 1526 * number of segments plus the next chain element. 1527 * 1528 * The next chain descriptor offset is the length, 1529 * in words, of the number of segments. 1530 */ 1531 ce->Length = (this_seg_lim - seg) * 1532 sizeof (SGE_SIMPLE64); 1533 ce->NextChainOffset = ce->Length >> 2; 1534 ce->Length += sizeof (SGE_CHAIN64); 1535 } else { 1536 this_seg_lim = nseg; 1537 ce->Length = (this_seg_lim - seg) * 1538 sizeof (SGE_SIMPLE64); 1539 } 1540 ce->Length = htole16(ce->Length); 1541 1542 /* 1543 * Fill in the chain list SGE elements with our segment data. 1544 * 1545 * If we're the last element in this chain list, set the last 1546 * element flag. If we're the completely last element period, 1547 * set the end of list and end of buffer flags. 1548 */ 1549 while (seg < this_seg_lim) { 1550 tf = flags; 1551 memset(se, 0, sizeof (*se)); 1552 MPI_pSGE_SET_LENGTH(se, dm_segs->ds_len); 1553 se->Address.Low = htole32(dm_segs->ds_addr & 1554 0xffffffff); 1555 if (sizeof (bus_addr_t) > 4) { 1556 addr = ((uint64_t)dm_segs->ds_addr) >> 32; 1557 /* SAS1078 36GB limitation WAR */ 1558 if (mpt->is_1078 && 1559 (((uint64_t)dm_segs->ds_addr + 1560 MPI_SGE_LENGTH(se->FlagsLength)) >> 1561 32) == 9) { 1562 addr |= (1U << 31); 1563 tf |= MPI_SGE_FLAGS_LOCAL_ADDRESS; 1564 } 1565 se->Address.High = htole32(addr); 1566 } 1567 if (seg == this_seg_lim - 1) { 1568 tf |= MPI_SGE_FLAGS_LAST_ELEMENT; 1569 } 1570 if (seg == nseg - 1) { 1571 tf |= MPI_SGE_FLAGS_END_OF_LIST | 1572 MPI_SGE_FLAGS_END_OF_BUFFER; 1573 } 1574 MPI_pSGE_SET_FLAGS(se, tf); 1575 se->FlagsLength = htole32(se->FlagsLength); 1576 se++; 1577 seg++; 1578 dm_segs++; 1579 } 1580 1581 next_chain: 1582 /* 1583 * If we have more segments to do and we've used up all of 1584 * the space in a request area, go allocate another one 1585 * and chain to that. 1586 */ 1587 if (seg < nseg && nxt_off >= MPT_REQUEST_AREA) { 1588 request_t *nrq; 1589 1590 nrq = mpt_get_request(mpt, FALSE); 1591 1592 if (nrq == NULL) { 1593 error = ENOMEM; 1594 goto bad; 1595 } 1596 1597 /* 1598 * Append the new request area on the tail of our list. 1599 */ 1600 if ((trq = req->chain) == NULL) { 1601 req->chain = nrq; 1602 } else { 1603 while (trq->chain != NULL) { 1604 trq = trq->chain; 1605 } 1606 trq->chain = nrq; 1607 } 1608 trq = nrq; 1609 mpt_off = trq->req_vbuf; 1610 if (mpt->verbose >= MPT_PRT_DEBUG) { 1611 memset(mpt_off, 0xff, MPT_REQUEST_AREA); 1612 } 1613 nxt_off = 0; 1614 } 1615 } 1616 out: 1617 1618 /* 1619 * Last time we need to check if this CCB needs to be aborted. 1620 */ 1621 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { 1622 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 1623 request_t *cmd_req = 1624 MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 1625 MPT_TGT_STATE(mpt, cmd_req)->state = TGT_STATE_IN_CAM; 1626 MPT_TGT_STATE(mpt, cmd_req)->ccb = NULL; 1627 MPT_TGT_STATE(mpt, cmd_req)->req = NULL; 1628 } 1629 mpt_prt(mpt, 1630 "mpt_execute_req_a64: I/O cancelled (status 0x%x)\n", 1631 ccb->ccb_h.status & CAM_STATUS_MASK); 1632 if (nseg) { 1633 bus_dmamap_unload(mpt->buffer_dmat, req->dmap); 1634 } 1635 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 1636 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 1637 xpt_done(ccb); 1638 mpt_free_request(mpt, req); 1639 return; 1640 } 1641 1642 ccb->ccb_h.status |= CAM_SIM_QUEUED; 1643 if (ccb->ccb_h.timeout != CAM_TIME_INFINITY) { 1644 mpt_req_timeout(req, SBT_1MS * ccb->ccb_h.timeout, 1645 mpt_timeout, ccb); 1646 } 1647 if (mpt->verbose > MPT_PRT_DEBUG) { 1648 int nc = 0; 1649 mpt_print_request(req->req_vbuf); 1650 for (trq = req->chain; trq; trq = trq->chain) { 1651 printf(" Additional Chain Area %d\n", nc++); 1652 mpt_dump_sgl(trq->req_vbuf, 0); 1653 } 1654 } 1655 1656 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 1657 request_t *cmd_req = MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 1658 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, cmd_req); 1659 #ifdef WE_TRUST_AUTO_GOOD_STATUS 1660 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) && 1661 csio->scsi_status == SCSI_STATUS_OK && tgt->resid == 0) { 1662 tgt->state = TGT_STATE_MOVING_DATA_AND_STATUS; 1663 } else { 1664 tgt->state = TGT_STATE_MOVING_DATA; 1665 } 1666 #else 1667 tgt->state = TGT_STATE_MOVING_DATA; 1668 #endif 1669 } 1670 mpt_send_cmd(mpt, req); 1671 } 1672 1673 static void 1674 mpt_execute_req(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1675 { 1676 request_t *req, *trq; 1677 char *mpt_off; 1678 union ccb *ccb; 1679 struct mpt_softc *mpt; 1680 int seg, first_lim; 1681 uint32_t flags, nxt_off; 1682 void *sglp = NULL; 1683 MSG_REQUEST_HEADER *hdrp; 1684 SGE_SIMPLE32 *se; 1685 SGE_CHAIN32 *ce; 1686 int istgt = 0; 1687 1688 req = (request_t *)arg; 1689 ccb = req->ccb; 1690 1691 mpt = ccb->ccb_h.ccb_mpt_ptr; 1692 req = ccb->ccb_h.ccb_req_ptr; 1693 1694 hdrp = req->req_vbuf; 1695 mpt_off = req->req_vbuf; 1696 1697 if (error == 0 && ((uint32_t)nseg) >= mpt->max_seg_cnt) { 1698 error = EFBIG; 1699 } 1700 1701 if (error == 0) { 1702 switch (hdrp->Function) { 1703 case MPI_FUNCTION_SCSI_IO_REQUEST: 1704 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH: 1705 sglp = &((PTR_MSG_SCSI_IO_REQUEST)hdrp)->SGL; 1706 break; 1707 case MPI_FUNCTION_TARGET_ASSIST: 1708 istgt = 1; 1709 sglp = &((PTR_MSG_TARGET_ASSIST_REQUEST)hdrp)->SGL; 1710 break; 1711 default: 1712 mpt_prt(mpt, "bad fct 0x%x in mpt_execute_req\n", 1713 hdrp->Function); 1714 error = EINVAL; 1715 break; 1716 } 1717 } 1718 1719 if (error == 0 && ((uint32_t)nseg) >= mpt->max_seg_cnt) { 1720 error = EFBIG; 1721 mpt_prt(mpt, "segment count %d too large (max %u)\n", 1722 nseg, mpt->max_seg_cnt); 1723 } 1724 1725 bad: 1726 if (error != 0) { 1727 if (error != EFBIG && error != ENOMEM) { 1728 mpt_prt(mpt, "mpt_execute_req: err %d\n", error); 1729 } 1730 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INPROG) { 1731 cam_status status; 1732 mpt_freeze_ccb(ccb); 1733 if (error == EFBIG) { 1734 status = CAM_REQ_TOO_BIG; 1735 } else if (error == ENOMEM) { 1736 if (mpt->outofbeer == 0) { 1737 mpt->outofbeer = 1; 1738 xpt_freeze_simq(mpt->sim, 1); 1739 mpt_lprt(mpt, MPT_PRT_DEBUG, 1740 "FREEZEQ\n"); 1741 } 1742 status = CAM_REQUEUE_REQ; 1743 } else { 1744 status = CAM_REQ_CMP_ERR; 1745 } 1746 mpt_set_ccb_status(ccb, status); 1747 } 1748 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 1749 request_t *cmd_req = 1750 MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 1751 MPT_TGT_STATE(mpt, cmd_req)->state = TGT_STATE_IN_CAM; 1752 MPT_TGT_STATE(mpt, cmd_req)->ccb = NULL; 1753 MPT_TGT_STATE(mpt, cmd_req)->req = NULL; 1754 } 1755 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 1756 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 1757 xpt_done(ccb); 1758 mpt_free_request(mpt, req); 1759 return; 1760 } 1761 1762 /* 1763 * No data to transfer? 1764 * Just make a single simple SGL with zero length. 1765 */ 1766 1767 if (mpt->verbose >= MPT_PRT_DEBUG) { 1768 int tidx = ((char *)sglp) - mpt_off; 1769 memset(&mpt_off[tidx], 0xff, MPT_REQUEST_AREA - tidx); 1770 } 1771 1772 if (nseg == 0) { 1773 SGE_SIMPLE32 *se1 = (SGE_SIMPLE32 *) sglp; 1774 MPI_pSGE_SET_FLAGS(se1, 1775 (MPI_SGE_FLAGS_LAST_ELEMENT | MPI_SGE_FLAGS_END_OF_BUFFER | 1776 MPI_SGE_FLAGS_SIMPLE_ELEMENT | MPI_SGE_FLAGS_END_OF_LIST)); 1777 se1->FlagsLength = htole32(se1->FlagsLength); 1778 goto out; 1779 } 1780 1781 1782 flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT; 1783 if (istgt == 0) { 1784 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) { 1785 flags |= MPI_SGE_FLAGS_HOST_TO_IOC; 1786 } 1787 } else { 1788 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1789 flags |= MPI_SGE_FLAGS_HOST_TO_IOC; 1790 } 1791 } 1792 1793 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) { 1794 bus_dmasync_op_t op; 1795 if (istgt) { 1796 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1797 op = BUS_DMASYNC_PREREAD; 1798 } else { 1799 op = BUS_DMASYNC_PREWRITE; 1800 } 1801 } else { 1802 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1803 op = BUS_DMASYNC_PREWRITE; 1804 } else { 1805 op = BUS_DMASYNC_PREREAD; 1806 } 1807 } 1808 bus_dmamap_sync(mpt->buffer_dmat, req->dmap, op); 1809 } 1810 1811 /* 1812 * Okay, fill in what we can at the end of the command frame. 1813 * If we have up to MPT_NSGL_FIRST, we can fit them all into 1814 * the command frame. 1815 * 1816 * Otherwise, we fill up through MPT_NSGL_FIRST less one 1817 * SIMPLE32 pointers and start doing CHAIN32 entries after 1818 * that. 1819 */ 1820 1821 if (nseg < MPT_NSGL_FIRST(mpt)) { 1822 first_lim = nseg; 1823 } else { 1824 /* 1825 * Leave room for CHAIN element 1826 */ 1827 first_lim = MPT_NSGL_FIRST(mpt) - 1; 1828 } 1829 1830 se = (SGE_SIMPLE32 *) sglp; 1831 for (seg = 0; seg < first_lim; seg++, se++, dm_segs++) { 1832 uint32_t tf; 1833 1834 memset(se, 0,sizeof (*se)); 1835 se->Address = htole32(dm_segs->ds_addr); 1836 1837 MPI_pSGE_SET_LENGTH(se, dm_segs->ds_len); 1838 tf = flags; 1839 if (seg == first_lim - 1) { 1840 tf |= MPI_SGE_FLAGS_LAST_ELEMENT; 1841 } 1842 if (seg == nseg - 1) { 1843 tf |= MPI_SGE_FLAGS_END_OF_LIST | 1844 MPI_SGE_FLAGS_END_OF_BUFFER; 1845 } 1846 MPI_pSGE_SET_FLAGS(se, tf); 1847 se->FlagsLength = htole32(se->FlagsLength); 1848 } 1849 1850 if (seg == nseg) { 1851 goto out; 1852 } 1853 1854 /* 1855 * Tell the IOC where to find the first chain element. 1856 */ 1857 hdrp->ChainOffset = ((char *)se - (char *)hdrp) >> 2; 1858 nxt_off = MPT_RQSL(mpt); 1859 trq = req; 1860 1861 /* 1862 * Make up the rest of the data segments out of a chain element 1863 * (contained in the current request frame) which points to 1864 * SIMPLE32 elements in the next request frame, possibly ending 1865 * with *another* chain element (if there's more). 1866 */ 1867 while (seg < nseg) { 1868 int this_seg_lim; 1869 uint32_t tf, cur_off; 1870 bus_addr_t chain_list_addr; 1871 1872 /* 1873 * Point to the chain descriptor. Note that the chain 1874 * descriptor is at the end of the *previous* list (whether 1875 * chain or simple). 1876 */ 1877 ce = (SGE_CHAIN32 *) se; 1878 1879 /* 1880 * Before we change our current pointer, make sure we won't 1881 * overflow the request area with this frame. Note that we 1882 * test against 'greater than' here as it's okay in this case 1883 * to have next offset be just outside the request area. 1884 */ 1885 if ((nxt_off + MPT_RQSL(mpt)) > MPT_REQUEST_AREA) { 1886 nxt_off = MPT_REQUEST_AREA; 1887 goto next_chain; 1888 } 1889 1890 /* 1891 * Set our SGE element pointer to the beginning of the chain 1892 * list and update our next chain list offset. 1893 */ 1894 se = (SGE_SIMPLE32 *) &mpt_off[nxt_off]; 1895 cur_off = nxt_off; 1896 nxt_off += MPT_RQSL(mpt); 1897 1898 /* 1899 * Now initialize the chain descriptor. 1900 */ 1901 memset(ce, 0, sizeof (*ce)); 1902 1903 /* 1904 * Get the physical address of the chain list. 1905 */ 1906 chain_list_addr = trq->req_pbuf; 1907 chain_list_addr += cur_off; 1908 1909 1910 1911 ce->Address = htole32(chain_list_addr); 1912 ce->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT; 1913 1914 1915 /* 1916 * If we have more than a frame's worth of segments left, 1917 * set up the chain list to have the last element be another 1918 * chain descriptor. 1919 */ 1920 if ((nseg - seg) > MPT_NSGL(mpt)) { 1921 this_seg_lim = seg + MPT_NSGL(mpt) - 1; 1922 /* 1923 * The length of the chain is the length in bytes of the 1924 * number of segments plus the next chain element. 1925 * 1926 * The next chain descriptor offset is the length, 1927 * in words, of the number of segments. 1928 */ 1929 ce->Length = (this_seg_lim - seg) * 1930 sizeof (SGE_SIMPLE32); 1931 ce->NextChainOffset = ce->Length >> 2; 1932 ce->Length += sizeof (SGE_CHAIN32); 1933 } else { 1934 this_seg_lim = nseg; 1935 ce->Length = (this_seg_lim - seg) * 1936 sizeof (SGE_SIMPLE32); 1937 } 1938 ce->Length = htole16(ce->Length); 1939 1940 /* 1941 * Fill in the chain list SGE elements with our segment data. 1942 * 1943 * If we're the last element in this chain list, set the last 1944 * element flag. If we're the completely last element period, 1945 * set the end of list and end of buffer flags. 1946 */ 1947 while (seg < this_seg_lim) { 1948 memset(se, 0, sizeof (*se)); 1949 se->Address = htole32(dm_segs->ds_addr); 1950 1951 MPI_pSGE_SET_LENGTH(se, dm_segs->ds_len); 1952 tf = flags; 1953 if (seg == this_seg_lim - 1) { 1954 tf |= MPI_SGE_FLAGS_LAST_ELEMENT; 1955 } 1956 if (seg == nseg - 1) { 1957 tf |= MPI_SGE_FLAGS_END_OF_LIST | 1958 MPI_SGE_FLAGS_END_OF_BUFFER; 1959 } 1960 MPI_pSGE_SET_FLAGS(se, tf); 1961 se->FlagsLength = htole32(se->FlagsLength); 1962 se++; 1963 seg++; 1964 dm_segs++; 1965 } 1966 1967 next_chain: 1968 /* 1969 * If we have more segments to do and we've used up all of 1970 * the space in a request area, go allocate another one 1971 * and chain to that. 1972 */ 1973 if (seg < nseg && nxt_off >= MPT_REQUEST_AREA) { 1974 request_t *nrq; 1975 1976 nrq = mpt_get_request(mpt, FALSE); 1977 1978 if (nrq == NULL) { 1979 error = ENOMEM; 1980 goto bad; 1981 } 1982 1983 /* 1984 * Append the new request area on the tail of our list. 1985 */ 1986 if ((trq = req->chain) == NULL) { 1987 req->chain = nrq; 1988 } else { 1989 while (trq->chain != NULL) { 1990 trq = trq->chain; 1991 } 1992 trq->chain = nrq; 1993 } 1994 trq = nrq; 1995 mpt_off = trq->req_vbuf; 1996 if (mpt->verbose >= MPT_PRT_DEBUG) { 1997 memset(mpt_off, 0xff, MPT_REQUEST_AREA); 1998 } 1999 nxt_off = 0; 2000 } 2001 } 2002 out: 2003 2004 /* 2005 * Last time we need to check if this CCB needs to be aborted. 2006 */ 2007 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { 2008 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 2009 request_t *cmd_req = 2010 MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 2011 MPT_TGT_STATE(mpt, cmd_req)->state = TGT_STATE_IN_CAM; 2012 MPT_TGT_STATE(mpt, cmd_req)->ccb = NULL; 2013 MPT_TGT_STATE(mpt, cmd_req)->req = NULL; 2014 } 2015 mpt_prt(mpt, 2016 "mpt_execute_req: I/O cancelled (status 0x%x)\n", 2017 ccb->ccb_h.status & CAM_STATUS_MASK); 2018 if (nseg) { 2019 bus_dmamap_unload(mpt->buffer_dmat, req->dmap); 2020 } 2021 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 2022 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 2023 xpt_done(ccb); 2024 mpt_free_request(mpt, req); 2025 return; 2026 } 2027 2028 ccb->ccb_h.status |= CAM_SIM_QUEUED; 2029 if (ccb->ccb_h.timeout != CAM_TIME_INFINITY) { 2030 mpt_req_timeout(req, SBT_1MS * ccb->ccb_h.timeout, 2031 mpt_timeout, ccb); 2032 } 2033 if (mpt->verbose > MPT_PRT_DEBUG) { 2034 int nc = 0; 2035 mpt_print_request(req->req_vbuf); 2036 for (trq = req->chain; trq; trq = trq->chain) { 2037 printf(" Additional Chain Area %d\n", nc++); 2038 mpt_dump_sgl(trq->req_vbuf, 0); 2039 } 2040 } 2041 2042 if (hdrp->Function == MPI_FUNCTION_TARGET_ASSIST) { 2043 request_t *cmd_req = MPT_TAG_2_REQ(mpt, ccb->csio.tag_id); 2044 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, cmd_req); 2045 #ifdef WE_TRUST_AUTO_GOOD_STATUS 2046 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) && 2047 csio->scsi_status == SCSI_STATUS_OK && tgt->resid == 0) { 2048 tgt->state = TGT_STATE_MOVING_DATA_AND_STATUS; 2049 } else { 2050 tgt->state = TGT_STATE_MOVING_DATA; 2051 } 2052 #else 2053 tgt->state = TGT_STATE_MOVING_DATA; 2054 #endif 2055 } 2056 mpt_send_cmd(mpt, req); 2057 } 2058 2059 static void 2060 mpt_start(struct cam_sim *sim, union ccb *ccb) 2061 { 2062 request_t *req; 2063 struct mpt_softc *mpt; 2064 MSG_SCSI_IO_REQUEST *mpt_req; 2065 struct ccb_scsiio *csio = &ccb->csio; 2066 struct ccb_hdr *ccbh = &ccb->ccb_h; 2067 bus_dmamap_callback_t *cb; 2068 target_id_t tgt; 2069 int raid_passthru; 2070 int error; 2071 2072 /* Get the pointer for the physical addapter */ 2073 mpt = ccb->ccb_h.ccb_mpt_ptr; 2074 raid_passthru = (sim == mpt->phydisk_sim); 2075 2076 if ((req = mpt_get_request(mpt, FALSE)) == NULL) { 2077 if (mpt->outofbeer == 0) { 2078 mpt->outofbeer = 1; 2079 xpt_freeze_simq(mpt->sim, 1); 2080 mpt_lprt(mpt, MPT_PRT_DEBUG, "FREEZEQ\n"); 2081 } 2082 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 2083 mpt_set_ccb_status(ccb, CAM_REQUEUE_REQ); 2084 xpt_done(ccb); 2085 return; 2086 } 2087 #ifdef INVARIANTS 2088 mpt_req_not_spcl(mpt, req, "mpt_start", __LINE__); 2089 #endif 2090 2091 if (sizeof (bus_addr_t) > 4) { 2092 cb = mpt_execute_req_a64; 2093 } else { 2094 cb = mpt_execute_req; 2095 } 2096 2097 /* 2098 * Link the ccb and the request structure so we can find 2099 * the other knowing either the request or the ccb 2100 */ 2101 req->ccb = ccb; 2102 ccb->ccb_h.ccb_req_ptr = req; 2103 2104 /* Now we build the command for the IOC */ 2105 mpt_req = req->req_vbuf; 2106 memset(mpt_req, 0, sizeof (MSG_SCSI_IO_REQUEST)); 2107 2108 mpt_req->Function = MPI_FUNCTION_SCSI_IO_REQUEST; 2109 if (raid_passthru) { 2110 mpt_req->Function = MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH; 2111 if (mpt_map_physdisk(mpt, ccb, &tgt) != 0) { 2112 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 2113 mpt_set_ccb_status(ccb, CAM_DEV_NOT_THERE); 2114 xpt_done(ccb); 2115 return; 2116 } 2117 mpt_req->Bus = 0; /* we never set bus here */ 2118 } else { 2119 tgt = ccb->ccb_h.target_id; 2120 mpt_req->Bus = 0; /* XXX */ 2121 2122 } 2123 mpt_req->SenseBufferLength = 2124 (csio->sense_len < MPT_SENSE_SIZE) ? 2125 csio->sense_len : MPT_SENSE_SIZE; 2126 2127 /* 2128 * We use the message context to find the request structure when we 2129 * Get the command completion interrupt from the IOC. 2130 */ 2131 mpt_req->MsgContext = htole32(req->index | scsi_io_handler_id); 2132 2133 /* Which physical device to do the I/O on */ 2134 mpt_req->TargetID = tgt; 2135 2136 be64enc(mpt_req->LUN, CAM_EXTLUN_BYTE_SWIZZLE(ccb->ccb_h.target_lun)); 2137 2138 /* Set the direction of the transfer */ 2139 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 2140 mpt_req->Control = MPI_SCSIIO_CONTROL_READ; 2141 } else if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) { 2142 mpt_req->Control = MPI_SCSIIO_CONTROL_WRITE; 2143 } else { 2144 mpt_req->Control = MPI_SCSIIO_CONTROL_NODATATRANSFER; 2145 } 2146 2147 if ((ccb->ccb_h.flags & CAM_TAG_ACTION_VALID) != 0) { 2148 switch(ccb->csio.tag_action) { 2149 case MSG_HEAD_OF_Q_TAG: 2150 mpt_req->Control |= MPI_SCSIIO_CONTROL_HEADOFQ; 2151 break; 2152 case MSG_ACA_TASK: 2153 mpt_req->Control |= MPI_SCSIIO_CONTROL_ACAQ; 2154 break; 2155 case MSG_ORDERED_Q_TAG: 2156 mpt_req->Control |= MPI_SCSIIO_CONTROL_ORDEREDQ; 2157 break; 2158 case MSG_SIMPLE_Q_TAG: 2159 default: 2160 mpt_req->Control |= MPI_SCSIIO_CONTROL_SIMPLEQ; 2161 break; 2162 } 2163 } else { 2164 if (mpt->is_fc || mpt->is_sas) { 2165 mpt_req->Control |= MPI_SCSIIO_CONTROL_SIMPLEQ; 2166 } else { 2167 /* XXX No such thing for a target doing packetized. */ 2168 mpt_req->Control |= MPI_SCSIIO_CONTROL_UNTAGGED; 2169 } 2170 } 2171 2172 if (mpt->is_spi) { 2173 if (ccb->ccb_h.flags & CAM_DIS_DISCONNECT) { 2174 mpt_req->Control |= MPI_SCSIIO_CONTROL_NO_DISCONNECT; 2175 } 2176 } 2177 mpt_req->Control = htole32(mpt_req->Control); 2178 2179 /* Copy the scsi command block into place */ 2180 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) { 2181 bcopy(csio->cdb_io.cdb_ptr, mpt_req->CDB, csio->cdb_len); 2182 } else { 2183 bcopy(csio->cdb_io.cdb_bytes, mpt_req->CDB, csio->cdb_len); 2184 } 2185 2186 mpt_req->CDBLength = csio->cdb_len; 2187 mpt_req->DataLength = htole32(csio->dxfer_len); 2188 mpt_req->SenseBufferLowAddr = htole32(req->sense_pbuf); 2189 2190 /* 2191 * Do a *short* print here if we're set to MPT_PRT_DEBUG 2192 */ 2193 if (mpt->verbose == MPT_PRT_DEBUG) { 2194 U32 df; 2195 mpt_prt(mpt, "mpt_start: %s op 0x%x ", 2196 (mpt_req->Function == MPI_FUNCTION_SCSI_IO_REQUEST)? 2197 "SCSI_IO_REQUEST" : "SCSI_IO_PASSTHRU", mpt_req->CDB[0]); 2198 df = mpt_req->Control & MPI_SCSIIO_CONTROL_DATADIRECTION_MASK; 2199 if (df != MPI_SCSIIO_CONTROL_NODATATRANSFER) { 2200 mpt_prtc(mpt, "(%s %u byte%s ", 2201 (df == MPI_SCSIIO_CONTROL_READ)? 2202 "read" : "write", csio->dxfer_len, 2203 (csio->dxfer_len == 1)? ")" : "s)"); 2204 } 2205 mpt_prtc(mpt, "tgt %u lun %jx req %p:%u\n", tgt, 2206 (uintmax_t)ccb->ccb_h.target_lun, req, req->serno); 2207 } 2208 2209 error = bus_dmamap_load_ccb(mpt->buffer_dmat, req->dmap, ccb, cb, 2210 req, 0); 2211 if (error == EINPROGRESS) { 2212 /* 2213 * So as to maintain ordering, freeze the controller queue 2214 * until our mapping is returned. 2215 */ 2216 xpt_freeze_simq(mpt->sim, 1); 2217 ccbh->status |= CAM_RELEASE_SIMQ; 2218 } 2219 } 2220 2221 static int 2222 mpt_bus_reset(struct mpt_softc *mpt, target_id_t tgt, lun_id_t lun, 2223 int sleep_ok) 2224 { 2225 int error; 2226 uint16_t status; 2227 uint8_t response; 2228 2229 error = mpt_scsi_send_tmf(mpt, 2230 (tgt != CAM_TARGET_WILDCARD || lun != CAM_LUN_WILDCARD) ? 2231 MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET : 2232 MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS, 2233 mpt->is_fc ? MPI_SCSITASKMGMT_MSGFLAGS_LIP_RESET_OPTION : 0, 2234 0, /* XXX How do I get the channel ID? */ 2235 tgt != CAM_TARGET_WILDCARD ? tgt : 0, 2236 lun != CAM_LUN_WILDCARD ? lun : 0, 2237 0, sleep_ok); 2238 2239 if (error != 0) { 2240 /* 2241 * mpt_scsi_send_tmf hard resets on failure, so no 2242 * need to do so here. 2243 */ 2244 mpt_prt(mpt, 2245 "mpt_bus_reset: mpt_scsi_send_tmf returned %d\n", error); 2246 return (EIO); 2247 } 2248 2249 /* Wait for bus reset to be processed by the IOC. */ 2250 error = mpt_wait_req(mpt, mpt->tmf_req, REQ_STATE_DONE, 2251 REQ_STATE_DONE, sleep_ok, 5000); 2252 2253 status = le16toh(mpt->tmf_req->IOCStatus); 2254 response = mpt->tmf_req->ResponseCode; 2255 mpt->tmf_req->state = REQ_STATE_FREE; 2256 2257 if (error) { 2258 mpt_prt(mpt, "mpt_bus_reset: Reset timed-out. " 2259 "Resetting controller.\n"); 2260 mpt_reset(mpt, TRUE); 2261 return (ETIMEDOUT); 2262 } 2263 2264 if ((status & MPI_IOCSTATUS_MASK) != MPI_IOCSTATUS_SUCCESS) { 2265 mpt_prt(mpt, "mpt_bus_reset: TMF IOC Status 0x%x. " 2266 "Resetting controller.\n", status); 2267 mpt_reset(mpt, TRUE); 2268 return (EIO); 2269 } 2270 2271 if (response != MPI_SCSITASKMGMT_RSP_TM_SUCCEEDED && 2272 response != MPI_SCSITASKMGMT_RSP_TM_COMPLETE) { 2273 mpt_prt(mpt, "mpt_bus_reset: TMF Response 0x%x. " 2274 "Resetting controller.\n", response); 2275 mpt_reset(mpt, TRUE); 2276 return (EIO); 2277 } 2278 return (0); 2279 } 2280 2281 static int 2282 mpt_fc_reset_link(struct mpt_softc *mpt, int dowait) 2283 { 2284 int r = 0; 2285 request_t *req; 2286 PTR_MSG_FC_PRIMITIVE_SEND_REQUEST fc; 2287 2288 req = mpt_get_request(mpt, FALSE); 2289 if (req == NULL) { 2290 return (ENOMEM); 2291 } 2292 fc = req->req_vbuf; 2293 memset(fc, 0, sizeof(*fc)); 2294 fc->SendFlags = MPI_FC_PRIM_SEND_FLAGS_RESET_LINK; 2295 fc->Function = MPI_FUNCTION_FC_PRIMITIVE_SEND; 2296 fc->MsgContext = htole32(req->index | fc_els_handler_id); 2297 mpt_send_cmd(mpt, req); 2298 if (dowait) { 2299 r = mpt_wait_req(mpt, req, REQ_STATE_DONE, 2300 REQ_STATE_DONE, FALSE, 60 * 1000); 2301 if (r == 0) { 2302 mpt_free_request(mpt, req); 2303 } 2304 } 2305 return (r); 2306 } 2307 2308 static int 2309 mpt_cam_event(struct mpt_softc *mpt, request_t *req, 2310 MSG_EVENT_NOTIFY_REPLY *msg) 2311 { 2312 uint32_t data0, data1; 2313 2314 data0 = le32toh(msg->Data[0]); 2315 data1 = le32toh(msg->Data[1]); 2316 switch(msg->Event & 0xFF) { 2317 case MPI_EVENT_UNIT_ATTENTION: 2318 mpt_prt(mpt, "UNIT ATTENTION: Bus: 0x%02x TargetID: 0x%02x\n", 2319 (data0 >> 8) & 0xff, data0 & 0xff); 2320 break; 2321 2322 case MPI_EVENT_IOC_BUS_RESET: 2323 /* We generated a bus reset */ 2324 mpt_prt(mpt, "IOC Generated Bus Reset Port: %d\n", 2325 (data0 >> 8) & 0xff); 2326 xpt_async(AC_BUS_RESET, mpt->path, NULL); 2327 break; 2328 2329 case MPI_EVENT_EXT_BUS_RESET: 2330 /* Someone else generated a bus reset */ 2331 mpt_prt(mpt, "External Bus Reset Detected\n"); 2332 /* 2333 * These replies don't return EventData like the MPI 2334 * spec says they do 2335 */ 2336 xpt_async(AC_BUS_RESET, mpt->path, NULL); 2337 break; 2338 2339 case MPI_EVENT_RESCAN: 2340 { 2341 union ccb *ccb; 2342 uint32_t pathid; 2343 /* 2344 * In general this means a device has been added to the loop. 2345 */ 2346 mpt_prt(mpt, "Rescan Port: %d\n", (data0 >> 8) & 0xff); 2347 if (mpt->ready == 0) { 2348 break; 2349 } 2350 if (mpt->phydisk_sim) { 2351 pathid = cam_sim_path(mpt->phydisk_sim); 2352 } else { 2353 pathid = cam_sim_path(mpt->sim); 2354 } 2355 /* 2356 * Allocate a CCB, create a wildcard path for this bus, 2357 * and schedule a rescan. 2358 */ 2359 ccb = xpt_alloc_ccb_nowait(); 2360 if (ccb == NULL) { 2361 mpt_prt(mpt, "unable to alloc CCB for rescan\n"); 2362 break; 2363 } 2364 2365 if (xpt_create_path(&ccb->ccb_h.path, NULL, pathid, 2366 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 2367 mpt_prt(mpt, "unable to create path for rescan\n"); 2368 xpt_free_ccb(ccb); 2369 break; 2370 } 2371 xpt_rescan(ccb); 2372 break; 2373 } 2374 2375 case MPI_EVENT_LINK_STATUS_CHANGE: 2376 mpt_prt(mpt, "Port %d: LinkState: %s\n", 2377 (data1 >> 8) & 0xff, 2378 ((data0 & 0xff) == 0)? "Failed" : "Active"); 2379 break; 2380 2381 case MPI_EVENT_LOOP_STATE_CHANGE: 2382 switch ((data0 >> 16) & 0xff) { 2383 case 0x01: 2384 mpt_prt(mpt, 2385 "Port 0x%x: FC LinkEvent: LIP(%02x,%02x) " 2386 "(Loop Initialization)\n", 2387 (data1 >> 8) & 0xff, 2388 (data0 >> 8) & 0xff, 2389 (data0 ) & 0xff); 2390 switch ((data0 >> 8) & 0xff) { 2391 case 0xF7: 2392 if ((data0 & 0xff) == 0xF7) { 2393 mpt_prt(mpt, "Device needs AL_PA\n"); 2394 } else { 2395 mpt_prt(mpt, "Device %02x doesn't like " 2396 "FC performance\n", 2397 data0 & 0xFF); 2398 } 2399 break; 2400 case 0xF8: 2401 if ((data0 & 0xff) == 0xF7) { 2402 mpt_prt(mpt, "Device had loop failure " 2403 "at its receiver prior to acquiring" 2404 " AL_PA\n"); 2405 } else { 2406 mpt_prt(mpt, "Device %02x detected loop" 2407 " failure at its receiver\n", 2408 data0 & 0xFF); 2409 } 2410 break; 2411 default: 2412 mpt_prt(mpt, "Device %02x requests that device " 2413 "%02x reset itself\n", 2414 data0 & 0xFF, 2415 (data0 >> 8) & 0xFF); 2416 break; 2417 } 2418 break; 2419 case 0x02: 2420 mpt_prt(mpt, "Port 0x%x: FC LinkEvent: " 2421 "LPE(%02x,%02x) (Loop Port Enable)\n", 2422 (data1 >> 8) & 0xff, /* Port */ 2423 (data0 >> 8) & 0xff, /* Character 3 */ 2424 (data0 ) & 0xff /* Character 4 */); 2425 break; 2426 case 0x03: 2427 mpt_prt(mpt, "Port 0x%x: FC LinkEvent: " 2428 "LPB(%02x,%02x) (Loop Port Bypass)\n", 2429 (data1 >> 8) & 0xff, /* Port */ 2430 (data0 >> 8) & 0xff, /* Character 3 */ 2431 (data0 ) & 0xff /* Character 4 */); 2432 break; 2433 default: 2434 mpt_prt(mpt, "Port 0x%x: FC LinkEvent: Unknown " 2435 "FC event (%02x %02x %02x)\n", 2436 (data1 >> 8) & 0xff, /* Port */ 2437 (data0 >> 16) & 0xff, /* Event */ 2438 (data0 >> 8) & 0xff, /* Character 3 */ 2439 (data0 ) & 0xff /* Character 4 */); 2440 } 2441 break; 2442 2443 case MPI_EVENT_LOGOUT: 2444 mpt_prt(mpt, "FC Logout Port: %d N_PortID: %02x\n", 2445 (data1 >> 8) & 0xff, data0); 2446 break; 2447 case MPI_EVENT_QUEUE_FULL: 2448 { 2449 struct cam_sim *sim; 2450 struct cam_path *tmppath; 2451 struct ccb_relsim crs; 2452 PTR_EVENT_DATA_QUEUE_FULL pqf; 2453 lun_id_t lun_id; 2454 2455 pqf = (PTR_EVENT_DATA_QUEUE_FULL)msg->Data; 2456 pqf->CurrentDepth = le16toh(pqf->CurrentDepth); 2457 if (bootverbose) { 2458 mpt_prt(mpt, "QUEUE FULL EVENT: Bus 0x%02x Target 0x%02x " 2459 "Depth %d\n", 2460 pqf->Bus, pqf->TargetID, pqf->CurrentDepth); 2461 } 2462 if (mpt->phydisk_sim && mpt_is_raid_member(mpt, 2463 pqf->TargetID) != 0) { 2464 sim = mpt->phydisk_sim; 2465 } else { 2466 sim = mpt->sim; 2467 } 2468 for (lun_id = 0; lun_id < MPT_MAX_LUNS; lun_id++) { 2469 if (xpt_create_path(&tmppath, NULL, cam_sim_path(sim), 2470 pqf->TargetID, lun_id) != CAM_REQ_CMP) { 2471 mpt_prt(mpt, "unable to create a path to send " 2472 "XPT_REL_SIMQ"); 2473 break; 2474 } 2475 xpt_setup_ccb(&crs.ccb_h, tmppath, 5); 2476 crs.ccb_h.func_code = XPT_REL_SIMQ; 2477 crs.ccb_h.flags = CAM_DEV_QFREEZE; 2478 crs.release_flags = RELSIM_ADJUST_OPENINGS; 2479 crs.openings = pqf->CurrentDepth - 1; 2480 xpt_action((union ccb *)&crs); 2481 if (crs.ccb_h.status != CAM_REQ_CMP) { 2482 mpt_prt(mpt, "XPT_REL_SIMQ failed\n"); 2483 } 2484 xpt_free_path(tmppath); 2485 } 2486 break; 2487 } 2488 case MPI_EVENT_IR_RESYNC_UPDATE: 2489 mpt_prt(mpt, "IR resync update %d completed\n", 2490 (data0 >> 16) & 0xff); 2491 break; 2492 case MPI_EVENT_SAS_DEVICE_STATUS_CHANGE: 2493 { 2494 union ccb *ccb; 2495 struct cam_sim *sim; 2496 struct cam_path *tmppath; 2497 PTR_EVENT_DATA_SAS_DEVICE_STATUS_CHANGE psdsc; 2498 2499 psdsc = (PTR_EVENT_DATA_SAS_DEVICE_STATUS_CHANGE)msg->Data; 2500 if (mpt->phydisk_sim && mpt_is_raid_member(mpt, 2501 psdsc->TargetID) != 0) 2502 sim = mpt->phydisk_sim; 2503 else 2504 sim = mpt->sim; 2505 switch(psdsc->ReasonCode) { 2506 case MPI_EVENT_SAS_DEV_STAT_RC_ADDED: 2507 ccb = xpt_alloc_ccb_nowait(); 2508 if (ccb == NULL) { 2509 mpt_prt(mpt, 2510 "unable to alloc CCB for rescan\n"); 2511 break; 2512 } 2513 if (xpt_create_path(&ccb->ccb_h.path, NULL, 2514 cam_sim_path(sim), psdsc->TargetID, 2515 CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 2516 mpt_prt(mpt, 2517 "unable to create path for rescan\n"); 2518 xpt_free_ccb(ccb); 2519 break; 2520 } 2521 xpt_rescan(ccb); 2522 break; 2523 case MPI_EVENT_SAS_DEV_STAT_RC_NOT_RESPONDING: 2524 if (xpt_create_path(&tmppath, NULL, cam_sim_path(sim), 2525 psdsc->TargetID, CAM_LUN_WILDCARD) != 2526 CAM_REQ_CMP) { 2527 mpt_prt(mpt, 2528 "unable to create path for async event"); 2529 break; 2530 } 2531 xpt_async(AC_LOST_DEVICE, tmppath, NULL); 2532 xpt_free_path(tmppath); 2533 break; 2534 case MPI_EVENT_SAS_DEV_STAT_RC_CMPL_INTERNAL_DEV_RESET: 2535 case MPI_EVENT_SAS_DEV_STAT_RC_CMPL_TASK_ABORT_INTERNAL: 2536 case MPI_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET: 2537 break; 2538 default: 2539 mpt_lprt(mpt, MPT_PRT_WARN, 2540 "SAS device status change: Bus: 0x%02x TargetID: " 2541 "0x%02x ReasonCode: 0x%02x\n", psdsc->Bus, 2542 psdsc->TargetID, psdsc->ReasonCode); 2543 break; 2544 } 2545 break; 2546 } 2547 case MPI_EVENT_SAS_DISCOVERY_ERROR: 2548 { 2549 PTR_EVENT_DATA_DISCOVERY_ERROR pde; 2550 2551 pde = (PTR_EVENT_DATA_DISCOVERY_ERROR)msg->Data; 2552 pde->DiscoveryStatus = le32toh(pde->DiscoveryStatus); 2553 mpt_lprt(mpt, MPT_PRT_WARN, 2554 "SAS discovery error: Port: 0x%02x Status: 0x%08x\n", 2555 pde->Port, pde->DiscoveryStatus); 2556 break; 2557 } 2558 case MPI_EVENT_EVENT_CHANGE: 2559 case MPI_EVENT_INTEGRATED_RAID: 2560 case MPI_EVENT_IR2: 2561 case MPI_EVENT_LOG_ENTRY_ADDED: 2562 case MPI_EVENT_SAS_DISCOVERY: 2563 case MPI_EVENT_SAS_PHY_LINK_STATUS: 2564 case MPI_EVENT_SAS_SES: 2565 break; 2566 default: 2567 mpt_lprt(mpt, MPT_PRT_WARN, "mpt_cam_event: 0x%x\n", 2568 msg->Event & 0xFF); 2569 return (0); 2570 } 2571 return (1); 2572 } 2573 2574 /* 2575 * Reply path for all SCSI I/O requests, called from our 2576 * interrupt handler by extracting our handler index from 2577 * the MsgContext field of the reply from the IOC. 2578 * 2579 * This routine is optimized for the common case of a 2580 * completion without error. All exception handling is 2581 * offloaded to non-inlined helper routines to minimize 2582 * cache footprint. 2583 */ 2584 static int 2585 mpt_scsi_reply_handler(struct mpt_softc *mpt, request_t *req, 2586 uint32_t reply_desc, MSG_DEFAULT_REPLY *reply_frame) 2587 { 2588 MSG_SCSI_IO_REQUEST *scsi_req; 2589 union ccb *ccb; 2590 2591 if (req->state == REQ_STATE_FREE) { 2592 mpt_prt(mpt, "mpt_scsi_reply_handler: req already free\n"); 2593 return (TRUE); 2594 } 2595 2596 scsi_req = (MSG_SCSI_IO_REQUEST *)req->req_vbuf; 2597 ccb = req->ccb; 2598 if (ccb == NULL) { 2599 mpt_prt(mpt, "mpt_scsi_reply_handler: req %p:%u with no ccb\n", 2600 req, req->serno); 2601 return (TRUE); 2602 } 2603 2604 mpt_req_untimeout(req, mpt_timeout, ccb); 2605 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 2606 2607 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) { 2608 bus_dmasync_op_t op; 2609 2610 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) 2611 op = BUS_DMASYNC_POSTREAD; 2612 else 2613 op = BUS_DMASYNC_POSTWRITE; 2614 bus_dmamap_sync(mpt->buffer_dmat, req->dmap, op); 2615 bus_dmamap_unload(mpt->buffer_dmat, req->dmap); 2616 } 2617 2618 if (reply_frame == NULL) { 2619 /* 2620 * Context only reply, completion without error status. 2621 */ 2622 ccb->csio.resid = 0; 2623 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 2624 ccb->csio.scsi_status = SCSI_STATUS_OK; 2625 } else { 2626 mpt_scsi_reply_frame_handler(mpt, req, reply_frame); 2627 } 2628 2629 if (mpt->outofbeer) { 2630 ccb->ccb_h.status |= CAM_RELEASE_SIMQ; 2631 mpt->outofbeer = 0; 2632 mpt_lprt(mpt, MPT_PRT_DEBUG, "THAWQ\n"); 2633 } 2634 if (scsi_req->CDB[0] == INQUIRY && (scsi_req->CDB[1] & SI_EVPD) == 0) { 2635 struct scsi_inquiry_data *iq = 2636 (struct scsi_inquiry_data *)ccb->csio.data_ptr; 2637 if (scsi_req->Function == 2638 MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH) { 2639 /* 2640 * Fake out the device type so that only the 2641 * pass-thru device will attach. 2642 */ 2643 iq->device &= ~0x1F; 2644 iq->device |= T_NODEVICE; 2645 } 2646 } 2647 if (mpt->verbose == MPT_PRT_DEBUG) { 2648 mpt_prt(mpt, "mpt_scsi_reply_handler: %p:%u complete\n", 2649 req, req->serno); 2650 } 2651 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 2652 xpt_done(ccb); 2653 if ((req->state & REQ_STATE_TIMEDOUT) == 0) { 2654 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2655 } else { 2656 mpt_prt(mpt, "completing timedout/aborted req %p:%u\n", 2657 req, req->serno); 2658 TAILQ_REMOVE(&mpt->request_timeout_list, req, links); 2659 } 2660 KASSERT((req->state & REQ_STATE_NEED_WAKEUP) == 0, 2661 ("CCB req needed wakeup")); 2662 #ifdef INVARIANTS 2663 mpt_req_not_spcl(mpt, req, "mpt_scsi_reply_handler", __LINE__); 2664 #endif 2665 mpt_free_request(mpt, req); 2666 return (TRUE); 2667 } 2668 2669 static int 2670 mpt_scsi_tmf_reply_handler(struct mpt_softc *mpt, request_t *req, 2671 uint32_t reply_desc, MSG_DEFAULT_REPLY *reply_frame) 2672 { 2673 MSG_SCSI_TASK_MGMT_REPLY *tmf_reply; 2674 2675 KASSERT(req == mpt->tmf_req, ("TMF Reply not using mpt->tmf_req")); 2676 #ifdef INVARIANTS 2677 mpt_req_not_spcl(mpt, req, "mpt_scsi_tmf_reply_handler", __LINE__); 2678 #endif 2679 tmf_reply = (MSG_SCSI_TASK_MGMT_REPLY *)reply_frame; 2680 /* Record IOC Status and Response Code of TMF for any waiters. */ 2681 req->IOCStatus = le16toh(tmf_reply->IOCStatus); 2682 req->ResponseCode = tmf_reply->ResponseCode; 2683 2684 mpt_lprt(mpt, MPT_PRT_DEBUG, "TMF complete: req %p:%u status 0x%x\n", 2685 req, req->serno, le16toh(tmf_reply->IOCStatus)); 2686 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2687 if ((req->state & REQ_STATE_NEED_WAKEUP) != 0) { 2688 req->state |= REQ_STATE_DONE; 2689 wakeup(req); 2690 } else { 2691 mpt->tmf_req->state = REQ_STATE_FREE; 2692 } 2693 return (TRUE); 2694 } 2695 2696 /* 2697 * XXX: Move to definitions file 2698 */ 2699 #define ELS 0x22 2700 #define FC4LS 0x32 2701 #define ABTS 0x81 2702 #define BA_ACC 0x84 2703 2704 #define LS_RJT 0x01 2705 #define LS_ACC 0x02 2706 #define PLOGI 0x03 2707 #define LOGO 0x05 2708 #define SRR 0x14 2709 #define PRLI 0x20 2710 #define PRLO 0x21 2711 #define ADISC 0x52 2712 #define RSCN 0x61 2713 2714 static void 2715 mpt_fc_els_send_response(struct mpt_softc *mpt, request_t *req, 2716 PTR_MSG_LINK_SERVICE_BUFFER_POST_REPLY rp, U8 length) 2717 { 2718 uint32_t fl; 2719 MSG_LINK_SERVICE_RSP_REQUEST tmp; 2720 PTR_MSG_LINK_SERVICE_RSP_REQUEST rsp; 2721 2722 /* 2723 * We are going to reuse the ELS request to send this response back. 2724 */ 2725 rsp = &tmp; 2726 memset(rsp, 0, sizeof(*rsp)); 2727 2728 #ifdef USE_IMMEDIATE_LINK_DATA 2729 /* 2730 * Apparently the IMMEDIATE stuff doesn't seem to work. 2731 */ 2732 rsp->RspFlags = LINK_SERVICE_RSP_FLAGS_IMMEDIATE; 2733 #endif 2734 rsp->RspLength = length; 2735 rsp->Function = MPI_FUNCTION_FC_LINK_SRVC_RSP; 2736 rsp->MsgContext = htole32(req->index | fc_els_handler_id); 2737 2738 /* 2739 * Copy over information from the original reply frame to 2740 * it's correct place in the response. 2741 */ 2742 memcpy((U8 *)rsp + 0x0c, (U8 *)rp + 0x1c, 24); 2743 2744 /* 2745 * And now copy back the temporary area to the original frame. 2746 */ 2747 memcpy(req->req_vbuf, rsp, sizeof (MSG_LINK_SERVICE_RSP_REQUEST)); 2748 rsp = req->req_vbuf; 2749 2750 #ifdef USE_IMMEDIATE_LINK_DATA 2751 memcpy((U8 *)&rsp->SGL, &((U8 *)req->req_vbuf)[MPT_RQSL(mpt)], length); 2752 #else 2753 { 2754 PTR_SGE_SIMPLE32 se = (PTR_SGE_SIMPLE32) &rsp->SGL; 2755 bus_addr_t paddr = req->req_pbuf; 2756 paddr += MPT_RQSL(mpt); 2757 2758 fl = 2759 MPI_SGE_FLAGS_HOST_TO_IOC | 2760 MPI_SGE_FLAGS_SIMPLE_ELEMENT | 2761 MPI_SGE_FLAGS_LAST_ELEMENT | 2762 MPI_SGE_FLAGS_END_OF_LIST | 2763 MPI_SGE_FLAGS_END_OF_BUFFER; 2764 fl <<= MPI_SGE_FLAGS_SHIFT; 2765 fl |= (length); 2766 se->FlagsLength = htole32(fl); 2767 se->Address = htole32((uint32_t) paddr); 2768 } 2769 #endif 2770 2771 /* 2772 * Send it on... 2773 */ 2774 mpt_send_cmd(mpt, req); 2775 } 2776 2777 static int 2778 mpt_fc_els_reply_handler(struct mpt_softc *mpt, request_t *req, 2779 uint32_t reply_desc, MSG_DEFAULT_REPLY *reply_frame) 2780 { 2781 PTR_MSG_LINK_SERVICE_BUFFER_POST_REPLY rp = 2782 (PTR_MSG_LINK_SERVICE_BUFFER_POST_REPLY) reply_frame; 2783 U8 rctl; 2784 U8 type; 2785 U8 cmd; 2786 U16 status = le16toh(reply_frame->IOCStatus); 2787 U32 *elsbuf; 2788 int ioindex; 2789 int do_refresh = TRUE; 2790 2791 #ifdef INVARIANTS 2792 KASSERT(mpt_req_on_free_list(mpt, req) == 0, 2793 ("fc_els_reply_handler: req %p:%u for function %x on freelist!", 2794 req, req->serno, rp->Function)); 2795 if (rp->Function != MPI_FUNCTION_FC_PRIMITIVE_SEND) { 2796 mpt_req_spcl(mpt, req, "fc_els_reply_handler", __LINE__); 2797 } else { 2798 mpt_req_not_spcl(mpt, req, "fc_els_reply_handler", __LINE__); 2799 } 2800 #endif 2801 mpt_lprt(mpt, MPT_PRT_DEBUG, 2802 "FC_ELS Complete: req %p:%u, reply %p function %x\n", 2803 req, req->serno, reply_frame, reply_frame->Function); 2804 2805 if (status != MPI_IOCSTATUS_SUCCESS) { 2806 mpt_prt(mpt, "ELS REPLY STATUS 0x%x for Function %x\n", 2807 status, reply_frame->Function); 2808 if (status == MPI_IOCSTATUS_INVALID_STATE) { 2809 /* 2810 * XXX: to get around shutdown issue 2811 */ 2812 mpt->disabled = 1; 2813 return (TRUE); 2814 } 2815 return (TRUE); 2816 } 2817 2818 /* 2819 * If the function of a link service response, we recycle the 2820 * response to be a refresh for a new link service request. 2821 * 2822 * The request pointer is bogus in this case and we have to fetch 2823 * it based upon the TransactionContext. 2824 */ 2825 if (rp->Function == MPI_FUNCTION_FC_LINK_SRVC_RSP) { 2826 /* Freddie Uncle Charlie Katie */ 2827 /* We don't get the IOINDEX as part of the Link Svc Rsp */ 2828 for (ioindex = 0; ioindex < mpt->els_cmds_allocated; ioindex++) 2829 if (mpt->els_cmd_ptrs[ioindex] == req) { 2830 break; 2831 } 2832 2833 KASSERT(ioindex < mpt->els_cmds_allocated, 2834 ("can't find my mommie!")); 2835 2836 /* remove from active list as we're going to re-post it */ 2837 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2838 req->state &= ~REQ_STATE_QUEUED; 2839 req->state |= REQ_STATE_DONE; 2840 mpt_fc_post_els(mpt, req, ioindex); 2841 return (TRUE); 2842 } 2843 2844 if (rp->Function == MPI_FUNCTION_FC_PRIMITIVE_SEND) { 2845 /* remove from active list as we're done */ 2846 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2847 req->state &= ~REQ_STATE_QUEUED; 2848 req->state |= REQ_STATE_DONE; 2849 if (req->state & REQ_STATE_TIMEDOUT) { 2850 mpt_lprt(mpt, MPT_PRT_DEBUG, 2851 "Sync Primitive Send Completed After Timeout\n"); 2852 mpt_free_request(mpt, req); 2853 } else if ((req->state & REQ_STATE_NEED_WAKEUP) == 0) { 2854 mpt_lprt(mpt, MPT_PRT_DEBUG, 2855 "Async Primitive Send Complete\n"); 2856 mpt_free_request(mpt, req); 2857 } else { 2858 mpt_lprt(mpt, MPT_PRT_DEBUG, 2859 "Sync Primitive Send Complete- Waking Waiter\n"); 2860 wakeup(req); 2861 } 2862 return (TRUE); 2863 } 2864 2865 if (rp->Function != MPI_FUNCTION_FC_LINK_SRVC_BUF_POST) { 2866 mpt_prt(mpt, "unexpected ELS_REPLY: Function 0x%x Flags %x " 2867 "Length %d Message Flags %x\n", rp->Function, rp->Flags, 2868 rp->MsgLength, rp->MsgFlags); 2869 return (TRUE); 2870 } 2871 2872 if (rp->MsgLength <= 5) { 2873 /* 2874 * This is just a ack of an original ELS buffer post 2875 */ 2876 mpt_lprt(mpt, MPT_PRT_DEBUG, 2877 "RECV'd ACK of FC_ELS buf post %p:%u\n", req, req->serno); 2878 return (TRUE); 2879 } 2880 2881 2882 rctl = (le32toh(rp->Rctl_Did) & MPI_FC_RCTL_MASK) >> MPI_FC_RCTL_SHIFT; 2883 type = (le32toh(rp->Type_Fctl) & MPI_FC_TYPE_MASK) >> MPI_FC_TYPE_SHIFT; 2884 2885 elsbuf = &((U32 *)req->req_vbuf)[MPT_RQSL(mpt)/sizeof (U32)]; 2886 cmd = be32toh(elsbuf[0]) >> 24; 2887 2888 if (rp->Flags & MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED) { 2889 mpt_lprt(mpt, MPT_PRT_ALWAYS, "ELS_REPLY: response unneeded\n"); 2890 return (TRUE); 2891 } 2892 2893 ioindex = le32toh(rp->TransactionContext); 2894 req = mpt->els_cmd_ptrs[ioindex]; 2895 2896 if (rctl == ELS && type == 1) { 2897 switch (cmd) { 2898 case PRLI: 2899 /* 2900 * Send back a PRLI ACC 2901 */ 2902 mpt_prt(mpt, "PRLI from 0x%08x%08x\n", 2903 le32toh(rp->Wwn.PortNameHigh), 2904 le32toh(rp->Wwn.PortNameLow)); 2905 elsbuf[0] = htobe32(0x02100014); 2906 elsbuf[1] |= htobe32(0x00000100); 2907 elsbuf[4] = htobe32(0x00000002); 2908 if (mpt->role & MPT_ROLE_TARGET) 2909 elsbuf[4] |= htobe32(0x00000010); 2910 if (mpt->role & MPT_ROLE_INITIATOR) 2911 elsbuf[4] |= htobe32(0x00000020); 2912 /* remove from active list as we're done */ 2913 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2914 req->state &= ~REQ_STATE_QUEUED; 2915 req->state |= REQ_STATE_DONE; 2916 mpt_fc_els_send_response(mpt, req, rp, 20); 2917 do_refresh = FALSE; 2918 break; 2919 case PRLO: 2920 memset(elsbuf, 0, 5 * (sizeof (U32))); 2921 elsbuf[0] = htobe32(0x02100014); 2922 elsbuf[1] = htobe32(0x08000100); 2923 mpt_prt(mpt, "PRLO from 0x%08x%08x\n", 2924 le32toh(rp->Wwn.PortNameHigh), 2925 le32toh(rp->Wwn.PortNameLow)); 2926 /* remove from active list as we're done */ 2927 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 2928 req->state &= ~REQ_STATE_QUEUED; 2929 req->state |= REQ_STATE_DONE; 2930 mpt_fc_els_send_response(mpt, req, rp, 20); 2931 do_refresh = FALSE; 2932 break; 2933 default: 2934 mpt_prt(mpt, "ELS TYPE 1 COMMAND: %x\n", cmd); 2935 break; 2936 } 2937 } else if (rctl == ABTS && type == 0) { 2938 uint16_t rx_id = le16toh(rp->Rxid); 2939 uint16_t ox_id = le16toh(rp->Oxid); 2940 request_t *tgt_req = NULL; 2941 2942 mpt_prt(mpt, 2943 "ELS: ABTS OX_ID 0x%x RX_ID 0x%x from 0x%08x%08x\n", 2944 ox_id, rx_id, le32toh(rp->Wwn.PortNameHigh), 2945 le32toh(rp->Wwn.PortNameLow)); 2946 if (rx_id >= mpt->mpt_max_tgtcmds) { 2947 mpt_prt(mpt, "Bad RX_ID 0x%x\n", rx_id); 2948 } else if (mpt->tgt_cmd_ptrs == NULL) { 2949 mpt_prt(mpt, "No TGT CMD PTRS\n"); 2950 } else { 2951 tgt_req = mpt->tgt_cmd_ptrs[rx_id]; 2952 } 2953 if (tgt_req) { 2954 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, tgt_req); 2955 union ccb *ccb; 2956 uint32_t ct_id; 2957 2958 /* 2959 * Check to make sure we have the correct command 2960 * The reply descriptor in the target state should 2961 * should contain an IoIndex that should match the 2962 * RX_ID. 2963 * 2964 * It'd be nice to have OX_ID to crosscheck with 2965 * as well. 2966 */ 2967 ct_id = GET_IO_INDEX(tgt->reply_desc); 2968 2969 if (ct_id != rx_id) { 2970 mpt_lprt(mpt, MPT_PRT_ERROR, "ABORT Mismatch: " 2971 "RX_ID received=0x%x; RX_ID in cmd=0x%x\n", 2972 rx_id, ct_id); 2973 goto skip; 2974 } 2975 2976 ccb = tgt->ccb; 2977 if (ccb) { 2978 mpt_prt(mpt, 2979 "CCB (%p): lun %jx flags %x status %x\n", 2980 ccb, (uintmax_t)ccb->ccb_h.target_lun, 2981 ccb->ccb_h.flags, ccb->ccb_h.status); 2982 } 2983 mpt_prt(mpt, "target state 0x%x resid %u xfrd %u rpwrd " 2984 "%x nxfers %x\n", tgt->state, 2985 tgt->resid, tgt->bytes_xfered, tgt->reply_desc, 2986 tgt->nxfers); 2987 skip: 2988 if (mpt_abort_target_cmd(mpt, tgt_req)) { 2989 mpt_prt(mpt, "unable to start TargetAbort\n"); 2990 } 2991 } else { 2992 mpt_prt(mpt, "no back pointer for RX_ID 0x%x\n", rx_id); 2993 } 2994 memset(elsbuf, 0, 5 * (sizeof (U32))); 2995 elsbuf[0] = htobe32(0); 2996 elsbuf[1] = htobe32((ox_id << 16) | rx_id); 2997 elsbuf[2] = htobe32(0x000ffff); 2998 /* 2999 * Dork with the reply frame so that the response to it 3000 * will be correct. 3001 */ 3002 rp->Rctl_Did += ((BA_ACC - ABTS) << MPI_FC_RCTL_SHIFT); 3003 /* remove from active list as we're done */ 3004 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 3005 req->state &= ~REQ_STATE_QUEUED; 3006 req->state |= REQ_STATE_DONE; 3007 mpt_fc_els_send_response(mpt, req, rp, 12); 3008 do_refresh = FALSE; 3009 } else { 3010 mpt_prt(mpt, "ELS: RCTL %x TYPE %x CMD %x\n", rctl, type, cmd); 3011 } 3012 if (do_refresh == TRUE) { 3013 /* remove from active list as we're done */ 3014 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 3015 req->state &= ~REQ_STATE_QUEUED; 3016 req->state |= REQ_STATE_DONE; 3017 mpt_fc_post_els(mpt, req, ioindex); 3018 } 3019 return (TRUE); 3020 } 3021 3022 /* 3023 * Clean up all SCSI Initiator personality state in response 3024 * to a controller reset. 3025 */ 3026 static void 3027 mpt_cam_ioc_reset(struct mpt_softc *mpt, int type) 3028 { 3029 3030 /* 3031 * The pending list is already run down by 3032 * the generic handler. Perform the same 3033 * operation on the timed out request list. 3034 */ 3035 mpt_complete_request_chain(mpt, &mpt->request_timeout_list, 3036 MPI_IOCSTATUS_INVALID_STATE); 3037 3038 /* 3039 * XXX: We need to repost ELS and Target Command Buffers? 3040 */ 3041 3042 /* 3043 * Inform the XPT that a bus reset has occurred. 3044 */ 3045 xpt_async(AC_BUS_RESET, mpt->path, NULL); 3046 } 3047 3048 /* 3049 * Parse additional completion information in the reply 3050 * frame for SCSI I/O requests. 3051 */ 3052 static int 3053 mpt_scsi_reply_frame_handler(struct mpt_softc *mpt, request_t *req, 3054 MSG_DEFAULT_REPLY *reply_frame) 3055 { 3056 union ccb *ccb; 3057 MSG_SCSI_IO_REPLY *scsi_io_reply; 3058 u_int ioc_status; 3059 u_int sstate; 3060 3061 MPT_DUMP_REPLY_FRAME(mpt, reply_frame); 3062 KASSERT(reply_frame->Function == MPI_FUNCTION_SCSI_IO_REQUEST 3063 || reply_frame->Function == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH, 3064 ("MPT SCSI I/O Handler called with incorrect reply type")); 3065 KASSERT((reply_frame->MsgFlags & MPI_MSGFLAGS_CONTINUATION_REPLY) == 0, 3066 ("MPT SCSI I/O Handler called with continuation reply")); 3067 3068 scsi_io_reply = (MSG_SCSI_IO_REPLY *)reply_frame; 3069 ioc_status = le16toh(scsi_io_reply->IOCStatus); 3070 ioc_status &= MPI_IOCSTATUS_MASK; 3071 sstate = scsi_io_reply->SCSIState; 3072 3073 ccb = req->ccb; 3074 ccb->csio.resid = 3075 ccb->csio.dxfer_len - le32toh(scsi_io_reply->TransferCount); 3076 3077 if ((sstate & MPI_SCSI_STATE_AUTOSENSE_VALID) != 0 3078 && (ccb->ccb_h.flags & (CAM_SENSE_PHYS | CAM_SENSE_PTR)) == 0) { 3079 uint32_t sense_returned; 3080 3081 ccb->ccb_h.status |= CAM_AUTOSNS_VALID; 3082 3083 sense_returned = le32toh(scsi_io_reply->SenseCount); 3084 if (sense_returned < ccb->csio.sense_len) 3085 ccb->csio.sense_resid = ccb->csio.sense_len - 3086 sense_returned; 3087 else 3088 ccb->csio.sense_resid = 0; 3089 3090 bzero(&ccb->csio.sense_data, sizeof(ccb->csio.sense_data)); 3091 bcopy(req->sense_vbuf, &ccb->csio.sense_data, 3092 min(ccb->csio.sense_len, sense_returned)); 3093 } 3094 3095 if ((sstate & MPI_SCSI_STATE_QUEUE_TAG_REJECTED) != 0) { 3096 /* 3097 * Tag messages rejected, but non-tagged retry 3098 * was successful. 3099 XXXX 3100 mpt_set_tags(mpt, devinfo, MPT_QUEUE_NONE); 3101 */ 3102 } 3103 3104 switch(ioc_status) { 3105 case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH: 3106 /* 3107 * XXX 3108 * Linux driver indicates that a zero 3109 * transfer length with this error code 3110 * indicates a CRC error. 3111 * 3112 * No need to swap the bytes for checking 3113 * against zero. 3114 */ 3115 if (scsi_io_reply->TransferCount == 0) { 3116 mpt_set_ccb_status(ccb, CAM_UNCOR_PARITY); 3117 break; 3118 } 3119 /* FALLTHROUGH */ 3120 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN: 3121 case MPI_IOCSTATUS_SUCCESS: 3122 case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR: 3123 if ((sstate & MPI_SCSI_STATE_NO_SCSI_STATUS) != 0) { 3124 /* 3125 * Status was never returned for this transaction. 3126 */ 3127 mpt_set_ccb_status(ccb, CAM_UNEXP_BUSFREE); 3128 } else if (scsi_io_reply->SCSIStatus != SCSI_STATUS_OK) { 3129 ccb->csio.scsi_status = scsi_io_reply->SCSIStatus; 3130 mpt_set_ccb_status(ccb, CAM_SCSI_STATUS_ERROR); 3131 if ((sstate & MPI_SCSI_STATE_AUTOSENSE_FAILED) != 0) 3132 mpt_set_ccb_status(ccb, CAM_AUTOSENSE_FAIL); 3133 } else if ((sstate & MPI_SCSI_STATE_RESPONSE_INFO_VALID) != 0) { 3134 3135 /* XXX Handle SPI-Packet and FCP-2 response info. */ 3136 mpt_set_ccb_status(ccb, CAM_REQ_CMP_ERR); 3137 } else 3138 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3139 break; 3140 case MPI_IOCSTATUS_SCSI_DATA_OVERRUN: 3141 mpt_set_ccb_status(ccb, CAM_DATA_RUN_ERR); 3142 break; 3143 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR: 3144 mpt_set_ccb_status(ccb, CAM_UNCOR_PARITY); 3145 break; 3146 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE: 3147 /* 3148 * Since selection timeouts and "device really not 3149 * there" are grouped into this error code, report 3150 * selection timeout. Selection timeouts are 3151 * typically retried before giving up on the device 3152 * whereas "device not there" errors are considered 3153 * unretryable. 3154 */ 3155 mpt_set_ccb_status(ccb, CAM_SEL_TIMEOUT); 3156 break; 3157 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR: 3158 mpt_set_ccb_status(ccb, CAM_SEQUENCE_FAIL); 3159 break; 3160 case MPI_IOCSTATUS_SCSI_INVALID_BUS: 3161 mpt_set_ccb_status(ccb, CAM_PATH_INVALID); 3162 break; 3163 case MPI_IOCSTATUS_SCSI_INVALID_TARGETID: 3164 mpt_set_ccb_status(ccb, CAM_TID_INVALID); 3165 break; 3166 case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED: 3167 ccb->ccb_h.status = CAM_UA_TERMIO; 3168 break; 3169 case MPI_IOCSTATUS_INVALID_STATE: 3170 /* 3171 * The IOC has been reset. Emulate a bus reset. 3172 */ 3173 /* FALLTHROUGH */ 3174 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: 3175 ccb->ccb_h.status = CAM_SCSI_BUS_RESET; 3176 break; 3177 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED: 3178 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED: 3179 /* 3180 * Don't clobber any timeout status that has 3181 * already been set for this transaction. We 3182 * want the SCSI layer to be able to differentiate 3183 * between the command we aborted due to timeout 3184 * and any innocent bystanders. 3185 */ 3186 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) 3187 break; 3188 mpt_set_ccb_status(ccb, CAM_REQ_TERMIO); 3189 break; 3190 3191 case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES: 3192 mpt_set_ccb_status(ccb, CAM_RESRC_UNAVAIL); 3193 break; 3194 case MPI_IOCSTATUS_BUSY: 3195 mpt_set_ccb_status(ccb, CAM_BUSY); 3196 break; 3197 case MPI_IOCSTATUS_INVALID_FUNCTION: 3198 case MPI_IOCSTATUS_INVALID_SGL: 3199 case MPI_IOCSTATUS_INTERNAL_ERROR: 3200 case MPI_IOCSTATUS_INVALID_FIELD: 3201 default: 3202 /* XXX 3203 * Some of the above may need to kick 3204 * of a recovery action!!!! 3205 */ 3206 ccb->ccb_h.status = CAM_UNREC_HBA_ERROR; 3207 break; 3208 } 3209 3210 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 3211 mpt_freeze_ccb(ccb); 3212 } 3213 3214 return (TRUE); 3215 } 3216 3217 static void 3218 mpt_action(struct cam_sim *sim, union ccb *ccb) 3219 { 3220 struct mpt_softc *mpt; 3221 struct ccb_trans_settings *cts; 3222 target_id_t tgt; 3223 lun_id_t lun; 3224 int raid_passthru; 3225 3226 CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("mpt_action\n")); 3227 3228 mpt = (struct mpt_softc *)cam_sim_softc(sim); 3229 raid_passthru = (sim == mpt->phydisk_sim); 3230 MPT_LOCK_ASSERT(mpt); 3231 3232 tgt = ccb->ccb_h.target_id; 3233 lun = ccb->ccb_h.target_lun; 3234 if (raid_passthru && 3235 ccb->ccb_h.func_code != XPT_PATH_INQ && 3236 ccb->ccb_h.func_code != XPT_RESET_BUS && 3237 ccb->ccb_h.func_code != XPT_RESET_DEV) { 3238 if (mpt_map_physdisk(mpt, ccb, &tgt) != 0) { 3239 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3240 mpt_set_ccb_status(ccb, CAM_DEV_NOT_THERE); 3241 xpt_done(ccb); 3242 return; 3243 } 3244 } 3245 ccb->ccb_h.ccb_mpt_ptr = mpt; 3246 3247 switch (ccb->ccb_h.func_code) { 3248 case XPT_SCSI_IO: /* Execute the requested I/O operation */ 3249 /* 3250 * Do a couple of preliminary checks... 3251 */ 3252 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) { 3253 if ((ccb->ccb_h.flags & CAM_CDB_PHYS) != 0) { 3254 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3255 mpt_set_ccb_status(ccb, CAM_REQ_INVALID); 3256 break; 3257 } 3258 } 3259 /* Max supported CDB length is 16 bytes */ 3260 /* XXX Unless we implement the new 32byte message type */ 3261 if (ccb->csio.cdb_len > 3262 sizeof (((PTR_MSG_SCSI_IO_REQUEST)0)->CDB)) { 3263 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3264 mpt_set_ccb_status(ccb, CAM_REQ_INVALID); 3265 break; 3266 } 3267 #ifdef MPT_TEST_MULTIPATH 3268 if (mpt->failure_id == ccb->ccb_h.target_id) { 3269 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3270 mpt_set_ccb_status(ccb, CAM_SEL_TIMEOUT); 3271 break; 3272 } 3273 #endif 3274 ccb->csio.scsi_status = SCSI_STATUS_OK; 3275 mpt_start(sim, ccb); 3276 return; 3277 3278 case XPT_RESET_BUS: 3279 if (raid_passthru) { 3280 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3281 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3282 break; 3283 } 3284 case XPT_RESET_DEV: 3285 if (ccb->ccb_h.func_code == XPT_RESET_BUS) { 3286 if (bootverbose) { 3287 xpt_print(ccb->ccb_h.path, "reset bus\n"); 3288 } 3289 } else { 3290 xpt_print(ccb->ccb_h.path, "reset device\n"); 3291 } 3292 (void) mpt_bus_reset(mpt, tgt, lun, FALSE); 3293 3294 /* 3295 * mpt_bus_reset is always successful in that it 3296 * will fall back to a hard reset should a bus 3297 * reset attempt fail. 3298 */ 3299 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3300 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3301 break; 3302 3303 case XPT_ABORT: 3304 { 3305 union ccb *accb = ccb->cab.abort_ccb; 3306 switch (accb->ccb_h.func_code) { 3307 case XPT_ACCEPT_TARGET_IO: 3308 case XPT_IMMEDIATE_NOTIFY: 3309 ccb->ccb_h.status = mpt_abort_target_ccb(mpt, ccb); 3310 break; 3311 case XPT_CONT_TARGET_IO: 3312 mpt_prt(mpt, "cannot abort active CTIOs yet\n"); 3313 ccb->ccb_h.status = CAM_UA_ABORT; 3314 break; 3315 case XPT_SCSI_IO: 3316 ccb->ccb_h.status = CAM_UA_ABORT; 3317 break; 3318 default: 3319 ccb->ccb_h.status = CAM_REQ_INVALID; 3320 break; 3321 } 3322 break; 3323 } 3324 3325 #define IS_CURRENT_SETTINGS(c) ((c)->type == CTS_TYPE_CURRENT_SETTINGS) 3326 3327 #define DP_DISC_ENABLE 0x1 3328 #define DP_DISC_DISABL 0x2 3329 #define DP_DISC (DP_DISC_ENABLE|DP_DISC_DISABL) 3330 3331 #define DP_TQING_ENABLE 0x4 3332 #define DP_TQING_DISABL 0x8 3333 #define DP_TQING (DP_TQING_ENABLE|DP_TQING_DISABL) 3334 3335 #define DP_WIDE 0x10 3336 #define DP_NARROW 0x20 3337 #define DP_WIDTH (DP_WIDE|DP_NARROW) 3338 3339 #define DP_SYNC 0x40 3340 3341 case XPT_SET_TRAN_SETTINGS: /* Nexus Settings */ 3342 { 3343 struct ccb_trans_settings_scsi *scsi; 3344 struct ccb_trans_settings_spi *spi; 3345 uint8_t dval; 3346 u_int period; 3347 u_int offset; 3348 int i, j; 3349 3350 cts = &ccb->cts; 3351 3352 if (mpt->is_fc || mpt->is_sas) { 3353 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3354 break; 3355 } 3356 3357 scsi = &cts->proto_specific.scsi; 3358 spi = &cts->xport_specific.spi; 3359 3360 /* 3361 * We can be called just to valid transport and proto versions 3362 */ 3363 if (scsi->valid == 0 && spi->valid == 0) { 3364 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3365 break; 3366 } 3367 3368 /* 3369 * Skip attempting settings on RAID volume disks. 3370 * Other devices on the bus get the normal treatment. 3371 */ 3372 if (mpt->phydisk_sim && raid_passthru == 0 && 3373 mpt_is_raid_volume(mpt, tgt) != 0) { 3374 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 3375 "no transfer settings for RAID vols\n"); 3376 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3377 break; 3378 } 3379 3380 i = mpt->mpt_port_page2.PortSettings & 3381 MPI_SCSIPORTPAGE2_PORT_MASK_NEGO_MASTER_SETTINGS; 3382 j = mpt->mpt_port_page2.PortFlags & 3383 MPI_SCSIPORTPAGE2_PORT_FLAGS_DV_MASK; 3384 if (i == MPI_SCSIPORTPAGE2_PORT_ALL_MASTER_SETTINGS && 3385 j == MPI_SCSIPORTPAGE2_PORT_FLAGS_OFF_DV) { 3386 mpt_lprt(mpt, MPT_PRT_ALWAYS, 3387 "honoring BIOS transfer negotiations\n"); 3388 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3389 break; 3390 } 3391 3392 dval = 0; 3393 period = 0; 3394 offset = 0; 3395 3396 if ((spi->valid & CTS_SPI_VALID_DISC) != 0) { 3397 dval |= ((spi->flags & CTS_SPI_FLAGS_DISC_ENB) != 0) ? 3398 DP_DISC_ENABLE : DP_DISC_DISABL; 3399 } 3400 3401 if ((scsi->valid & CTS_SCSI_VALID_TQ) != 0) { 3402 dval |= ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0) ? 3403 DP_TQING_ENABLE : DP_TQING_DISABL; 3404 } 3405 3406 if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) != 0) { 3407 dval |= (spi->bus_width == MSG_EXT_WDTR_BUS_16_BIT) ? 3408 DP_WIDE : DP_NARROW; 3409 } 3410 3411 if (spi->valid & CTS_SPI_VALID_SYNC_OFFSET) { 3412 dval |= DP_SYNC; 3413 offset = spi->sync_offset; 3414 } else { 3415 PTR_CONFIG_PAGE_SCSI_DEVICE_1 ptr = 3416 &mpt->mpt_dev_page1[tgt]; 3417 offset = ptr->RequestedParameters; 3418 offset &= MPI_SCSIDEVPAGE1_RP_MAX_SYNC_OFFSET_MASK; 3419 offset >>= MPI_SCSIDEVPAGE1_RP_SHIFT_MAX_SYNC_OFFSET; 3420 } 3421 if (spi->valid & CTS_SPI_VALID_SYNC_RATE) { 3422 dval |= DP_SYNC; 3423 period = spi->sync_period; 3424 } else { 3425 PTR_CONFIG_PAGE_SCSI_DEVICE_1 ptr = 3426 &mpt->mpt_dev_page1[tgt]; 3427 period = ptr->RequestedParameters; 3428 period &= MPI_SCSIDEVPAGE1_RP_MIN_SYNC_PERIOD_MASK; 3429 period >>= MPI_SCSIDEVPAGE1_RP_SHIFT_MIN_SYNC_PERIOD; 3430 } 3431 3432 if (dval & DP_DISC_ENABLE) { 3433 mpt->mpt_disc_enable |= (1 << tgt); 3434 } else if (dval & DP_DISC_DISABL) { 3435 mpt->mpt_disc_enable &= ~(1 << tgt); 3436 } 3437 if (dval & DP_TQING_ENABLE) { 3438 mpt->mpt_tag_enable |= (1 << tgt); 3439 } else if (dval & DP_TQING_DISABL) { 3440 mpt->mpt_tag_enable &= ~(1 << tgt); 3441 } 3442 if (dval & DP_WIDTH) { 3443 mpt_setwidth(mpt, tgt, 1); 3444 } 3445 if (dval & DP_SYNC) { 3446 mpt_setsync(mpt, tgt, period, offset); 3447 } 3448 if (dval == 0) { 3449 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3450 break; 3451 } 3452 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 3453 "set [%d]: 0x%x period 0x%x offset %d\n", 3454 tgt, dval, period, offset); 3455 if (mpt_update_spi_config(mpt, tgt)) { 3456 mpt_set_ccb_status(ccb, CAM_REQ_CMP_ERR); 3457 } else { 3458 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3459 } 3460 break; 3461 } 3462 case XPT_GET_TRAN_SETTINGS: 3463 { 3464 struct ccb_trans_settings_scsi *scsi; 3465 cts = &ccb->cts; 3466 cts->protocol = PROTO_SCSI; 3467 if (mpt->is_fc) { 3468 struct ccb_trans_settings_fc *fc = 3469 &cts->xport_specific.fc; 3470 cts->protocol_version = SCSI_REV_SPC; 3471 cts->transport = XPORT_FC; 3472 cts->transport_version = 0; 3473 if (mpt->mpt_fcport_speed != 0) { 3474 fc->valid = CTS_FC_VALID_SPEED; 3475 fc->bitrate = 100000 * mpt->mpt_fcport_speed; 3476 } 3477 } else if (mpt->is_sas) { 3478 struct ccb_trans_settings_sas *sas = 3479 &cts->xport_specific.sas; 3480 cts->protocol_version = SCSI_REV_SPC2; 3481 cts->transport = XPORT_SAS; 3482 cts->transport_version = 0; 3483 sas->valid = CTS_SAS_VALID_SPEED; 3484 sas->bitrate = 300000; 3485 } else { 3486 cts->protocol_version = SCSI_REV_2; 3487 cts->transport = XPORT_SPI; 3488 cts->transport_version = 2; 3489 if (mpt_get_spi_settings(mpt, cts) != 0) { 3490 mpt_set_ccb_status(ccb, CAM_REQ_CMP_ERR); 3491 break; 3492 } 3493 } 3494 scsi = &cts->proto_specific.scsi; 3495 scsi->valid = CTS_SCSI_VALID_TQ; 3496 scsi->flags = CTS_SCSI_FLAGS_TAG_ENB; 3497 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3498 break; 3499 } 3500 case XPT_CALC_GEOMETRY: 3501 { 3502 struct ccb_calc_geometry *ccg; 3503 3504 ccg = &ccb->ccg; 3505 if (ccg->block_size == 0) { 3506 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 3507 mpt_set_ccb_status(ccb, CAM_REQ_INVALID); 3508 break; 3509 } 3510 cam_calc_geometry(ccg, /* extended */ 1); 3511 KASSERT(ccb->ccb_h.status, ("zero ccb sts at %d", __LINE__)); 3512 break; 3513 } 3514 case XPT_GET_SIM_KNOB: 3515 { 3516 struct ccb_sim_knob *kp = &ccb->knob; 3517 3518 if (mpt->is_fc) { 3519 kp->xport_specific.fc.wwnn = mpt->scinfo.fc.wwnn; 3520 kp->xport_specific.fc.wwpn = mpt->scinfo.fc.wwpn; 3521 switch (mpt->role) { 3522 case MPT_ROLE_NONE: 3523 kp->xport_specific.fc.role = KNOB_ROLE_NONE; 3524 break; 3525 case MPT_ROLE_INITIATOR: 3526 kp->xport_specific.fc.role = KNOB_ROLE_INITIATOR; 3527 break; 3528 case MPT_ROLE_TARGET: 3529 kp->xport_specific.fc.role = KNOB_ROLE_TARGET; 3530 break; 3531 case MPT_ROLE_BOTH: 3532 kp->xport_specific.fc.role = KNOB_ROLE_BOTH; 3533 break; 3534 } 3535 kp->xport_specific.fc.valid = 3536 KNOB_VALID_ADDRESS | KNOB_VALID_ROLE; 3537 ccb->ccb_h.status = CAM_REQ_CMP; 3538 } else { 3539 ccb->ccb_h.status = CAM_REQ_INVALID; 3540 } 3541 xpt_done(ccb); 3542 break; 3543 } 3544 case XPT_PATH_INQ: /* Path routing inquiry */ 3545 { 3546 struct ccb_pathinq *cpi = &ccb->cpi; 3547 3548 cpi->version_num = 1; 3549 cpi->target_sprt = 0; 3550 cpi->hba_eng_cnt = 0; 3551 cpi->max_target = mpt->port_facts[0].MaxDevices - 1; 3552 cpi->maxio = (mpt->max_cam_seg_cnt - 1) * PAGE_SIZE; 3553 /* 3554 * FC cards report MAX_DEVICES of 512, but 3555 * the MSG_SCSI_IO_REQUEST target id field 3556 * is only 8 bits. Until we fix the driver 3557 * to support 'channels' for bus overflow, 3558 * just limit it. 3559 */ 3560 if (cpi->max_target > 255) { 3561 cpi->max_target = 255; 3562 } 3563 3564 /* 3565 * VMware ESX reports > 16 devices and then dies when we probe. 3566 */ 3567 if (mpt->is_spi && cpi->max_target > 15) { 3568 cpi->max_target = 15; 3569 } 3570 if (mpt->is_spi) 3571 cpi->max_lun = 7; 3572 else 3573 cpi->max_lun = MPT_MAX_LUNS; 3574 cpi->initiator_id = mpt->mpt_ini_id; 3575 cpi->bus_id = cam_sim_bus(sim); 3576 3577 /* 3578 * The base speed is the speed of the underlying connection. 3579 */ 3580 cpi->protocol = PROTO_SCSI; 3581 if (mpt->is_fc) { 3582 cpi->hba_misc = PIM_NOBUSRESET | PIM_UNMAPPED | 3583 PIM_EXTLUNS; 3584 cpi->base_transfer_speed = 100000; 3585 cpi->hba_inquiry = PI_TAG_ABLE; 3586 cpi->transport = XPORT_FC; 3587 cpi->transport_version = 0; 3588 cpi->protocol_version = SCSI_REV_SPC; 3589 cpi->xport_specific.fc.wwnn = mpt->scinfo.fc.wwnn; 3590 cpi->xport_specific.fc.wwpn = mpt->scinfo.fc.wwpn; 3591 cpi->xport_specific.fc.port = mpt->scinfo.fc.portid; 3592 cpi->xport_specific.fc.bitrate = 3593 100000 * mpt->mpt_fcport_speed; 3594 } else if (mpt->is_sas) { 3595 cpi->hba_misc = PIM_NOBUSRESET | PIM_UNMAPPED | 3596 PIM_EXTLUNS; 3597 cpi->base_transfer_speed = 300000; 3598 cpi->hba_inquiry = PI_TAG_ABLE; 3599 cpi->transport = XPORT_SAS; 3600 cpi->transport_version = 0; 3601 cpi->protocol_version = SCSI_REV_SPC2; 3602 } else { 3603 cpi->hba_misc = PIM_SEQSCAN | PIM_UNMAPPED | 3604 PIM_EXTLUNS; 3605 cpi->base_transfer_speed = 3300; 3606 cpi->hba_inquiry = PI_SDTR_ABLE|PI_TAG_ABLE|PI_WIDE_16; 3607 cpi->transport = XPORT_SPI; 3608 cpi->transport_version = 2; 3609 cpi->protocol_version = SCSI_REV_2; 3610 } 3611 3612 /* 3613 * We give our fake RAID passhtru bus a width that is MaxVolumes 3614 * wide and restrict it to one lun. 3615 */ 3616 if (raid_passthru) { 3617 cpi->max_target = mpt->ioc_page2->MaxPhysDisks - 1; 3618 cpi->initiator_id = cpi->max_target + 1; 3619 cpi->max_lun = 0; 3620 } 3621 3622 if ((mpt->role & MPT_ROLE_INITIATOR) == 0) { 3623 cpi->hba_misc |= PIM_NOINITIATOR; 3624 } 3625 if (mpt->is_fc && (mpt->role & MPT_ROLE_TARGET)) { 3626 cpi->target_sprt = 3627 PIT_PROCESSOR | PIT_DISCONNECT | PIT_TERM_IO; 3628 } else { 3629 cpi->target_sprt = 0; 3630 } 3631 strlcpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); 3632 strlcpy(cpi->hba_vid, "LSI", HBA_IDLEN); 3633 strlcpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN); 3634 cpi->unit_number = cam_sim_unit(sim); 3635 cpi->ccb_h.status = CAM_REQ_CMP; 3636 break; 3637 } 3638 case XPT_EN_LUN: /* Enable LUN as a target */ 3639 { 3640 int result; 3641 3642 if (ccb->cel.enable) 3643 result = mpt_enable_lun(mpt, 3644 ccb->ccb_h.target_id, ccb->ccb_h.target_lun); 3645 else 3646 result = mpt_disable_lun(mpt, 3647 ccb->ccb_h.target_id, ccb->ccb_h.target_lun); 3648 if (result == 0) { 3649 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 3650 } else { 3651 mpt_set_ccb_status(ccb, CAM_REQ_CMP_ERR); 3652 } 3653 break; 3654 } 3655 case XPT_NOTIFY_ACKNOWLEDGE: /* recycle notify ack */ 3656 case XPT_IMMEDIATE_NOTIFY: /* Add Immediate Notify Resource */ 3657 case XPT_ACCEPT_TARGET_IO: /* Add Accept Target IO Resource */ 3658 { 3659 tgt_resource_t *trtp; 3660 lun_id_t lun = ccb->ccb_h.target_lun; 3661 ccb->ccb_h.sim_priv.entries[0].field = 0; 3662 ccb->ccb_h.sim_priv.entries[1].ptr = mpt; 3663 3664 if (lun == CAM_LUN_WILDCARD) { 3665 if (ccb->ccb_h.target_id != CAM_TARGET_WILDCARD) { 3666 mpt_set_ccb_status(ccb, CAM_REQ_INVALID); 3667 break; 3668 } 3669 trtp = &mpt->trt_wildcard; 3670 } else if (lun >= MPT_MAX_LUNS) { 3671 mpt_set_ccb_status(ccb, CAM_REQ_INVALID); 3672 break; 3673 } else { 3674 trtp = &mpt->trt[lun]; 3675 } 3676 if (ccb->ccb_h.func_code == XPT_ACCEPT_TARGET_IO) { 3677 mpt_lprt(mpt, MPT_PRT_DEBUG1, 3678 "Put FREE ATIO %p lun %jx\n", ccb, (uintmax_t)lun); 3679 STAILQ_INSERT_TAIL(&trtp->atios, &ccb->ccb_h, 3680 sim_links.stqe); 3681 } else if (ccb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) { 3682 mpt_lprt(mpt, MPT_PRT_DEBUG1, 3683 "Put FREE INOT lun %jx\n", (uintmax_t)lun); 3684 STAILQ_INSERT_TAIL(&trtp->inots, &ccb->ccb_h, 3685 sim_links.stqe); 3686 } else { 3687 mpt_lprt(mpt, MPT_PRT_ALWAYS, "Got Notify ACK\n"); 3688 } 3689 mpt_set_ccb_status(ccb, CAM_REQ_INPROG); 3690 return; 3691 } 3692 case XPT_CONT_TARGET_IO: 3693 mpt_target_start_io(mpt, ccb); 3694 return; 3695 3696 default: 3697 ccb->ccb_h.status = CAM_REQ_INVALID; 3698 break; 3699 } 3700 xpt_done(ccb); 3701 } 3702 3703 static int 3704 mpt_get_spi_settings(struct mpt_softc *mpt, struct ccb_trans_settings *cts) 3705 { 3706 struct ccb_trans_settings_scsi *scsi = &cts->proto_specific.scsi; 3707 struct ccb_trans_settings_spi *spi = &cts->xport_specific.spi; 3708 target_id_t tgt; 3709 uint32_t dval, pval, oval; 3710 int rv; 3711 3712 if (IS_CURRENT_SETTINGS(cts) == 0) { 3713 tgt = cts->ccb_h.target_id; 3714 } else if (xpt_path_sim(cts->ccb_h.path) == mpt->phydisk_sim) { 3715 if (mpt_map_physdisk(mpt, (union ccb *)cts, &tgt)) { 3716 return (-1); 3717 } 3718 } else { 3719 tgt = cts->ccb_h.target_id; 3720 } 3721 3722 /* 3723 * We aren't looking at Port Page 2 BIOS settings here- 3724 * sometimes these have been known to be bogus XXX. 3725 * 3726 * For user settings, we pick the max from port page 0 3727 * 3728 * For current settings we read the current settings out from 3729 * device page 0 for that target. 3730 */ 3731 if (IS_CURRENT_SETTINGS(cts)) { 3732 CONFIG_PAGE_SCSI_DEVICE_0 tmp; 3733 dval = 0; 3734 3735 tmp = mpt->mpt_dev_page0[tgt]; 3736 rv = mpt_read_cur_cfg_page(mpt, tgt, &tmp.Header, 3737 sizeof(tmp), FALSE, 5000); 3738 if (rv) { 3739 mpt_prt(mpt, "can't get tgt %d config page 0\n", tgt); 3740 return (rv); 3741 } 3742 mpt2host_config_page_scsi_device_0(&tmp); 3743 3744 mpt_lprt(mpt, MPT_PRT_DEBUG, 3745 "mpt_get_spi_settings[%d]: current NP %x Info %x\n", tgt, 3746 tmp.NegotiatedParameters, tmp.Information); 3747 dval |= (tmp.NegotiatedParameters & MPI_SCSIDEVPAGE0_NP_WIDE) ? 3748 DP_WIDE : DP_NARROW; 3749 dval |= (mpt->mpt_disc_enable & (1 << tgt)) ? 3750 DP_DISC_ENABLE : DP_DISC_DISABL; 3751 dval |= (mpt->mpt_tag_enable & (1 << tgt)) ? 3752 DP_TQING_ENABLE : DP_TQING_DISABL; 3753 oval = tmp.NegotiatedParameters; 3754 oval &= MPI_SCSIDEVPAGE0_NP_NEG_SYNC_OFFSET_MASK; 3755 oval >>= MPI_SCSIDEVPAGE0_NP_SHIFT_SYNC_OFFSET; 3756 pval = tmp.NegotiatedParameters; 3757 pval &= MPI_SCSIDEVPAGE0_NP_NEG_SYNC_PERIOD_MASK; 3758 pval >>= MPI_SCSIDEVPAGE0_NP_SHIFT_SYNC_PERIOD; 3759 mpt->mpt_dev_page0[tgt] = tmp; 3760 } else { 3761 dval = DP_WIDE|DP_DISC_ENABLE|DP_TQING_ENABLE|DP_SYNC; 3762 oval = mpt->mpt_port_page0.Capabilities; 3763 oval = MPI_SCSIPORTPAGE0_CAP_GET_MAX_SYNC_OFFSET(oval); 3764 pval = mpt->mpt_port_page0.Capabilities; 3765 pval = MPI_SCSIPORTPAGE0_CAP_GET_MIN_SYNC_PERIOD(pval); 3766 } 3767 3768 spi->valid = 0; 3769 scsi->valid = 0; 3770 spi->flags = 0; 3771 scsi->flags = 0; 3772 spi->sync_offset = oval; 3773 spi->sync_period = pval; 3774 spi->valid |= CTS_SPI_VALID_SYNC_OFFSET; 3775 spi->valid |= CTS_SPI_VALID_SYNC_RATE; 3776 spi->valid |= CTS_SPI_VALID_BUS_WIDTH; 3777 if (dval & DP_WIDE) { 3778 spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT; 3779 } else { 3780 spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT; 3781 } 3782 if (cts->ccb_h.target_lun != CAM_LUN_WILDCARD) { 3783 scsi->valid = CTS_SCSI_VALID_TQ; 3784 if (dval & DP_TQING_ENABLE) { 3785 scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB; 3786 } 3787 spi->valid |= CTS_SPI_VALID_DISC; 3788 if (dval & DP_DISC_ENABLE) { 3789 spi->flags |= CTS_SPI_FLAGS_DISC_ENB; 3790 } 3791 } 3792 3793 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 3794 "mpt_get_spi_settings[%d]: %s flags 0x%x per 0x%x off=%d\n", tgt, 3795 IS_CURRENT_SETTINGS(cts) ? "ACTIVE" : "NVRAM ", dval, pval, oval); 3796 return (0); 3797 } 3798 3799 static void 3800 mpt_setwidth(struct mpt_softc *mpt, int tgt, int onoff) 3801 { 3802 PTR_CONFIG_PAGE_SCSI_DEVICE_1 ptr; 3803 3804 ptr = &mpt->mpt_dev_page1[tgt]; 3805 if (onoff) { 3806 ptr->RequestedParameters |= MPI_SCSIDEVPAGE1_RP_WIDE; 3807 } else { 3808 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_WIDE; 3809 } 3810 } 3811 3812 static void 3813 mpt_setsync(struct mpt_softc *mpt, int tgt, int period, int offset) 3814 { 3815 PTR_CONFIG_PAGE_SCSI_DEVICE_1 ptr; 3816 3817 ptr = &mpt->mpt_dev_page1[tgt]; 3818 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_MIN_SYNC_PERIOD_MASK; 3819 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_MAX_SYNC_OFFSET_MASK; 3820 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_DT; 3821 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_QAS; 3822 ptr->RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_IU; 3823 if (period == 0) { 3824 return; 3825 } 3826 ptr->RequestedParameters |= 3827 period << MPI_SCSIDEVPAGE1_RP_SHIFT_MIN_SYNC_PERIOD; 3828 ptr->RequestedParameters |= 3829 offset << MPI_SCSIDEVPAGE1_RP_SHIFT_MAX_SYNC_OFFSET; 3830 if (period < 0xa) { 3831 ptr->RequestedParameters |= MPI_SCSIDEVPAGE1_RP_DT; 3832 } 3833 if (period < 0x9) { 3834 ptr->RequestedParameters |= MPI_SCSIDEVPAGE1_RP_QAS; 3835 ptr->RequestedParameters |= MPI_SCSIDEVPAGE1_RP_IU; 3836 } 3837 } 3838 3839 static int 3840 mpt_update_spi_config(struct mpt_softc *mpt, int tgt) 3841 { 3842 CONFIG_PAGE_SCSI_DEVICE_1 tmp; 3843 int rv; 3844 3845 mpt_lprt(mpt, MPT_PRT_NEGOTIATION, 3846 "mpt_update_spi_config[%d].page1: Requested Params 0x%08x\n", 3847 tgt, mpt->mpt_dev_page1[tgt].RequestedParameters); 3848 tmp = mpt->mpt_dev_page1[tgt]; 3849 host2mpt_config_page_scsi_device_1(&tmp); 3850 rv = mpt_write_cur_cfg_page(mpt, tgt, 3851 &tmp.Header, sizeof(tmp), FALSE, 5000); 3852 if (rv) { 3853 mpt_prt(mpt, "mpt_update_spi_config: write cur page failed\n"); 3854 return (-1); 3855 } 3856 return (0); 3857 } 3858 3859 /****************************** Timeout Recovery ******************************/ 3860 static int 3861 mpt_spawn_recovery_thread(struct mpt_softc *mpt) 3862 { 3863 int error; 3864 3865 error = kproc_create(mpt_recovery_thread, mpt, 3866 &mpt->recovery_thread, /*flags*/0, 3867 /*altstack*/0, "mpt_recovery%d", mpt->unit); 3868 return (error); 3869 } 3870 3871 static void 3872 mpt_terminate_recovery_thread(struct mpt_softc *mpt) 3873 { 3874 3875 if (mpt->recovery_thread == NULL) { 3876 return; 3877 } 3878 mpt->shutdwn_recovery = 1; 3879 wakeup(mpt); 3880 /* 3881 * Sleep on a slightly different location 3882 * for this interlock just for added safety. 3883 */ 3884 mpt_sleep(mpt, &mpt->recovery_thread, PUSER, "thtrm", 0); 3885 } 3886 3887 static void 3888 mpt_recovery_thread(void *arg) 3889 { 3890 struct mpt_softc *mpt; 3891 3892 mpt = (struct mpt_softc *)arg; 3893 MPT_LOCK(mpt); 3894 for (;;) { 3895 if (TAILQ_EMPTY(&mpt->request_timeout_list) != 0) { 3896 if (mpt->shutdwn_recovery == 0) { 3897 mpt_sleep(mpt, mpt, PUSER, "idle", 0); 3898 } 3899 } 3900 if (mpt->shutdwn_recovery != 0) { 3901 break; 3902 } 3903 mpt_recover_commands(mpt); 3904 } 3905 mpt->recovery_thread = NULL; 3906 wakeup(&mpt->recovery_thread); 3907 MPT_UNLOCK(mpt); 3908 kproc_exit(0); 3909 } 3910 3911 static int 3912 mpt_scsi_send_tmf(struct mpt_softc *mpt, u_int type, u_int flags, 3913 u_int channel, target_id_t target, lun_id_t lun, u_int abort_ctx, 3914 int sleep_ok) 3915 { 3916 MSG_SCSI_TASK_MGMT *tmf_req; 3917 int error; 3918 3919 /* 3920 * Wait for any current TMF request to complete. 3921 * We're only allowed to issue one TMF at a time. 3922 */ 3923 error = mpt_wait_req(mpt, mpt->tmf_req, REQ_STATE_FREE, REQ_STATE_FREE, 3924 sleep_ok, MPT_TMF_MAX_TIMEOUT); 3925 if (error != 0) { 3926 mpt_reset(mpt, TRUE); 3927 return (ETIMEDOUT); 3928 } 3929 3930 mpt_assign_serno(mpt, mpt->tmf_req); 3931 mpt->tmf_req->state = REQ_STATE_ALLOCATED|REQ_STATE_QUEUED; 3932 3933 tmf_req = (MSG_SCSI_TASK_MGMT *)mpt->tmf_req->req_vbuf; 3934 memset(tmf_req, 0, sizeof(*tmf_req)); 3935 tmf_req->TargetID = target; 3936 tmf_req->Bus = channel; 3937 tmf_req->Function = MPI_FUNCTION_SCSI_TASK_MGMT; 3938 tmf_req->TaskType = type; 3939 tmf_req->MsgFlags = flags; 3940 tmf_req->MsgContext = 3941 htole32(mpt->tmf_req->index | scsi_tmf_handler_id); 3942 be64enc(tmf_req->LUN, CAM_EXTLUN_BYTE_SWIZZLE(lun)); 3943 tmf_req->TaskMsgContext = abort_ctx; 3944 3945 mpt_lprt(mpt, MPT_PRT_DEBUG, 3946 "Issuing TMF %p:%u with MsgContext of 0x%x\n", mpt->tmf_req, 3947 mpt->tmf_req->serno, tmf_req->MsgContext); 3948 if (mpt->verbose > MPT_PRT_DEBUG) { 3949 mpt_print_request(tmf_req); 3950 } 3951 3952 KASSERT(mpt_req_on_pending_list(mpt, mpt->tmf_req) == 0, 3953 ("mpt_scsi_send_tmf: tmf_req already on pending list")); 3954 TAILQ_INSERT_HEAD(&mpt->request_pending_list, mpt->tmf_req, links); 3955 error = mpt_send_handshake_cmd(mpt, sizeof(*tmf_req), tmf_req); 3956 if (error != MPT_OK) { 3957 TAILQ_REMOVE(&mpt->request_pending_list, mpt->tmf_req, links); 3958 mpt->tmf_req->state = REQ_STATE_FREE; 3959 mpt_reset(mpt, TRUE); 3960 } 3961 return (error); 3962 } 3963 3964 /* 3965 * When a command times out, it is placed on the requeust_timeout_list 3966 * and we wake our recovery thread. The MPT-Fusion architecture supports 3967 * only a single TMF operation at a time, so we serially abort/bdr, etc, 3968 * the timedout transactions. The next TMF is issued either by the 3969 * completion handler of the current TMF waking our recovery thread, 3970 * or the TMF timeout handler causing a hard reset sequence. 3971 */ 3972 static void 3973 mpt_recover_commands(struct mpt_softc *mpt) 3974 { 3975 request_t *req; 3976 union ccb *ccb; 3977 int error; 3978 3979 if (TAILQ_EMPTY(&mpt->request_timeout_list) != 0) { 3980 /* 3981 * No work to do- leave. 3982 */ 3983 mpt_prt(mpt, "mpt_recover_commands: no requests.\n"); 3984 return; 3985 } 3986 3987 /* 3988 * Flush any commands whose completion coincides with their timeout. 3989 */ 3990 mpt_intr(mpt); 3991 3992 if (TAILQ_EMPTY(&mpt->request_timeout_list) != 0) { 3993 /* 3994 * The timedout commands have already 3995 * completed. This typically means 3996 * that either the timeout value was on 3997 * the hairy edge of what the device 3998 * requires or - more likely - interrupts 3999 * are not happening. 4000 */ 4001 mpt_prt(mpt, "Timedout requests already complete. " 4002 "Interrupts may not be functioning.\n"); 4003 mpt_enable_ints(mpt); 4004 return; 4005 } 4006 4007 /* 4008 * We have no visibility into the current state of the 4009 * controller, so attempt to abort the commands in the 4010 * order they timed-out. For initiator commands, we 4011 * depend on the reply handler pulling requests off 4012 * the timeout list. 4013 */ 4014 while ((req = TAILQ_FIRST(&mpt->request_timeout_list)) != NULL) { 4015 uint16_t status; 4016 uint8_t response; 4017 MSG_REQUEST_HEADER *hdrp = req->req_vbuf; 4018 4019 mpt_prt(mpt, "attempting to abort req %p:%u function %x\n", 4020 req, req->serno, hdrp->Function); 4021 ccb = req->ccb; 4022 if (ccb == NULL) { 4023 mpt_prt(mpt, "null ccb in timed out request. " 4024 "Resetting Controller.\n"); 4025 mpt_reset(mpt, TRUE); 4026 continue; 4027 } 4028 mpt_set_ccb_status(ccb, CAM_CMD_TIMEOUT); 4029 4030 /* 4031 * Check to see if this is not an initiator command and 4032 * deal with it differently if it is. 4033 */ 4034 switch (hdrp->Function) { 4035 case MPI_FUNCTION_SCSI_IO_REQUEST: 4036 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH: 4037 break; 4038 default: 4039 /* 4040 * XXX: FIX ME: need to abort target assists... 4041 */ 4042 mpt_prt(mpt, "just putting it back on the pend q\n"); 4043 TAILQ_REMOVE(&mpt->request_timeout_list, req, links); 4044 TAILQ_INSERT_HEAD(&mpt->request_pending_list, req, 4045 links); 4046 continue; 4047 } 4048 4049 error = mpt_scsi_send_tmf(mpt, 4050 MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK, 4051 0, 0, ccb->ccb_h.target_id, ccb->ccb_h.target_lun, 4052 htole32(req->index | scsi_io_handler_id), TRUE); 4053 4054 if (error != 0) { 4055 /* 4056 * mpt_scsi_send_tmf hard resets on failure, so no 4057 * need to do so here. Our queue should be emptied 4058 * by the hard reset. 4059 */ 4060 continue; 4061 } 4062 4063 error = mpt_wait_req(mpt, mpt->tmf_req, REQ_STATE_DONE, 4064 REQ_STATE_DONE, TRUE, 500); 4065 4066 status = le16toh(mpt->tmf_req->IOCStatus); 4067 response = mpt->tmf_req->ResponseCode; 4068 mpt->tmf_req->state = REQ_STATE_FREE; 4069 4070 if (error != 0) { 4071 /* 4072 * If we've errored out,, reset the controller. 4073 */ 4074 mpt_prt(mpt, "mpt_recover_commands: abort timed-out. " 4075 "Resetting controller\n"); 4076 mpt_reset(mpt, TRUE); 4077 continue; 4078 } 4079 4080 if ((status & MPI_IOCSTATUS_MASK) != MPI_IOCSTATUS_SUCCESS) { 4081 mpt_prt(mpt, "mpt_recover_commands: IOC Status 0x%x. " 4082 "Resetting controller.\n", status); 4083 mpt_reset(mpt, TRUE); 4084 continue; 4085 } 4086 4087 if (response != MPI_SCSITASKMGMT_RSP_TM_SUCCEEDED && 4088 response != MPI_SCSITASKMGMT_RSP_TM_COMPLETE) { 4089 mpt_prt(mpt, "mpt_recover_commands: TMF Response 0x%x. " 4090 "Resetting controller.\n", response); 4091 mpt_reset(mpt, TRUE); 4092 continue; 4093 } 4094 mpt_prt(mpt, "abort of req %p:%u completed\n", req, req->serno); 4095 } 4096 } 4097 4098 /************************ Target Mode Support ****************************/ 4099 static void 4100 mpt_fc_post_els(struct mpt_softc *mpt, request_t *req, int ioindex) 4101 { 4102 MSG_LINK_SERVICE_BUFFER_POST_REQUEST *fc; 4103 PTR_SGE_TRANSACTION32 tep; 4104 PTR_SGE_SIMPLE32 se; 4105 bus_addr_t paddr; 4106 uint32_t fl; 4107 4108 paddr = req->req_pbuf; 4109 paddr += MPT_RQSL(mpt); 4110 4111 fc = req->req_vbuf; 4112 memset(fc, 0, MPT_REQUEST_AREA); 4113 fc->BufferCount = 1; 4114 fc->Function = MPI_FUNCTION_FC_LINK_SRVC_BUF_POST; 4115 fc->MsgContext = htole32(req->index | fc_els_handler_id); 4116 4117 /* 4118 * Okay, set up ELS buffer pointers. ELS buffer pointers 4119 * consist of a TE SGL element (with details length of zero) 4120 * followed by a SIMPLE SGL element which holds the address 4121 * of the buffer. 4122 */ 4123 4124 tep = (PTR_SGE_TRANSACTION32) &fc->SGL; 4125 4126 tep->ContextSize = 4; 4127 tep->Flags = 0; 4128 tep->TransactionContext[0] = htole32(ioindex); 4129 4130 se = (PTR_SGE_SIMPLE32) &tep->TransactionDetails[0]; 4131 fl = 4132 MPI_SGE_FLAGS_HOST_TO_IOC | 4133 MPI_SGE_FLAGS_SIMPLE_ELEMENT | 4134 MPI_SGE_FLAGS_LAST_ELEMENT | 4135 MPI_SGE_FLAGS_END_OF_LIST | 4136 MPI_SGE_FLAGS_END_OF_BUFFER; 4137 fl <<= MPI_SGE_FLAGS_SHIFT; 4138 fl |= (MPT_NRFM(mpt) - MPT_RQSL(mpt)); 4139 se->FlagsLength = htole32(fl); 4140 se->Address = htole32((uint32_t) paddr); 4141 mpt_lprt(mpt, MPT_PRT_DEBUG, 4142 "add ELS index %d ioindex %d for %p:%u\n", 4143 req->index, ioindex, req, req->serno); 4144 KASSERT(((req->state & REQ_STATE_LOCKED) != 0), 4145 ("mpt_fc_post_els: request not locked")); 4146 mpt_send_cmd(mpt, req); 4147 } 4148 4149 static void 4150 mpt_post_target_command(struct mpt_softc *mpt, request_t *req, int ioindex) 4151 { 4152 PTR_MSG_TARGET_CMD_BUFFER_POST_REQUEST fc; 4153 PTR_CMD_BUFFER_DESCRIPTOR cb; 4154 bus_addr_t paddr; 4155 4156 paddr = req->req_pbuf; 4157 paddr += MPT_RQSL(mpt); 4158 memset(req->req_vbuf, 0, MPT_REQUEST_AREA); 4159 MPT_TGT_STATE(mpt, req)->state = TGT_STATE_LOADING; 4160 4161 fc = req->req_vbuf; 4162 fc->BufferCount = 1; 4163 fc->Function = MPI_FUNCTION_TARGET_CMD_BUFFER_POST; 4164 fc->BufferLength = MIN(MPT_REQUEST_AREA - MPT_RQSL(mpt), UINT8_MAX); 4165 fc->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id); 4166 4167 cb = &fc->Buffer[0]; 4168 cb->IoIndex = htole16(ioindex); 4169 cb->u.PhysicalAddress32 = htole32((U32) paddr); 4170 4171 mpt_check_doorbell(mpt); 4172 mpt_send_cmd(mpt, req); 4173 } 4174 4175 static int 4176 mpt_add_els_buffers(struct mpt_softc *mpt) 4177 { 4178 int i; 4179 4180 if (mpt->is_fc == 0) { 4181 return (TRUE); 4182 } 4183 4184 if (mpt->els_cmds_allocated) { 4185 return (TRUE); 4186 } 4187 4188 mpt->els_cmd_ptrs = malloc(MPT_MAX_ELS * sizeof (request_t *), 4189 M_DEVBUF, M_NOWAIT | M_ZERO); 4190 4191 if (mpt->els_cmd_ptrs == NULL) { 4192 return (FALSE); 4193 } 4194 4195 /* 4196 * Feed the chip some ELS buffer resources 4197 */ 4198 for (i = 0; i < MPT_MAX_ELS; i++) { 4199 request_t *req = mpt_get_request(mpt, FALSE); 4200 if (req == NULL) { 4201 break; 4202 } 4203 req->state |= REQ_STATE_LOCKED; 4204 mpt->els_cmd_ptrs[i] = req; 4205 mpt_fc_post_els(mpt, req, i); 4206 } 4207 4208 if (i == 0) { 4209 mpt_prt(mpt, "unable to add ELS buffer resources\n"); 4210 free(mpt->els_cmd_ptrs, M_DEVBUF); 4211 mpt->els_cmd_ptrs = NULL; 4212 return (FALSE); 4213 } 4214 if (i != MPT_MAX_ELS) { 4215 mpt_lprt(mpt, MPT_PRT_INFO, 4216 "only added %d of %d ELS buffers\n", i, MPT_MAX_ELS); 4217 } 4218 mpt->els_cmds_allocated = i; 4219 return(TRUE); 4220 } 4221 4222 static int 4223 mpt_add_target_commands(struct mpt_softc *mpt) 4224 { 4225 int i, max; 4226 4227 if (mpt->tgt_cmd_ptrs) { 4228 return (TRUE); 4229 } 4230 4231 max = MPT_MAX_REQUESTS(mpt) >> 1; 4232 if (max > mpt->mpt_max_tgtcmds) { 4233 max = mpt->mpt_max_tgtcmds; 4234 } 4235 mpt->tgt_cmd_ptrs = 4236 malloc(max * sizeof (request_t *), M_DEVBUF, M_NOWAIT | M_ZERO); 4237 if (mpt->tgt_cmd_ptrs == NULL) { 4238 mpt_prt(mpt, 4239 "mpt_add_target_commands: could not allocate cmd ptrs\n"); 4240 return (FALSE); 4241 } 4242 4243 for (i = 0; i < max; i++) { 4244 request_t *req; 4245 4246 req = mpt_get_request(mpt, FALSE); 4247 if (req == NULL) { 4248 break; 4249 } 4250 req->state |= REQ_STATE_LOCKED; 4251 mpt->tgt_cmd_ptrs[i] = req; 4252 mpt_post_target_command(mpt, req, i); 4253 } 4254 4255 4256 if (i == 0) { 4257 mpt_lprt(mpt, MPT_PRT_ERROR, "could not add any target bufs\n"); 4258 free(mpt->tgt_cmd_ptrs, M_DEVBUF); 4259 mpt->tgt_cmd_ptrs = NULL; 4260 return (FALSE); 4261 } 4262 4263 mpt->tgt_cmds_allocated = i; 4264 4265 if (i < max) { 4266 mpt_lprt(mpt, MPT_PRT_INFO, 4267 "added %d of %d target bufs\n", i, max); 4268 } 4269 return (i); 4270 } 4271 4272 static int 4273 mpt_enable_lun(struct mpt_softc *mpt, target_id_t tgt, lun_id_t lun) 4274 { 4275 4276 if (tgt == CAM_TARGET_WILDCARD && lun == CAM_LUN_WILDCARD) { 4277 mpt->twildcard = 1; 4278 } else if (lun >= MPT_MAX_LUNS) { 4279 return (EINVAL); 4280 } else if (tgt != CAM_TARGET_WILDCARD && tgt != 0) { 4281 return (EINVAL); 4282 } 4283 if (mpt->tenabled == 0) { 4284 if (mpt->is_fc) { 4285 (void) mpt_fc_reset_link(mpt, 0); 4286 } 4287 mpt->tenabled = 1; 4288 } 4289 if (lun == CAM_LUN_WILDCARD) { 4290 mpt->trt_wildcard.enabled = 1; 4291 } else { 4292 mpt->trt[lun].enabled = 1; 4293 } 4294 return (0); 4295 } 4296 4297 static int 4298 mpt_disable_lun(struct mpt_softc *mpt, target_id_t tgt, lun_id_t lun) 4299 { 4300 int i; 4301 4302 if (tgt == CAM_TARGET_WILDCARD && lun == CAM_LUN_WILDCARD) { 4303 mpt->twildcard = 0; 4304 } else if (lun >= MPT_MAX_LUNS) { 4305 return (EINVAL); 4306 } else if (tgt != CAM_TARGET_WILDCARD && tgt != 0) { 4307 return (EINVAL); 4308 } 4309 if (lun == CAM_LUN_WILDCARD) { 4310 mpt->trt_wildcard.enabled = 0; 4311 } else { 4312 mpt->trt[lun].enabled = 0; 4313 } 4314 for (i = 0; i < MPT_MAX_LUNS; i++) { 4315 if (mpt->trt[i].enabled) { 4316 break; 4317 } 4318 } 4319 if (i == MPT_MAX_LUNS && mpt->twildcard == 0) { 4320 if (mpt->is_fc) { 4321 (void) mpt_fc_reset_link(mpt, 0); 4322 } 4323 mpt->tenabled = 0; 4324 } 4325 return (0); 4326 } 4327 4328 /* 4329 * Called with MPT lock held 4330 */ 4331 static void 4332 mpt_target_start_io(struct mpt_softc *mpt, union ccb *ccb) 4333 { 4334 struct ccb_scsiio *csio = &ccb->csio; 4335 request_t *cmd_req = MPT_TAG_2_REQ(mpt, csio->tag_id); 4336 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, cmd_req); 4337 4338 switch (tgt->state) { 4339 case TGT_STATE_IN_CAM: 4340 break; 4341 case TGT_STATE_MOVING_DATA: 4342 mpt_set_ccb_status(ccb, CAM_REQUEUE_REQ); 4343 xpt_freeze_simq(mpt->sim, 1); 4344 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 4345 tgt->ccb->ccb_h.status |= CAM_RELEASE_SIMQ; 4346 xpt_done(ccb); 4347 return; 4348 default: 4349 mpt_prt(mpt, "ccb %p flags 0x%x tag 0x%08x had bad request " 4350 "starting I/O\n", ccb, csio->ccb_h.flags, csio->tag_id); 4351 mpt_tgt_dump_req_state(mpt, cmd_req); 4352 mpt_set_ccb_status(ccb, CAM_REQ_CMP_ERR); 4353 xpt_done(ccb); 4354 return; 4355 } 4356 4357 if (csio->dxfer_len) { 4358 bus_dmamap_callback_t *cb; 4359 PTR_MSG_TARGET_ASSIST_REQUEST ta; 4360 request_t *req; 4361 int error; 4362 4363 KASSERT((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE, 4364 ("dxfer_len %u but direction is NONE", csio->dxfer_len)); 4365 4366 if ((req = mpt_get_request(mpt, FALSE)) == NULL) { 4367 if (mpt->outofbeer == 0) { 4368 mpt->outofbeer = 1; 4369 xpt_freeze_simq(mpt->sim, 1); 4370 mpt_lprt(mpt, MPT_PRT_DEBUG, "FREEZEQ\n"); 4371 } 4372 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 4373 mpt_set_ccb_status(ccb, CAM_REQUEUE_REQ); 4374 xpt_done(ccb); 4375 return; 4376 } 4377 ccb->ccb_h.status = CAM_SIM_QUEUED | CAM_REQ_INPROG; 4378 if (sizeof (bus_addr_t) > 4) { 4379 cb = mpt_execute_req_a64; 4380 } else { 4381 cb = mpt_execute_req; 4382 } 4383 4384 req->ccb = ccb; 4385 ccb->ccb_h.ccb_req_ptr = req; 4386 4387 /* 4388 * Record the currently active ccb and the 4389 * request for it in our target state area. 4390 */ 4391 tgt->ccb = ccb; 4392 tgt->req = req; 4393 4394 memset(req->req_vbuf, 0, MPT_RQSL(mpt)); 4395 ta = req->req_vbuf; 4396 4397 if (mpt->is_sas) { 4398 PTR_MPI_TARGET_SSP_CMD_BUFFER ssp = 4399 cmd_req->req_vbuf; 4400 ta->QueueTag = ssp->InitiatorTag; 4401 } else if (mpt->is_spi) { 4402 PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER sp = 4403 cmd_req->req_vbuf; 4404 ta->QueueTag = sp->Tag; 4405 } 4406 ta->Function = MPI_FUNCTION_TARGET_ASSIST; 4407 ta->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id); 4408 ta->ReplyWord = htole32(tgt->reply_desc); 4409 be64enc(ta->LUN, CAM_EXTLUN_BYTE_SWIZZLE(csio->ccb_h.target_lun)); 4410 4411 ta->RelativeOffset = tgt->bytes_xfered; 4412 ta->DataLength = ccb->csio.dxfer_len; 4413 if (ta->DataLength > tgt->resid) { 4414 ta->DataLength = tgt->resid; 4415 } 4416 4417 /* 4418 * XXX Should be done after data transfer completes? 4419 */ 4420 csio->resid = csio->dxfer_len - ta->DataLength; 4421 tgt->resid -= csio->dxfer_len; 4422 tgt->bytes_xfered += csio->dxfer_len; 4423 4424 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 4425 ta->TargetAssistFlags |= 4426 TARGET_ASSIST_FLAGS_DATA_DIRECTION; 4427 } 4428 4429 #ifdef WE_TRUST_AUTO_GOOD_STATUS 4430 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) && 4431 csio->scsi_status == SCSI_STATUS_OK && tgt->resid == 0) { 4432 ta->TargetAssistFlags |= 4433 TARGET_ASSIST_FLAGS_AUTO_STATUS; 4434 } 4435 #endif 4436 tgt->state = TGT_STATE_SETTING_UP_FOR_DATA; 4437 4438 mpt_lprt(mpt, MPT_PRT_DEBUG, 4439 "DATA_CCB %p tag %x %u bytes %u resid flg %x req %p:%u " 4440 "nxtstate=%d\n", csio, csio->tag_id, csio->dxfer_len, 4441 tgt->resid, ccb->ccb_h.flags, req, req->serno, tgt->state); 4442 4443 error = bus_dmamap_load_ccb(mpt->buffer_dmat, req->dmap, ccb, 4444 cb, req, 0); 4445 if (error == EINPROGRESS) { 4446 xpt_freeze_simq(mpt->sim, 1); 4447 ccb->ccb_h.status |= CAM_RELEASE_SIMQ; 4448 } 4449 } else { 4450 /* 4451 * XXX: I don't know why this seems to happen, but 4452 * XXX: completing the CCB seems to make things happy. 4453 * XXX: This seems to happen if the initiator requests 4454 * XXX: enough data that we have to do multiple CTIOs. 4455 */ 4456 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) == 0) { 4457 mpt_lprt(mpt, MPT_PRT_DEBUG, 4458 "Meaningless STATUS CCB (%p): flags %x status %x " 4459 "resid %d bytes_xfered %u\n", ccb, ccb->ccb_h.flags, 4460 ccb->ccb_h.status, tgt->resid, tgt->bytes_xfered); 4461 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 4462 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 4463 xpt_done(ccb); 4464 return; 4465 } 4466 mpt_scsi_tgt_status(mpt, ccb, cmd_req, csio->scsi_status, 4467 (void *)&csio->sense_data, 4468 (ccb->ccb_h.flags & CAM_SEND_SENSE) ? 4469 csio->sense_len : 0); 4470 } 4471 } 4472 4473 static void 4474 mpt_scsi_tgt_local(struct mpt_softc *mpt, request_t *cmd_req, 4475 lun_id_t lun, int send, uint8_t *data, size_t length) 4476 { 4477 mpt_tgt_state_t *tgt; 4478 PTR_MSG_TARGET_ASSIST_REQUEST ta; 4479 SGE_SIMPLE32 *se; 4480 uint32_t flags; 4481 uint8_t *dptr; 4482 bus_addr_t pptr; 4483 request_t *req; 4484 4485 /* 4486 * We enter with resid set to the data load for the command. 4487 */ 4488 tgt = MPT_TGT_STATE(mpt, cmd_req); 4489 if (length == 0 || tgt->resid == 0) { 4490 tgt->resid = 0; 4491 mpt_scsi_tgt_status(mpt, NULL, cmd_req, 0, NULL, 0); 4492 return; 4493 } 4494 4495 if ((req = mpt_get_request(mpt, FALSE)) == NULL) { 4496 mpt_prt(mpt, "out of resources- dropping local response\n"); 4497 return; 4498 } 4499 tgt->is_local = 1; 4500 4501 4502 memset(req->req_vbuf, 0, MPT_RQSL(mpt)); 4503 ta = req->req_vbuf; 4504 4505 if (mpt->is_sas) { 4506 PTR_MPI_TARGET_SSP_CMD_BUFFER ssp = cmd_req->req_vbuf; 4507 ta->QueueTag = ssp->InitiatorTag; 4508 } else if (mpt->is_spi) { 4509 PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER sp = cmd_req->req_vbuf; 4510 ta->QueueTag = sp->Tag; 4511 } 4512 ta->Function = MPI_FUNCTION_TARGET_ASSIST; 4513 ta->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id); 4514 ta->ReplyWord = htole32(tgt->reply_desc); 4515 be64enc(ta->LUN, CAM_EXTLUN_BYTE_SWIZZLE(lun)); 4516 ta->RelativeOffset = 0; 4517 ta->DataLength = length; 4518 4519 dptr = req->req_vbuf; 4520 dptr += MPT_RQSL(mpt); 4521 pptr = req->req_pbuf; 4522 pptr += MPT_RQSL(mpt); 4523 memcpy(dptr, data, min(length, MPT_RQSL(mpt))); 4524 4525 se = (SGE_SIMPLE32 *) &ta->SGL[0]; 4526 memset(se, 0,sizeof (*se)); 4527 4528 flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT; 4529 if (send) { 4530 ta->TargetAssistFlags |= TARGET_ASSIST_FLAGS_DATA_DIRECTION; 4531 flags |= MPI_SGE_FLAGS_HOST_TO_IOC; 4532 } 4533 se->Address = pptr; 4534 MPI_pSGE_SET_LENGTH(se, length); 4535 flags |= MPI_SGE_FLAGS_LAST_ELEMENT; 4536 flags |= MPI_SGE_FLAGS_END_OF_LIST | MPI_SGE_FLAGS_END_OF_BUFFER; 4537 MPI_pSGE_SET_FLAGS(se, flags); 4538 4539 tgt->ccb = NULL; 4540 tgt->req = req; 4541 tgt->resid -= length; 4542 tgt->bytes_xfered = length; 4543 #ifdef WE_TRUST_AUTO_GOOD_STATUS 4544 tgt->state = TGT_STATE_MOVING_DATA_AND_STATUS; 4545 #else 4546 tgt->state = TGT_STATE_MOVING_DATA; 4547 #endif 4548 mpt_send_cmd(mpt, req); 4549 } 4550 4551 /* 4552 * Abort queued up CCBs 4553 */ 4554 static cam_status 4555 mpt_abort_target_ccb(struct mpt_softc *mpt, union ccb *ccb) 4556 { 4557 struct mpt_hdr_stailq *lp; 4558 struct ccb_hdr *srch; 4559 int found = 0; 4560 union ccb *accb = ccb->cab.abort_ccb; 4561 tgt_resource_t *trtp; 4562 4563 mpt_lprt(mpt, MPT_PRT_DEBUG, "aborting ccb %p\n", accb); 4564 4565 if (ccb->ccb_h.target_lun == CAM_LUN_WILDCARD) { 4566 trtp = &mpt->trt_wildcard; 4567 } else { 4568 trtp = &mpt->trt[ccb->ccb_h.target_lun]; 4569 } 4570 4571 if (accb->ccb_h.func_code == XPT_ACCEPT_TARGET_IO) { 4572 lp = &trtp->atios; 4573 } else if (accb->ccb_h.func_code == XPT_IMMEDIATE_NOTIFY) { 4574 lp = &trtp->inots; 4575 } else { 4576 return (CAM_REQ_INVALID); 4577 } 4578 4579 STAILQ_FOREACH(srch, lp, sim_links.stqe) { 4580 if (srch == &accb->ccb_h) { 4581 found = 1; 4582 STAILQ_REMOVE(lp, srch, ccb_hdr, sim_links.stqe); 4583 break; 4584 } 4585 } 4586 if (found) { 4587 accb->ccb_h.status = CAM_REQ_ABORTED; 4588 xpt_done(accb); 4589 return (CAM_REQ_CMP); 4590 } 4591 mpt_prt(mpt, "mpt_abort_tgt_ccb: CCB %p not found\n", ccb); 4592 return (CAM_PATH_INVALID); 4593 } 4594 4595 /* 4596 * Ask the MPT to abort the current target command 4597 */ 4598 static int 4599 mpt_abort_target_cmd(struct mpt_softc *mpt, request_t *cmd_req) 4600 { 4601 int error; 4602 request_t *req; 4603 PTR_MSG_TARGET_MODE_ABORT abtp; 4604 4605 req = mpt_get_request(mpt, FALSE); 4606 if (req == NULL) { 4607 return (-1); 4608 } 4609 abtp = req->req_vbuf; 4610 memset(abtp, 0, sizeof (*abtp)); 4611 4612 abtp->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id); 4613 abtp->AbortType = TARGET_MODE_ABORT_TYPE_EXACT_IO; 4614 abtp->Function = MPI_FUNCTION_TARGET_MODE_ABORT; 4615 abtp->ReplyWord = htole32(MPT_TGT_STATE(mpt, cmd_req)->reply_desc); 4616 error = 0; 4617 if (mpt->is_fc || mpt->is_sas) { 4618 mpt_send_cmd(mpt, req); 4619 } else { 4620 error = mpt_send_handshake_cmd(mpt, sizeof(*req), req); 4621 } 4622 return (error); 4623 } 4624 4625 /* 4626 * WE_TRUST_AUTO_GOOD_STATUS- I've found that setting 4627 * TARGET_STATUS_SEND_FLAGS_AUTO_GOOD_STATUS leads the 4628 * FC929 to set bogus FC_RSP fields (nonzero residuals 4629 * but w/o RESID fields set). This causes QLogic initiators 4630 * to think maybe that a frame was lost. 4631 * 4632 * WE_CAN_USE_AUTO_REPOST- we can't use AUTO_REPOST because 4633 * we use allocated requests to do TARGET_ASSIST and we 4634 * need to know when to release them. 4635 */ 4636 4637 static void 4638 mpt_scsi_tgt_status(struct mpt_softc *mpt, union ccb *ccb, request_t *cmd_req, 4639 uint8_t status, uint8_t const *sense_data, u_int sense_len) 4640 { 4641 uint8_t *cmd_vbuf; 4642 mpt_tgt_state_t *tgt; 4643 PTR_MSG_TARGET_STATUS_SEND_REQUEST tp; 4644 request_t *req; 4645 bus_addr_t paddr; 4646 int resplen = 0; 4647 uint32_t fl; 4648 4649 cmd_vbuf = cmd_req->req_vbuf; 4650 cmd_vbuf += MPT_RQSL(mpt); 4651 tgt = MPT_TGT_STATE(mpt, cmd_req); 4652 4653 if ((req = mpt_get_request(mpt, FALSE)) == NULL) { 4654 if (mpt->outofbeer == 0) { 4655 mpt->outofbeer = 1; 4656 xpt_freeze_simq(mpt->sim, 1); 4657 mpt_lprt(mpt, MPT_PRT_DEBUG, "FREEZEQ\n"); 4658 } 4659 if (ccb) { 4660 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 4661 mpt_set_ccb_status(ccb, CAM_REQUEUE_REQ); 4662 xpt_done(ccb); 4663 } else { 4664 mpt_prt(mpt, 4665 "could not allocate status request- dropping\n"); 4666 } 4667 return; 4668 } 4669 req->ccb = ccb; 4670 if (ccb) { 4671 ccb->ccb_h.ccb_mpt_ptr = mpt; 4672 ccb->ccb_h.ccb_req_ptr = req; 4673 } 4674 4675 /* 4676 * Record the currently active ccb, if any, and the 4677 * request for it in our target state area. 4678 */ 4679 tgt->ccb = ccb; 4680 tgt->req = req; 4681 tgt->state = TGT_STATE_SENDING_STATUS; 4682 4683 tp = req->req_vbuf; 4684 paddr = req->req_pbuf; 4685 paddr += MPT_RQSL(mpt); 4686 4687 memset(tp, 0, sizeof (*tp)); 4688 tp->Function = MPI_FUNCTION_TARGET_STATUS_SEND; 4689 if (mpt->is_fc) { 4690 PTR_MPI_TARGET_FCP_CMD_BUFFER fc = 4691 (PTR_MPI_TARGET_FCP_CMD_BUFFER) cmd_vbuf; 4692 uint8_t *sts_vbuf; 4693 uint32_t *rsp; 4694 4695 sts_vbuf = req->req_vbuf; 4696 sts_vbuf += MPT_RQSL(mpt); 4697 rsp = (uint32_t *) sts_vbuf; 4698 memcpy(tp->LUN, fc->FcpLun, sizeof (tp->LUN)); 4699 4700 /* 4701 * The MPI_TARGET_FCP_RSP_BUFFER define is unfortunate. 4702 * It has to be big-endian in memory and is organized 4703 * in 32 bit words, which are much easier to deal with 4704 * as words which are swizzled as needed. 4705 * 4706 * All we're filling here is the FC_RSP payload. 4707 * We may just have the chip synthesize it if 4708 * we have no residual and an OK status. 4709 * 4710 */ 4711 memset(rsp, 0, sizeof (MPI_TARGET_FCP_RSP_BUFFER)); 4712 4713 rsp[2] = htobe32(status); 4714 #define MIN_FCP_RESPONSE_SIZE 24 4715 #ifndef WE_TRUST_AUTO_GOOD_STATUS 4716 resplen = MIN_FCP_RESPONSE_SIZE; 4717 #endif 4718 if (tgt->resid < 0) { 4719 rsp[2] |= htobe32(0x400); /* XXXX NEED MNEMONIC!!!! */ 4720 rsp[3] = htobe32(-tgt->resid); 4721 resplen = MIN_FCP_RESPONSE_SIZE; 4722 } else if (tgt->resid > 0) { 4723 rsp[2] |= htobe32(0x800); /* XXXX NEED MNEMONIC!!!! */ 4724 rsp[3] = htobe32(tgt->resid); 4725 resplen = MIN_FCP_RESPONSE_SIZE; 4726 } 4727 if (sense_len > 0) { 4728 rsp[2] |= htobe32(0x200); /* XXXX NEED MNEMONIC!!!! */ 4729 rsp[4] = htobe32(sense_len); 4730 memcpy(&rsp[6], sense_data, sense_len); 4731 resplen = MIN_FCP_RESPONSE_SIZE + sense_len; 4732 } 4733 } else if (mpt->is_sas) { 4734 PTR_MPI_TARGET_SSP_CMD_BUFFER ssp = 4735 (PTR_MPI_TARGET_SSP_CMD_BUFFER) cmd_vbuf; 4736 memcpy(tp->LUN, ssp->LogicalUnitNumber, sizeof (tp->LUN)); 4737 } else { 4738 PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER sp = 4739 (PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER) cmd_vbuf; 4740 tp->StatusCode = status; 4741 tp->QueueTag = htole16(sp->Tag); 4742 memcpy(tp->LUN, sp->LogicalUnitNumber, sizeof (tp->LUN)); 4743 } 4744 4745 tp->ReplyWord = htole32(tgt->reply_desc); 4746 tp->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id); 4747 4748 #ifdef WE_CAN_USE_AUTO_REPOST 4749 tp->MsgFlags = TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER; 4750 #endif 4751 if (status == SCSI_STATUS_OK && resplen == 0) { 4752 tp->MsgFlags |= TARGET_STATUS_SEND_FLAGS_AUTO_GOOD_STATUS; 4753 } else { 4754 tp->StatusDataSGE.u.Address32 = htole32((uint32_t) paddr); 4755 fl = 4756 MPI_SGE_FLAGS_HOST_TO_IOC | 4757 MPI_SGE_FLAGS_SIMPLE_ELEMENT | 4758 MPI_SGE_FLAGS_LAST_ELEMENT | 4759 MPI_SGE_FLAGS_END_OF_LIST | 4760 MPI_SGE_FLAGS_END_OF_BUFFER; 4761 fl <<= MPI_SGE_FLAGS_SHIFT; 4762 fl |= resplen; 4763 tp->StatusDataSGE.FlagsLength = htole32(fl); 4764 } 4765 4766 mpt_lprt(mpt, MPT_PRT_DEBUG, 4767 "STATUS_CCB %p (with%s sense) tag %x req %p:%u resid %u\n", 4768 ccb, sense_len > 0 ? "" : "out", ccb ? ccb->csio.tag_id : -1, 4769 req, req->serno, tgt->resid); 4770 if (ccb) { 4771 ccb->ccb_h.status = CAM_SIM_QUEUED | CAM_REQ_INPROG; 4772 mpt_req_timeout(req, SBT_1S * 60, mpt_timeout, ccb); 4773 } 4774 mpt_send_cmd(mpt, req); 4775 } 4776 4777 static void 4778 mpt_scsi_tgt_tsk_mgmt(struct mpt_softc *mpt, request_t *req, mpt_task_mgmt_t fc, 4779 tgt_resource_t *trtp, int init_id) 4780 { 4781 struct ccb_immediate_notify *inot; 4782 mpt_tgt_state_t *tgt; 4783 4784 tgt = MPT_TGT_STATE(mpt, req); 4785 inot = (struct ccb_immediate_notify *) STAILQ_FIRST(&trtp->inots); 4786 if (inot == NULL) { 4787 mpt_lprt(mpt, MPT_PRT_WARN, "no INOTSs- sending back BSY\n"); 4788 mpt_scsi_tgt_status(mpt, NULL, req, SCSI_STATUS_BUSY, NULL, 0); 4789 return; 4790 } 4791 STAILQ_REMOVE_HEAD(&trtp->inots, sim_links.stqe); 4792 mpt_lprt(mpt, MPT_PRT_DEBUG1, 4793 "Get FREE INOT %p lun %jx\n", inot, 4794 (uintmax_t)inot->ccb_h.target_lun); 4795 4796 inot->initiator_id = init_id; /* XXX */ 4797 /* 4798 * This is a somewhat grotesque attempt to map from task management 4799 * to old style SCSI messages. God help us all. 4800 */ 4801 switch (fc) { 4802 case MPT_ABORT_TASK_SET: 4803 inot->arg = MSG_ABORT_TAG; 4804 break; 4805 case MPT_CLEAR_TASK_SET: 4806 inot->arg = MSG_CLEAR_TASK_SET; 4807 break; 4808 case MPT_TARGET_RESET: 4809 inot->arg = MSG_TARGET_RESET; 4810 break; 4811 case MPT_CLEAR_ACA: 4812 inot->arg = MSG_CLEAR_ACA; 4813 break; 4814 case MPT_TERMINATE_TASK: 4815 inot->arg = MSG_ABORT_TAG; 4816 break; 4817 default: 4818 inot->arg = MSG_NOOP; 4819 break; 4820 } 4821 /* 4822 * XXX KDM we need the sequence/tag number for the target of the 4823 * task management operation, especially if it is an abort. 4824 */ 4825 tgt->ccb = (union ccb *) inot; 4826 inot->ccb_h.status = CAM_MESSAGE_RECV|CAM_DEV_QFRZN; 4827 xpt_done((union ccb *)inot); 4828 } 4829 4830 static void 4831 mpt_scsi_tgt_atio(struct mpt_softc *mpt, request_t *req, uint32_t reply_desc) 4832 { 4833 static uint8_t null_iqd[SHORT_INQUIRY_LENGTH] = { 4834 0x7f, 0x00, 0x02, 0x02, 0x20, 0x00, 0x00, 0x32, 4835 'F', 'R', 'E', 'E', 'B', 'S', 'D', ' ', 4836 'L', 'S', 'I', '-', 'L', 'O', 'G', 'I', 4837 'C', ' ', 'N', 'U', 'L', 'D', 'E', 'V', 4838 '0', '0', '0', '1' 4839 }; 4840 struct ccb_accept_tio *atiop; 4841 lun_id_t lun; 4842 int tag_action = 0; 4843 mpt_tgt_state_t *tgt; 4844 tgt_resource_t *trtp = NULL; 4845 U8 *lunptr; 4846 U8 *vbuf; 4847 U16 itag; 4848 U16 ioindex; 4849 mpt_task_mgmt_t fct = MPT_NIL_TMT_VALUE; 4850 uint8_t *cdbp; 4851 4852 /* 4853 * Stash info for the current command where we can get at it later. 4854 */ 4855 vbuf = req->req_vbuf; 4856 vbuf += MPT_RQSL(mpt); 4857 4858 /* 4859 * Get our state pointer set up. 4860 */ 4861 tgt = MPT_TGT_STATE(mpt, req); 4862 if (tgt->state != TGT_STATE_LOADED) { 4863 mpt_tgt_dump_req_state(mpt, req); 4864 panic("bad target state in mpt_scsi_tgt_atio"); 4865 } 4866 memset(tgt, 0, sizeof (mpt_tgt_state_t)); 4867 tgt->state = TGT_STATE_IN_CAM; 4868 tgt->reply_desc = reply_desc; 4869 ioindex = GET_IO_INDEX(reply_desc); 4870 if (mpt->verbose >= MPT_PRT_DEBUG) { 4871 mpt_dump_data(mpt, "mpt_scsi_tgt_atio response", vbuf, 4872 max(sizeof (MPI_TARGET_FCP_CMD_BUFFER), 4873 max(sizeof (MPI_TARGET_SSP_CMD_BUFFER), 4874 sizeof (MPI_TARGET_SCSI_SPI_CMD_BUFFER)))); 4875 } 4876 if (mpt->is_fc) { 4877 PTR_MPI_TARGET_FCP_CMD_BUFFER fc; 4878 fc = (PTR_MPI_TARGET_FCP_CMD_BUFFER) vbuf; 4879 if (fc->FcpCntl[2]) { 4880 /* 4881 * Task Management Request 4882 */ 4883 switch (fc->FcpCntl[2]) { 4884 case 0x2: 4885 fct = MPT_ABORT_TASK_SET; 4886 break; 4887 case 0x4: 4888 fct = MPT_CLEAR_TASK_SET; 4889 break; 4890 case 0x20: 4891 fct = MPT_TARGET_RESET; 4892 break; 4893 case 0x40: 4894 fct = MPT_CLEAR_ACA; 4895 break; 4896 case 0x80: 4897 fct = MPT_TERMINATE_TASK; 4898 break; 4899 default: 4900 mpt_prt(mpt, "CORRUPTED TASK MGMT BITS: 0x%x\n", 4901 fc->FcpCntl[2]); 4902 mpt_scsi_tgt_status(mpt, NULL, req, 4903 SCSI_STATUS_OK, NULL, 0); 4904 return; 4905 } 4906 } else { 4907 switch (fc->FcpCntl[1]) { 4908 case 0: 4909 tag_action = MSG_SIMPLE_Q_TAG; 4910 break; 4911 case 1: 4912 tag_action = MSG_HEAD_OF_Q_TAG; 4913 break; 4914 case 2: 4915 tag_action = MSG_ORDERED_Q_TAG; 4916 break; 4917 default: 4918 /* 4919 * Bah. Ignore Untagged Queing and ACA 4920 */ 4921 tag_action = MSG_SIMPLE_Q_TAG; 4922 break; 4923 } 4924 } 4925 tgt->resid = be32toh(fc->FcpDl); 4926 cdbp = fc->FcpCdb; 4927 lunptr = fc->FcpLun; 4928 itag = be16toh(fc->OptionalOxid); 4929 } else if (mpt->is_sas) { 4930 PTR_MPI_TARGET_SSP_CMD_BUFFER ssp; 4931 ssp = (PTR_MPI_TARGET_SSP_CMD_BUFFER) vbuf; 4932 cdbp = ssp->CDB; 4933 lunptr = ssp->LogicalUnitNumber; 4934 itag = ssp->InitiatorTag; 4935 } else { 4936 PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER sp; 4937 sp = (PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER) vbuf; 4938 cdbp = sp->CDB; 4939 lunptr = sp->LogicalUnitNumber; 4940 itag = sp->Tag; 4941 } 4942 4943 lun = CAM_EXTLUN_BYTE_SWIZZLE(be64dec(lunptr)); 4944 4945 /* 4946 * Deal with non-enabled or bad luns here. 4947 */ 4948 if (lun >= MPT_MAX_LUNS || mpt->tenabled == 0 || 4949 mpt->trt[lun].enabled == 0) { 4950 if (mpt->twildcard) { 4951 trtp = &mpt->trt_wildcard; 4952 } else if (fct == MPT_NIL_TMT_VALUE) { 4953 /* 4954 * In this case, we haven't got an upstream listener 4955 * for either a specific lun or wildcard luns. We 4956 * have to make some sensible response. For regular 4957 * inquiry, just return some NOT HERE inquiry data. 4958 * For VPD inquiry, report illegal field in cdb. 4959 * For REQUEST SENSE, just return NO SENSE data. 4960 * REPORT LUNS gets illegal command. 4961 * All other commands get 'no such device'. 4962 */ 4963 uint8_t sense[MPT_SENSE_SIZE]; 4964 size_t len; 4965 4966 memset(sense, 0, sizeof(sense)); 4967 sense[0] = 0xf0; 4968 sense[2] = 0x5; 4969 sense[7] = 0x8; 4970 tgt->tag_id = MPT_MAKE_TAGID(mpt, req, ioindex); 4971 4972 switch (cdbp[0]) { 4973 case INQUIRY: 4974 { 4975 if (cdbp[1] != 0) { 4976 sense[12] = 0x26; 4977 sense[13] = 0x01; 4978 break; 4979 } 4980 len = min(tgt->resid, cdbp[4]); 4981 len = min(len, sizeof (null_iqd)); 4982 mpt_lprt(mpt, MPT_PRT_DEBUG, 4983 "local inquiry %ld bytes\n", (long) len); 4984 mpt_scsi_tgt_local(mpt, req, lun, 1, 4985 null_iqd, len); 4986 return; 4987 } 4988 case REQUEST_SENSE: 4989 { 4990 sense[2] = 0x0; 4991 len = min(tgt->resid, cdbp[4]); 4992 len = min(len, sizeof (sense)); 4993 mpt_lprt(mpt, MPT_PRT_DEBUG, 4994 "local reqsense %ld bytes\n", (long) len); 4995 mpt_scsi_tgt_local(mpt, req, lun, 1, 4996 sense, len); 4997 return; 4998 } 4999 case REPORT_LUNS: 5000 mpt_lprt(mpt, MPT_PRT_DEBUG, "REPORT LUNS\n"); 5001 sense[12] = 0x26; 5002 return; 5003 default: 5004 mpt_lprt(mpt, MPT_PRT_DEBUG, 5005 "CMD 0x%x to unmanaged lun %jx\n", 5006 cdbp[0], (uintmax_t)lun); 5007 sense[12] = 0x25; 5008 break; 5009 } 5010 mpt_scsi_tgt_status(mpt, NULL, req, 5011 SCSI_STATUS_CHECK_COND, sense, sizeof(sense)); 5012 return; 5013 } 5014 /* otherwise, leave trtp NULL */ 5015 } else { 5016 trtp = &mpt->trt[lun]; 5017 } 5018 5019 /* 5020 * Deal with any task management 5021 */ 5022 if (fct != MPT_NIL_TMT_VALUE) { 5023 if (trtp == NULL) { 5024 mpt_prt(mpt, "task mgmt function %x but no listener\n", 5025 fct); 5026 mpt_scsi_tgt_status(mpt, NULL, req, 5027 SCSI_STATUS_OK, NULL, 0); 5028 } else { 5029 mpt_scsi_tgt_tsk_mgmt(mpt, req, fct, trtp, 5030 GET_INITIATOR_INDEX(reply_desc)); 5031 } 5032 return; 5033 } 5034 5035 5036 atiop = (struct ccb_accept_tio *) STAILQ_FIRST(&trtp->atios); 5037 if (atiop == NULL) { 5038 mpt_lprt(mpt, MPT_PRT_WARN, 5039 "no ATIOs for lun %jx- sending back %s\n", (uintmax_t)lun, 5040 mpt->tenabled? "QUEUE FULL" : "BUSY"); 5041 mpt_scsi_tgt_status(mpt, NULL, req, 5042 mpt->tenabled? SCSI_STATUS_QUEUE_FULL : SCSI_STATUS_BUSY, 5043 NULL, 0); 5044 return; 5045 } 5046 STAILQ_REMOVE_HEAD(&trtp->atios, sim_links.stqe); 5047 mpt_lprt(mpt, MPT_PRT_DEBUG1, 5048 "Get FREE ATIO %p lun %jx\n", atiop, 5049 (uintmax_t)atiop->ccb_h.target_lun); 5050 atiop->ccb_h.ccb_mpt_ptr = mpt; 5051 atiop->ccb_h.status = CAM_CDB_RECVD; 5052 atiop->ccb_h.target_lun = lun; 5053 atiop->sense_len = 0; 5054 atiop->init_id = GET_INITIATOR_INDEX(reply_desc); 5055 atiop->cdb_len = 16; 5056 memcpy(atiop->cdb_io.cdb_bytes, cdbp, atiop->cdb_len); 5057 5058 /* 5059 * The tag we construct here allows us to find the 5060 * original request that the command came in with. 5061 * 5062 * This way we don't have to depend on anything but the 5063 * tag to find things when CCBs show back up from CAM. 5064 */ 5065 atiop->tag_id = MPT_MAKE_TAGID(mpt, req, ioindex); 5066 tgt->tag_id = atiop->tag_id; 5067 if (tag_action) { 5068 atiop->tag_action = tag_action; 5069 atiop->ccb_h.flags |= CAM_TAG_ACTION_VALID; 5070 } 5071 if (mpt->verbose >= MPT_PRT_DEBUG) { 5072 int i; 5073 mpt_prt(mpt, "START_CCB %p for lun %jx CDB=<", atiop, 5074 (uintmax_t)atiop->ccb_h.target_lun); 5075 for (i = 0; i < atiop->cdb_len; i++) { 5076 mpt_prtc(mpt, "%02x%c", cdbp[i] & 0xff, 5077 (i == (atiop->cdb_len - 1))? '>' : ' '); 5078 } 5079 mpt_prtc(mpt, " itag %x tag %x rdesc %x dl=%u\n", 5080 itag, atiop->tag_id, tgt->reply_desc, tgt->resid); 5081 } 5082 5083 xpt_done((union ccb *)atiop); 5084 } 5085 5086 static void 5087 mpt_tgt_dump_tgt_state(struct mpt_softc *mpt, request_t *req) 5088 { 5089 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, req); 5090 5091 mpt_prt(mpt, "req %p:%u tgt:rdesc 0x%x resid %u xfrd %u ccb %p treq %p " 5092 "nx %d tag 0x%08x state=%d\n", req, req->serno, tgt->reply_desc, 5093 tgt->resid, tgt->bytes_xfered, tgt->ccb, tgt->req, tgt->nxfers, 5094 tgt->tag_id, tgt->state); 5095 } 5096 5097 static void 5098 mpt_tgt_dump_req_state(struct mpt_softc *mpt, request_t *req) 5099 { 5100 5101 mpt_prt(mpt, "req %p:%u index %u (%x) state %x\n", req, req->serno, 5102 req->index, req->index, req->state); 5103 mpt_tgt_dump_tgt_state(mpt, req); 5104 } 5105 5106 static int 5107 mpt_scsi_tgt_reply_handler(struct mpt_softc *mpt, request_t *req, 5108 uint32_t reply_desc, MSG_DEFAULT_REPLY *reply_frame) 5109 { 5110 int dbg; 5111 union ccb *ccb; 5112 U16 status; 5113 5114 if (reply_frame == NULL) { 5115 /* 5116 * Figure out what the state of the command is. 5117 */ 5118 mpt_tgt_state_t *tgt = MPT_TGT_STATE(mpt, req); 5119 5120 #ifdef INVARIANTS 5121 mpt_req_spcl(mpt, req, "turbo scsi_tgt_reply", __LINE__); 5122 if (tgt->req) { 5123 mpt_req_not_spcl(mpt, tgt->req, 5124 "turbo scsi_tgt_reply associated req", __LINE__); 5125 } 5126 #endif 5127 switch(tgt->state) { 5128 case TGT_STATE_LOADED: 5129 /* 5130 * This is a new command starting. 5131 */ 5132 mpt_scsi_tgt_atio(mpt, req, reply_desc); 5133 break; 5134 case TGT_STATE_MOVING_DATA: 5135 { 5136 ccb = tgt->ccb; 5137 if (tgt->req == NULL) { 5138 panic("mpt: turbo target reply with null " 5139 "associated request moving data"); 5140 /* NOTREACHED */ 5141 } 5142 if (ccb == NULL) { 5143 if (tgt->is_local == 0) { 5144 panic("mpt: turbo target reply with " 5145 "null associated ccb moving data"); 5146 /* NOTREACHED */ 5147 } 5148 mpt_lprt(mpt, MPT_PRT_DEBUG, 5149 "TARGET_ASSIST local done\n"); 5150 TAILQ_REMOVE(&mpt->request_pending_list, 5151 tgt->req, links); 5152 mpt_free_request(mpt, tgt->req); 5153 tgt->req = NULL; 5154 mpt_scsi_tgt_status(mpt, NULL, req, 5155 0, NULL, 0); 5156 return (TRUE); 5157 } 5158 tgt->ccb = NULL; 5159 tgt->nxfers++; 5160 mpt_req_untimeout(tgt->req, mpt_timeout, ccb); 5161 mpt_lprt(mpt, MPT_PRT_DEBUG, 5162 "TARGET_ASSIST %p (req %p:%u) done tag 0x%x\n", 5163 ccb, tgt->req, tgt->req->serno, ccb->csio.tag_id); 5164 /* 5165 * Free the Target Assist Request 5166 */ 5167 KASSERT(tgt->req->ccb == ccb, 5168 ("tgt->req %p:%u tgt->req->ccb %p", tgt->req, 5169 tgt->req->serno, tgt->req->ccb)); 5170 TAILQ_REMOVE(&mpt->request_pending_list, 5171 tgt->req, links); 5172 mpt_free_request(mpt, tgt->req); 5173 tgt->req = NULL; 5174 5175 /* 5176 * Do we need to send status now? That is, are 5177 * we done with all our data transfers? 5178 */ 5179 if ((ccb->ccb_h.flags & CAM_SEND_STATUS) == 0) { 5180 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 5181 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 5182 KASSERT(ccb->ccb_h.status, 5183 ("zero ccb sts at %d", __LINE__)); 5184 tgt->state = TGT_STATE_IN_CAM; 5185 if (mpt->outofbeer) { 5186 ccb->ccb_h.status |= CAM_RELEASE_SIMQ; 5187 mpt->outofbeer = 0; 5188 mpt_lprt(mpt, MPT_PRT_DEBUG, "THAWQ\n"); 5189 } 5190 xpt_done(ccb); 5191 break; 5192 } 5193 /* 5194 * Otherwise, send status (and sense) 5195 */ 5196 mpt_scsi_tgt_status(mpt, ccb, req, 5197 ccb->csio.scsi_status, 5198 (void *)&ccb->csio.sense_data, 5199 (ccb->ccb_h.flags & CAM_SEND_SENSE) ? 5200 ccb->csio.sense_len : 0); 5201 break; 5202 } 5203 case TGT_STATE_SENDING_STATUS: 5204 case TGT_STATE_MOVING_DATA_AND_STATUS: 5205 { 5206 int ioindex; 5207 ccb = tgt->ccb; 5208 5209 if (tgt->req == NULL) { 5210 panic("mpt: turbo target reply with null " 5211 "associated request sending status"); 5212 /* NOTREACHED */ 5213 } 5214 5215 if (ccb) { 5216 tgt->ccb = NULL; 5217 if (tgt->state == 5218 TGT_STATE_MOVING_DATA_AND_STATUS) { 5219 tgt->nxfers++; 5220 } 5221 mpt_req_untimeout(tgt->req, mpt_timeout, ccb); 5222 if (ccb->ccb_h.flags & CAM_SEND_SENSE) { 5223 ccb->ccb_h.status |= CAM_SENT_SENSE; 5224 } 5225 mpt_lprt(mpt, MPT_PRT_DEBUG, 5226 "TARGET_STATUS tag %x sts %x flgs %x req " 5227 "%p\n", ccb->csio.tag_id, ccb->ccb_h.status, 5228 ccb->ccb_h.flags, tgt->req); 5229 /* 5230 * Free the Target Send Status Request 5231 */ 5232 KASSERT(tgt->req->ccb == ccb, 5233 ("tgt->req %p:%u tgt->req->ccb %p", 5234 tgt->req, tgt->req->serno, tgt->req->ccb)); 5235 /* 5236 * Notify CAM that we're done 5237 */ 5238 mpt_set_ccb_status(ccb, CAM_REQ_CMP); 5239 ccb->ccb_h.status &= ~CAM_SIM_QUEUED; 5240 KASSERT(ccb->ccb_h.status, 5241 ("ZERO ccb sts at %d", __LINE__)); 5242 tgt->ccb = NULL; 5243 } else { 5244 mpt_lprt(mpt, MPT_PRT_DEBUG, 5245 "TARGET_STATUS non-CAM for req %p:%u\n", 5246 tgt->req, tgt->req->serno); 5247 } 5248 TAILQ_REMOVE(&mpt->request_pending_list, 5249 tgt->req, links); 5250 mpt_free_request(mpt, tgt->req); 5251 tgt->req = NULL; 5252 5253 /* 5254 * And re-post the Command Buffer. 5255 * This will reset the state. 5256 */ 5257 ioindex = GET_IO_INDEX(reply_desc); 5258 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 5259 tgt->is_local = 0; 5260 mpt_post_target_command(mpt, req, ioindex); 5261 5262 /* 5263 * And post a done for anyone who cares 5264 */ 5265 if (ccb) { 5266 if (mpt->outofbeer) { 5267 ccb->ccb_h.status |= CAM_RELEASE_SIMQ; 5268 mpt->outofbeer = 0; 5269 mpt_lprt(mpt, MPT_PRT_DEBUG, "THAWQ\n"); 5270 } 5271 xpt_done(ccb); 5272 } 5273 break; 5274 } 5275 case TGT_STATE_NIL: /* XXX This Never Happens XXX */ 5276 tgt->state = TGT_STATE_LOADED; 5277 break; 5278 default: 5279 mpt_prt(mpt, "Unknown Target State 0x%x in Context " 5280 "Reply Function\n", tgt->state); 5281 } 5282 return (TRUE); 5283 } 5284 5285 status = le16toh(reply_frame->IOCStatus); 5286 if (status != MPI_IOCSTATUS_SUCCESS) { 5287 dbg = MPT_PRT_ERROR; 5288 } else { 5289 dbg = MPT_PRT_DEBUG1; 5290 } 5291 5292 mpt_lprt(mpt, dbg, 5293 "SCSI_TGT REPLY: req=%p:%u reply=%p func=%x IOCstatus 0x%x\n", 5294 req, req->serno, reply_frame, reply_frame->Function, status); 5295 5296 switch (reply_frame->Function) { 5297 case MPI_FUNCTION_TARGET_CMD_BUFFER_POST: 5298 { 5299 mpt_tgt_state_t *tgt; 5300 #ifdef INVARIANTS 5301 mpt_req_spcl(mpt, req, "tgt reply BUFFER POST", __LINE__); 5302 #endif 5303 if (status != MPI_IOCSTATUS_SUCCESS) { 5304 /* 5305 * XXX What to do? 5306 */ 5307 break; 5308 } 5309 tgt = MPT_TGT_STATE(mpt, req); 5310 KASSERT(tgt->state == TGT_STATE_LOADING, 5311 ("bad state 0x%x on reply to buffer post", tgt->state)); 5312 mpt_assign_serno(mpt, req); 5313 tgt->state = TGT_STATE_LOADED; 5314 break; 5315 } 5316 case MPI_FUNCTION_TARGET_ASSIST: 5317 #ifdef INVARIANTS 5318 mpt_req_not_spcl(mpt, req, "tgt reply TARGET ASSIST", __LINE__); 5319 #endif 5320 mpt_prt(mpt, "target assist completion\n"); 5321 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 5322 mpt_free_request(mpt, req); 5323 break; 5324 case MPI_FUNCTION_TARGET_STATUS_SEND: 5325 #ifdef INVARIANTS 5326 mpt_req_not_spcl(mpt, req, "tgt reply STATUS SEND", __LINE__); 5327 #endif 5328 mpt_prt(mpt, "status send completion\n"); 5329 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 5330 mpt_free_request(mpt, req); 5331 break; 5332 case MPI_FUNCTION_TARGET_MODE_ABORT: 5333 { 5334 PTR_MSG_TARGET_MODE_ABORT_REPLY abtrp = 5335 (PTR_MSG_TARGET_MODE_ABORT_REPLY) reply_frame; 5336 PTR_MSG_TARGET_MODE_ABORT abtp = 5337 (PTR_MSG_TARGET_MODE_ABORT) req->req_vbuf; 5338 uint32_t cc = GET_IO_INDEX(le32toh(abtp->ReplyWord)); 5339 #ifdef INVARIANTS 5340 mpt_req_not_spcl(mpt, req, "tgt reply TMODE ABORT", __LINE__); 5341 #endif 5342 mpt_prt(mpt, "ABORT RX_ID 0x%x Complete; status 0x%x cnt %u\n", 5343 cc, le16toh(abtrp->IOCStatus), le32toh(abtrp->AbortCount)); 5344 TAILQ_REMOVE(&mpt->request_pending_list, req, links); 5345 mpt_free_request(mpt, req); 5346 break; 5347 } 5348 default: 5349 mpt_prt(mpt, "Unknown Target Address Reply Function code: " 5350 "0x%x\n", reply_frame->Function); 5351 break; 5352 } 5353 return (TRUE); 5354 } 5355