1 /*- 2 * Copyright (c) 2009 Alexander Motin <mav@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer, 10 * without modification, immediately at the beginning of the file. 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 ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/bus.h> 32 #include <sys/endian.h> 33 #include <sys/systm.h> 34 #include <sys/types.h> 35 #include <sys/malloc.h> 36 #include <sys/kernel.h> 37 #include <sys/time.h> 38 #include <sys/conf.h> 39 #include <sys/fcntl.h> 40 #include <sys/interrupt.h> 41 #include <sys/sbuf.h> 42 43 #include <sys/lock.h> 44 #include <sys/mutex.h> 45 #include <sys/sysctl.h> 46 47 #include <cam/cam.h> 48 #include <cam/cam_ccb.h> 49 #include <cam/cam_queue.h> 50 #include <cam/cam_periph.h> 51 #include <cam/cam_sim.h> 52 #include <cam/cam_xpt.h> 53 #include <cam/cam_xpt_sim.h> 54 #include <cam/cam_xpt_periph.h> 55 #include <cam/cam_xpt_internal.h> 56 #include <cam/cam_debug.h> 57 58 #include <cam/scsi/scsi_all.h> 59 #include <cam/scsi/scsi_message.h> 60 #include <cam/ata/ata_all.h> 61 #include <machine/stdarg.h> /* for xpt_print below */ 62 #include "opt_cam.h" 63 64 struct ata_quirk_entry { 65 struct scsi_inquiry_pattern inq_pat; 66 u_int8_t quirks; 67 #define CAM_QUIRK_MAXTAGS 0x01 68 u_int mintags; 69 u_int maxtags; 70 }; 71 72 static periph_init_t probe_periph_init; 73 74 static struct periph_driver probe_driver = 75 { 76 probe_periph_init, "aprobe", 77 TAILQ_HEAD_INITIALIZER(probe_driver.units), /* generation */ 0, 78 CAM_PERIPH_DRV_EARLY 79 }; 80 81 PERIPHDRIVER_DECLARE(aprobe, probe_driver); 82 83 typedef enum { 84 PROBE_RESET, 85 PROBE_IDENTIFY, 86 PROBE_SPINUP, 87 PROBE_SETMODE, 88 PROBE_SETPM, 89 PROBE_SETAPST, 90 PROBE_SETDMAAA, 91 PROBE_SETAN, 92 PROBE_SET_MULTI, 93 PROBE_INQUIRY, 94 PROBE_FULL_INQUIRY, 95 PROBE_PM_PID, 96 PROBE_PM_PRV, 97 PROBE_IDENTIFY_SES, 98 PROBE_IDENTIFY_SAFTE, 99 PROBE_DONE, 100 PROBE_INVALID 101 } probe_action; 102 103 static char *probe_action_text[] = { 104 "PROBE_RESET", 105 "PROBE_IDENTIFY", 106 "PROBE_SPINUP", 107 "PROBE_SETMODE", 108 "PROBE_SETPM", 109 "PROBE_SETAPST", 110 "PROBE_SETDMAAA", 111 "PROBE_SETAN", 112 "PROBE_SET_MULTI", 113 "PROBE_INQUIRY", 114 "PROBE_FULL_INQUIRY", 115 "PROBE_PM_PID", 116 "PROBE_PM_PRV", 117 "PROBE_IDENTIFY_SES", 118 "PROBE_IDENTIFY_SAFTE", 119 "PROBE_DONE", 120 "PROBE_INVALID" 121 }; 122 123 #define PROBE_SET_ACTION(softc, newaction) \ 124 do { \ 125 char **text; \ 126 text = probe_action_text; \ 127 CAM_DEBUG((softc)->periph->path, CAM_DEBUG_PROBE, \ 128 ("Probe %s to %s\n", text[(softc)->action], \ 129 text[(newaction)])); \ 130 (softc)->action = (newaction); \ 131 } while(0) 132 133 typedef enum { 134 PROBE_NO_ANNOUNCE = 0x04 135 } probe_flags; 136 137 typedef struct { 138 TAILQ_HEAD(, ccb_hdr) request_ccbs; 139 struct ata_params ident_data; 140 probe_action action; 141 probe_flags flags; 142 uint32_t pm_pid; 143 uint32_t pm_prv; 144 int restart; 145 int spinup; 146 int faults; 147 u_int caps; 148 struct cam_periph *periph; 149 } probe_softc; 150 151 static struct ata_quirk_entry ata_quirk_table[] = 152 { 153 { 154 /* Default tagged queuing parameters for all devices */ 155 { 156 T_ANY, SIP_MEDIA_REMOVABLE|SIP_MEDIA_FIXED, 157 /*vendor*/"*", /*product*/"*", /*revision*/"*" 158 }, 159 /*quirks*/0, /*mintags*/0, /*maxtags*/0 160 }, 161 }; 162 163 static const int ata_quirk_table_size = 164 sizeof(ata_quirk_table) / sizeof(*ata_quirk_table); 165 166 static cam_status proberegister(struct cam_periph *periph, 167 void *arg); 168 static void probeschedule(struct cam_periph *probe_periph); 169 static void probestart(struct cam_periph *periph, union ccb *start_ccb); 170 static void proberequestdefaultnegotiation(struct cam_periph *periph); 171 static void probedone(struct cam_periph *periph, union ccb *done_ccb); 172 static void probecleanup(struct cam_periph *periph); 173 static void ata_find_quirk(struct cam_ed *device); 174 static void ata_scan_bus(struct cam_periph *periph, union ccb *ccb); 175 static void ata_scan_lun(struct cam_periph *periph, 176 struct cam_path *path, cam_flags flags, 177 union ccb *ccb); 178 static void xptscandone(struct cam_periph *periph, union ccb *done_ccb); 179 static struct cam_ed * 180 ata_alloc_device(struct cam_eb *bus, struct cam_et *target, 181 lun_id_t lun_id); 182 static void ata_device_transport(struct cam_path *path); 183 static void ata_get_transfer_settings(struct ccb_trans_settings *cts); 184 static void ata_set_transfer_settings(struct ccb_trans_settings *cts, 185 struct cam_ed *device, 186 int async_update); 187 static void ata_dev_async(u_int32_t async_code, 188 struct cam_eb *bus, 189 struct cam_et *target, 190 struct cam_ed *device, 191 void *async_arg); 192 static void ata_action(union ccb *start_ccb); 193 static void ata_announce_periph(struct cam_periph *periph); 194 195 static int ata_dma = 1; 196 static int atapi_dma = 1; 197 198 TUNABLE_INT("hw.ata.ata_dma", &ata_dma); 199 TUNABLE_INT("hw.ata.atapi_dma", &atapi_dma); 200 201 static struct xpt_xport ata_xport = { 202 .alloc_device = ata_alloc_device, 203 .action = ata_action, 204 .async = ata_dev_async, 205 .announce = ata_announce_periph, 206 }; 207 208 struct xpt_xport * 209 ata_get_xport(void) 210 { 211 return (&ata_xport); 212 } 213 214 static void 215 probe_periph_init() 216 { 217 } 218 219 static cam_status 220 proberegister(struct cam_periph *periph, void *arg) 221 { 222 union ccb *request_ccb; /* CCB representing the probe request */ 223 cam_status status; 224 probe_softc *softc; 225 226 request_ccb = (union ccb *)arg; 227 if (request_ccb == NULL) { 228 printf("proberegister: no probe CCB, " 229 "can't register device\n"); 230 return(CAM_REQ_CMP_ERR); 231 } 232 233 softc = (probe_softc *)malloc(sizeof(*softc), M_CAMXPT, M_ZERO | M_NOWAIT); 234 235 if (softc == NULL) { 236 printf("proberegister: Unable to probe new device. " 237 "Unable to allocate softc\n"); 238 return(CAM_REQ_CMP_ERR); 239 } 240 TAILQ_INIT(&softc->request_ccbs); 241 TAILQ_INSERT_TAIL(&softc->request_ccbs, &request_ccb->ccb_h, 242 periph_links.tqe); 243 softc->flags = 0; 244 periph->softc = softc; 245 softc->periph = periph; 246 softc->action = PROBE_INVALID; 247 status = cam_periph_acquire(periph); 248 if (status != CAM_REQ_CMP) { 249 return (status); 250 } 251 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, ("Probe started\n")); 252 253 /* 254 * Ensure nobody slip in until probe finish. 255 */ 256 cam_freeze_devq_arg(periph->path, 257 RELSIM_RELEASE_RUNLEVEL, CAM_RL_XPT + 1); 258 probeschedule(periph); 259 return(CAM_REQ_CMP); 260 } 261 262 static void 263 probeschedule(struct cam_periph *periph) 264 { 265 union ccb *ccb; 266 probe_softc *softc; 267 268 softc = (probe_softc *)periph->softc; 269 ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs); 270 271 if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) || 272 periph->path->device->protocol == PROTO_SATAPM || 273 periph->path->device->protocol == PROTO_SEMB) 274 PROBE_SET_ACTION(softc, PROBE_RESET); 275 else 276 PROBE_SET_ACTION(softc, PROBE_IDENTIFY); 277 278 if (ccb->crcn.flags & CAM_EXPECT_INQ_CHANGE) 279 softc->flags |= PROBE_NO_ANNOUNCE; 280 else 281 softc->flags &= ~PROBE_NO_ANNOUNCE; 282 283 xpt_schedule(periph, CAM_PRIORITY_XPT); 284 } 285 286 static void 287 probestart(struct cam_periph *periph, union ccb *start_ccb) 288 { 289 struct ccb_trans_settings cts; 290 struct ccb_ataio *ataio; 291 struct ccb_scsiio *csio; 292 probe_softc *softc; 293 struct cam_path *path; 294 struct ata_params *ident_buf; 295 296 CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probestart\n")); 297 298 softc = (probe_softc *)periph->softc; 299 path = start_ccb->ccb_h.path; 300 ataio = &start_ccb->ataio; 301 csio = &start_ccb->csio; 302 ident_buf = &periph->path->device->ident_data; 303 304 if (softc->restart) { 305 softc->restart = 0; 306 if ((path->device->flags & CAM_DEV_UNCONFIGURED) || 307 path->device->protocol == PROTO_SATAPM || 308 path->device->protocol == PROTO_SEMB) 309 softc->action = PROBE_RESET; 310 else 311 softc->action = PROBE_IDENTIFY; 312 } 313 switch (softc->action) { 314 case PROBE_RESET: 315 cam_fill_ataio(ataio, 316 0, 317 probedone, 318 /*flags*/CAM_DIR_NONE, 319 0, 320 /*data_ptr*/NULL, 321 /*dxfer_len*/0, 322 15 * 1000); 323 ata_reset_cmd(ataio); 324 break; 325 case PROBE_IDENTIFY: 326 cam_fill_ataio(ataio, 327 1, 328 probedone, 329 /*flags*/CAM_DIR_IN, 330 0, 331 /*data_ptr*/(u_int8_t *)&softc->ident_data, 332 /*dxfer_len*/sizeof(softc->ident_data), 333 30 * 1000); 334 if (periph->path->device->protocol == PROTO_ATA) 335 ata_28bit_cmd(ataio, ATA_ATA_IDENTIFY, 0, 0, 0); 336 else 337 ata_28bit_cmd(ataio, ATA_ATAPI_IDENTIFY, 0, 0, 0); 338 break; 339 case PROBE_SPINUP: 340 if (bootverbose) 341 xpt_print(path, "Spinning up device\n"); 342 cam_fill_ataio(ataio, 343 1, 344 probedone, 345 /*flags*/CAM_DIR_NONE | CAM_HIGH_POWER, 346 0, 347 /*data_ptr*/NULL, 348 /*dxfer_len*/0, 349 30 * 1000); 350 ata_28bit_cmd(ataio, ATA_SETFEATURES, ATA_SF_PUIS_SPINUP, 0, 0); 351 break; 352 case PROBE_SETMODE: 353 { 354 int mode, wantmode; 355 356 mode = 0; 357 /* Fetch user modes from SIM. */ 358 bzero(&cts, sizeof(cts)); 359 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 360 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 361 cts.type = CTS_TYPE_USER_SETTINGS; 362 xpt_action((union ccb *)&cts); 363 if (path->device->transport == XPORT_ATA) { 364 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE) 365 mode = cts.xport_specific.ata.mode; 366 } else { 367 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_MODE) 368 mode = cts.xport_specific.sata.mode; 369 } 370 if (periph->path->device->protocol == PROTO_ATA) { 371 if (ata_dma == 0 && (mode == 0 || mode > ATA_PIO_MAX)) 372 mode = ATA_PIO_MAX; 373 } else { 374 if (atapi_dma == 0 && (mode == 0 || mode > ATA_PIO_MAX)) 375 mode = ATA_PIO_MAX; 376 } 377 negotiate: 378 /* Honor device capabilities. */ 379 wantmode = mode = ata_max_mode(ident_buf, mode); 380 /* Report modes to SIM. */ 381 bzero(&cts, sizeof(cts)); 382 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 383 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 384 cts.type = CTS_TYPE_CURRENT_SETTINGS; 385 if (path->device->transport == XPORT_ATA) { 386 cts.xport_specific.ata.mode = mode; 387 cts.xport_specific.ata.valid = CTS_ATA_VALID_MODE; 388 } else { 389 cts.xport_specific.sata.mode = mode; 390 cts.xport_specific.sata.valid = CTS_SATA_VALID_MODE; 391 } 392 xpt_action((union ccb *)&cts); 393 /* Fetch current modes from SIM. */ 394 bzero(&cts, sizeof(cts)); 395 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 396 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 397 cts.type = CTS_TYPE_CURRENT_SETTINGS; 398 xpt_action((union ccb *)&cts); 399 if (path->device->transport == XPORT_ATA) { 400 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE) 401 mode = cts.xport_specific.ata.mode; 402 } else { 403 if (cts.xport_specific.ata.valid & CTS_SATA_VALID_MODE) 404 mode = cts.xport_specific.sata.mode; 405 } 406 /* If SIM disagree - renegotiate. */ 407 if (mode != wantmode) 408 goto negotiate; 409 /* Remember what transport thinks about DMA. */ 410 if (mode < ATA_DMA) 411 path->device->inq_flags &= ~SID_DMA; 412 else 413 path->device->inq_flags |= SID_DMA; 414 xpt_async(AC_GETDEV_CHANGED, path, NULL); 415 cam_fill_ataio(ataio, 416 1, 417 probedone, 418 /*flags*/CAM_DIR_NONE, 419 0, 420 /*data_ptr*/NULL, 421 /*dxfer_len*/0, 422 30 * 1000); 423 ata_28bit_cmd(ataio, ATA_SETFEATURES, ATA_SF_SETXFER, 0, mode); 424 break; 425 } 426 case PROBE_SETPM: 427 cam_fill_ataio(ataio, 428 1, 429 probedone, 430 CAM_DIR_NONE, 431 0, 432 NULL, 433 0, 434 30*1000); 435 ata_28bit_cmd(ataio, ATA_SETFEATURES, 436 (softc->caps & CTS_SATA_CAPS_H_PMREQ) ? 0x10 : 0x90, 437 0, 0x03); 438 break; 439 case PROBE_SETAPST: 440 cam_fill_ataio(ataio, 441 1, 442 probedone, 443 CAM_DIR_NONE, 444 0, 445 NULL, 446 0, 447 30*1000); 448 ata_28bit_cmd(ataio, ATA_SETFEATURES, 449 (softc->caps & CTS_SATA_CAPS_H_APST) ? 0x10 : 0x90, 450 0, 0x07); 451 break; 452 case PROBE_SETDMAAA: 453 cam_fill_ataio(ataio, 454 1, 455 probedone, 456 CAM_DIR_NONE, 457 0, 458 NULL, 459 0, 460 30*1000); 461 ata_28bit_cmd(ataio, ATA_SETFEATURES, 462 (softc->caps & CTS_SATA_CAPS_H_DMAAA) ? 0x10 : 0x90, 463 0, 0x02); 464 break; 465 case PROBE_SETAN: 466 /* Remember what transport thinks about AEN. */ 467 if (softc->caps & CTS_SATA_CAPS_H_AN) 468 path->device->inq_flags |= SID_AEN; 469 else 470 path->device->inq_flags &= ~SID_AEN; 471 xpt_async(AC_GETDEV_CHANGED, path, NULL); 472 cam_fill_ataio(ataio, 473 1, 474 probedone, 475 CAM_DIR_NONE, 476 0, 477 NULL, 478 0, 479 30*1000); 480 ata_28bit_cmd(ataio, ATA_SETFEATURES, 481 (softc->caps & CTS_SATA_CAPS_H_AN) ? 0x10 : 0x90, 482 0, 0x05); 483 break; 484 case PROBE_SET_MULTI: 485 { 486 u_int sectors, bytecount; 487 488 bytecount = 8192; /* SATA maximum */ 489 /* Fetch user bytecount from SIM. */ 490 bzero(&cts, sizeof(cts)); 491 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 492 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 493 cts.type = CTS_TYPE_USER_SETTINGS; 494 xpt_action((union ccb *)&cts); 495 if (path->device->transport == XPORT_ATA) { 496 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT) 497 bytecount = cts.xport_specific.ata.bytecount; 498 } else { 499 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT) 500 bytecount = cts.xport_specific.sata.bytecount; 501 } 502 /* Honor device capabilities. */ 503 sectors = max(1, min(ident_buf->sectors_intr & 0xff, 504 bytecount / ata_logical_sector_size(ident_buf))); 505 /* Report bytecount to SIM. */ 506 bzero(&cts, sizeof(cts)); 507 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 508 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 509 cts.type = CTS_TYPE_CURRENT_SETTINGS; 510 if (path->device->transport == XPORT_ATA) { 511 cts.xport_specific.ata.bytecount = sectors * 512 ata_logical_sector_size(ident_buf); 513 cts.xport_specific.ata.valid = CTS_ATA_VALID_BYTECOUNT; 514 } else { 515 cts.xport_specific.sata.bytecount = sectors * 516 ata_logical_sector_size(ident_buf); 517 cts.xport_specific.sata.valid = CTS_SATA_VALID_BYTECOUNT; 518 } 519 xpt_action((union ccb *)&cts); 520 /* Fetch current bytecount from SIM. */ 521 bzero(&cts, sizeof(cts)); 522 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 523 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 524 cts.type = CTS_TYPE_CURRENT_SETTINGS; 525 xpt_action((union ccb *)&cts); 526 if (path->device->transport == XPORT_ATA) { 527 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT) 528 bytecount = cts.xport_specific.ata.bytecount; 529 } else { 530 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT) 531 bytecount = cts.xport_specific.sata.bytecount; 532 } 533 sectors = bytecount / ata_logical_sector_size(ident_buf); 534 535 cam_fill_ataio(ataio, 536 1, 537 probedone, 538 CAM_DIR_NONE, 539 0, 540 NULL, 541 0, 542 30*1000); 543 ata_28bit_cmd(ataio, ATA_SET_MULTI, 0, 0, sectors); 544 break; 545 } 546 case PROBE_INQUIRY: 547 { 548 u_int bytecount; 549 550 bytecount = 8192; /* SATA maximum */ 551 /* Fetch user bytecount from SIM. */ 552 bzero(&cts, sizeof(cts)); 553 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 554 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 555 cts.type = CTS_TYPE_USER_SETTINGS; 556 xpt_action((union ccb *)&cts); 557 if (path->device->transport == XPORT_ATA) { 558 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT) 559 bytecount = cts.xport_specific.ata.bytecount; 560 } else { 561 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT) 562 bytecount = cts.xport_specific.sata.bytecount; 563 } 564 /* Honor device capabilities. */ 565 bytecount &= ~1; 566 bytecount = max(2, min(65534, bytecount)); 567 if (ident_buf->satacapabilities != 0x0000 && 568 ident_buf->satacapabilities != 0xffff) { 569 bytecount = min(8192, bytecount); 570 } 571 /* Report bytecount to SIM. */ 572 bzero(&cts, sizeof(cts)); 573 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 574 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 575 cts.type = CTS_TYPE_CURRENT_SETTINGS; 576 if (path->device->transport == XPORT_ATA) { 577 cts.xport_specific.ata.bytecount = bytecount; 578 cts.xport_specific.ata.valid = CTS_ATA_VALID_BYTECOUNT; 579 } else { 580 cts.xport_specific.sata.bytecount = bytecount; 581 cts.xport_specific.sata.valid = CTS_SATA_VALID_BYTECOUNT; 582 } 583 xpt_action((union ccb *)&cts); 584 /* FALLTHROUGH */ 585 } 586 case PROBE_FULL_INQUIRY: 587 { 588 u_int inquiry_len; 589 struct scsi_inquiry_data *inq_buf = 590 &periph->path->device->inq_data; 591 592 if (softc->action == PROBE_INQUIRY) 593 inquiry_len = SHORT_INQUIRY_LENGTH; 594 else 595 inquiry_len = SID_ADDITIONAL_LENGTH(inq_buf); 596 /* 597 * Some parallel SCSI devices fail to send an 598 * ignore wide residue message when dealing with 599 * odd length inquiry requests. Round up to be 600 * safe. 601 */ 602 inquiry_len = roundup2(inquiry_len, 2); 603 scsi_inquiry(csio, 604 /*retries*/1, 605 probedone, 606 MSG_SIMPLE_Q_TAG, 607 (u_int8_t *)inq_buf, 608 inquiry_len, 609 /*evpd*/FALSE, 610 /*page_code*/0, 611 SSD_MIN_SIZE, 612 /*timeout*/60 * 1000); 613 break; 614 } 615 case PROBE_PM_PID: 616 cam_fill_ataio(ataio, 617 1, 618 probedone, 619 /*flags*/CAM_DIR_NONE, 620 0, 621 /*data_ptr*/NULL, 622 /*dxfer_len*/0, 623 10 * 1000); 624 ata_pm_read_cmd(ataio, 0, 15); 625 break; 626 case PROBE_PM_PRV: 627 cam_fill_ataio(ataio, 628 1, 629 probedone, 630 /*flags*/CAM_DIR_NONE, 631 0, 632 /*data_ptr*/NULL, 633 /*dxfer_len*/0, 634 10 * 1000); 635 ata_pm_read_cmd(ataio, 1, 15); 636 break; 637 case PROBE_IDENTIFY_SES: 638 cam_fill_ataio(ataio, 639 1, 640 probedone, 641 /*flags*/CAM_DIR_IN, 642 0, 643 /*data_ptr*/(u_int8_t *)&softc->ident_data, 644 /*dxfer_len*/sizeof(softc->ident_data), 645 30 * 1000); 646 ata_28bit_cmd(ataio, ATA_SEP_ATTN, 0xEC, 0x02, 647 sizeof(softc->ident_data) / 4); 648 break; 649 case PROBE_IDENTIFY_SAFTE: 650 cam_fill_ataio(ataio, 651 1, 652 probedone, 653 /*flags*/CAM_DIR_IN, 654 0, 655 /*data_ptr*/(u_int8_t *)&softc->ident_data, 656 /*dxfer_len*/sizeof(softc->ident_data), 657 30 * 1000); 658 ata_28bit_cmd(ataio, ATA_SEP_ATTN, 0xEC, 0x00, 659 sizeof(softc->ident_data) / 4); 660 break; 661 default: 662 panic("probestart: invalid action state 0x%x\n", softc->action); 663 } 664 xpt_action(start_ccb); 665 } 666 667 static void 668 proberequestdefaultnegotiation(struct cam_periph *periph) 669 { 670 struct ccb_trans_settings cts; 671 672 xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE); 673 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 674 cts.type = CTS_TYPE_USER_SETTINGS; 675 xpt_action((union ccb *)&cts); 676 if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 677 return; 678 cts.xport_specific.valid = 0; 679 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 680 cts.type = CTS_TYPE_CURRENT_SETTINGS; 681 xpt_action((union ccb *)&cts); 682 } 683 684 static void 685 probedone(struct cam_periph *periph, union ccb *done_ccb) 686 { 687 struct ccb_trans_settings cts; 688 struct ata_params *ident_buf; 689 struct scsi_inquiry_data *inq_buf; 690 probe_softc *softc; 691 struct cam_path *path; 692 cam_status status; 693 u_int32_t priority; 694 u_int caps; 695 int changed = 1, found = 1; 696 static const uint8_t fake_device_id_hdr[8] = 697 {0, SVPD_DEVICE_ID, 0, 12, 698 SVPD_ID_CODESET_BINARY, SVPD_ID_TYPE_NAA, 0, 8}; 699 700 CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probedone\n")); 701 702 softc = (probe_softc *)periph->softc; 703 path = done_ccb->ccb_h.path; 704 priority = done_ccb->ccb_h.pinfo.priority; 705 ident_buf = &path->device->ident_data; 706 inq_buf = &path->device->inq_data; 707 708 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 709 if (cam_periph_error(done_ccb, 710 0, softc->restart ? (SF_NO_RECOVERY | SF_NO_RETRY) : 0, 711 NULL) == ERESTART) 712 return; 713 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 714 /* Don't wedge the queue */ 715 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 716 /*run_queue*/TRUE); 717 } 718 status = done_ccb->ccb_h.status & CAM_STATUS_MASK; 719 if (softc->restart) { 720 softc->faults++; 721 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) == 722 CAM_CMD_TIMEOUT) 723 softc->faults += 4; 724 if (softc->faults < 10) 725 goto done; 726 else 727 softc->restart = 0; 728 729 /* Old PIO2 devices may not support mode setting. */ 730 } else if (softc->action == PROBE_SETMODE && 731 status == CAM_ATA_STATUS_ERROR && 732 ata_max_pmode(ident_buf) <= ATA_PIO2 && 733 (ident_buf->capabilities1 & ATA_SUPPORT_IORDY) == 0) { 734 goto noerror; 735 736 /* 737 * Some old WD SATA disks report supported and enabled 738 * device-initiated interface power management, but return 739 * ABORT on attempt to disable it. 740 */ 741 } else if (softc->action == PROBE_SETPM && 742 status == CAM_ATA_STATUS_ERROR) { 743 goto noerror; 744 745 /* 746 * Some HP SATA disks report supported DMA Auto-Activation, 747 * but return ABORT on attempt to enable it. 748 */ 749 } else if (softc->action == PROBE_SETDMAAA && 750 status == CAM_ATA_STATUS_ERROR) { 751 goto noerror; 752 753 /* 754 * SES and SAF-TE SEPs have different IDENTIFY commands, 755 * but SATA specification doesn't tell how to identify them. 756 * Until better way found, just try another if first fail. 757 */ 758 } else if (softc->action == PROBE_IDENTIFY_SES && 759 status == CAM_ATA_STATUS_ERROR) { 760 PROBE_SET_ACTION(softc, PROBE_IDENTIFY_SAFTE); 761 xpt_release_ccb(done_ccb); 762 xpt_schedule(periph, priority); 763 return; 764 } 765 766 /* 767 * If we get to this point, we got an error status back 768 * from the inquiry and the error status doesn't require 769 * automatically retrying the command. Therefore, the 770 * inquiry failed. If we had inquiry information before 771 * for this device, but this latest inquiry command failed, 772 * the device has probably gone away. If this device isn't 773 * already marked unconfigured, notify the peripheral 774 * drivers that this device is no more. 775 */ 776 device_fail: if ((path->device->flags & CAM_DEV_UNCONFIGURED) == 0) 777 xpt_async(AC_LOST_DEVICE, path, NULL); 778 PROBE_SET_ACTION(softc, PROBE_INVALID); 779 found = 0; 780 goto done; 781 } 782 noerror: 783 if (softc->restart) 784 goto done; 785 switch (softc->action) { 786 case PROBE_RESET: 787 { 788 int sign = (done_ccb->ataio.res.lba_high << 8) + 789 done_ccb->ataio.res.lba_mid; 790 CAM_DEBUG(path, CAM_DEBUG_PROBE, 791 ("SIGNATURE: %04x\n", sign)); 792 if (sign == 0x0000 && 793 done_ccb->ccb_h.target_id != 15) { 794 path->device->protocol = PROTO_ATA; 795 PROBE_SET_ACTION(softc, PROBE_IDENTIFY); 796 } else if (sign == 0x9669 && 797 done_ccb->ccb_h.target_id == 15) { 798 /* Report SIM that PM is present. */ 799 bzero(&cts, sizeof(cts)); 800 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 801 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 802 cts.type = CTS_TYPE_CURRENT_SETTINGS; 803 cts.xport_specific.sata.pm_present = 1; 804 cts.xport_specific.sata.valid = CTS_SATA_VALID_PM; 805 xpt_action((union ccb *)&cts); 806 path->device->protocol = PROTO_SATAPM; 807 PROBE_SET_ACTION(softc, PROBE_PM_PID); 808 } else if (sign == 0xc33c && 809 done_ccb->ccb_h.target_id != 15) { 810 path->device->protocol = PROTO_SEMB; 811 PROBE_SET_ACTION(softc, PROBE_IDENTIFY_SES); 812 } else if (sign == 0xeb14 && 813 done_ccb->ccb_h.target_id != 15) { 814 path->device->protocol = PROTO_SCSI; 815 PROBE_SET_ACTION(softc, PROBE_IDENTIFY); 816 } else { 817 if (done_ccb->ccb_h.target_id != 15) { 818 xpt_print(path, 819 "Unexpected signature 0x%04x\n", sign); 820 } 821 goto device_fail; 822 } 823 xpt_release_ccb(done_ccb); 824 xpt_schedule(periph, priority); 825 return; 826 } 827 case PROBE_IDENTIFY: 828 { 829 struct ccb_pathinq cpi; 830 int16_t *ptr; 831 832 ident_buf = &softc->ident_data; 833 for (ptr = (int16_t *)ident_buf; 834 ptr < (int16_t *)ident_buf + sizeof(struct ata_params)/2; ptr++) { 835 *ptr = le16toh(*ptr); 836 } 837 if (strncmp(ident_buf->model, "FX", 2) && 838 strncmp(ident_buf->model, "NEC", 3) && 839 strncmp(ident_buf->model, "Pioneer", 7) && 840 strncmp(ident_buf->model, "SHARP", 5)) { 841 ata_bswap(ident_buf->model, sizeof(ident_buf->model)); 842 ata_bswap(ident_buf->revision, sizeof(ident_buf->revision)); 843 ata_bswap(ident_buf->serial, sizeof(ident_buf->serial)); 844 } 845 ata_btrim(ident_buf->model, sizeof(ident_buf->model)); 846 ata_bpack(ident_buf->model, ident_buf->model, sizeof(ident_buf->model)); 847 ata_btrim(ident_buf->revision, sizeof(ident_buf->revision)); 848 ata_bpack(ident_buf->revision, ident_buf->revision, sizeof(ident_buf->revision)); 849 ata_btrim(ident_buf->serial, sizeof(ident_buf->serial)); 850 ata_bpack(ident_buf->serial, ident_buf->serial, sizeof(ident_buf->serial)); 851 /* Device may need spin-up before IDENTIFY become valid. */ 852 if ((ident_buf->specconf == 0x37c8 || 853 ident_buf->specconf == 0x738c) && 854 ((ident_buf->config & ATA_RESP_INCOMPLETE) || 855 softc->spinup == 0)) { 856 PROBE_SET_ACTION(softc, PROBE_SPINUP); 857 xpt_release_ccb(done_ccb); 858 xpt_schedule(periph, priority); 859 return; 860 } 861 ident_buf = &path->device->ident_data; 862 if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0) { 863 /* Check that it is the same device. */ 864 if (bcmp(softc->ident_data.model, ident_buf->model, 865 sizeof(ident_buf->model)) || 866 bcmp(softc->ident_data.revision, ident_buf->revision, 867 sizeof(ident_buf->revision)) || 868 bcmp(softc->ident_data.serial, ident_buf->serial, 869 sizeof(ident_buf->serial))) { 870 /* Device changed. */ 871 xpt_async(AC_LOST_DEVICE, path, NULL); 872 } else { 873 bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params)); 874 changed = 0; 875 } 876 } 877 if (changed) { 878 bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params)); 879 /* Clean up from previous instance of this device */ 880 if (path->device->serial_num != NULL) { 881 free(path->device->serial_num, M_CAMXPT); 882 path->device->serial_num = NULL; 883 path->device->serial_num_len = 0; 884 } 885 if (path->device->device_id != NULL) { 886 free(path->device->device_id, M_CAMXPT); 887 path->device->device_id = NULL; 888 path->device->device_id_len = 0; 889 } 890 path->device->serial_num = 891 (u_int8_t *)malloc((sizeof(ident_buf->serial) + 1), 892 M_CAMXPT, M_NOWAIT); 893 if (path->device->serial_num != NULL) { 894 bcopy(ident_buf->serial, 895 path->device->serial_num, 896 sizeof(ident_buf->serial)); 897 path->device->serial_num[sizeof(ident_buf->serial)] 898 = '\0'; 899 path->device->serial_num_len = 900 strlen(path->device->serial_num); 901 } 902 if (ident_buf->enabled.extension & 903 ATA_SUPPORT_64BITWWN) { 904 path->device->device_id = 905 malloc(16, M_CAMXPT, M_NOWAIT); 906 if (path->device->device_id != NULL) { 907 path->device->device_id_len = 16; 908 bcopy(&fake_device_id_hdr, 909 path->device->device_id, 8); 910 bcopy(ident_buf->wwn, 911 path->device->device_id + 8, 8); 912 } 913 } 914 915 path->device->flags |= CAM_DEV_IDENTIFY_DATA_VALID; 916 xpt_async(AC_GETDEV_CHANGED, path, NULL); 917 } 918 if (ident_buf->satacapabilities & ATA_SUPPORT_NCQ) { 919 path->device->mintags = 2; 920 path->device->maxtags = 921 ATA_QUEUE_LEN(ident_buf->queue) + 1; 922 } 923 ata_find_quirk(path->device); 924 if (path->device->mintags != 0 && 925 path->bus->sim->max_tagged_dev_openings != 0) { 926 /* Check if the SIM does not want queued commands. */ 927 bzero(&cpi, sizeof(cpi)); 928 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 929 cpi.ccb_h.func_code = XPT_PATH_INQ; 930 xpt_action((union ccb *)&cpi); 931 if (cpi.ccb_h.status == CAM_REQ_CMP && 932 (cpi.hba_inquiry & PI_TAG_ABLE)) { 933 /* Report SIM which tags are allowed. */ 934 bzero(&cts, sizeof(cts)); 935 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 936 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 937 cts.type = CTS_TYPE_CURRENT_SETTINGS; 938 cts.xport_specific.sata.tags = path->device->maxtags; 939 cts.xport_specific.sata.valid = CTS_SATA_VALID_TAGS; 940 xpt_action((union ccb *)&cts); 941 } 942 } 943 ata_device_transport(path); 944 if (changed) 945 proberequestdefaultnegotiation(periph); 946 PROBE_SET_ACTION(softc, PROBE_SETMODE); 947 xpt_release_ccb(done_ccb); 948 xpt_schedule(periph, priority); 949 return; 950 } 951 case PROBE_SPINUP: 952 if (bootverbose) 953 xpt_print(path, "Spin-up done\n"); 954 softc->spinup = 1; 955 PROBE_SET_ACTION(softc, PROBE_IDENTIFY); 956 xpt_release_ccb(done_ccb); 957 xpt_schedule(periph, priority); 958 return; 959 case PROBE_SETMODE: 960 if (path->device->transport != XPORT_SATA) 961 goto notsata; 962 /* Set supported bits. */ 963 bzero(&cts, sizeof(cts)); 964 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 965 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 966 cts.type = CTS_TYPE_CURRENT_SETTINGS; 967 xpt_action((union ccb *)&cts); 968 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_CAPS) 969 caps = cts.xport_specific.sata.caps & CTS_SATA_CAPS_H; 970 else 971 caps = 0; 972 if (ident_buf->satacapabilities != 0xffff) { 973 if (ident_buf->satacapabilities & ATA_SUPPORT_IFPWRMNGTRCV) 974 caps |= CTS_SATA_CAPS_D_PMREQ; 975 if (ident_buf->satacapabilities & ATA_SUPPORT_HAPST) 976 caps |= CTS_SATA_CAPS_D_APST; 977 } 978 /* Mask unwanted bits. */ 979 bzero(&cts, sizeof(cts)); 980 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 981 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 982 cts.type = CTS_TYPE_USER_SETTINGS; 983 xpt_action((union ccb *)&cts); 984 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_CAPS) 985 caps &= cts.xport_specific.sata.caps; 986 else 987 caps = 0; 988 /* Store result to SIM. */ 989 bzero(&cts, sizeof(cts)); 990 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 991 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 992 cts.type = CTS_TYPE_CURRENT_SETTINGS; 993 cts.xport_specific.sata.caps = caps; 994 cts.xport_specific.sata.valid = CTS_SATA_VALID_CAPS; 995 xpt_action((union ccb *)&cts); 996 softc->caps = caps; 997 if ((ident_buf->satasupport & ATA_SUPPORT_IFPWRMNGT) && 998 (!(softc->caps & CTS_SATA_CAPS_H_PMREQ)) != 999 (!(ident_buf->sataenabled & ATA_SUPPORT_IFPWRMNGT))) { 1000 PROBE_SET_ACTION(softc, PROBE_SETPM); 1001 xpt_release_ccb(done_ccb); 1002 xpt_schedule(periph, priority); 1003 return; 1004 } 1005 /* FALLTHROUGH */ 1006 case PROBE_SETPM: 1007 if (ident_buf->satacapabilities != 0xffff && 1008 (ident_buf->satacapabilities & ATA_SUPPORT_DAPST) && 1009 (!(softc->caps & CTS_SATA_CAPS_H_APST)) != 1010 (!(ident_buf->sataenabled & ATA_ENABLED_DAPST))) { 1011 PROBE_SET_ACTION(softc, PROBE_SETAPST); 1012 xpt_release_ccb(done_ccb); 1013 xpt_schedule(periph, priority); 1014 return; 1015 } 1016 /* FALLTHROUGH */ 1017 case PROBE_SETAPST: 1018 if ((ident_buf->satasupport & ATA_SUPPORT_AUTOACTIVATE) && 1019 (!(softc->caps & CTS_SATA_CAPS_H_DMAAA)) != 1020 (!(ident_buf->sataenabled & ATA_SUPPORT_AUTOACTIVATE))) { 1021 PROBE_SET_ACTION(softc, PROBE_SETDMAAA); 1022 xpt_release_ccb(done_ccb); 1023 xpt_schedule(periph, priority); 1024 return; 1025 } 1026 /* FALLTHROUGH */ 1027 case PROBE_SETDMAAA: 1028 if ((ident_buf->satasupport & ATA_SUPPORT_ASYNCNOTIF) && 1029 (!(softc->caps & CTS_SATA_CAPS_H_AN)) != 1030 (!(ident_buf->sataenabled & ATA_SUPPORT_ASYNCNOTIF))) { 1031 PROBE_SET_ACTION(softc, PROBE_SETAN); 1032 xpt_release_ccb(done_ccb); 1033 xpt_schedule(periph, priority); 1034 return; 1035 } 1036 /* FALLTHROUGH */ 1037 case PROBE_SETAN: 1038 notsata: 1039 if (path->device->protocol == PROTO_ATA) { 1040 PROBE_SET_ACTION(softc, PROBE_SET_MULTI); 1041 } else { 1042 PROBE_SET_ACTION(softc, PROBE_INQUIRY); 1043 } 1044 xpt_release_ccb(done_ccb); 1045 xpt_schedule(periph, priority); 1046 return; 1047 case PROBE_SET_MULTI: 1048 if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) { 1049 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1050 xpt_acquire_device(path->device); 1051 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1052 xpt_action(done_ccb); 1053 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, 1054 done_ccb); 1055 } 1056 PROBE_SET_ACTION(softc, PROBE_DONE); 1057 break; 1058 case PROBE_INQUIRY: 1059 case PROBE_FULL_INQUIRY: 1060 { 1061 u_int8_t periph_qual, len; 1062 1063 path->device->flags |= CAM_DEV_INQUIRY_DATA_VALID; 1064 1065 periph_qual = SID_QUAL(inq_buf); 1066 1067 if (periph_qual != SID_QUAL_LU_CONNECTED) 1068 break; 1069 1070 /* 1071 * We conservatively request only 1072 * SHORT_INQUIRY_LEN bytes of inquiry 1073 * information during our first try 1074 * at sending an INQUIRY. If the device 1075 * has more information to give, 1076 * perform a second request specifying 1077 * the amount of information the device 1078 * is willing to give. 1079 */ 1080 len = inq_buf->additional_length 1081 + offsetof(struct scsi_inquiry_data, additional_length) + 1; 1082 if (softc->action == PROBE_INQUIRY 1083 && len > SHORT_INQUIRY_LENGTH) { 1084 PROBE_SET_ACTION(softc, PROBE_FULL_INQUIRY); 1085 xpt_release_ccb(done_ccb); 1086 xpt_schedule(periph, priority); 1087 return; 1088 } 1089 1090 ata_device_transport(path); 1091 if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) { 1092 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1093 xpt_acquire_device(path->device); 1094 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1095 xpt_action(done_ccb); 1096 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, done_ccb); 1097 } 1098 PROBE_SET_ACTION(softc, PROBE_DONE); 1099 break; 1100 } 1101 case PROBE_PM_PID: 1102 if ((path->device->flags & CAM_DEV_IDENTIFY_DATA_VALID) == 0) 1103 bzero(ident_buf, sizeof(*ident_buf)); 1104 softc->pm_pid = (done_ccb->ataio.res.lba_high << 24) + 1105 (done_ccb->ataio.res.lba_mid << 16) + 1106 (done_ccb->ataio.res.lba_low << 8) + 1107 done_ccb->ataio.res.sector_count; 1108 ((uint32_t *)ident_buf)[0] = softc->pm_pid; 1109 snprintf(ident_buf->model, sizeof(ident_buf->model), 1110 "Port Multiplier %08x", softc->pm_pid); 1111 PROBE_SET_ACTION(softc, PROBE_PM_PRV); 1112 xpt_release_ccb(done_ccb); 1113 xpt_schedule(periph, priority); 1114 return; 1115 case PROBE_PM_PRV: 1116 softc->pm_prv = (done_ccb->ataio.res.lba_high << 24) + 1117 (done_ccb->ataio.res.lba_mid << 16) + 1118 (done_ccb->ataio.res.lba_low << 8) + 1119 done_ccb->ataio.res.sector_count; 1120 ((uint32_t *)ident_buf)[1] = softc->pm_prv; 1121 snprintf(ident_buf->revision, sizeof(ident_buf->revision), 1122 "%04x", softc->pm_prv); 1123 path->device->flags |= CAM_DEV_IDENTIFY_DATA_VALID; 1124 ata_device_transport(path); 1125 if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) 1126 proberequestdefaultnegotiation(periph); 1127 /* Set supported bits. */ 1128 bzero(&cts, sizeof(cts)); 1129 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 1130 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 1131 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1132 xpt_action((union ccb *)&cts); 1133 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_CAPS) 1134 caps = cts.xport_specific.sata.caps & CTS_SATA_CAPS_H; 1135 else 1136 caps = 0; 1137 /* All PMPs must support PM requests. */ 1138 caps |= CTS_SATA_CAPS_D_PMREQ; 1139 /* Mask unwanted bits. */ 1140 bzero(&cts, sizeof(cts)); 1141 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 1142 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 1143 cts.type = CTS_TYPE_USER_SETTINGS; 1144 xpt_action((union ccb *)&cts); 1145 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_CAPS) 1146 caps &= cts.xport_specific.sata.caps; 1147 else 1148 caps = 0; 1149 /* Store result to SIM. */ 1150 bzero(&cts, sizeof(cts)); 1151 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 1152 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 1153 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1154 cts.xport_specific.sata.caps = caps; 1155 cts.xport_specific.sata.valid = CTS_SATA_VALID_CAPS; 1156 xpt_action((union ccb *)&cts); 1157 softc->caps = caps; 1158 /* Remember what transport thinks about AEN. */ 1159 if (softc->caps & CTS_SATA_CAPS_H_AN) 1160 path->device->inq_flags |= SID_AEN; 1161 else 1162 path->device->inq_flags &= ~SID_AEN; 1163 xpt_async(AC_GETDEV_CHANGED, path, NULL); 1164 if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) { 1165 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1166 xpt_acquire_device(path->device); 1167 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1168 xpt_action(done_ccb); 1169 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, 1170 done_ccb); 1171 } else { 1172 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1173 xpt_action(done_ccb); 1174 xpt_async(AC_SCSI_AEN, done_ccb->ccb_h.path, done_ccb); 1175 } 1176 PROBE_SET_ACTION(softc, PROBE_DONE); 1177 break; 1178 case PROBE_IDENTIFY_SES: 1179 case PROBE_IDENTIFY_SAFTE: 1180 if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0) { 1181 /* Check that it is the same device. */ 1182 if (bcmp(&softc->ident_data, ident_buf, 53)) { 1183 /* Device changed. */ 1184 xpt_async(AC_LOST_DEVICE, path, NULL); 1185 } else { 1186 bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params)); 1187 changed = 0; 1188 } 1189 } 1190 if (changed) { 1191 bcopy(&softc->ident_data, ident_buf, sizeof(struct ata_params)); 1192 /* Clean up from previous instance of this device */ 1193 if (path->device->device_id != NULL) { 1194 free(path->device->device_id, M_CAMXPT); 1195 path->device->device_id = NULL; 1196 path->device->device_id_len = 0; 1197 } 1198 path->device->device_id = 1199 malloc(16, M_CAMXPT, M_NOWAIT); 1200 if (path->device->device_id != NULL) { 1201 path->device->device_id_len = 16; 1202 bcopy(&fake_device_id_hdr, 1203 path->device->device_id, 8); 1204 bcopy(((uint8_t*)ident_buf) + 2, 1205 path->device->device_id + 8, 8); 1206 } 1207 1208 path->device->flags |= CAM_DEV_IDENTIFY_DATA_VALID; 1209 } 1210 ata_device_transport(path); 1211 if (changed) 1212 proberequestdefaultnegotiation(periph); 1213 1214 if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) { 1215 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1216 xpt_acquire_device(path->device); 1217 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1218 xpt_action(done_ccb); 1219 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, 1220 done_ccb); 1221 } 1222 PROBE_SET_ACTION(softc, PROBE_DONE); 1223 break; 1224 default: 1225 panic("probedone: invalid action state 0x%x\n", softc->action); 1226 } 1227 done: 1228 if (softc->restart) { 1229 softc->restart = 0; 1230 xpt_release_ccb(done_ccb); 1231 probeschedule(periph); 1232 return; 1233 } 1234 xpt_release_ccb(done_ccb); 1235 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, ("Probe completed\n")); 1236 while ((done_ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs))) { 1237 TAILQ_REMOVE(&softc->request_ccbs, 1238 &done_ccb->ccb_h, periph_links.tqe); 1239 done_ccb->ccb_h.status = found ? CAM_REQ_CMP : CAM_REQ_CMP_ERR; 1240 xpt_done(done_ccb); 1241 } 1242 cam_periph_invalidate(periph); 1243 cam_release_devq(periph->path, 1244 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_XPT + 1, FALSE); 1245 cam_periph_release_locked(periph); 1246 } 1247 1248 static void 1249 probecleanup(struct cam_periph *periph) 1250 { 1251 free(periph->softc, M_CAMXPT); 1252 } 1253 1254 static void 1255 ata_find_quirk(struct cam_ed *device) 1256 { 1257 struct ata_quirk_entry *quirk; 1258 caddr_t match; 1259 1260 match = cam_quirkmatch((caddr_t)&device->ident_data, 1261 (caddr_t)ata_quirk_table, 1262 ata_quirk_table_size, 1263 sizeof(*ata_quirk_table), ata_identify_match); 1264 1265 if (match == NULL) 1266 panic("xpt_find_quirk: device didn't match wildcard entry!!"); 1267 1268 quirk = (struct ata_quirk_entry *)match; 1269 device->quirk = quirk; 1270 if (quirk->quirks & CAM_QUIRK_MAXTAGS) { 1271 device->mintags = quirk->mintags; 1272 device->maxtags = quirk->maxtags; 1273 } 1274 } 1275 1276 typedef struct { 1277 union ccb *request_ccb; 1278 struct ccb_pathinq *cpi; 1279 int counter; 1280 } ata_scan_bus_info; 1281 1282 /* 1283 * To start a scan, request_ccb is an XPT_SCAN_BUS ccb. 1284 * As the scan progresses, xpt_scan_bus is used as the 1285 * callback on completion function. 1286 */ 1287 static void 1288 ata_scan_bus(struct cam_periph *periph, union ccb *request_ccb) 1289 { 1290 struct cam_path *path; 1291 ata_scan_bus_info *scan_info; 1292 union ccb *work_ccb, *reset_ccb; 1293 cam_status status; 1294 1295 CAM_DEBUG(request_ccb->ccb_h.path, CAM_DEBUG_TRACE, 1296 ("xpt_scan_bus\n")); 1297 switch (request_ccb->ccb_h.func_code) { 1298 case XPT_SCAN_BUS: 1299 case XPT_SCAN_TGT: 1300 /* Find out the characteristics of the bus */ 1301 work_ccb = xpt_alloc_ccb_nowait(); 1302 if (work_ccb == NULL) { 1303 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1304 xpt_done(request_ccb); 1305 return; 1306 } 1307 xpt_setup_ccb(&work_ccb->ccb_h, request_ccb->ccb_h.path, 1308 request_ccb->ccb_h.pinfo.priority); 1309 work_ccb->ccb_h.func_code = XPT_PATH_INQ; 1310 xpt_action(work_ccb); 1311 if (work_ccb->ccb_h.status != CAM_REQ_CMP) { 1312 request_ccb->ccb_h.status = work_ccb->ccb_h.status; 1313 xpt_free_ccb(work_ccb); 1314 xpt_done(request_ccb); 1315 return; 1316 } 1317 1318 /* We may need to reset bus first, if we haven't done it yet. */ 1319 if ((work_ccb->cpi.hba_inquiry & 1320 (PI_WIDE_32|PI_WIDE_16|PI_SDTR_ABLE)) && 1321 !(work_ccb->cpi.hba_misc & PIM_NOBUSRESET) && 1322 !timevalisset(&request_ccb->ccb_h.path->bus->last_reset)) { 1323 reset_ccb = xpt_alloc_ccb_nowait(); 1324 if (reset_ccb == NULL) { 1325 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1326 xpt_free_ccb(work_ccb); 1327 xpt_done(request_ccb); 1328 return; 1329 } 1330 xpt_setup_ccb(&reset_ccb->ccb_h, request_ccb->ccb_h.path, 1331 CAM_PRIORITY_NONE); 1332 reset_ccb->ccb_h.func_code = XPT_RESET_BUS; 1333 xpt_action(reset_ccb); 1334 if (reset_ccb->ccb_h.status != CAM_REQ_CMP) { 1335 request_ccb->ccb_h.status = reset_ccb->ccb_h.status; 1336 xpt_free_ccb(reset_ccb); 1337 xpt_free_ccb(work_ccb); 1338 xpt_done(request_ccb); 1339 return; 1340 } 1341 xpt_free_ccb(reset_ccb); 1342 } 1343 1344 /* Save some state for use while we probe for devices */ 1345 scan_info = (ata_scan_bus_info *) 1346 malloc(sizeof(ata_scan_bus_info), M_CAMXPT, M_NOWAIT); 1347 if (scan_info == NULL) { 1348 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1349 xpt_free_ccb(work_ccb); 1350 xpt_done(request_ccb); 1351 return; 1352 } 1353 scan_info->request_ccb = request_ccb; 1354 scan_info->cpi = &work_ccb->cpi; 1355 /* If PM supported, probe it first. */ 1356 if (scan_info->cpi->hba_inquiry & PI_SATAPM) 1357 scan_info->counter = scan_info->cpi->max_target; 1358 else 1359 scan_info->counter = 0; 1360 1361 work_ccb = xpt_alloc_ccb_nowait(); 1362 if (work_ccb == NULL) { 1363 free(scan_info, M_CAMXPT); 1364 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1365 xpt_done(request_ccb); 1366 break; 1367 } 1368 goto scan_next; 1369 case XPT_SCAN_LUN: 1370 work_ccb = request_ccb; 1371 /* Reuse the same CCB to query if a device was really found */ 1372 scan_info = (ata_scan_bus_info *)work_ccb->ccb_h.ppriv_ptr0; 1373 /* If there is PMP... */ 1374 if ((scan_info->cpi->hba_inquiry & PI_SATAPM) && 1375 (scan_info->counter == scan_info->cpi->max_target)) { 1376 if (work_ccb->ccb_h.status == CAM_REQ_CMP) { 1377 /* everything else will be probed by it */ 1378 /* Free the current request path- we're done with it. */ 1379 xpt_free_path(work_ccb->ccb_h.path); 1380 goto done; 1381 } else { 1382 struct ccb_trans_settings cts; 1383 1384 /* Report SIM that PM is absent. */ 1385 bzero(&cts, sizeof(cts)); 1386 xpt_setup_ccb(&cts.ccb_h, 1387 work_ccb->ccb_h.path, CAM_PRIORITY_NONE); 1388 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 1389 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1390 cts.xport_specific.sata.pm_present = 0; 1391 cts.xport_specific.sata.valid = CTS_SATA_VALID_PM; 1392 xpt_action((union ccb *)&cts); 1393 } 1394 } 1395 /* Free the current request path- we're done with it. */ 1396 xpt_free_path(work_ccb->ccb_h.path); 1397 if (scan_info->counter == 1398 ((scan_info->cpi->hba_inquiry & PI_SATAPM) ? 1399 0 : scan_info->cpi->max_target)) { 1400 done: 1401 xpt_free_ccb(work_ccb); 1402 xpt_free_ccb((union ccb *)scan_info->cpi); 1403 request_ccb = scan_info->request_ccb; 1404 free(scan_info, M_CAMXPT); 1405 request_ccb->ccb_h.status = CAM_REQ_CMP; 1406 xpt_done(request_ccb); 1407 break; 1408 } 1409 /* Take next device. Wrap from max (PMP) to 0. */ 1410 scan_info->counter = (scan_info->counter + 1 ) % 1411 (scan_info->cpi->max_target + 1); 1412 scan_next: 1413 status = xpt_create_path(&path, xpt_periph, 1414 scan_info->request_ccb->ccb_h.path_id, 1415 scan_info->counter, 0); 1416 if (status != CAM_REQ_CMP) { 1417 printf("xpt_scan_bus: xpt_create_path failed" 1418 " with status %#x, bus scan halted\n", 1419 status); 1420 xpt_free_ccb(work_ccb); 1421 xpt_free_ccb((union ccb *)scan_info->cpi); 1422 request_ccb = scan_info->request_ccb; 1423 free(scan_info, M_CAMXPT); 1424 request_ccb->ccb_h.status = status; 1425 xpt_done(request_ccb); 1426 break; 1427 } 1428 xpt_setup_ccb(&work_ccb->ccb_h, path, 1429 scan_info->request_ccb->ccb_h.pinfo.priority); 1430 work_ccb->ccb_h.func_code = XPT_SCAN_LUN; 1431 work_ccb->ccb_h.cbfcnp = ata_scan_bus; 1432 work_ccb->ccb_h.ppriv_ptr0 = scan_info; 1433 work_ccb->crcn.flags = scan_info->request_ccb->crcn.flags; 1434 xpt_action(work_ccb); 1435 break; 1436 default: 1437 break; 1438 } 1439 } 1440 1441 static void 1442 ata_scan_lun(struct cam_periph *periph, struct cam_path *path, 1443 cam_flags flags, union ccb *request_ccb) 1444 { 1445 struct ccb_pathinq cpi; 1446 cam_status status; 1447 struct cam_path *new_path; 1448 struct cam_periph *old_periph; 1449 1450 CAM_DEBUG(path, CAM_DEBUG_TRACE, ("xpt_scan_lun\n")); 1451 1452 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 1453 cpi.ccb_h.func_code = XPT_PATH_INQ; 1454 xpt_action((union ccb *)&cpi); 1455 1456 if (cpi.ccb_h.status != CAM_REQ_CMP) { 1457 if (request_ccb != NULL) { 1458 request_ccb->ccb_h.status = cpi.ccb_h.status; 1459 xpt_done(request_ccb); 1460 } 1461 return; 1462 } 1463 1464 if (request_ccb == NULL) { 1465 request_ccb = xpt_alloc_ccb_nowait(); 1466 if (request_ccb == NULL) { 1467 xpt_print(path, "xpt_scan_lun: can't allocate CCB, " 1468 "can't continue\n"); 1469 return; 1470 } 1471 status = xpt_create_path(&new_path, xpt_periph, 1472 path->bus->path_id, 1473 path->target->target_id, 1474 path->device->lun_id); 1475 if (status != CAM_REQ_CMP) { 1476 xpt_print(path, "xpt_scan_lun: can't create path, " 1477 "can't continue\n"); 1478 xpt_free_ccb(request_ccb); 1479 return; 1480 } 1481 xpt_setup_ccb(&request_ccb->ccb_h, new_path, CAM_PRIORITY_XPT); 1482 request_ccb->ccb_h.cbfcnp = xptscandone; 1483 request_ccb->ccb_h.func_code = XPT_SCAN_LUN; 1484 request_ccb->crcn.flags = flags; 1485 } 1486 1487 if ((old_periph = cam_periph_find(path, "aprobe")) != NULL) { 1488 if ((old_periph->flags & CAM_PERIPH_INVALID) == 0) { 1489 probe_softc *softc; 1490 1491 softc = (probe_softc *)old_periph->softc; 1492 TAILQ_INSERT_TAIL(&softc->request_ccbs, 1493 &request_ccb->ccb_h, periph_links.tqe); 1494 softc->restart = 1; 1495 } else { 1496 request_ccb->ccb_h.status = CAM_REQ_CMP_ERR; 1497 xpt_done(request_ccb); 1498 } 1499 } else { 1500 status = cam_periph_alloc(proberegister, NULL, probecleanup, 1501 probestart, "aprobe", 1502 CAM_PERIPH_BIO, 1503 request_ccb->ccb_h.path, NULL, 0, 1504 request_ccb); 1505 1506 if (status != CAM_REQ_CMP) { 1507 xpt_print(path, "xpt_scan_lun: cam_alloc_periph " 1508 "returned an error, can't continue probe\n"); 1509 request_ccb->ccb_h.status = status; 1510 xpt_done(request_ccb); 1511 } 1512 } 1513 } 1514 1515 static void 1516 xptscandone(struct cam_periph *periph, union ccb *done_ccb) 1517 { 1518 1519 xpt_free_path(done_ccb->ccb_h.path); 1520 xpt_free_ccb(done_ccb); 1521 } 1522 1523 static struct cam_ed * 1524 ata_alloc_device(struct cam_eb *bus, struct cam_et *target, lun_id_t lun_id) 1525 { 1526 struct cam_path path; 1527 struct ata_quirk_entry *quirk; 1528 struct cam_ed *device; 1529 struct cam_ed *cur_device; 1530 1531 device = xpt_alloc_device(bus, target, lun_id); 1532 if (device == NULL) 1533 return (NULL); 1534 1535 /* 1536 * Take the default quirk entry until we have inquiry 1537 * data and can determine a better quirk to use. 1538 */ 1539 quirk = &ata_quirk_table[ata_quirk_table_size - 1]; 1540 device->quirk = (void *)quirk; 1541 device->mintags = 0; 1542 device->maxtags = 0; 1543 bzero(&device->inq_data, sizeof(device->inq_data)); 1544 device->inq_flags = 0; 1545 device->queue_flags = 0; 1546 device->serial_num = NULL; 1547 device->serial_num_len = 0; 1548 1549 /* 1550 * XXX should be limited by number of CCBs this bus can 1551 * do. 1552 */ 1553 bus->sim->max_ccbs += device->ccbq.devq_openings; 1554 /* Insertion sort into our target's device list */ 1555 cur_device = TAILQ_FIRST(&target->ed_entries); 1556 while (cur_device != NULL && cur_device->lun_id < lun_id) 1557 cur_device = TAILQ_NEXT(cur_device, links); 1558 if (cur_device != NULL) { 1559 TAILQ_INSERT_BEFORE(cur_device, device, links); 1560 } else { 1561 TAILQ_INSERT_TAIL(&target->ed_entries, device, links); 1562 } 1563 target->generation++; 1564 if (lun_id != CAM_LUN_WILDCARD) { 1565 xpt_compile_path(&path, 1566 NULL, 1567 bus->path_id, 1568 target->target_id, 1569 lun_id); 1570 ata_device_transport(&path); 1571 xpt_release_path(&path); 1572 } 1573 1574 return (device); 1575 } 1576 1577 static void 1578 ata_device_transport(struct cam_path *path) 1579 { 1580 struct ccb_pathinq cpi; 1581 struct ccb_trans_settings cts; 1582 struct scsi_inquiry_data *inq_buf = NULL; 1583 struct ata_params *ident_buf = NULL; 1584 1585 /* Get transport information from the SIM */ 1586 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 1587 cpi.ccb_h.func_code = XPT_PATH_INQ; 1588 xpt_action((union ccb *)&cpi); 1589 1590 path->device->transport = cpi.transport; 1591 if ((path->device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0) 1592 inq_buf = &path->device->inq_data; 1593 if ((path->device->flags & CAM_DEV_IDENTIFY_DATA_VALID) != 0) 1594 ident_buf = &path->device->ident_data; 1595 if (path->device->protocol == PROTO_ATA) { 1596 path->device->protocol_version = ident_buf ? 1597 ata_version(ident_buf->version_major) : cpi.protocol_version; 1598 } else if (path->device->protocol == PROTO_SCSI) { 1599 path->device->protocol_version = inq_buf ? 1600 SID_ANSI_REV(inq_buf) : cpi.protocol_version; 1601 } 1602 path->device->transport_version = ident_buf ? 1603 ata_version(ident_buf->version_major) : cpi.transport_version; 1604 1605 /* Tell the controller what we think */ 1606 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 1607 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 1608 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1609 cts.transport = path->device->transport; 1610 cts.transport_version = path->device->transport_version; 1611 cts.protocol = path->device->protocol; 1612 cts.protocol_version = path->device->protocol_version; 1613 cts.proto_specific.valid = 0; 1614 if (ident_buf) { 1615 if (path->device->transport == XPORT_ATA) { 1616 cts.xport_specific.ata.atapi = 1617 (ident_buf->config == ATA_PROTO_CFA) ? 0 : 1618 ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_16) ? 16 : 1619 ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_12) ? 12 : 0; 1620 cts.xport_specific.ata.valid = CTS_ATA_VALID_ATAPI; 1621 } else { 1622 cts.xport_specific.sata.atapi = 1623 (ident_buf->config == ATA_PROTO_CFA) ? 0 : 1624 ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_16) ? 16 : 1625 ((ident_buf->config & ATA_PROTO_MASK) == ATA_PROTO_ATAPI_12) ? 12 : 0; 1626 cts.xport_specific.sata.valid = CTS_SATA_VALID_ATAPI; 1627 } 1628 } else 1629 cts.xport_specific.valid = 0; 1630 xpt_action((union ccb *)&cts); 1631 } 1632 1633 static void 1634 ata_dev_advinfo(union ccb *start_ccb) 1635 { 1636 struct cam_ed *device; 1637 struct ccb_dev_advinfo *cdai; 1638 off_t amt; 1639 1640 start_ccb->ccb_h.status = CAM_REQ_INVALID; 1641 device = start_ccb->ccb_h.path->device; 1642 cdai = &start_ccb->cdai; 1643 switch(cdai->buftype) { 1644 case CDAI_TYPE_SCSI_DEVID: 1645 if (cdai->flags & CDAI_FLAG_STORE) 1646 return; 1647 cdai->provsiz = device->device_id_len; 1648 if (device->device_id_len == 0) 1649 break; 1650 amt = device->device_id_len; 1651 if (cdai->provsiz > cdai->bufsiz) 1652 amt = cdai->bufsiz; 1653 memcpy(cdai->buf, device->device_id, amt); 1654 break; 1655 case CDAI_TYPE_SERIAL_NUM: 1656 if (cdai->flags & CDAI_FLAG_STORE) 1657 return; 1658 cdai->provsiz = device->serial_num_len; 1659 if (device->serial_num_len == 0) 1660 break; 1661 amt = device->serial_num_len; 1662 if (cdai->provsiz > cdai->bufsiz) 1663 amt = cdai->bufsiz; 1664 memcpy(cdai->buf, device->serial_num, amt); 1665 break; 1666 case CDAI_TYPE_PHYS_PATH: 1667 if (cdai->flags & CDAI_FLAG_STORE) { 1668 if (device->physpath != NULL) 1669 free(device->physpath, M_CAMXPT); 1670 device->physpath_len = cdai->bufsiz; 1671 /* Clear existing buffer if zero length */ 1672 if (cdai->bufsiz == 0) 1673 break; 1674 device->physpath = malloc(cdai->bufsiz, M_CAMXPT, M_NOWAIT); 1675 if (device->physpath == NULL) { 1676 start_ccb->ccb_h.status = CAM_REQ_ABORTED; 1677 return; 1678 } 1679 memcpy(device->physpath, cdai->buf, cdai->bufsiz); 1680 } else { 1681 cdai->provsiz = device->physpath_len; 1682 if (device->physpath_len == 0) 1683 break; 1684 amt = device->physpath_len; 1685 if (cdai->provsiz > cdai->bufsiz) 1686 amt = cdai->bufsiz; 1687 memcpy(cdai->buf, device->physpath, amt); 1688 } 1689 break; 1690 default: 1691 return; 1692 } 1693 start_ccb->ccb_h.status = CAM_REQ_CMP; 1694 1695 if (cdai->flags & CDAI_FLAG_STORE) { 1696 int owned; 1697 1698 owned = mtx_owned(start_ccb->ccb_h.path->bus->sim->mtx); 1699 if (owned == 0) 1700 mtx_lock(start_ccb->ccb_h.path->bus->sim->mtx); 1701 xpt_async(AC_ADVINFO_CHANGED, start_ccb->ccb_h.path, 1702 (void *)(uintptr_t)cdai->buftype); 1703 if (owned == 0) 1704 mtx_unlock(start_ccb->ccb_h.path->bus->sim->mtx); 1705 } 1706 } 1707 1708 static void 1709 ata_action(union ccb *start_ccb) 1710 { 1711 1712 switch (start_ccb->ccb_h.func_code) { 1713 case XPT_SET_TRAN_SETTINGS: 1714 { 1715 ata_set_transfer_settings(&start_ccb->cts, 1716 start_ccb->ccb_h.path->device, 1717 /*async_update*/FALSE); 1718 break; 1719 } 1720 case XPT_SCAN_BUS: 1721 case XPT_SCAN_TGT: 1722 ata_scan_bus(start_ccb->ccb_h.path->periph, start_ccb); 1723 break; 1724 case XPT_SCAN_LUN: 1725 ata_scan_lun(start_ccb->ccb_h.path->periph, 1726 start_ccb->ccb_h.path, start_ccb->crcn.flags, 1727 start_ccb); 1728 break; 1729 case XPT_GET_TRAN_SETTINGS: 1730 { 1731 ata_get_transfer_settings(&start_ccb->cts); 1732 break; 1733 } 1734 case XPT_SCSI_IO: 1735 { 1736 struct cam_ed *device; 1737 u_int maxlen = 0; 1738 1739 device = start_ccb->ccb_h.path->device; 1740 if (device->protocol == PROTO_SCSI && 1741 (device->flags & CAM_DEV_IDENTIFY_DATA_VALID)) { 1742 uint16_t p = 1743 device->ident_data.config & ATA_PROTO_MASK; 1744 1745 maxlen = 1746 (device->ident_data.config == ATA_PROTO_CFA) ? 0 : 1747 (p == ATA_PROTO_ATAPI_16) ? 16 : 1748 (p == ATA_PROTO_ATAPI_12) ? 12 : 0; 1749 } 1750 if (start_ccb->csio.cdb_len > maxlen) { 1751 start_ccb->ccb_h.status = CAM_REQ_INVALID; 1752 xpt_done(start_ccb); 1753 break; 1754 } 1755 xpt_action_default(start_ccb); 1756 break; 1757 } 1758 case XPT_DEV_ADVINFO: 1759 { 1760 ata_dev_advinfo(start_ccb); 1761 break; 1762 } 1763 default: 1764 xpt_action_default(start_ccb); 1765 break; 1766 } 1767 } 1768 1769 static void 1770 ata_get_transfer_settings(struct ccb_trans_settings *cts) 1771 { 1772 struct ccb_trans_settings_ata *ata; 1773 struct ccb_trans_settings_scsi *scsi; 1774 struct cam_ed *device; 1775 struct cam_sim *sim; 1776 1777 device = cts->ccb_h.path->device; 1778 sim = cts->ccb_h.path->bus->sim; 1779 (*(sim->sim_action))(sim, (union ccb *)cts); 1780 1781 if (cts->protocol == PROTO_UNKNOWN || 1782 cts->protocol == PROTO_UNSPECIFIED) { 1783 cts->protocol = device->protocol; 1784 cts->protocol_version = device->protocol_version; 1785 } 1786 1787 if (cts->protocol == PROTO_ATA) { 1788 ata = &cts->proto_specific.ata; 1789 if ((ata->valid & CTS_ATA_VALID_TQ) == 0) { 1790 ata->valid |= CTS_ATA_VALID_TQ; 1791 if (cts->type == CTS_TYPE_USER_SETTINGS || 1792 (device->flags & CAM_DEV_TAG_AFTER_COUNT) != 0 || 1793 (device->inq_flags & SID_CmdQue) != 0) 1794 ata->flags |= CTS_ATA_FLAGS_TAG_ENB; 1795 } 1796 } 1797 if (cts->protocol == PROTO_SCSI) { 1798 scsi = &cts->proto_specific.scsi; 1799 if ((scsi->valid & CTS_SCSI_VALID_TQ) == 0) { 1800 scsi->valid |= CTS_SCSI_VALID_TQ; 1801 if (cts->type == CTS_TYPE_USER_SETTINGS || 1802 (device->flags & CAM_DEV_TAG_AFTER_COUNT) != 0 || 1803 (device->inq_flags & SID_CmdQue) != 0) 1804 scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB; 1805 } 1806 } 1807 1808 if (cts->transport == XPORT_UNKNOWN || 1809 cts->transport == XPORT_UNSPECIFIED) { 1810 cts->transport = device->transport; 1811 cts->transport_version = device->transport_version; 1812 } 1813 } 1814 1815 static void 1816 ata_set_transfer_settings(struct ccb_trans_settings *cts, struct cam_ed *device, 1817 int async_update) 1818 { 1819 struct ccb_pathinq cpi; 1820 struct ccb_trans_settings_ata *ata; 1821 struct ccb_trans_settings_scsi *scsi; 1822 struct cam_sim *sim; 1823 struct ata_params *ident_data; 1824 struct scsi_inquiry_data *inq_data; 1825 1826 if (device == NULL) { 1827 cts->ccb_h.status = CAM_PATH_INVALID; 1828 xpt_done((union ccb *)cts); 1829 return; 1830 } 1831 1832 if (cts->protocol == PROTO_UNKNOWN 1833 || cts->protocol == PROTO_UNSPECIFIED) { 1834 cts->protocol = device->protocol; 1835 cts->protocol_version = device->protocol_version; 1836 } 1837 1838 if (cts->protocol_version == PROTO_VERSION_UNKNOWN 1839 || cts->protocol_version == PROTO_VERSION_UNSPECIFIED) 1840 cts->protocol_version = device->protocol_version; 1841 1842 if (cts->protocol != device->protocol) { 1843 xpt_print(cts->ccb_h.path, "Uninitialized Protocol %x:%x?\n", 1844 cts->protocol, device->protocol); 1845 cts->protocol = device->protocol; 1846 } 1847 1848 if (cts->protocol_version > device->protocol_version) { 1849 if (bootverbose) { 1850 xpt_print(cts->ccb_h.path, "Down reving Protocol " 1851 "Version from %d to %d?\n", cts->protocol_version, 1852 device->protocol_version); 1853 } 1854 cts->protocol_version = device->protocol_version; 1855 } 1856 1857 if (cts->transport == XPORT_UNKNOWN 1858 || cts->transport == XPORT_UNSPECIFIED) { 1859 cts->transport = device->transport; 1860 cts->transport_version = device->transport_version; 1861 } 1862 1863 if (cts->transport_version == XPORT_VERSION_UNKNOWN 1864 || cts->transport_version == XPORT_VERSION_UNSPECIFIED) 1865 cts->transport_version = device->transport_version; 1866 1867 if (cts->transport != device->transport) { 1868 xpt_print(cts->ccb_h.path, "Uninitialized Transport %x:%x?\n", 1869 cts->transport, device->transport); 1870 cts->transport = device->transport; 1871 } 1872 1873 if (cts->transport_version > device->transport_version) { 1874 if (bootverbose) { 1875 xpt_print(cts->ccb_h.path, "Down reving Transport " 1876 "Version from %d to %d?\n", cts->transport_version, 1877 device->transport_version); 1878 } 1879 cts->transport_version = device->transport_version; 1880 } 1881 1882 sim = cts->ccb_h.path->bus->sim; 1883 ident_data = &device->ident_data; 1884 inq_data = &device->inq_data; 1885 if (cts->protocol == PROTO_ATA) 1886 ata = &cts->proto_specific.ata; 1887 else 1888 ata = NULL; 1889 if (cts->protocol == PROTO_SCSI) 1890 scsi = &cts->proto_specific.scsi; 1891 else 1892 scsi = NULL; 1893 xpt_setup_ccb(&cpi.ccb_h, cts->ccb_h.path, CAM_PRIORITY_NONE); 1894 cpi.ccb_h.func_code = XPT_PATH_INQ; 1895 xpt_action((union ccb *)&cpi); 1896 1897 /* Sanity checking */ 1898 if ((cpi.hba_inquiry & PI_TAG_ABLE) == 0 1899 || (ata && (ident_data->satacapabilities & ATA_SUPPORT_NCQ) == 0) 1900 || (scsi && (INQ_DATA_TQ_ENABLED(inq_data)) == 0) 1901 || (device->queue_flags & SCP_QUEUE_DQUE) != 0 1902 || (device->mintags == 0)) { 1903 /* 1904 * Can't tag on hardware that doesn't support tags, 1905 * doesn't have it enabled, or has broken tag support. 1906 */ 1907 if (ata) 1908 ata->flags &= ~CTS_ATA_FLAGS_TAG_ENB; 1909 if (scsi) 1910 scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB; 1911 } 1912 1913 /* Start/stop tags use. */ 1914 if (cts->type == CTS_TYPE_CURRENT_SETTINGS && 1915 ((ata && (ata->valid & CTS_ATA_VALID_TQ) != 0) || 1916 (scsi && (scsi->valid & CTS_SCSI_VALID_TQ) != 0))) { 1917 int nowt, newt = 0; 1918 1919 nowt = ((device->flags & CAM_DEV_TAG_AFTER_COUNT) != 0 || 1920 (device->inq_flags & SID_CmdQue) != 0); 1921 if (ata) 1922 newt = (ata->flags & CTS_ATA_FLAGS_TAG_ENB) != 0; 1923 if (scsi) 1924 newt = (scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0; 1925 1926 if (newt && !nowt) { 1927 /* 1928 * Delay change to use tags until after a 1929 * few commands have gone to this device so 1930 * the controller has time to perform transfer 1931 * negotiations without tagged messages getting 1932 * in the way. 1933 */ 1934 device->tag_delay_count = CAM_TAG_DELAY_COUNT; 1935 device->flags |= CAM_DEV_TAG_AFTER_COUNT; 1936 } else if (nowt && !newt) 1937 xpt_stop_tags(cts->ccb_h.path); 1938 } 1939 1940 if (async_update == FALSE) 1941 (*(sim->sim_action))(sim, (union ccb *)cts); 1942 } 1943 1944 /* 1945 * Handle any per-device event notifications that require action by the XPT. 1946 */ 1947 static void 1948 ata_dev_async(u_int32_t async_code, struct cam_eb *bus, struct cam_et *target, 1949 struct cam_ed *device, void *async_arg) 1950 { 1951 cam_status status; 1952 struct cam_path newpath; 1953 1954 /* 1955 * We only need to handle events for real devices. 1956 */ 1957 if (target->target_id == CAM_TARGET_WILDCARD 1958 || device->lun_id == CAM_LUN_WILDCARD) 1959 return; 1960 1961 /* 1962 * We need our own path with wildcards expanded to 1963 * handle certain types of events. 1964 */ 1965 if ((async_code == AC_SENT_BDR) 1966 || (async_code == AC_BUS_RESET) 1967 || (async_code == AC_INQ_CHANGED)) 1968 status = xpt_compile_path(&newpath, NULL, 1969 bus->path_id, 1970 target->target_id, 1971 device->lun_id); 1972 else 1973 status = CAM_REQ_CMP_ERR; 1974 1975 if (status == CAM_REQ_CMP) { 1976 if (async_code == AC_INQ_CHANGED) { 1977 /* 1978 * We've sent a start unit command, or 1979 * something similar to a device that 1980 * may have caused its inquiry data to 1981 * change. So we re-scan the device to 1982 * refresh the inquiry data for it. 1983 */ 1984 ata_scan_lun(newpath.periph, &newpath, 1985 CAM_EXPECT_INQ_CHANGE, NULL); 1986 } else { 1987 /* We need to reinitialize device after reset. */ 1988 ata_scan_lun(newpath.periph, &newpath, 1989 0, NULL); 1990 } 1991 xpt_release_path(&newpath); 1992 } else if (async_code == AC_LOST_DEVICE && 1993 (device->flags & CAM_DEV_UNCONFIGURED) == 0) { 1994 device->flags |= CAM_DEV_UNCONFIGURED; 1995 xpt_release_device(device); 1996 } else if (async_code == AC_TRANSFER_NEG) { 1997 struct ccb_trans_settings *settings; 1998 1999 settings = (struct ccb_trans_settings *)async_arg; 2000 ata_set_transfer_settings(settings, device, 2001 /*async_update*/TRUE); 2002 } 2003 } 2004 2005 static void 2006 ata_announce_periph(struct cam_periph *periph) 2007 { 2008 struct ccb_pathinq cpi; 2009 struct ccb_trans_settings cts; 2010 struct cam_path *path = periph->path; 2011 u_int speed; 2012 u_int mb; 2013 2014 mtx_assert(periph->sim->mtx, MA_OWNED); 2015 2016 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NORMAL); 2017 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 2018 cts.type = CTS_TYPE_CURRENT_SETTINGS; 2019 xpt_action((union ccb*)&cts); 2020 if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 2021 return; 2022 /* Ask the SIM for its base transfer speed */ 2023 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NORMAL); 2024 cpi.ccb_h.func_code = XPT_PATH_INQ; 2025 xpt_action((union ccb *)&cpi); 2026 /* Report connection speed */ 2027 speed = cpi.base_transfer_speed; 2028 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_ATA) { 2029 struct ccb_trans_settings_pata *pata = 2030 &cts.xport_specific.ata; 2031 2032 if (pata->valid & CTS_ATA_VALID_MODE) 2033 speed = ata_mode2speed(pata->mode); 2034 } 2035 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_SATA) { 2036 struct ccb_trans_settings_sata *sata = 2037 &cts.xport_specific.sata; 2038 2039 if (sata->valid & CTS_SATA_VALID_REVISION) 2040 speed = ata_revision2speed(sata->revision); 2041 } 2042 mb = speed / 1000; 2043 if (mb > 0) 2044 printf("%s%d: %d.%03dMB/s transfers", 2045 periph->periph_name, periph->unit_number, 2046 mb, speed % 1000); 2047 else 2048 printf("%s%d: %dKB/s transfers", periph->periph_name, 2049 periph->unit_number, speed); 2050 /* Report additional information about connection */ 2051 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_ATA) { 2052 struct ccb_trans_settings_pata *pata = 2053 &cts.xport_specific.ata; 2054 2055 printf(" ("); 2056 if (pata->valid & CTS_ATA_VALID_MODE) 2057 printf("%s, ", ata_mode2string(pata->mode)); 2058 if ((pata->valid & CTS_ATA_VALID_ATAPI) && pata->atapi != 0) 2059 printf("ATAPI %dbytes, ", pata->atapi); 2060 if (pata->valid & CTS_ATA_VALID_BYTECOUNT) 2061 printf("PIO %dbytes", pata->bytecount); 2062 printf(")"); 2063 } 2064 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_SATA) { 2065 struct ccb_trans_settings_sata *sata = 2066 &cts.xport_specific.sata; 2067 2068 printf(" ("); 2069 if (sata->valid & CTS_SATA_VALID_REVISION) 2070 printf("SATA %d.x, ", sata->revision); 2071 else 2072 printf("SATA, "); 2073 if (sata->valid & CTS_SATA_VALID_MODE) 2074 printf("%s, ", ata_mode2string(sata->mode)); 2075 if ((sata->valid & CTS_ATA_VALID_ATAPI) && sata->atapi != 0) 2076 printf("ATAPI %dbytes, ", sata->atapi); 2077 if (sata->valid & CTS_SATA_VALID_BYTECOUNT) 2078 printf("PIO %dbytes", sata->bytecount); 2079 printf(")"); 2080 } 2081 printf("\n"); 2082 } 2083 2084