1 /*- 2 * Copyright (c) 2011-2015 LSI Corp. 3 * Copyright (c) 2013-2016 Avago Technologies 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 * Avago Technologies (LSI) MPT-Fusion Host Adapter FreeBSD 28 */ 29 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 /* Communications core for Avago Technologies (LSI) MPT3 */ 34 35 /* TODO Move headers to mprvar */ 36 #include <sys/types.h> 37 #include <sys/param.h> 38 #include <sys/systm.h> 39 #include <sys/kernel.h> 40 #include <sys/selinfo.h> 41 #include <sys/module.h> 42 #include <sys/bus.h> 43 #include <sys/conf.h> 44 #include <sys/bio.h> 45 #include <sys/malloc.h> 46 #include <sys/uio.h> 47 #include <sys/sysctl.h> 48 #include <sys/endian.h> 49 #include <sys/queue.h> 50 #include <sys/kthread.h> 51 #include <sys/taskqueue.h> 52 #include <sys/sbuf.h> 53 54 #include <machine/bus.h> 55 #include <machine/resource.h> 56 #include <sys/rman.h> 57 58 #include <machine/stdarg.h> 59 60 #include <cam/cam.h> 61 #include <cam/cam_ccb.h> 62 #include <cam/cam_debug.h> 63 #include <cam/cam_sim.h> 64 #include <cam/cam_xpt_sim.h> 65 #include <cam/cam_xpt_periph.h> 66 #include <cam/cam_periph.h> 67 #include <cam/scsi/scsi_all.h> 68 #include <cam/scsi/scsi_message.h> 69 70 #include <dev/mpr/mpi/mpi2_type.h> 71 #include <dev/mpr/mpi/mpi2.h> 72 #include <dev/mpr/mpi/mpi2_ioc.h> 73 #include <dev/mpr/mpi/mpi2_sas.h> 74 #include <dev/mpr/mpi/mpi2_cnfg.h> 75 #include <dev/mpr/mpi/mpi2_init.h> 76 #include <dev/mpr/mpi/mpi2_raid.h> 77 #include <dev/mpr/mpi/mpi2_tool.h> 78 #include <dev/mpr/mpr_ioctl.h> 79 #include <dev/mpr/mprvar.h> 80 #include <dev/mpr/mpr_table.h> 81 #include <dev/mpr/mpr_sas.h> 82 83 /* For Hashed SAS Address creation for SATA Drives */ 84 #define MPT2SAS_SN_LEN 20 85 #define MPT2SAS_MN_LEN 40 86 87 struct mpr_fw_event_work { 88 u16 event; 89 void *event_data; 90 TAILQ_ENTRY(mpr_fw_event_work) ev_link; 91 }; 92 93 union _sata_sas_address { 94 u8 wwid[8]; 95 struct { 96 u32 high; 97 u32 low; 98 } word; 99 }; 100 101 /* 102 * define the IDENTIFY DEVICE structure 103 */ 104 struct _ata_identify_device_data { 105 u16 reserved1[10]; /* 0-9 */ 106 u16 serial_number[10]; /* 10-19 */ 107 u16 reserved2[7]; /* 20-26 */ 108 u16 model_number[20]; /* 27-46*/ 109 u16 reserved3[170]; /* 47-216 */ 110 u16 rotational_speed; /* 217 */ 111 u16 reserved4[38]; /* 218-255 */ 112 }; 113 static u32 event_count; 114 static void mprsas_fw_work(struct mpr_softc *sc, 115 struct mpr_fw_event_work *fw_event); 116 static void mprsas_fw_event_free(struct mpr_softc *, 117 struct mpr_fw_event_work *); 118 static int mprsas_add_device(struct mpr_softc *sc, u16 handle, u8 linkrate); 119 static int mprsas_get_sata_identify(struct mpr_softc *sc, u16 handle, 120 Mpi2SataPassthroughReply_t *mpi_reply, char *id_buffer, int sz, 121 u32 devinfo); 122 static void mprsas_ata_id_timeout(void *data); 123 int mprsas_get_sas_address_for_sata_disk(struct mpr_softc *sc, 124 u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD); 125 static int mprsas_volume_add(struct mpr_softc *sc, 126 u16 handle); 127 static void mprsas_SSU_to_SATA_devices(struct mpr_softc *sc); 128 static void mprsas_stop_unit_done(struct cam_periph *periph, 129 union ccb *done_ccb); 130 131 void 132 mprsas_evt_handler(struct mpr_softc *sc, uintptr_t data, 133 MPI2_EVENT_NOTIFICATION_REPLY *event) 134 { 135 struct mpr_fw_event_work *fw_event; 136 u16 sz; 137 138 mpr_dprint(sc, MPR_TRACE, "%s\n", __func__); 139 mpr_print_evt_sas(sc, event); 140 mprsas_record_event(sc, event); 141 142 fw_event = malloc(sizeof(struct mpr_fw_event_work), M_MPR, 143 M_ZERO|M_NOWAIT); 144 if (!fw_event) { 145 printf("%s: allocate failed for fw_event\n", __func__); 146 return; 147 } 148 sz = le16toh(event->EventDataLength) * 4; 149 fw_event->event_data = malloc(sz, M_MPR, M_ZERO|M_NOWAIT); 150 if (!fw_event->event_data) { 151 printf("%s: allocate failed for event_data\n", __func__); 152 free(fw_event, M_MPR); 153 return; 154 } 155 156 bcopy(event->EventData, fw_event->event_data, sz); 157 fw_event->event = event->Event; 158 if ((event->Event == MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST || 159 event->Event == MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE || 160 event->Event == MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST) && 161 sc->track_mapping_events) 162 sc->pending_map_events++; 163 164 /* 165 * When wait_for_port_enable flag is set, make sure that all the events 166 * are processed. Increment the startup_refcount and decrement it after 167 * events are processed. 168 */ 169 if ((event->Event == MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST || 170 event->Event == MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST) && 171 sc->wait_for_port_enable) 172 mprsas_startup_increment(sc->sassc); 173 174 TAILQ_INSERT_TAIL(&sc->sassc->ev_queue, fw_event, ev_link); 175 taskqueue_enqueue(sc->sassc->ev_tq, &sc->sassc->ev_task); 176 177 } 178 179 static void 180 mprsas_fw_event_free(struct mpr_softc *sc, struct mpr_fw_event_work *fw_event) 181 { 182 183 free(fw_event->event_data, M_MPR); 184 free(fw_event, M_MPR); 185 } 186 187 /** 188 * _mpr_fw_work - delayed task for processing firmware events 189 * @sc: per adapter object 190 * @fw_event: The fw_event_work object 191 * Context: user. 192 * 193 * Return nothing. 194 */ 195 static void 196 mprsas_fw_work(struct mpr_softc *sc, struct mpr_fw_event_work *fw_event) 197 { 198 struct mprsas_softc *sassc; 199 sassc = sc->sassc; 200 201 mpr_dprint(sc, MPR_EVENT, "(%d)->(%s) Working on Event: [%x]\n", 202 event_count++, __func__, fw_event->event); 203 switch (fw_event->event) { 204 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST: 205 { 206 MPI2_EVENT_DATA_SAS_TOPOLOGY_CHANGE_LIST *data; 207 MPI2_EVENT_SAS_TOPO_PHY_ENTRY *phy; 208 int i; 209 210 data = (MPI2_EVENT_DATA_SAS_TOPOLOGY_CHANGE_LIST *) 211 fw_event->event_data; 212 213 mpr_mapping_topology_change_event(sc, fw_event->event_data); 214 215 for (i = 0; i < data->NumEntries; i++) { 216 phy = &data->PHY[i]; 217 switch (phy->PhyStatus & MPI2_EVENT_SAS_TOPO_RC_MASK) { 218 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED: 219 if (mprsas_add_device(sc, 220 le16toh(phy->AttachedDevHandle), 221 phy->LinkRate)) { 222 printf("%s: failed to add device with " 223 "handle 0x%x\n", __func__, 224 le16toh(phy->AttachedDevHandle)); 225 mprsas_prepare_remove(sassc, le16toh( 226 phy->AttachedDevHandle)); 227 } 228 break; 229 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING: 230 mprsas_prepare_remove(sassc, le16toh( 231 phy->AttachedDevHandle)); 232 break; 233 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED: 234 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE: 235 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING: 236 default: 237 break; 238 } 239 } 240 /* 241 * refcount was incremented for this event in 242 * mprsas_evt_handler. Decrement it here because the event has 243 * been processed. 244 */ 245 mprsas_startup_decrement(sassc); 246 break; 247 } 248 case MPI2_EVENT_SAS_DISCOVERY: 249 { 250 MPI2_EVENT_DATA_SAS_DISCOVERY *data; 251 252 data = (MPI2_EVENT_DATA_SAS_DISCOVERY *)fw_event->event_data; 253 254 if (data->ReasonCode & MPI2_EVENT_SAS_DISC_RC_STARTED) 255 mpr_dprint(sc, MPR_TRACE,"SAS discovery start event\n"); 256 if (data->ReasonCode & MPI2_EVENT_SAS_DISC_RC_COMPLETED) { 257 mpr_dprint(sc, MPR_TRACE,"SAS discovery stop event\n"); 258 sassc->flags &= ~MPRSAS_IN_DISCOVERY; 259 mprsas_discovery_end(sassc); 260 } 261 break; 262 } 263 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE: 264 { 265 Mpi2EventDataSasEnclDevStatusChange_t *data; 266 data = (Mpi2EventDataSasEnclDevStatusChange_t *) 267 fw_event->event_data; 268 mpr_mapping_enclosure_dev_status_change_event(sc, 269 fw_event->event_data); 270 break; 271 } 272 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST: 273 { 274 Mpi2EventIrConfigElement_t *element; 275 int i; 276 u8 foreign_config, reason; 277 u16 elementType; 278 Mpi2EventDataIrConfigChangeList_t *event_data; 279 struct mprsas_target *targ; 280 unsigned int id; 281 282 event_data = fw_event->event_data; 283 foreign_config = (le32toh(event_data->Flags) & 284 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ? 1 : 0; 285 286 element = 287 (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; 288 id = mpr_mapping_get_raid_id_from_handle(sc, 289 element->VolDevHandle); 290 291 mpr_mapping_ir_config_change_event(sc, event_data); 292 for (i = 0; i < event_data->NumElements; i++, element++) { 293 reason = element->ReasonCode; 294 elementType = le16toh(element->ElementFlags) & 295 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK; 296 /* 297 * check for element type of Phys Disk or Hot Spare 298 */ 299 if ((elementType != 300 MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT) 301 && (elementType != 302 MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT)) 303 // do next element 304 goto skip_fp_send; 305 306 /* 307 * check for reason of Hide, Unhide, PD Created, or PD 308 * Deleted 309 */ 310 if ((reason != MPI2_EVENT_IR_CHANGE_RC_HIDE) && 311 (reason != MPI2_EVENT_IR_CHANGE_RC_UNHIDE) && 312 (reason != MPI2_EVENT_IR_CHANGE_RC_PD_CREATED) && 313 (reason != MPI2_EVENT_IR_CHANGE_RC_PD_DELETED)) 314 goto skip_fp_send; 315 316 // check for a reason of Hide or PD Created 317 if ((reason == MPI2_EVENT_IR_CHANGE_RC_HIDE) || 318 (reason == MPI2_EVENT_IR_CHANGE_RC_PD_CREATED)) 319 { 320 // build RAID Action message 321 Mpi2RaidActionRequest_t *action; 322 Mpi2RaidActionReply_t *reply; 323 struct mpr_command *cm; 324 int error = 0; 325 if ((cm = mpr_alloc_command(sc)) == NULL) { 326 printf("%s: command alloc failed\n", 327 __func__); 328 return; 329 } 330 331 mpr_dprint(sc, MPR_EVENT, "Sending FP action " 332 "from " 333 "MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST " 334 ":\n"); 335 action = (MPI2_RAID_ACTION_REQUEST *)cm->cm_req; 336 action->Function = MPI2_FUNCTION_RAID_ACTION; 337 action->Action = 338 MPI2_RAID_ACTION_PHYSDISK_HIDDEN; 339 action->PhysDiskNum = element->PhysDiskNum; 340 cm->cm_desc.Default.RequestFlags = 341 MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE; 342 error = mpr_request_polled(sc, cm); 343 reply = (Mpi2RaidActionReply_t *)cm->cm_reply; 344 if (error || (reply == NULL)) { 345 /* FIXME */ 346 /* 347 * If the poll returns error then we 348 * need to do diag reset 349 */ 350 printf("%s: poll for page completed " 351 "with error %d", __func__, error); 352 } 353 if (reply && (le16toh(reply->IOCStatus) & 354 MPI2_IOCSTATUS_MASK) != 355 MPI2_IOCSTATUS_SUCCESS) { 356 mpr_dprint(sc, MPR_ERROR, "%s: error " 357 "sending RaidActionPage; " 358 "iocstatus = 0x%x\n", __func__, 359 le16toh(reply->IOCStatus)); 360 } 361 362 if (cm) 363 mpr_free_command(sc, cm); 364 } 365 skip_fp_send: 366 mpr_dprint(sc, MPR_EVENT, "Received " 367 "MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST Reason " 368 "code %x:\n", element->ReasonCode); 369 switch (element->ReasonCode) { 370 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED: 371 case MPI2_EVENT_IR_CHANGE_RC_ADDED: 372 if (!foreign_config) { 373 if (mprsas_volume_add(sc, 374 le16toh(element->VolDevHandle))) { 375 printf("%s: failed to add RAID " 376 "volume with handle 0x%x\n", 377 __func__, le16toh(element-> 378 VolDevHandle)); 379 } 380 } 381 break; 382 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED: 383 case MPI2_EVENT_IR_CHANGE_RC_REMOVED: 384 /* 385 * Rescan after volume is deleted or removed. 386 */ 387 if (!foreign_config) { 388 if (id == MPR_MAP_BAD_ID) { 389 printf("%s: could not get ID " 390 "for volume with handle " 391 "0x%04x\n", __func__, 392 le16toh(element-> 393 VolDevHandle)); 394 break; 395 } 396 397 targ = &sassc->targets[id]; 398 targ->handle = 0x0; 399 targ->encl_slot = 0x0; 400 targ->encl_handle = 0x0; 401 targ->encl_level_valid = 0x0; 402 targ->encl_level = 0x0; 403 targ->connector_name[0] = ' '; 404 targ->connector_name[1] = ' '; 405 targ->connector_name[2] = ' '; 406 targ->connector_name[3] = ' '; 407 targ->exp_dev_handle = 0x0; 408 targ->phy_num = 0x0; 409 targ->linkrate = 0x0; 410 mprsas_rescan_target(sc, targ); 411 printf("RAID target id 0x%x removed\n", 412 targ->tid); 413 } 414 break; 415 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED: 416 case MPI2_EVENT_IR_CHANGE_RC_HIDE: 417 /* 418 * Phys Disk of a volume has been created. Hide 419 * it from the OS. 420 */ 421 targ = mprsas_find_target_by_handle(sassc, 0, 422 element->PhysDiskDevHandle); 423 if (targ == NULL) 424 break; 425 targ->flags |= MPR_TARGET_FLAGS_RAID_COMPONENT; 426 mprsas_rescan_target(sc, targ); 427 break; 428 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED: 429 /* 430 * Phys Disk of a volume has been deleted. 431 * Expose it to the OS. 432 */ 433 if (mprsas_add_device(sc, 434 le16toh(element->PhysDiskDevHandle), 0)) { 435 printf("%s: failed to add device with " 436 "handle 0x%x\n", __func__, 437 le16toh(element-> 438 PhysDiskDevHandle)); 439 mprsas_prepare_remove(sassc, 440 le16toh(element-> 441 PhysDiskDevHandle)); 442 } 443 break; 444 } 445 } 446 /* 447 * refcount was incremented for this event in 448 * mprsas_evt_handler. Decrement it here because the event has 449 * been processed. 450 */ 451 mprsas_startup_decrement(sassc); 452 break; 453 } 454 case MPI2_EVENT_IR_VOLUME: 455 { 456 Mpi2EventDataIrVolume_t *event_data = fw_event->event_data; 457 458 /* 459 * Informational only. 460 */ 461 mpr_dprint(sc, MPR_EVENT, "Received IR Volume event:\n"); 462 switch (event_data->ReasonCode) { 463 case MPI2_EVENT_IR_VOLUME_RC_SETTINGS_CHANGED: 464 mpr_dprint(sc, MPR_EVENT, " Volume Settings " 465 "changed from 0x%x to 0x%x for Volome with " 466 "handle 0x%x", le32toh(event_data->PreviousValue), 467 le32toh(event_data->NewValue), 468 le16toh(event_data->VolDevHandle)); 469 break; 470 case MPI2_EVENT_IR_VOLUME_RC_STATUS_FLAGS_CHANGED: 471 mpr_dprint(sc, MPR_EVENT, " Volume Status " 472 "changed from 0x%x to 0x%x for Volome with " 473 "handle 0x%x", le32toh(event_data->PreviousValue), 474 le32toh(event_data->NewValue), 475 le16toh(event_data->VolDevHandle)); 476 break; 477 case MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED: 478 mpr_dprint(sc, MPR_EVENT, " Volume State " 479 "changed from 0x%x to 0x%x for Volome with " 480 "handle 0x%x", le32toh(event_data->PreviousValue), 481 le32toh(event_data->NewValue), 482 le16toh(event_data->VolDevHandle)); 483 u32 state; 484 struct mprsas_target *targ; 485 state = le32toh(event_data->NewValue); 486 switch (state) { 487 case MPI2_RAID_VOL_STATE_MISSING: 488 case MPI2_RAID_VOL_STATE_FAILED: 489 mprsas_prepare_volume_remove(sassc, 490 event_data->VolDevHandle); 491 break; 492 493 case MPI2_RAID_VOL_STATE_ONLINE: 494 case MPI2_RAID_VOL_STATE_DEGRADED: 495 case MPI2_RAID_VOL_STATE_OPTIMAL: 496 targ = 497 mprsas_find_target_by_handle(sassc, 498 0, event_data->VolDevHandle); 499 if (targ) { 500 printf("%s %d: Volume handle " 501 "0x%x is already added \n", 502 __func__, __LINE__, 503 event_data->VolDevHandle); 504 break; 505 } 506 if (mprsas_volume_add(sc, 507 le16toh(event_data-> 508 VolDevHandle))) { 509 printf("%s: failed to add RAID " 510 "volume with handle 0x%x\n", 511 __func__, le16toh( 512 event_data->VolDevHandle)); 513 } 514 break; 515 default: 516 break; 517 } 518 break; 519 default: 520 break; 521 } 522 break; 523 } 524 case MPI2_EVENT_IR_PHYSICAL_DISK: 525 { 526 Mpi2EventDataIrPhysicalDisk_t *event_data = 527 fw_event->event_data; 528 struct mprsas_target *targ; 529 530 /* 531 * Informational only. 532 */ 533 mpr_dprint(sc, MPR_EVENT, "Received IR Phys Disk event:\n"); 534 switch (event_data->ReasonCode) { 535 case MPI2_EVENT_IR_PHYSDISK_RC_SETTINGS_CHANGED: 536 mpr_dprint(sc, MPR_EVENT, " Phys Disk Settings " 537 "changed from 0x%x to 0x%x for Phys Disk Number " 538 "%d and handle 0x%x at Enclosure handle 0x%x, Slot " 539 "%d", le32toh(event_data->PreviousValue), 540 le32toh(event_data->NewValue), 541 event_data->PhysDiskNum, 542 le16toh(event_data->PhysDiskDevHandle), 543 le16toh(event_data->EnclosureHandle), 544 le16toh(event_data->Slot)); 545 break; 546 case MPI2_EVENT_IR_PHYSDISK_RC_STATUS_FLAGS_CHANGED: 547 mpr_dprint(sc, MPR_EVENT, " Phys Disk Status changed " 548 "from 0x%x to 0x%x for Phys Disk Number %d and " 549 "handle 0x%x at Enclosure handle 0x%x, Slot %d", 550 le32toh(event_data->PreviousValue), 551 le32toh(event_data->NewValue), 552 event_data->PhysDiskNum, 553 le16toh(event_data->PhysDiskDevHandle), 554 le16toh(event_data->EnclosureHandle), 555 le16toh(event_data->Slot)); 556 break; 557 case MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED: 558 mpr_dprint(sc, MPR_EVENT, " Phys Disk State changed " 559 "from 0x%x to 0x%x for Phys Disk Number %d and " 560 "handle 0x%x at Enclosure handle 0x%x, Slot %d", 561 le32toh(event_data->PreviousValue), 562 le32toh(event_data->NewValue), 563 event_data->PhysDiskNum, 564 le16toh(event_data->PhysDiskDevHandle), 565 le16toh(event_data->EnclosureHandle), 566 le16toh(event_data->Slot)); 567 switch (event_data->NewValue) { 568 case MPI2_RAID_PD_STATE_ONLINE: 569 case MPI2_RAID_PD_STATE_DEGRADED: 570 case MPI2_RAID_PD_STATE_REBUILDING: 571 case MPI2_RAID_PD_STATE_OPTIMAL: 572 case MPI2_RAID_PD_STATE_HOT_SPARE: 573 targ = mprsas_find_target_by_handle( 574 sassc, 0, 575 event_data->PhysDiskDevHandle); 576 if (targ) { 577 targ->flags |= 578 MPR_TARGET_FLAGS_RAID_COMPONENT; 579 printf("%s %d: Found Target " 580 "for handle 0x%x.\n", 581 __func__, __LINE__ , 582 event_data-> 583 PhysDiskDevHandle); 584 } 585 break; 586 case MPI2_RAID_PD_STATE_OFFLINE: 587 case MPI2_RAID_PD_STATE_NOT_CONFIGURED: 588 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE: 589 default: 590 targ = mprsas_find_target_by_handle( 591 sassc, 0, 592 event_data->PhysDiskDevHandle); 593 if (targ) { 594 targ->flags |= 595 ~MPR_TARGET_FLAGS_RAID_COMPONENT; 596 printf("%s %d: Found Target " 597 "for handle 0x%x. \n", 598 __func__, __LINE__ , 599 event_data-> 600 PhysDiskDevHandle); 601 } 602 break; 603 } 604 default: 605 break; 606 } 607 break; 608 } 609 case MPI2_EVENT_IR_OPERATION_STATUS: 610 { 611 Mpi2EventDataIrOperationStatus_t *event_data = 612 fw_event->event_data; 613 614 /* 615 * Informational only. 616 */ 617 mpr_dprint(sc, MPR_EVENT, "Received IR Op Status event:\n"); 618 mpr_dprint(sc, MPR_EVENT, " RAID Operation of %d is %d " 619 "percent complete for Volume with handle 0x%x", 620 event_data->RAIDOperation, event_data->PercentComplete, 621 le16toh(event_data->VolDevHandle)); 622 break; 623 } 624 case MPI2_EVENT_TEMP_THRESHOLD: 625 { 626 pMpi2EventDataTemperature_t temp_event; 627 628 temp_event = (pMpi2EventDataTemperature_t)fw_event->event_data; 629 630 /* 631 * The Temp Sensor Count must be greater than the event's Sensor 632 * Num to be valid. If valid, print the temp thresholds that 633 * have been exceeded. 634 */ 635 if (sc->iounit_pg8.NumSensors > temp_event->SensorNum) { 636 mpr_dprint(sc, MPR_FAULT, "Temperature Threshold flags " 637 "%s %s %s %s exceeded for Sensor: %d !!!\n", 638 ((temp_event->Status & 0x01) == 1) ? "0 " : " ", 639 ((temp_event->Status & 0x02) == 2) ? "1 " : " ", 640 ((temp_event->Status & 0x04) == 4) ? "2 " : " ", 641 ((temp_event->Status & 0x08) == 8) ? "3 " : " ", 642 temp_event->SensorNum); 643 mpr_dprint(sc, MPR_FAULT, "Current Temp in Celsius: " 644 "%d\n", temp_event->CurrentTemperature); 645 } 646 break; 647 } 648 case MPI2_EVENT_ACTIVE_CABLE_EXCEPTION: 649 { 650 pMpi26EventDataActiveCableExcept_t ace_event_data; 651 ace_event_data = 652 (pMpi26EventDataActiveCableExcept_t)fw_event->event_data; 653 654 if (ace_event_data->ReasonCode == 655 MPI26_EVENT_ACTIVE_CABLE_INSUFFICIENT_POWER) { 656 mpr_printf(sc, "Currently an active cable with " 657 "ReceptacleID %d cannot be powered and device " 658 "connected to this active cable will not be seen. " 659 "This active cable requires %d mW of power.\n", 660 ace_event_data->ReceptacleID, 661 ace_event_data->ActiveCablePowerRequirement); 662 } 663 break; 664 } 665 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE: 666 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE: 667 default: 668 mpr_dprint(sc, MPR_TRACE,"Unhandled event 0x%0X\n", 669 fw_event->event); 670 break; 671 672 } 673 mpr_dprint(sc, MPR_EVENT, "(%d)->(%s) Event Free: [%x]\n", event_count, 674 __func__, fw_event->event); 675 mprsas_fw_event_free(sc, fw_event); 676 } 677 678 void 679 mprsas_firmware_event_work(void *arg, int pending) 680 { 681 struct mpr_fw_event_work *fw_event; 682 struct mpr_softc *sc; 683 684 sc = (struct mpr_softc *)arg; 685 mpr_lock(sc); 686 while ((fw_event = TAILQ_FIRST(&sc->sassc->ev_queue)) != NULL) { 687 TAILQ_REMOVE(&sc->sassc->ev_queue, fw_event, ev_link); 688 mprsas_fw_work(sc, fw_event); 689 } 690 mpr_unlock(sc); 691 } 692 693 static int 694 mprsas_add_device(struct mpr_softc *sc, u16 handle, u8 linkrate){ 695 char devstring[80]; 696 struct mprsas_softc *sassc; 697 struct mprsas_target *targ; 698 Mpi2ConfigReply_t mpi_reply; 699 Mpi2SasDevicePage0_t config_page; 700 uint64_t sas_address, parent_sas_address = 0; 701 u32 device_info, parent_devinfo = 0; 702 unsigned int id; 703 int ret = 1, error = 0, i; 704 struct mprsas_lun *lun; 705 u8 is_SATA_SSD = 0; 706 struct mpr_command *cm; 707 708 sassc = sc->sassc; 709 mprsas_startup_increment(sassc); 710 if ((mpr_config_get_sas_device_pg0(sc, &mpi_reply, &config_page, 711 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) { 712 printf("%s: error reading SAS device page0\n", __func__); 713 error = ENXIO; 714 goto out; 715 } 716 717 device_info = le32toh(config_page.DeviceInfo); 718 719 if (((device_info & MPI2_SAS_DEVICE_INFO_SMP_TARGET) == 0) 720 && (le16toh(config_page.ParentDevHandle) != 0)) { 721 Mpi2ConfigReply_t tmp_mpi_reply; 722 Mpi2SasDevicePage0_t parent_config_page; 723 724 if ((mpr_config_get_sas_device_pg0(sc, &tmp_mpi_reply, 725 &parent_config_page, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, 726 le16toh(config_page.ParentDevHandle)))) { 727 printf("%s: error reading SAS device %#x page0\n", 728 __func__, le16toh(config_page.ParentDevHandle)); 729 } else { 730 parent_sas_address = parent_config_page.SASAddress.High; 731 parent_sas_address = (parent_sas_address << 32) | 732 parent_config_page.SASAddress.Low; 733 parent_devinfo = le32toh(parent_config_page.DeviceInfo); 734 } 735 } 736 /* TODO Check proper endianness */ 737 sas_address = config_page.SASAddress.High; 738 sas_address = (sas_address << 32) | config_page.SASAddress.Low; 739 mpr_dprint(sc, MPR_INFO, "SAS Address from SAS device page0 = %jx\n", 740 sas_address); 741 742 /* 743 * Always get SATA Identify information because this is used to 744 * determine if Start/Stop Unit should be sent to the drive when the 745 * system is shutdown. 746 */ 747 if (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE) { 748 ret = mprsas_get_sas_address_for_sata_disk(sc, &sas_address, 749 handle, device_info, &is_SATA_SSD); 750 if (ret) { 751 mpr_dprint(sc, MPR_ERROR, "%s: failed to get disk type " 752 "(SSD or HDD) for SATA device with handle 0x%04x\n", 753 __func__, handle); 754 } else { 755 mpr_dprint(sc, MPR_INFO, "SAS Address from SATA " 756 "device = %jx\n", sas_address); 757 } 758 } 759 760 /* 761 * use_phynum: 762 * 1 - use the PhyNum field as a fallback to the mapping logic 763 * 0 - never use the PhyNum field 764 * -1 - only use the PhyNum field 765 */ 766 id = MPR_MAP_BAD_ID; 767 if (sc->use_phynum != -1) 768 id = mpr_mapping_get_sas_id(sc, sas_address, handle); 769 if (id == MPR_MAP_BAD_ID) { 770 if ((sc->use_phynum == 0) 771 || ((id = config_page.PhyNum) > sassc->maxtargets)) { 772 mpr_dprint(sc, MPR_INFO, "failure at %s:%d/%s()! " 773 "Could not get ID for device with handle 0x%04x\n", 774 __FILE__, __LINE__, __func__, handle); 775 error = ENXIO; 776 goto out; 777 } 778 } 779 780 if (mprsas_check_id(sassc, id) != 0) { 781 device_printf(sc->mpr_dev, "Excluding target id %d\n", id); 782 error = ENXIO; 783 goto out; 784 } 785 786 targ = &sassc->targets[id]; 787 if (targ->handle != 0x0) { 788 mpr_dprint(sc, MPR_MAPPING, "Attempting to reuse target id " 789 "%d handle 0x%04x\n", id, targ->handle); 790 error = ENXIO; 791 goto out; 792 } 793 794 mpr_dprint(sc, MPR_MAPPING, "SAS Address from SAS device page0 = %jx\n", 795 sas_address); 796 targ->devinfo = device_info; 797 targ->devname = le32toh(config_page.DeviceName.High); 798 targ->devname = (targ->devname << 32) | 799 le32toh(config_page.DeviceName.Low); 800 targ->encl_handle = le16toh(config_page.EnclosureHandle); 801 targ->encl_slot = le16toh(config_page.Slot); 802 targ->encl_level = config_page.EnclosureLevel; 803 targ->connector_name[0] = config_page.ConnectorName[0]; 804 targ->connector_name[1] = config_page.ConnectorName[1]; 805 targ->connector_name[2] = config_page.ConnectorName[2]; 806 targ->connector_name[3] = config_page.ConnectorName[3]; 807 targ->handle = handle; 808 targ->parent_handle = le16toh(config_page.ParentDevHandle); 809 targ->sasaddr = mpr_to_u64(&config_page.SASAddress); 810 targ->parent_sasaddr = le64toh(parent_sas_address); 811 targ->parent_devinfo = parent_devinfo; 812 targ->tid = id; 813 targ->linkrate = (linkrate>>4); 814 targ->flags = 0; 815 if (is_SATA_SSD) { 816 targ->flags = MPR_TARGET_IS_SATA_SSD; 817 } 818 if (le16toh(config_page.Flags) & 819 MPI25_SAS_DEVICE0_FLAGS_FAST_PATH_CAPABLE) { 820 targ->scsi_req_desc_type = 821 MPI25_REQ_DESCRIPT_FLAGS_FAST_PATH_SCSI_IO; 822 } 823 if (le16toh(config_page.Flags) & 824 MPI2_SAS_DEVICE0_FLAGS_ENCL_LEVEL_VALID) { 825 targ->encl_level_valid = TRUE; 826 } 827 TAILQ_INIT(&targ->commands); 828 TAILQ_INIT(&targ->timedout_commands); 829 while (!SLIST_EMPTY(&targ->luns)) { 830 lun = SLIST_FIRST(&targ->luns); 831 SLIST_REMOVE_HEAD(&targ->luns, lun_link); 832 free(lun, M_MPR); 833 } 834 SLIST_INIT(&targ->luns); 835 836 mpr_describe_devinfo(targ->devinfo, devstring, 80); 837 mpr_dprint(sc, (MPR_INFO|MPR_MAPPING), "Found device <%s> <%s> " 838 "handle<0x%04x> enclosureHandle<0x%04x> slot %d\n", devstring, 839 mpr_describe_table(mpr_linkrate_names, targ->linkrate), 840 targ->handle, targ->encl_handle, targ->encl_slot); 841 if (targ->encl_level_valid) { 842 mpr_dprint(sc, (MPR_INFO|MPR_MAPPING), "At enclosure level %d " 843 "and connector name (%4s)\n", targ->encl_level, 844 targ->connector_name); 845 } 846 #if ((__FreeBSD_version >= 1000000) && (__FreeBSD_version < 1000039)) || \ 847 (__FreeBSD_version < 902502) 848 if ((sassc->flags & MPRSAS_IN_STARTUP) == 0) 849 #endif 850 mprsas_rescan_target(sc, targ); 851 mpr_dprint(sc, MPR_MAPPING, "Target id 0x%x added\n", targ->tid); 852 853 /* 854 * Check all commands to see if the SATA_ID_TIMEOUT flag has been set. 855 * If so, send a Target Reset TM to the target that was just created. 856 * An Abort Task TM should be used instead of a Target Reset, but that 857 * would be much more difficult because targets have not been fully 858 * discovered yet, and LUN's haven't been setup. So, just reset the 859 * target instead of the LUN. 860 */ 861 for (i = 1; i < sc->num_reqs; i++) { 862 cm = &sc->commands[i]; 863 if (cm->cm_flags & MPR_CM_FLAGS_SATA_ID_TIMEOUT) { 864 targ->timeouts++; 865 cm->cm_state = MPR_CM_STATE_TIMEDOUT; 866 867 if ((targ->tm = mprsas_alloc_tm(sc)) != NULL) { 868 mpr_dprint(sc, MPR_INFO, "%s: sending Target " 869 "Reset for stuck SATA identify command " 870 "(cm = %p)\n", __func__, cm); 871 targ->tm->cm_targ = targ; 872 mprsas_send_reset(sc, targ->tm, 873 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET); 874 } else { 875 mpr_dprint(sc, MPR_ERROR, "Failed to allocate " 876 "tm for Target Reset after SATA ID command " 877 "timed out (cm %p)\n", cm); 878 } 879 /* 880 * No need to check for more since the target is 881 * already being reset. 882 */ 883 break; 884 } 885 } 886 out: 887 /* 888 * Free the commands that may not have been freed from the SATA ID call 889 */ 890 for (i = 1; i < sc->num_reqs; i++) { 891 cm = &sc->commands[i]; 892 if (cm->cm_flags & MPR_CM_FLAGS_SATA_ID_TIMEOUT) { 893 mpr_free_command(sc, cm); 894 } 895 } 896 mprsas_startup_decrement(sassc); 897 return (error); 898 } 899 900 int 901 mprsas_get_sas_address_for_sata_disk(struct mpr_softc *sc, 902 u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD) 903 { 904 Mpi2SataPassthroughReply_t mpi_reply; 905 int i, rc, try_count; 906 u32 *bufferptr; 907 union _sata_sas_address hash_address; 908 struct _ata_identify_device_data ata_identify; 909 u8 buffer[MPT2SAS_MN_LEN + MPT2SAS_SN_LEN]; 910 u32 ioc_status; 911 u8 sas_status; 912 913 memset(&ata_identify, 0, sizeof(ata_identify)); 914 memset(&mpi_reply, 0, sizeof(mpi_reply)); 915 try_count = 0; 916 do { 917 rc = mprsas_get_sata_identify(sc, handle, &mpi_reply, 918 (char *)&ata_identify, sizeof(ata_identify), device_info); 919 try_count++; 920 ioc_status = le16toh(mpi_reply.IOCStatus) 921 & MPI2_IOCSTATUS_MASK; 922 sas_status = mpi_reply.SASStatus; 923 switch (ioc_status) { 924 case MPI2_IOCSTATUS_SUCCESS: 925 break; 926 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR: 927 /* No sense sleeping. this error won't get better */ 928 break; 929 default: 930 if (sc->spinup_wait_time > 0) { 931 mpr_dprint(sc, MPR_INFO, "Sleeping %d seconds " 932 "after SATA ID error to wait for spinup\n", 933 sc->spinup_wait_time); 934 msleep(&sc->msleep_fake_chan, &sc->mpr_mtx, 0, 935 "mprid", sc->spinup_wait_time * hz); 936 } 937 } 938 } while (((rc && (rc != EWOULDBLOCK)) || 939 (ioc_status && (ioc_status != MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR)) 940 || sas_status) && (try_count < 5)); 941 942 if (rc == 0 && !ioc_status && !sas_status) { 943 mpr_dprint(sc, MPR_MAPPING, "%s: got SATA identify " 944 "successfully for handle = 0x%x with try_count = %d\n", 945 __func__, handle, try_count); 946 } else { 947 mpr_dprint(sc, MPR_MAPPING, "%s: handle = 0x%x failed\n", 948 __func__, handle); 949 return -1; 950 } 951 /* Copy & byteswap the 40 byte model number to a buffer */ 952 for (i = 0; i < MPT2SAS_MN_LEN; i += 2) { 953 buffer[i] = ((u8 *)ata_identify.model_number)[i + 1]; 954 buffer[i + 1] = ((u8 *)ata_identify.model_number)[i]; 955 } 956 /* Copy & byteswap the 20 byte serial number to a buffer */ 957 for (i = 0; i < MPT2SAS_SN_LEN; i += 2) { 958 buffer[MPT2SAS_MN_LEN + i] = 959 ((u8 *)ata_identify.serial_number)[i + 1]; 960 buffer[MPT2SAS_MN_LEN + i + 1] = 961 ((u8 *)ata_identify.serial_number)[i]; 962 } 963 bufferptr = (u32 *)buffer; 964 /* There are 60 bytes to hash down to 8. 60 isn't divisible by 8, 965 * so loop through the first 56 bytes (7*8), 966 * and then add in the last dword. 967 */ 968 hash_address.word.low = 0; 969 hash_address.word.high = 0; 970 for (i = 0; (i < ((MPT2SAS_MN_LEN+MPT2SAS_SN_LEN)/8)); i++) { 971 hash_address.word.low += *bufferptr; 972 bufferptr++; 973 hash_address.word.high += *bufferptr; 974 bufferptr++; 975 } 976 /* Add the last dword */ 977 hash_address.word.low += *bufferptr; 978 /* Make sure the hash doesn't start with 5, because it could clash 979 * with a SAS address. Change 5 to a D. 980 */ 981 if ((hash_address.word.high & 0x000000F0) == (0x00000050)) 982 hash_address.word.high |= 0x00000080; 983 *sas_address = (u64)hash_address.wwid[0] << 56 | 984 (u64)hash_address.wwid[1] << 48 | (u64)hash_address.wwid[2] << 40 | 985 (u64)hash_address.wwid[3] << 32 | (u64)hash_address.wwid[4] << 24 | 986 (u64)hash_address.wwid[5] << 16 | (u64)hash_address.wwid[6] << 8 | 987 (u64)hash_address.wwid[7]; 988 if (ata_identify.rotational_speed == 1) { 989 *is_SATA_SSD = 1; 990 } 991 992 return 0; 993 } 994 995 static int 996 mprsas_get_sata_identify(struct mpr_softc *sc, u16 handle, 997 Mpi2SataPassthroughReply_t *mpi_reply, char *id_buffer, int sz, u32 devinfo) 998 { 999 Mpi2SataPassthroughRequest_t *mpi_request; 1000 Mpi2SataPassthroughReply_t *reply; 1001 struct mpr_command *cm; 1002 char *buffer; 1003 int error = 0; 1004 1005 buffer = malloc( sz, M_MPR, M_NOWAIT | M_ZERO); 1006 if (!buffer) 1007 return ENOMEM; 1008 1009 if ((cm = mpr_alloc_command(sc)) == NULL) { 1010 free(buffer, M_MPR); 1011 return (EBUSY); 1012 } 1013 mpi_request = (MPI2_SATA_PASSTHROUGH_REQUEST *)cm->cm_req; 1014 bzero(mpi_request,sizeof(MPI2_SATA_PASSTHROUGH_REQUEST)); 1015 mpi_request->Function = MPI2_FUNCTION_SATA_PASSTHROUGH; 1016 mpi_request->VF_ID = 0; 1017 mpi_request->DevHandle = htole16(handle); 1018 mpi_request->PassthroughFlags = (MPI2_SATA_PT_REQ_PT_FLAGS_PIO | 1019 MPI2_SATA_PT_REQ_PT_FLAGS_READ); 1020 mpi_request->DataLength = htole32(sz); 1021 mpi_request->CommandFIS[0] = 0x27; 1022 mpi_request->CommandFIS[1] = 0x80; 1023 mpi_request->CommandFIS[2] = (devinfo & 1024 MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE) ? 0xA1 : 0xEC; 1025 cm->cm_sge = &mpi_request->SGL; 1026 cm->cm_sglsize = sizeof(MPI2_SGE_IO_UNION); 1027 cm->cm_flags = MPR_CM_FLAGS_DATAIN; 1028 cm->cm_desc.Default.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE; 1029 cm->cm_data = buffer; 1030 cm->cm_length = htole32(sz); 1031 1032 /* 1033 * Start a timeout counter specifically for the SATA ID command. This 1034 * is used to fix a problem where the FW does not send a reply sometimes 1035 * when a bad disk is in the topology. So, this is used to timeout the 1036 * command so that processing can continue normally. 1037 */ 1038 mpr_dprint(sc, MPR_XINFO, "%s start timeout counter for SATA ID " 1039 "command\n", __func__); 1040 callout_reset(&cm->cm_callout, MPR_ATA_ID_TIMEOUT * hz, 1041 mprsas_ata_id_timeout, cm); 1042 error = mpr_wait_command(sc, cm, 60, CAN_SLEEP); 1043 mpr_dprint(sc, MPR_XINFO, "%s stop timeout counter for SATA ID " 1044 "command\n", __func__); 1045 callout_stop(&cm->cm_callout); 1046 1047 reply = (Mpi2SataPassthroughReply_t *)cm->cm_reply; 1048 if (error || (reply == NULL)) { 1049 /* FIXME */ 1050 /* 1051 * If the request returns an error then we need to do a diag 1052 * reset 1053 */ 1054 printf("%s: request for page completed with error %d", 1055 __func__, error); 1056 error = ENXIO; 1057 goto out; 1058 } 1059 bcopy(buffer, id_buffer, sz); 1060 bcopy(reply, mpi_reply, sizeof(Mpi2SataPassthroughReply_t)); 1061 if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) != 1062 MPI2_IOCSTATUS_SUCCESS) { 1063 printf("%s: error reading SATA PASSTHRU; iocstatus = 0x%x\n", 1064 __func__, reply->IOCStatus); 1065 error = ENXIO; 1066 goto out; 1067 } 1068 out: 1069 /* 1070 * If the SATA_ID_TIMEOUT flag has been set for this command, don't free 1071 * it. The command will be freed after sending a target reset TM. If 1072 * the command did timeout, use EWOULDBLOCK. 1073 */ 1074 if ((cm->cm_flags & MPR_CM_FLAGS_SATA_ID_TIMEOUT) == 0) 1075 mpr_free_command(sc, cm); 1076 else if (error == 0) 1077 error = EWOULDBLOCK; 1078 cm->cm_data = NULL; 1079 free(buffer, M_MPR); 1080 return (error); 1081 } 1082 1083 static void 1084 mprsas_ata_id_timeout(void *data) 1085 { 1086 struct mpr_softc *sc; 1087 struct mpr_command *cm; 1088 1089 cm = (struct mpr_command *)data; 1090 sc = cm->cm_sc; 1091 mtx_assert(&sc->mpr_mtx, MA_OWNED); 1092 1093 mpr_dprint(sc, MPR_INFO, "%s checking ATA ID command %p sc %p\n", 1094 __func__, cm, sc); 1095 if ((callout_pending(&cm->cm_callout)) || 1096 (!callout_active(&cm->cm_callout))) { 1097 mpr_dprint(sc, MPR_INFO, "%s ATA ID command almost timed out\n", 1098 __func__); 1099 return; 1100 } 1101 callout_deactivate(&cm->cm_callout); 1102 1103 /* 1104 * Run the interrupt handler to make sure it's not pending. This 1105 * isn't perfect because the command could have already completed 1106 * and been re-used, though this is unlikely. 1107 */ 1108 mpr_intr_locked(sc); 1109 if (cm->cm_state == MPR_CM_STATE_FREE) { 1110 mpr_dprint(sc, MPR_INFO, "%s ATA ID command almost timed out\n", 1111 __func__); 1112 return; 1113 } 1114 1115 mpr_dprint(sc, MPR_INFO, "ATA ID command timeout cm %p\n", cm); 1116 1117 /* 1118 * Send wakeup() to the sleeping thread that issued this ATA ID command. 1119 * wakeup() will cause msleep to return a 0 (not EWOULDBLOCK), and this 1120 * will keep reinit() from being called. This way, an Abort Task TM can 1121 * be issued so that the timed out command can be cleared. The Abort 1122 * Task cannot be sent from here because the driver has not completed 1123 * setting up targets. Instead, the command is flagged so that special 1124 * handling will be used to send the abort. 1125 */ 1126 cm->cm_flags |= MPR_CM_FLAGS_SATA_ID_TIMEOUT; 1127 wakeup(cm); 1128 } 1129 1130 static int 1131 mprsas_volume_add(struct mpr_softc *sc, u16 handle) 1132 { 1133 struct mprsas_softc *sassc; 1134 struct mprsas_target *targ; 1135 u64 wwid; 1136 unsigned int id; 1137 int error = 0; 1138 struct mprsas_lun *lun; 1139 1140 sassc = sc->sassc; 1141 mprsas_startup_increment(sassc); 1142 /* wwid is endian safe */ 1143 mpr_config_get_volume_wwid(sc, handle, &wwid); 1144 if (!wwid) { 1145 printf("%s: invalid WWID; cannot add volume to mapping table\n", 1146 __func__); 1147 error = ENXIO; 1148 goto out; 1149 } 1150 1151 id = mpr_mapping_get_raid_id(sc, wwid, handle); 1152 if (id == MPR_MAP_BAD_ID) { 1153 printf("%s: could not get ID for volume with handle 0x%04x and " 1154 "WWID 0x%016llx\n", __func__, handle, 1155 (unsigned long long)wwid); 1156 error = ENXIO; 1157 goto out; 1158 } 1159 1160 targ = &sassc->targets[id]; 1161 targ->tid = id; 1162 targ->handle = handle; 1163 targ->devname = wwid; 1164 TAILQ_INIT(&targ->commands); 1165 TAILQ_INIT(&targ->timedout_commands); 1166 while (!SLIST_EMPTY(&targ->luns)) { 1167 lun = SLIST_FIRST(&targ->luns); 1168 SLIST_REMOVE_HEAD(&targ->luns, lun_link); 1169 free(lun, M_MPR); 1170 } 1171 SLIST_INIT(&targ->luns); 1172 #if ((__FreeBSD_version >= 1000000) && (__FreeBSD_version < 1000039)) || \ 1173 (__FreeBSD_version < 902502) 1174 if ((sassc->flags & MPRSAS_IN_STARTUP) == 0) 1175 #endif 1176 mprsas_rescan_target(sc, targ); 1177 mpr_dprint(sc, MPR_MAPPING, "RAID target id %d added (WWID = 0x%jx)\n", 1178 targ->tid, wwid); 1179 out: 1180 mprsas_startup_decrement(sassc); 1181 return (error); 1182 } 1183 1184 /** 1185 * mprsas_SSU_to_SATA_devices 1186 * @sc: per adapter object 1187 * 1188 * Looks through the target list and issues a StartStopUnit SCSI command to each 1189 * SATA direct-access device. This helps to ensure that data corruption is 1190 * avoided when the system is being shut down. This must be called after the IR 1191 * System Shutdown RAID Action is sent if in IR mode. 1192 * 1193 * Return nothing. 1194 */ 1195 static void 1196 mprsas_SSU_to_SATA_devices(struct mpr_softc *sc) 1197 { 1198 struct mprsas_softc *sassc = sc->sassc; 1199 union ccb *ccb; 1200 path_id_t pathid = cam_sim_path(sassc->sim); 1201 target_id_t targetid; 1202 struct mprsas_target *target; 1203 char path_str[64]; 1204 struct timeval cur_time, start_time; 1205 1206 mpr_lock(sc); 1207 1208 /* 1209 * For each target, issue a StartStopUnit command to stop the device. 1210 */ 1211 sc->SSU_started = TRUE; 1212 sc->SSU_refcount = 0; 1213 for (targetid = 0; targetid < sc->facts->MaxTargets; targetid++) { 1214 target = &sassc->targets[targetid]; 1215 if (target->handle == 0x0) { 1216 continue; 1217 } 1218 1219 /* 1220 * The stop_at_shutdown flag will be set if this device is 1221 * a SATA direct-access end device. 1222 */ 1223 if (target->stop_at_shutdown) { 1224 ccb = xpt_alloc_ccb_nowait(); 1225 if (ccb == NULL) { 1226 mpr_dprint(sc, MPR_FAULT, "Unable to alloc CCB to stop " 1227 "unit.\n"); 1228 return; 1229 } 1230 1231 if (xpt_create_path(&ccb->ccb_h.path, xpt_periph, 1232 pathid, targetid, CAM_LUN_WILDCARD) != 1233 CAM_REQ_CMP) { 1234 mpr_dprint(sc, MPR_ERROR, "Unable to create " 1235 "path to stop unit.\n"); 1236 xpt_free_ccb(ccb); 1237 return; 1238 } 1239 xpt_path_string(ccb->ccb_h.path, path_str, 1240 sizeof(path_str)); 1241 1242 mpr_dprint(sc, MPR_INFO, "Sending StopUnit: path %s " 1243 "handle %d\n", path_str, target->handle); 1244 1245 /* 1246 * Issue a START STOP UNIT command for the target. 1247 * Increment the SSU counter to be used to count the 1248 * number of required replies. 1249 */ 1250 mpr_dprint(sc, MPR_INFO, "Incrementing SSU count\n"); 1251 sc->SSU_refcount++; 1252 ccb->ccb_h.target_id = 1253 xpt_path_target_id(ccb->ccb_h.path); 1254 ccb->ccb_h.ppriv_ptr1 = sassc; 1255 scsi_start_stop(&ccb->csio, 1256 /*retries*/0, 1257 mprsas_stop_unit_done, 1258 MSG_SIMPLE_Q_TAG, 1259 /*start*/FALSE, 1260 /*load/eject*/0, 1261 /*immediate*/FALSE, 1262 MPR_SENSE_LEN, 1263 /*timeout*/10000); 1264 xpt_action(ccb); 1265 } 1266 } 1267 1268 mpr_unlock(sc); 1269 1270 /* 1271 * Wait until all of the SSU commands have completed or time has 1272 * expired (60 seconds). Pause for 100ms each time through. If any 1273 * command times out, the target will be reset in the SCSI command 1274 * timeout routine. 1275 */ 1276 getmicrotime(&start_time); 1277 while (sc->SSU_refcount) { 1278 pause("mprwait", hz/10); 1279 1280 getmicrotime(&cur_time); 1281 if ((cur_time.tv_sec - start_time.tv_sec) > 60) { 1282 mpr_dprint(sc, MPR_ERROR, "Time has expired waiting " 1283 "for SSU commands to complete.\n"); 1284 break; 1285 } 1286 } 1287 } 1288 1289 static void 1290 mprsas_stop_unit_done(struct cam_periph *periph, union ccb *done_ccb) 1291 { 1292 struct mprsas_softc *sassc; 1293 char path_str[64]; 1294 1295 if (done_ccb == NULL) 1296 return; 1297 1298 sassc = (struct mprsas_softc *)done_ccb->ccb_h.ppriv_ptr1; 1299 1300 xpt_path_string(done_ccb->ccb_h.path, path_str, sizeof(path_str)); 1301 mpr_dprint(sassc->sc, MPR_INFO, "Completing stop unit for %s\n", 1302 path_str); 1303 1304 /* 1305 * Nothing more to do except free the CCB and path. If the command 1306 * timed out, an abort reset, then target reset will be issued during 1307 * the SCSI Command process. 1308 */ 1309 xpt_free_path(done_ccb->ccb_h.path); 1310 xpt_free_ccb(done_ccb); 1311 } 1312 1313 /** 1314 * mprsas_ir_shutdown - IR shutdown notification 1315 * @sc: per adapter object 1316 * 1317 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that 1318 * the host system is shutting down. 1319 * 1320 * Return nothing. 1321 */ 1322 void 1323 mprsas_ir_shutdown(struct mpr_softc *sc) 1324 { 1325 u16 volume_mapping_flags; 1326 u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags); 1327 struct dev_mapping_table *mt_entry; 1328 u32 start_idx, end_idx; 1329 unsigned int id, found_volume = 0; 1330 struct mpr_command *cm; 1331 Mpi2RaidActionRequest_t *action; 1332 target_id_t targetid; 1333 struct mprsas_target *target; 1334 1335 mpr_dprint(sc, MPR_TRACE, "%s\n", __func__); 1336 1337 /* is IR firmware build loaded? */ 1338 if (!sc->ir_firmware) 1339 goto out; 1340 1341 /* are there any volumes? Look at IR target IDs. */ 1342 // TODO-later, this should be looked up in the RAID config structure 1343 // when it is implemented. 1344 volume_mapping_flags = le16toh(sc->ioc_pg8.IRVolumeMappingFlags) & 1345 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE; 1346 if (volume_mapping_flags == MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING) { 1347 start_idx = 0; 1348 if (ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_RESERVED_TARGETID_0) 1349 start_idx = 1; 1350 } else 1351 start_idx = sc->max_devices - sc->max_volumes; 1352 end_idx = start_idx + sc->max_volumes - 1; 1353 1354 for (id = start_idx; id < end_idx; id++) { 1355 mt_entry = &sc->mapping_table[id]; 1356 if ((mt_entry->physical_id != 0) && 1357 (mt_entry->missing_count == 0)) { 1358 found_volume = 1; 1359 break; 1360 } 1361 } 1362 1363 if (!found_volume) 1364 goto out; 1365 1366 if ((cm = mpr_alloc_command(sc)) == NULL) { 1367 printf("%s: command alloc failed\n", __func__); 1368 goto out; 1369 } 1370 1371 action = (MPI2_RAID_ACTION_REQUEST *)cm->cm_req; 1372 action->Function = MPI2_FUNCTION_RAID_ACTION; 1373 action->Action = MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED; 1374 cm->cm_desc.Default.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE; 1375 mpr_lock(sc); 1376 mpr_wait_command(sc, cm, 5, CAN_SLEEP); 1377 mpr_unlock(sc); 1378 1379 /* 1380 * Don't check for reply, just leave. 1381 */ 1382 if (cm) 1383 mpr_free_command(sc, cm); 1384 1385 out: 1386 /* 1387 * All of the targets must have the correct value set for 1388 * 'stop_at_shutdown' for the current 'enable_ssu' sysctl variable. 1389 * 1390 * The possible values for the 'enable_ssu' variable are: 1391 * 0: disable to SSD and HDD 1392 * 1: disable only to HDD (default) 1393 * 2: disable only to SSD 1394 * 3: enable to SSD and HDD 1395 * anything else will default to 1. 1396 */ 1397 for (targetid = 0; targetid < sc->facts->MaxTargets; targetid++) { 1398 target = &sc->sassc->targets[targetid]; 1399 if (target->handle == 0x0) { 1400 continue; 1401 } 1402 1403 if (target->supports_SSU) { 1404 switch (sc->enable_ssu) { 1405 case MPR_SSU_DISABLE_SSD_DISABLE_HDD: 1406 target->stop_at_shutdown = FALSE; 1407 break; 1408 case MPR_SSU_DISABLE_SSD_ENABLE_HDD: 1409 target->stop_at_shutdown = TRUE; 1410 if (target->flags & MPR_TARGET_IS_SATA_SSD) { 1411 target->stop_at_shutdown = FALSE; 1412 } 1413 break; 1414 case MPR_SSU_ENABLE_SSD_ENABLE_HDD: 1415 target->stop_at_shutdown = TRUE; 1416 break; 1417 case MPR_SSU_ENABLE_SSD_DISABLE_HDD: 1418 default: 1419 target->stop_at_shutdown = TRUE; 1420 if ((target->flags & 1421 MPR_TARGET_IS_SATA_SSD) == 0) { 1422 target->stop_at_shutdown = FALSE; 1423 } 1424 break; 1425 } 1426 } 1427 } 1428 mprsas_SSU_to_SATA_devices(sc); 1429 } 1430