1 /*- 2 * Implementation of the SCSI Transport 3 * 4 * Copyright (c) 1997, 1998, 1999 Justin T. Gibbs. 5 * Copyright (c) 1997, 1998, 1999 Kenneth D. Merry. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions, and the following disclaimer, 13 * without modification, immediately at the beginning of the file. 14 * 2. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 #include <sys/param.h> 34 #include <sys/bus.h> 35 #include <sys/systm.h> 36 #include <sys/types.h> 37 #include <sys/malloc.h> 38 #include <sys/kernel.h> 39 #include <sys/time.h> 40 #include <sys/conf.h> 41 #include <sys/fcntl.h> 42 #include <sys/md5.h> 43 #include <sys/interrupt.h> 44 #include <sys/sbuf.h> 45 46 #include <sys/lock.h> 47 #include <sys/mutex.h> 48 #include <sys/sysctl.h> 49 50 #include <cam/cam.h> 51 #include <cam/cam_ccb.h> 52 #include <cam/cam_queue.h> 53 #include <cam/cam_periph.h> 54 #include <cam/cam_sim.h> 55 #include <cam/cam_xpt.h> 56 #include <cam/cam_xpt_sim.h> 57 #include <cam/cam_xpt_periph.h> 58 #include <cam/cam_xpt_internal.h> 59 #include <cam/cam_debug.h> 60 61 #include <cam/scsi/scsi_all.h> 62 #include <cam/scsi/scsi_message.h> 63 #include <cam/scsi/scsi_pass.h> 64 #include <machine/stdarg.h> /* for xpt_print below */ 65 #include "opt_cam.h" 66 67 struct scsi_quirk_entry { 68 struct scsi_inquiry_pattern inq_pat; 69 u_int8_t quirks; 70 #define CAM_QUIRK_NOLUNS 0x01 71 #define CAM_QUIRK_NOVPDS 0x02 72 #define CAM_QUIRK_HILUNS 0x04 73 #define CAM_QUIRK_NOHILUNS 0x08 74 #define CAM_QUIRK_NORPTLUNS 0x10 75 u_int mintags; 76 u_int maxtags; 77 }; 78 #define SCSI_QUIRK(dev) ((struct scsi_quirk_entry *)((dev)->quirk)) 79 80 static int cam_srch_hi = 0; 81 static int sysctl_cam_search_luns(SYSCTL_HANDLER_ARGS); 82 SYSCTL_PROC(_kern_cam, OID_AUTO, cam_srch_hi, CTLTYPE_INT | CTLFLAG_RWTUN, 0, 0, 83 sysctl_cam_search_luns, "I", 84 "allow search above LUN 7 for SCSI3 and greater devices"); 85 86 #define CAM_SCSI2_MAXLUN 8 87 #define CAM_CAN_GET_SIMPLE_LUN(x, i) \ 88 ((((x)->luns[i].lundata[0] & RPL_LUNDATA_ATYP_MASK) == \ 89 RPL_LUNDATA_ATYP_PERIPH) || \ 90 (((x)->luns[i].lundata[0] & RPL_LUNDATA_ATYP_MASK) == \ 91 RPL_LUNDATA_ATYP_FLAT)) 92 #define CAM_GET_SIMPLE_LUN(lp, i, lval) \ 93 if (((lp)->luns[(i)].lundata[0] & RPL_LUNDATA_ATYP_MASK) == \ 94 RPL_LUNDATA_ATYP_PERIPH) { \ 95 (lval) = (lp)->luns[(i)].lundata[1]; \ 96 } else { \ 97 (lval) = (lp)->luns[(i)].lundata[0]; \ 98 (lval) &= RPL_LUNDATA_FLAT_LUN_MASK; \ 99 (lval) <<= 8; \ 100 (lval) |= (lp)->luns[(i)].lundata[1]; \ 101 } 102 #define CAM_GET_LUN(lp, i, lval) \ 103 (lval) = scsi_8btou64((lp)->luns[(i)].lundata); \ 104 (lval) = CAM_EXTLUN_BYTE_SWIZZLE(lval); 105 106 /* 107 * If we're not quirked to search <= the first 8 luns 108 * and we are either quirked to search above lun 8, 109 * or we're > SCSI-2 and we've enabled hilun searching, 110 * or we're > SCSI-2 and the last lun was a success, 111 * we can look for luns above lun 8. 112 */ 113 #define CAN_SRCH_HI_SPARSE(dv) \ 114 (((SCSI_QUIRK(dv)->quirks & CAM_QUIRK_NOHILUNS) == 0) \ 115 && ((SCSI_QUIRK(dv)->quirks & CAM_QUIRK_HILUNS) \ 116 || (SID_ANSI_REV(&dv->inq_data) > SCSI_REV_2 && cam_srch_hi))) 117 118 #define CAN_SRCH_HI_DENSE(dv) \ 119 (((SCSI_QUIRK(dv)->quirks & CAM_QUIRK_NOHILUNS) == 0) \ 120 && ((SCSI_QUIRK(dv)->quirks & CAM_QUIRK_HILUNS) \ 121 || (SID_ANSI_REV(&dv->inq_data) > SCSI_REV_2))) 122 123 static periph_init_t probe_periph_init; 124 125 static struct periph_driver probe_driver = 126 { 127 probe_periph_init, "probe", 128 TAILQ_HEAD_INITIALIZER(probe_driver.units), /* generation */ 0, 129 CAM_PERIPH_DRV_EARLY 130 }; 131 132 PERIPHDRIVER_DECLARE(probe, probe_driver); 133 134 typedef enum { 135 PROBE_TUR, 136 PROBE_INQUIRY, /* this counts as DV0 for Basic Domain Validation */ 137 PROBE_FULL_INQUIRY, 138 PROBE_REPORT_LUNS, 139 PROBE_MODE_SENSE, 140 PROBE_SUPPORTED_VPD_LIST, 141 PROBE_DEVICE_ID, 142 PROBE_SERIAL_NUM, 143 PROBE_TUR_FOR_NEGOTIATION, 144 PROBE_INQUIRY_BASIC_DV1, 145 PROBE_INQUIRY_BASIC_DV2, 146 PROBE_DV_EXIT, 147 PROBE_DONE, 148 PROBE_INVALID 149 } probe_action; 150 151 static char *probe_action_text[] = { 152 "PROBE_TUR", 153 "PROBE_INQUIRY", 154 "PROBE_FULL_INQUIRY", 155 "PROBE_REPORT_LUNS", 156 "PROBE_MODE_SENSE", 157 "PROBE_SUPPORTED_VPD_LIST", 158 "PROBE_DEVICE_ID", 159 "PROBE_SERIAL_NUM", 160 "PROBE_TUR_FOR_NEGOTIATION", 161 "PROBE_INQUIRY_BASIC_DV1", 162 "PROBE_INQUIRY_BASIC_DV2", 163 "PROBE_DV_EXIT", 164 "PROBE_DONE", 165 "PROBE_INVALID" 166 }; 167 168 #define PROBE_SET_ACTION(softc, newaction) \ 169 do { \ 170 char **text; \ 171 text = probe_action_text; \ 172 CAM_DEBUG((softc)->periph->path, CAM_DEBUG_PROBE, \ 173 ("Probe %s to %s\n", text[(softc)->action], \ 174 text[(newaction)])); \ 175 (softc)->action = (newaction); \ 176 } while(0) 177 178 typedef enum { 179 PROBE_INQUIRY_CKSUM = 0x01, 180 PROBE_SERIAL_CKSUM = 0x02, 181 PROBE_NO_ANNOUNCE = 0x04, 182 PROBE_EXTLUN = 0x08 183 } probe_flags; 184 185 typedef struct { 186 TAILQ_HEAD(, ccb_hdr) request_ccbs; 187 probe_action action; 188 union ccb saved_ccb; 189 probe_flags flags; 190 MD5_CTX context; 191 u_int8_t digest[16]; 192 struct cam_periph *periph; 193 } probe_softc; 194 195 static const char quantum[] = "QUANTUM"; 196 static const char sony[] = "SONY"; 197 static const char west_digital[] = "WDIGTL"; 198 static const char samsung[] = "SAMSUNG"; 199 static const char seagate[] = "SEAGATE"; 200 static const char microp[] = "MICROP"; 201 202 static struct scsi_quirk_entry scsi_quirk_table[] = 203 { 204 { 205 /* Reports QUEUE FULL for temporary resource shortages */ 206 { T_DIRECT, SIP_MEDIA_FIXED, quantum, "XP39100*", "*" }, 207 /*quirks*/0, /*mintags*/24, /*maxtags*/32 208 }, 209 { 210 /* Reports QUEUE FULL for temporary resource shortages */ 211 { T_DIRECT, SIP_MEDIA_FIXED, quantum, "XP34550*", "*" }, 212 /*quirks*/0, /*mintags*/24, /*maxtags*/32 213 }, 214 { 215 /* Reports QUEUE FULL for temporary resource shortages */ 216 { T_DIRECT, SIP_MEDIA_FIXED, quantum, "XP32275*", "*" }, 217 /*quirks*/0, /*mintags*/24, /*maxtags*/32 218 }, 219 { 220 /* Broken tagged queuing drive */ 221 { T_DIRECT, SIP_MEDIA_FIXED, microp, "4421-07*", "*" }, 222 /*quirks*/0, /*mintags*/0, /*maxtags*/0 223 }, 224 { 225 /* Broken tagged queuing drive */ 226 { T_DIRECT, SIP_MEDIA_FIXED, "HP", "C372*", "*" }, 227 /*quirks*/0, /*mintags*/0, /*maxtags*/0 228 }, 229 { 230 /* Broken tagged queuing drive */ 231 { T_DIRECT, SIP_MEDIA_FIXED, microp, "3391*", "x43h" }, 232 /*quirks*/0, /*mintags*/0, /*maxtags*/0 233 }, 234 { 235 /* 236 * Unfortunately, the Quantum Atlas III has the same 237 * problem as the Atlas II drives above. 238 * Reported by: "Johan Granlund" <johan@granlund.nu> 239 * 240 * For future reference, the drive with the problem was: 241 * QUANTUM QM39100TD-SW N1B0 242 * 243 * It's possible that Quantum will fix the problem in later 244 * firmware revisions. If that happens, the quirk entry 245 * will need to be made specific to the firmware revisions 246 * with the problem. 247 * 248 */ 249 /* Reports QUEUE FULL for temporary resource shortages */ 250 { T_DIRECT, SIP_MEDIA_FIXED, quantum, "QM39100*", "*" }, 251 /*quirks*/0, /*mintags*/24, /*maxtags*/32 252 }, 253 { 254 /* 255 * 18 Gig Atlas III, same problem as the 9G version. 256 * Reported by: Andre Albsmeier 257 * <andre.albsmeier@mchp.siemens.de> 258 * 259 * For future reference, the drive with the problem was: 260 * QUANTUM QM318000TD-S N491 261 */ 262 /* Reports QUEUE FULL for temporary resource shortages */ 263 { T_DIRECT, SIP_MEDIA_FIXED, quantum, "QM318000*", "*" }, 264 /*quirks*/0, /*mintags*/24, /*maxtags*/32 265 }, 266 { 267 /* 268 * Broken tagged queuing drive 269 * Reported by: Bret Ford <bford@uop.cs.uop.edu> 270 * and: Martin Renters <martin@tdc.on.ca> 271 */ 272 { T_DIRECT, SIP_MEDIA_FIXED, seagate, "ST410800*", "71*" }, 273 /*quirks*/0, /*mintags*/0, /*maxtags*/0 274 }, 275 /* 276 * The Seagate Medalist Pro drives have very poor write 277 * performance with anything more than 2 tags. 278 * 279 * Reported by: Paul van der Zwan <paulz@trantor.xs4all.nl> 280 * Drive: <SEAGATE ST36530N 1444> 281 * 282 * Reported by: Jeremy Lea <reg@shale.csir.co.za> 283 * Drive: <SEAGATE ST34520W 1281> 284 * 285 * No one has actually reported that the 9G version 286 * (ST39140*) of the Medalist Pro has the same problem, but 287 * we're assuming that it does because the 4G and 6.5G 288 * versions of the drive are broken. 289 */ 290 { 291 { T_DIRECT, SIP_MEDIA_FIXED, seagate, "ST34520*", "*"}, 292 /*quirks*/0, /*mintags*/2, /*maxtags*/2 293 }, 294 { 295 { T_DIRECT, SIP_MEDIA_FIXED, seagate, "ST36530*", "*"}, 296 /*quirks*/0, /*mintags*/2, /*maxtags*/2 297 }, 298 { 299 { T_DIRECT, SIP_MEDIA_FIXED, seagate, "ST39140*", "*"}, 300 /*quirks*/0, /*mintags*/2, /*maxtags*/2 301 }, 302 { 303 /* 304 * Experiences command timeouts under load with a 305 * tag count higher than 55. 306 */ 307 { T_DIRECT, SIP_MEDIA_FIXED, seagate, "ST3146855LW", "*"}, 308 /*quirks*/0, /*mintags*/2, /*maxtags*/55 309 }, 310 { 311 /* 312 * Slow when tagged queueing is enabled. Write performance 313 * steadily drops off with more and more concurrent 314 * transactions. Best sequential write performance with 315 * tagged queueing turned off and write caching turned on. 316 * 317 * PR: kern/10398 318 * Submitted by: Hideaki Okada <hokada@isl.melco.co.jp> 319 * Drive: DCAS-34330 w/ "S65A" firmware. 320 * 321 * The drive with the problem had the "S65A" firmware 322 * revision, and has also been reported (by Stephen J. 323 * Roznowski <sjr@home.net>) for a drive with the "S61A" 324 * firmware revision. 325 * 326 * Although no one has reported problems with the 2 gig 327 * version of the DCAS drive, the assumption is that it 328 * has the same problems as the 4 gig version. Therefore 329 * this quirk entries disables tagged queueing for all 330 * DCAS drives. 331 */ 332 { T_DIRECT, SIP_MEDIA_FIXED, "IBM", "DCAS*", "*" }, 333 /*quirks*/0, /*mintags*/0, /*maxtags*/0 334 }, 335 { 336 /* Broken tagged queuing drive */ 337 { T_DIRECT, SIP_MEDIA_REMOVABLE, "iomega", "jaz*", "*" }, 338 /*quirks*/0, /*mintags*/0, /*maxtags*/0 339 }, 340 { 341 /* Broken tagged queuing drive */ 342 { T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CFP2107*", "*" }, 343 /*quirks*/0, /*mintags*/0, /*maxtags*/0 344 }, 345 { 346 /* This does not support other than LUN 0 */ 347 { T_DIRECT, SIP_MEDIA_FIXED, "VMware*", "*", "*" }, 348 CAM_QUIRK_NOLUNS, /*mintags*/2, /*maxtags*/255 349 }, 350 { 351 /* 352 * Broken tagged queuing drive. 353 * Submitted by: 354 * NAKAJI Hiroyuki <nakaji@zeisei.dpri.kyoto-u.ac.jp> 355 * in PR kern/9535 356 */ 357 { T_DIRECT, SIP_MEDIA_FIXED, samsung, "WN34324U*", "*" }, 358 /*quirks*/0, /*mintags*/0, /*maxtags*/0 359 }, 360 { 361 /* 362 * Slow when tagged queueing is enabled. (1.5MB/sec versus 363 * 8MB/sec.) 364 * Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> 365 * Best performance with these drives is achieved with 366 * tagged queueing turned off, and write caching turned on. 367 */ 368 { T_DIRECT, SIP_MEDIA_FIXED, west_digital, "WDE*", "*" }, 369 /*quirks*/0, /*mintags*/0, /*maxtags*/0 370 }, 371 { 372 /* 373 * Slow when tagged queueing is enabled. (1.5MB/sec versus 374 * 8MB/sec.) 375 * Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> 376 * Best performance with these drives is achieved with 377 * tagged queueing turned off, and write caching turned on. 378 */ 379 { T_DIRECT, SIP_MEDIA_FIXED, west_digital, "ENTERPRISE", "*" }, 380 /*quirks*/0, /*mintags*/0, /*maxtags*/0 381 }, 382 { 383 /* 384 * Doesn't handle queue full condition correctly, 385 * so we need to limit maxtags to what the device 386 * can handle instead of determining this automatically. 387 */ 388 { T_DIRECT, SIP_MEDIA_FIXED, samsung, "WN321010S*", "*" }, 389 /*quirks*/0, /*mintags*/2, /*maxtags*/32 390 }, 391 { 392 /* Really only one LUN */ 393 { T_ENCLOSURE, SIP_MEDIA_FIXED, "SUN", "SENA", "*" }, 394 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 395 }, 396 { 397 /* I can't believe we need a quirk for DPT volumes. */ 398 { T_ANY, SIP_MEDIA_FIXED|SIP_MEDIA_REMOVABLE, "DPT", "*", "*" }, 399 CAM_QUIRK_NOLUNS, 400 /*mintags*/0, /*maxtags*/255 401 }, 402 { 403 /* 404 * Many Sony CDROM drives don't like multi-LUN probing. 405 */ 406 { T_CDROM, SIP_MEDIA_REMOVABLE, sony, "CD-ROM CDU*", "*" }, 407 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 408 }, 409 { 410 /* 411 * This drive doesn't like multiple LUN probing. 412 * Submitted by: Parag Patel <parag@cgt.com> 413 */ 414 { T_WORM, SIP_MEDIA_REMOVABLE, sony, "CD-R CDU9*", "*" }, 415 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 416 }, 417 { 418 { T_WORM, SIP_MEDIA_REMOVABLE, "YAMAHA", "CDR100*", "*" }, 419 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 420 }, 421 { 422 /* 423 * The 8200 doesn't like multi-lun probing, and probably 424 * don't like serial number requests either. 425 */ 426 { 427 T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "EXABYTE", 428 "EXB-8200*", "*" 429 }, 430 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 431 }, 432 { 433 /* 434 * Let's try the same as above, but for a drive that says 435 * it's an IPL-6860 but is actually an EXB 8200. 436 */ 437 { 438 T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "EXABYTE", 439 "IPL-6860*", "*" 440 }, 441 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 442 }, 443 { 444 /* 445 * These Hitachi drives don't like multi-lun probing. 446 * The PR submitter has a DK319H, but says that the Linux 447 * kernel has a similar work-around for the DK312 and DK314, 448 * so all DK31* drives are quirked here. 449 * PR: misc/18793 450 * Submitted by: Paul Haddad <paul@pth.com> 451 */ 452 { T_DIRECT, SIP_MEDIA_FIXED, "HITACHI", "DK31*", "*" }, 453 CAM_QUIRK_NOLUNS, /*mintags*/2, /*maxtags*/255 454 }, 455 { 456 /* 457 * The Hitachi CJ series with J8A8 firmware apparantly has 458 * problems with tagged commands. 459 * PR: 23536 460 * Reported by: amagai@nue.org 461 */ 462 { T_DIRECT, SIP_MEDIA_FIXED, "HITACHI", "DK32CJ*", "J8A8" }, 463 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 464 }, 465 { 466 /* 467 * These are the large storage arrays. 468 * Submitted by: William Carrel <william.carrel@infospace.com> 469 */ 470 { T_DIRECT, SIP_MEDIA_FIXED, "HITACHI", "OPEN*", "*" }, 471 CAM_QUIRK_HILUNS, 2, 1024 472 }, 473 { 474 /* 475 * This old revision of the TDC3600 is also SCSI-1, and 476 * hangs upon serial number probing. 477 */ 478 { 479 T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 480 " TDC 3600", "U07:" 481 }, 482 CAM_QUIRK_NOVPDS, /*mintags*/0, /*maxtags*/0 483 }, 484 { 485 /* 486 * Would repond to all LUNs if asked for. 487 */ 488 { 489 T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "CALIPER", 490 "CP150", "*" 491 }, 492 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 493 }, 494 { 495 /* 496 * Would repond to all LUNs if asked for. 497 */ 498 { 499 T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "KENNEDY", 500 "96X2*", "*" 501 }, 502 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 503 }, 504 { 505 /* Submitted by: Matthew Dodd <winter@jurai.net> */ 506 { T_PROCESSOR, SIP_MEDIA_FIXED, "Cabletrn", "EA41*", "*" }, 507 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 508 }, 509 { 510 /* Submitted by: Matthew Dodd <winter@jurai.net> */ 511 { T_PROCESSOR, SIP_MEDIA_FIXED, "CABLETRN", "EA41*", "*" }, 512 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 513 }, 514 { 515 /* TeraSolutions special settings for TRC-22 RAID */ 516 { T_DIRECT, SIP_MEDIA_FIXED, "TERASOLU", "TRC-22", "*" }, 517 /*quirks*/0, /*mintags*/55, /*maxtags*/255 518 }, 519 { 520 /* Veritas Storage Appliance */ 521 { T_DIRECT, SIP_MEDIA_FIXED, "VERITAS", "*", "*" }, 522 CAM_QUIRK_HILUNS, /*mintags*/2, /*maxtags*/1024 523 }, 524 { 525 /* 526 * Would respond to all LUNs. Device type and removable 527 * flag are jumper-selectable. 528 */ 529 { T_ANY, SIP_MEDIA_REMOVABLE|SIP_MEDIA_FIXED, "MaxOptix", 530 "Tahiti 1", "*" 531 }, 532 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 533 }, 534 { 535 /* EasyRAID E5A aka. areca ARC-6010 */ 536 { T_DIRECT, SIP_MEDIA_FIXED, "easyRAID", "*", "*" }, 537 CAM_QUIRK_NOHILUNS, /*mintags*/2, /*maxtags*/255 538 }, 539 { 540 { T_ENCLOSURE, SIP_MEDIA_FIXED, "DP", "BACKPLANE", "*" }, 541 CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 542 }, 543 { 544 { T_DIRECT, SIP_MEDIA_REMOVABLE, "Garmin", "*", "*" }, 545 CAM_QUIRK_NORPTLUNS, /*mintags*/2, /*maxtags*/255 546 }, 547 { 548 /* Default tagged queuing parameters for all devices */ 549 { 550 T_ANY, SIP_MEDIA_REMOVABLE|SIP_MEDIA_FIXED, 551 /*vendor*/"*", /*product*/"*", /*revision*/"*" 552 }, 553 /*quirks*/0, /*mintags*/2, /*maxtags*/255 554 }, 555 }; 556 557 static const int scsi_quirk_table_size = 558 sizeof(scsi_quirk_table) / sizeof(*scsi_quirk_table); 559 560 static cam_status proberegister(struct cam_periph *periph, 561 void *arg); 562 static void probeschedule(struct cam_periph *probe_periph); 563 static void probestart(struct cam_periph *periph, union ccb *start_ccb); 564 static void proberequestdefaultnegotiation(struct cam_periph *periph); 565 static int proberequestbackoff(struct cam_periph *periph, 566 struct cam_ed *device); 567 static void probedone(struct cam_periph *periph, union ccb *done_ccb); 568 static void probe_purge_old(struct cam_path *path, 569 struct scsi_report_luns_data *new, 570 probe_flags flags); 571 static void probecleanup(struct cam_periph *periph); 572 static void scsi_find_quirk(struct cam_ed *device); 573 static void scsi_scan_bus(struct cam_periph *periph, union ccb *ccb); 574 static void scsi_scan_lun(struct cam_periph *periph, 575 struct cam_path *path, cam_flags flags, 576 union ccb *ccb); 577 static void xptscandone(struct cam_periph *periph, union ccb *done_ccb); 578 static struct cam_ed * 579 scsi_alloc_device(struct cam_eb *bus, struct cam_et *target, 580 lun_id_t lun_id); 581 static void scsi_devise_transport(struct cam_path *path); 582 static void scsi_set_transfer_settings(struct ccb_trans_settings *cts, 583 struct cam_path *path, 584 int async_update); 585 static void scsi_toggle_tags(struct cam_path *path); 586 static void scsi_dev_async(u_int32_t async_code, 587 struct cam_eb *bus, 588 struct cam_et *target, 589 struct cam_ed *device, 590 void *async_arg); 591 static void scsi_action(union ccb *start_ccb); 592 static void scsi_announce_periph(struct cam_periph *periph); 593 594 static struct xpt_xport scsi_xport = { 595 .alloc_device = scsi_alloc_device, 596 .action = scsi_action, 597 .async = scsi_dev_async, 598 .announce = scsi_announce_periph, 599 }; 600 601 struct xpt_xport * 602 scsi_get_xport(void) 603 { 604 return (&scsi_xport); 605 } 606 607 static void 608 probe_periph_init() 609 { 610 } 611 612 static cam_status 613 proberegister(struct cam_periph *periph, void *arg) 614 { 615 union ccb *request_ccb; /* CCB representing the probe request */ 616 cam_status status; 617 probe_softc *softc; 618 619 request_ccb = (union ccb *)arg; 620 if (request_ccb == NULL) { 621 printf("proberegister: no probe CCB, " 622 "can't register device\n"); 623 return(CAM_REQ_CMP_ERR); 624 } 625 626 softc = (probe_softc *)malloc(sizeof(*softc), M_CAMXPT, M_NOWAIT); 627 628 if (softc == NULL) { 629 printf("proberegister: Unable to probe new device. " 630 "Unable to allocate softc\n"); 631 return(CAM_REQ_CMP_ERR); 632 } 633 TAILQ_INIT(&softc->request_ccbs); 634 TAILQ_INSERT_TAIL(&softc->request_ccbs, &request_ccb->ccb_h, 635 periph_links.tqe); 636 softc->flags = 0; 637 periph->softc = softc; 638 softc->periph = periph; 639 softc->action = PROBE_INVALID; 640 status = cam_periph_acquire(periph); 641 if (status != CAM_REQ_CMP) { 642 return (status); 643 } 644 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, ("Probe started\n")); 645 scsi_devise_transport(periph->path); 646 647 /* 648 * Ensure we've waited at least a bus settle 649 * delay before attempting to probe the device. 650 * For HBAs that don't do bus resets, this won't make a difference. 651 */ 652 cam_periph_freeze_after_event(periph, &periph->path->bus->last_reset, 653 scsi_delay); 654 probeschedule(periph); 655 return(CAM_REQ_CMP); 656 } 657 658 static void 659 probeschedule(struct cam_periph *periph) 660 { 661 struct ccb_pathinq cpi; 662 union ccb *ccb; 663 probe_softc *softc; 664 665 softc = (probe_softc *)periph->softc; 666 ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs); 667 668 xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NONE); 669 cpi.ccb_h.func_code = XPT_PATH_INQ; 670 xpt_action((union ccb *)&cpi); 671 672 /* 673 * If a device has gone away and another device, or the same one, 674 * is back in the same place, it should have a unit attention 675 * condition pending. It will not report the unit attention in 676 * response to an inquiry, which may leave invalid transfer 677 * negotiations in effect. The TUR will reveal the unit attention 678 * condition. Only send the TUR for lun 0, since some devices 679 * will get confused by commands other than inquiry to non-existent 680 * luns. If you think a device has gone away start your scan from 681 * lun 0. This will insure that any bogus transfer settings are 682 * invalidated. 683 * 684 * If we haven't seen the device before and the controller supports 685 * some kind of transfer negotiation, negotiate with the first 686 * sent command if no bus reset was performed at startup. This 687 * ensures that the device is not confused by transfer negotiation 688 * settings left over by loader or BIOS action. 689 */ 690 if (((ccb->ccb_h.path->device->flags & CAM_DEV_UNCONFIGURED) == 0) 691 && (ccb->ccb_h.target_lun == 0)) { 692 PROBE_SET_ACTION(softc, PROBE_TUR); 693 } else if ((cpi.hba_inquiry & (PI_WIDE_32|PI_WIDE_16|PI_SDTR_ABLE)) != 0 694 && (cpi.hba_misc & PIM_NOBUSRESET) != 0) { 695 proberequestdefaultnegotiation(periph); 696 PROBE_SET_ACTION(softc, PROBE_INQUIRY); 697 } else { 698 PROBE_SET_ACTION(softc, PROBE_INQUIRY); 699 } 700 701 if (ccb->crcn.flags & CAM_EXPECT_INQ_CHANGE) 702 softc->flags |= PROBE_NO_ANNOUNCE; 703 else 704 softc->flags &= ~PROBE_NO_ANNOUNCE; 705 706 if (cpi.hba_misc & PIM_EXTLUNS) 707 softc->flags |= PROBE_EXTLUN; 708 else 709 softc->flags &= ~PROBE_EXTLUN; 710 711 xpt_schedule(periph, CAM_PRIORITY_XPT); 712 } 713 714 static void 715 probestart(struct cam_periph *periph, union ccb *start_ccb) 716 { 717 /* Probe the device that our peripheral driver points to */ 718 struct ccb_scsiio *csio; 719 probe_softc *softc; 720 721 CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probestart\n")); 722 723 softc = (probe_softc *)periph->softc; 724 csio = &start_ccb->csio; 725 again: 726 727 switch (softc->action) { 728 case PROBE_TUR: 729 case PROBE_TUR_FOR_NEGOTIATION: 730 case PROBE_DV_EXIT: 731 { 732 scsi_test_unit_ready(csio, 733 /*retries*/4, 734 probedone, 735 MSG_SIMPLE_Q_TAG, 736 SSD_FULL_SIZE, 737 /*timeout*/60000); 738 break; 739 } 740 case PROBE_INQUIRY: 741 case PROBE_FULL_INQUIRY: 742 case PROBE_INQUIRY_BASIC_DV1: 743 case PROBE_INQUIRY_BASIC_DV2: 744 { 745 u_int inquiry_len; 746 struct scsi_inquiry_data *inq_buf; 747 748 inq_buf = &periph->path->device->inq_data; 749 750 /* 751 * If the device is currently configured, we calculate an 752 * MD5 checksum of the inquiry data, and if the serial number 753 * length is greater than 0, add the serial number data 754 * into the checksum as well. Once the inquiry and the 755 * serial number check finish, we attempt to figure out 756 * whether we still have the same device. 757 */ 758 if (((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0) 759 && ((softc->flags & PROBE_INQUIRY_CKSUM) == 0)) { 760 761 MD5Init(&softc->context); 762 MD5Update(&softc->context, (unsigned char *)inq_buf, 763 sizeof(struct scsi_inquiry_data)); 764 softc->flags |= PROBE_INQUIRY_CKSUM; 765 if (periph->path->device->serial_num_len > 0) { 766 MD5Update(&softc->context, 767 periph->path->device->serial_num, 768 periph->path->device->serial_num_len); 769 softc->flags |= PROBE_SERIAL_CKSUM; 770 } 771 MD5Final(softc->digest, &softc->context); 772 } 773 774 if (softc->action == PROBE_INQUIRY) 775 inquiry_len = SHORT_INQUIRY_LENGTH; 776 else 777 inquiry_len = SID_ADDITIONAL_LENGTH(inq_buf); 778 779 /* 780 * Some parallel SCSI devices fail to send an 781 * ignore wide residue message when dealing with 782 * odd length inquiry requests. Round up to be 783 * safe. 784 */ 785 inquiry_len = roundup2(inquiry_len, 2); 786 787 if (softc->action == PROBE_INQUIRY_BASIC_DV1 788 || softc->action == PROBE_INQUIRY_BASIC_DV2) { 789 inq_buf = malloc(inquiry_len, M_CAMXPT, M_NOWAIT); 790 } 791 if (inq_buf == NULL) { 792 xpt_print(periph->path, "malloc failure- skipping Basic" 793 "Domain Validation\n"); 794 PROBE_SET_ACTION(softc, PROBE_DV_EXIT); 795 scsi_test_unit_ready(csio, 796 /*retries*/4, 797 probedone, 798 MSG_SIMPLE_Q_TAG, 799 SSD_FULL_SIZE, 800 /*timeout*/60000); 801 break; 802 } 803 scsi_inquiry(csio, 804 /*retries*/4, 805 probedone, 806 MSG_SIMPLE_Q_TAG, 807 (u_int8_t *)inq_buf, 808 inquiry_len, 809 /*evpd*/FALSE, 810 /*page_code*/0, 811 SSD_MIN_SIZE, 812 /*timeout*/60 * 1000); 813 break; 814 } 815 case PROBE_REPORT_LUNS: 816 { 817 void *rp; 818 819 rp = malloc(periph->path->target->rpl_size, 820 M_CAMXPT, M_NOWAIT | M_ZERO); 821 if (rp == NULL) { 822 struct scsi_inquiry_data *inq_buf; 823 inq_buf = &periph->path->device->inq_data; 824 xpt_print(periph->path, 825 "Unable to alloc report luns storage\n"); 826 if (INQ_DATA_TQ_ENABLED(inq_buf)) 827 PROBE_SET_ACTION(softc, PROBE_MODE_SENSE); 828 else 829 PROBE_SET_ACTION(softc, 830 PROBE_SUPPORTED_VPD_LIST); 831 goto again; 832 } 833 scsi_report_luns(csio, 5, probedone, MSG_SIMPLE_Q_TAG, 834 RPL_REPORT_DEFAULT, rp, periph->path->target->rpl_size, 835 SSD_FULL_SIZE, 60000); break; 836 break; 837 } 838 case PROBE_MODE_SENSE: 839 { 840 void *mode_buf; 841 int mode_buf_len; 842 843 mode_buf_len = sizeof(struct scsi_mode_header_6) 844 + sizeof(struct scsi_mode_blk_desc) 845 + sizeof(struct scsi_control_page); 846 mode_buf = malloc(mode_buf_len, M_CAMXPT, M_NOWAIT); 847 if (mode_buf != NULL) { 848 scsi_mode_sense(csio, 849 /*retries*/4, 850 probedone, 851 MSG_SIMPLE_Q_TAG, 852 /*dbd*/FALSE, 853 SMS_PAGE_CTRL_CURRENT, 854 SMS_CONTROL_MODE_PAGE, 855 mode_buf, 856 mode_buf_len, 857 SSD_FULL_SIZE, 858 /*timeout*/60000); 859 break; 860 } 861 xpt_print(periph->path, "Unable to mode sense control page - " 862 "malloc failure\n"); 863 PROBE_SET_ACTION(softc, PROBE_SUPPORTED_VPD_LIST); 864 } 865 /* FALLTHROUGH */ 866 case PROBE_SUPPORTED_VPD_LIST: 867 { 868 struct scsi_vpd_supported_page_list *vpd_list; 869 struct cam_ed *device; 870 871 vpd_list = NULL; 872 device = periph->path->device; 873 874 if ((SCSI_QUIRK(device)->quirks & CAM_QUIRK_NOVPDS) == 0) 875 vpd_list = malloc(sizeof(*vpd_list), M_CAMXPT, 876 M_NOWAIT | M_ZERO); 877 878 if (vpd_list != NULL) { 879 scsi_inquiry(csio, 880 /*retries*/4, 881 probedone, 882 MSG_SIMPLE_Q_TAG, 883 (u_int8_t *)vpd_list, 884 sizeof(*vpd_list), 885 /*evpd*/TRUE, 886 SVPD_SUPPORTED_PAGE_LIST, 887 SSD_MIN_SIZE, 888 /*timeout*/60 * 1000); 889 break; 890 } 891 done: 892 /* 893 * We'll have to do without, let our probedone 894 * routine finish up for us. 895 */ 896 start_ccb->csio.data_ptr = NULL; 897 cam_freeze_devq(periph->path); 898 cam_periph_doacquire(periph); 899 probedone(periph, start_ccb); 900 return; 901 } 902 case PROBE_DEVICE_ID: 903 { 904 struct scsi_vpd_device_id *devid; 905 906 devid = NULL; 907 if (scsi_vpd_supported_page(periph, SVPD_DEVICE_ID)) 908 devid = malloc(SVPD_DEVICE_ID_MAX_SIZE, M_CAMXPT, 909 M_NOWAIT | M_ZERO); 910 911 if (devid != NULL) { 912 scsi_inquiry(csio, 913 /*retries*/4, 914 probedone, 915 MSG_SIMPLE_Q_TAG, 916 (uint8_t *)devid, 917 SVPD_DEVICE_ID_MAX_SIZE, 918 /*evpd*/TRUE, 919 SVPD_DEVICE_ID, 920 SSD_MIN_SIZE, 921 /*timeout*/60 * 1000); 922 break; 923 } 924 goto done; 925 } 926 case PROBE_SERIAL_NUM: 927 { 928 struct scsi_vpd_unit_serial_number *serial_buf; 929 struct cam_ed* device; 930 931 serial_buf = NULL; 932 device = periph->path->device; 933 if (device->serial_num != NULL) { 934 free(device->serial_num, M_CAMXPT); 935 device->serial_num = NULL; 936 device->serial_num_len = 0; 937 } 938 939 if (scsi_vpd_supported_page(periph, SVPD_UNIT_SERIAL_NUMBER)) 940 serial_buf = (struct scsi_vpd_unit_serial_number *) 941 malloc(sizeof(*serial_buf), M_CAMXPT, 942 M_NOWAIT|M_ZERO); 943 944 if (serial_buf != NULL) { 945 scsi_inquiry(csio, 946 /*retries*/4, 947 probedone, 948 MSG_SIMPLE_Q_TAG, 949 (u_int8_t *)serial_buf, 950 sizeof(*serial_buf), 951 /*evpd*/TRUE, 952 SVPD_UNIT_SERIAL_NUMBER, 953 SSD_MIN_SIZE, 954 /*timeout*/60 * 1000); 955 break; 956 } 957 goto done; 958 } 959 default: 960 panic("probestart: invalid action state 0x%x\n", softc->action); 961 } 962 start_ccb->ccb_h.flags |= CAM_DEV_QFREEZE; 963 cam_periph_doacquire(periph); 964 xpt_action(start_ccb); 965 } 966 967 static void 968 proberequestdefaultnegotiation(struct cam_periph *periph) 969 { 970 struct ccb_trans_settings cts; 971 972 xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE); 973 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 974 cts.type = CTS_TYPE_USER_SETTINGS; 975 xpt_action((union ccb *)&cts); 976 if (cam_ccb_status((union ccb *)&cts) != CAM_REQ_CMP) { 977 return; 978 } 979 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 980 cts.type = CTS_TYPE_CURRENT_SETTINGS; 981 xpt_action((union ccb *)&cts); 982 } 983 984 /* 985 * Backoff Negotiation Code- only pertinent for SPI devices. 986 */ 987 static int 988 proberequestbackoff(struct cam_periph *periph, struct cam_ed *device) 989 { 990 struct ccb_trans_settings cts; 991 struct ccb_trans_settings_spi *spi; 992 993 memset(&cts, 0, sizeof (cts)); 994 xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE); 995 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 996 cts.type = CTS_TYPE_CURRENT_SETTINGS; 997 xpt_action((union ccb *)&cts); 998 if (cam_ccb_status((union ccb *)&cts) != CAM_REQ_CMP) { 999 if (bootverbose) { 1000 xpt_print(periph->path, 1001 "failed to get current device settings\n"); 1002 } 1003 return (0); 1004 } 1005 if (cts.transport != XPORT_SPI) { 1006 if (bootverbose) { 1007 xpt_print(periph->path, "not SPI transport\n"); 1008 } 1009 return (0); 1010 } 1011 spi = &cts.xport_specific.spi; 1012 1013 /* 1014 * We cannot renegotiate sync rate if we don't have one. 1015 */ 1016 if ((spi->valid & CTS_SPI_VALID_SYNC_RATE) == 0) { 1017 if (bootverbose) { 1018 xpt_print(periph->path, "no sync rate known\n"); 1019 } 1020 return (0); 1021 } 1022 1023 /* 1024 * We'll assert that we don't have to touch PPR options- the 1025 * SIM will see what we do with period and offset and adjust 1026 * the PPR options as appropriate. 1027 */ 1028 1029 /* 1030 * A sync rate with unknown or zero offset is nonsensical. 1031 * A sync period of zero means Async. 1032 */ 1033 if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) == 0 1034 || spi->sync_offset == 0 || spi->sync_period == 0) { 1035 if (bootverbose) { 1036 xpt_print(periph->path, "no sync rate available\n"); 1037 } 1038 return (0); 1039 } 1040 1041 if (device->flags & CAM_DEV_DV_HIT_BOTTOM) { 1042 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1043 ("hit async: giving up on DV\n")); 1044 return (0); 1045 } 1046 1047 1048 /* 1049 * Jump sync_period up by one, but stop at 5MHz and fall back to Async. 1050 * We don't try to remember 'last' settings to see if the SIM actually 1051 * gets into the speed we want to set. We check on the SIM telling 1052 * us that a requested speed is bad, but otherwise don't try and 1053 * check the speed due to the asynchronous and handshake nature 1054 * of speed setting. 1055 */ 1056 spi->valid = CTS_SPI_VALID_SYNC_RATE | CTS_SPI_VALID_SYNC_OFFSET; 1057 for (;;) { 1058 spi->sync_period++; 1059 if (spi->sync_period >= 0xf) { 1060 spi->sync_period = 0; 1061 spi->sync_offset = 0; 1062 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1063 ("setting to async for DV\n")); 1064 /* 1065 * Once we hit async, we don't want to try 1066 * any more settings. 1067 */ 1068 device->flags |= CAM_DEV_DV_HIT_BOTTOM; 1069 } else if (bootverbose) { 1070 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1071 ("DV: period 0x%x\n", spi->sync_period)); 1072 printf("setting period to 0x%x\n", spi->sync_period); 1073 } 1074 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 1075 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1076 xpt_action((union ccb *)&cts); 1077 if (cam_ccb_status((union ccb *)&cts) != CAM_REQ_CMP) { 1078 break; 1079 } 1080 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1081 ("DV: failed to set period 0x%x\n", spi->sync_period)); 1082 if (spi->sync_period == 0) { 1083 return (0); 1084 } 1085 } 1086 return (1); 1087 } 1088 1089 #define CCB_COMPLETED_OK(ccb) (((ccb).status & CAM_STATUS_MASK) == CAM_REQ_CMP) 1090 1091 static void 1092 probedone(struct cam_periph *periph, union ccb *done_ccb) 1093 { 1094 probe_softc *softc; 1095 struct cam_path *path; 1096 u_int32_t priority; 1097 1098 CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("probedone\n")); 1099 1100 softc = (probe_softc *)periph->softc; 1101 path = done_ccb->ccb_h.path; 1102 priority = done_ccb->ccb_h.pinfo.priority; 1103 1104 switch (softc->action) { 1105 case PROBE_TUR: 1106 { 1107 if (cam_ccb_status(done_ccb) != CAM_REQ_CMP) { 1108 1109 if (cam_periph_error(done_ccb, 0, 1110 SF_NO_PRINT, NULL) == ERESTART) { 1111 outr: 1112 /* Drop freeze taken due to CAM_DEV_QFREEZE */ 1113 cam_release_devq(path, 0, 0, 0, FALSE); 1114 return; 1115 } 1116 else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1117 /* Don't wedge the queue */ 1118 xpt_release_devq(done_ccb->ccb_h.path, 1119 /*count*/1, 1120 /*run_queue*/TRUE); 1121 } 1122 PROBE_SET_ACTION(softc, PROBE_INQUIRY); 1123 xpt_release_ccb(done_ccb); 1124 xpt_schedule(periph, priority); 1125 out: 1126 /* Drop freeze taken due to CAM_DEV_QFREEZE and release. */ 1127 cam_release_devq(path, 0, 0, 0, FALSE); 1128 cam_periph_release_locked(periph); 1129 return; 1130 } 1131 case PROBE_INQUIRY: 1132 case PROBE_FULL_INQUIRY: 1133 { 1134 if (cam_ccb_status(done_ccb) == CAM_REQ_CMP) { 1135 struct scsi_inquiry_data *inq_buf; 1136 u_int8_t periph_qual; 1137 1138 path->device->flags |= CAM_DEV_INQUIRY_DATA_VALID; 1139 scsi_find_quirk(path->device); 1140 inq_buf = &path->device->inq_data; 1141 1142 periph_qual = SID_QUAL(inq_buf); 1143 1144 if (periph_qual == SID_QUAL_LU_CONNECTED) { 1145 u_int8_t len; 1146 1147 /* 1148 * We conservatively request only 1149 * SHORT_INQUIRY_LEN bytes of inquiry 1150 * information during our first try 1151 * at sending an INQUIRY. If the device 1152 * has more information to give, 1153 * perform a second request specifying 1154 * the amount of information the device 1155 * is willing to give. 1156 */ 1157 len = inq_buf->additional_length 1158 + offsetof(struct scsi_inquiry_data, 1159 additional_length) + 1; 1160 if (softc->action == PROBE_INQUIRY 1161 && len > SHORT_INQUIRY_LENGTH) { 1162 PROBE_SET_ACTION(softc, PROBE_FULL_INQUIRY); 1163 xpt_release_ccb(done_ccb); 1164 xpt_schedule(periph, priority); 1165 goto out; 1166 } 1167 1168 scsi_devise_transport(path); 1169 1170 if (path->device->lun_id == 0 && 1171 SID_ANSI_REV(inq_buf) > SCSI_REV_SPC2 && 1172 (SCSI_QUIRK(path->device)->quirks & 1173 CAM_QUIRK_NORPTLUNS) == 0) { 1174 PROBE_SET_ACTION(softc, 1175 PROBE_REPORT_LUNS); 1176 /* 1177 * Start with room for *one* lun. 1178 */ 1179 periph->path->target->rpl_size = 16; 1180 } else if (INQ_DATA_TQ_ENABLED(inq_buf)) 1181 PROBE_SET_ACTION(softc, 1182 PROBE_MODE_SENSE); 1183 else 1184 PROBE_SET_ACTION(softc, 1185 PROBE_SUPPORTED_VPD_LIST); 1186 1187 if (path->device->flags & CAM_DEV_UNCONFIGURED) { 1188 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1189 xpt_acquire_device(path->device); 1190 } 1191 xpt_release_ccb(done_ccb); 1192 xpt_schedule(periph, priority); 1193 goto out; 1194 } else if (path->device->lun_id == 0 && 1195 SID_ANSI_REV(inq_buf) >= SCSI_REV_SPC2 && 1196 (SCSI_QUIRK(path->device)->quirks & 1197 CAM_QUIRK_NORPTLUNS) == 0) { 1198 PROBE_SET_ACTION(softc, PROBE_REPORT_LUNS); 1199 periph->path->target->rpl_size = 16; 1200 xpt_release_ccb(done_ccb); 1201 xpt_schedule(periph, priority); 1202 goto out; 1203 } 1204 } else if (cam_periph_error(done_ccb, 0, 1205 done_ccb->ccb_h.target_lun > 0 1206 ? SF_RETRY_UA|SF_QUIET_IR 1207 : SF_RETRY_UA, 1208 &softc->saved_ccb) == ERESTART) { 1209 goto outr; 1210 } else { 1211 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1212 /* Don't wedge the queue */ 1213 xpt_release_devq(done_ccb->ccb_h.path, 1214 /*count*/1, /*run_queue*/TRUE); 1215 } 1216 path->device->flags &= ~CAM_DEV_INQUIRY_DATA_VALID; 1217 } 1218 /* 1219 * If we get to this point, we got an error status back 1220 * from the inquiry and the error status doesn't require 1221 * automatically retrying the command. Therefore, the 1222 * inquiry failed. If we had inquiry information before 1223 * for this device, but this latest inquiry command failed, 1224 * the device has probably gone away. If this device isn't 1225 * already marked unconfigured, notify the peripheral 1226 * drivers that this device is no more. 1227 */ 1228 if ((path->device->flags & CAM_DEV_UNCONFIGURED) == 0) 1229 /* Send the async notification. */ 1230 xpt_async(AC_LOST_DEVICE, path, NULL); 1231 PROBE_SET_ACTION(softc, PROBE_INVALID); 1232 1233 xpt_release_ccb(done_ccb); 1234 break; 1235 } 1236 case PROBE_REPORT_LUNS: 1237 { 1238 struct ccb_scsiio *csio; 1239 struct scsi_report_luns_data *lp; 1240 u_int nlun, maxlun; 1241 1242 csio = &done_ccb->csio; 1243 1244 lp = (struct scsi_report_luns_data *)csio->data_ptr; 1245 nlun = scsi_4btoul(lp->length) / 8; 1246 maxlun = (csio->dxfer_len / 8) - 1; 1247 1248 if (cam_ccb_status(done_ccb) != CAM_REQ_CMP) { 1249 if (cam_periph_error(done_ccb, 0, 1250 done_ccb->ccb_h.target_lun > 0 ? 1251 SF_RETRY_UA|SF_QUIET_IR : SF_RETRY_UA, 1252 &softc->saved_ccb) == ERESTART) { 1253 goto outr; 1254 } 1255 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1256 xpt_release_devq(done_ccb->ccb_h.path, 1, 1257 TRUE); 1258 } 1259 free(lp, M_CAMXPT); 1260 lp = NULL; 1261 } else if (nlun > maxlun) { 1262 /* 1263 * Reallocate and retry to cover all luns 1264 */ 1265 CAM_DEBUG(path, CAM_DEBUG_PROBE, 1266 ("Probe: reallocating REPORT_LUNS for %u luns\n", 1267 nlun)); 1268 free(lp, M_CAMXPT); 1269 path->target->rpl_size = (nlun << 3) + 8; 1270 xpt_release_ccb(done_ccb); 1271 xpt_schedule(periph, priority); 1272 goto out; 1273 } else if (nlun == 0) { 1274 /* 1275 * If there don't appear to be any luns, bail. 1276 */ 1277 free(lp, M_CAMXPT); 1278 lp = NULL; 1279 } else { 1280 lun_id_t lun; 1281 int idx; 1282 1283 CAM_DEBUG(path, CAM_DEBUG_PROBE, 1284 ("Probe: %u lun(s) reported\n", nlun)); 1285 1286 CAM_GET_LUN(lp, 0, lun); 1287 /* 1288 * If the first lun is not lun 0, then either there 1289 * is no lun 0 in the list, or the list is unsorted. 1290 */ 1291 if (lun != 0) { 1292 for (idx = 0; idx < nlun; idx++) { 1293 CAM_GET_LUN(lp, idx, lun); 1294 if (lun == 0) { 1295 break; 1296 } 1297 } 1298 if (idx != nlun) { 1299 uint8_t tlun[8]; 1300 memcpy(tlun, 1301 lp->luns[0].lundata, 8); 1302 memcpy(lp->luns[0].lundata, 1303 lp->luns[idx].lundata, 8); 1304 memcpy(lp->luns[idx].lundata, 1305 tlun, 8); 1306 CAM_DEBUG(path, CAM_DEBUG_PROBE, 1307 ("lun 0 in position %u\n", idx)); 1308 } 1309 } 1310 /* 1311 * If we have an old lun list, We can either 1312 * retest luns that appear to have been dropped, 1313 * or just nuke them. We'll opt for the latter. 1314 * This function will also install the new list 1315 * in the target structure. 1316 */ 1317 probe_purge_old(path, lp, softc->flags); 1318 lp = NULL; 1319 } 1320 if (path->device->flags & CAM_DEV_INQUIRY_DATA_VALID && 1321 SID_QUAL(&path->device->inq_data) == SID_QUAL_LU_CONNECTED) { 1322 struct scsi_inquiry_data *inq_buf; 1323 inq_buf = &path->device->inq_data; 1324 if (INQ_DATA_TQ_ENABLED(inq_buf)) 1325 PROBE_SET_ACTION(softc, PROBE_MODE_SENSE); 1326 else 1327 PROBE_SET_ACTION(softc, 1328 PROBE_SUPPORTED_VPD_LIST); 1329 xpt_release_ccb(done_ccb); 1330 xpt_schedule(periph, priority); 1331 goto out; 1332 } 1333 if (lp) { 1334 free(lp, M_CAMXPT); 1335 } 1336 PROBE_SET_ACTION(softc, PROBE_INVALID); 1337 xpt_release_ccb(done_ccb); 1338 break; 1339 } 1340 case PROBE_MODE_SENSE: 1341 { 1342 struct ccb_scsiio *csio; 1343 struct scsi_mode_header_6 *mode_hdr; 1344 1345 csio = &done_ccb->csio; 1346 mode_hdr = (struct scsi_mode_header_6 *)csio->data_ptr; 1347 if (cam_ccb_status(done_ccb) == CAM_REQ_CMP) { 1348 struct scsi_control_page *page; 1349 u_int8_t *offset; 1350 1351 offset = ((u_int8_t *)&mode_hdr[1]) 1352 + mode_hdr->blk_desc_len; 1353 page = (struct scsi_control_page *)offset; 1354 path->device->queue_flags = page->queue_flags; 1355 } else if (cam_periph_error(done_ccb, 0, 1356 SF_RETRY_UA|SF_NO_PRINT, 1357 &softc->saved_ccb) == ERESTART) { 1358 goto outr; 1359 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1360 /* Don't wedge the queue */ 1361 xpt_release_devq(done_ccb->ccb_h.path, 1362 /*count*/1, /*run_queue*/TRUE); 1363 } 1364 xpt_release_ccb(done_ccb); 1365 free(mode_hdr, M_CAMXPT); 1366 PROBE_SET_ACTION(softc, PROBE_SUPPORTED_VPD_LIST); 1367 xpt_schedule(periph, priority); 1368 goto out; 1369 } 1370 case PROBE_SUPPORTED_VPD_LIST: 1371 { 1372 struct ccb_scsiio *csio; 1373 struct scsi_vpd_supported_page_list *page_list; 1374 1375 csio = &done_ccb->csio; 1376 page_list = 1377 (struct scsi_vpd_supported_page_list *)csio->data_ptr; 1378 1379 if (path->device->supported_vpds != NULL) { 1380 free(path->device->supported_vpds, M_CAMXPT); 1381 path->device->supported_vpds = NULL; 1382 path->device->supported_vpds_len = 0; 1383 } 1384 1385 if (page_list == NULL) { 1386 /* 1387 * Don't process the command as it was never sent 1388 */ 1389 } else if (CCB_COMPLETED_OK(csio->ccb_h)) { 1390 /* Got vpd list */ 1391 path->device->supported_vpds_len = page_list->length + 1392 SVPD_SUPPORTED_PAGES_HDR_LEN; 1393 path->device->supported_vpds = (uint8_t *)page_list; 1394 xpt_release_ccb(done_ccb); 1395 PROBE_SET_ACTION(softc, PROBE_DEVICE_ID); 1396 xpt_schedule(periph, priority); 1397 goto out; 1398 } else if (cam_periph_error(done_ccb, 0, 1399 SF_RETRY_UA|SF_NO_PRINT, 1400 &softc->saved_ccb) == ERESTART) { 1401 goto outr; 1402 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1403 /* Don't wedge the queue */ 1404 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 1405 /*run_queue*/TRUE); 1406 } 1407 1408 if (page_list) 1409 free(page_list, M_CAMXPT); 1410 /* No VPDs available, skip to device check. */ 1411 csio->data_ptr = NULL; 1412 goto probe_device_check; 1413 } 1414 case PROBE_DEVICE_ID: 1415 { 1416 struct scsi_vpd_device_id *devid; 1417 struct ccb_scsiio *csio; 1418 uint32_t length = 0; 1419 1420 csio = &done_ccb->csio; 1421 devid = (struct scsi_vpd_device_id *)csio->data_ptr; 1422 1423 /* Clean up from previous instance of this device */ 1424 if (path->device->device_id != NULL) { 1425 path->device->device_id_len = 0; 1426 free(path->device->device_id, M_CAMXPT); 1427 path->device->device_id = NULL; 1428 } 1429 1430 if (devid == NULL) { 1431 /* Don't process the command as it was never sent */ 1432 } else if (CCB_COMPLETED_OK(csio->ccb_h)) { 1433 length = scsi_2btoul(devid->length); 1434 if (length != 0) { 1435 /* 1436 * NB: device_id_len is actual response 1437 * size, not buffer size. 1438 */ 1439 path->device->device_id_len = length + 1440 SVPD_DEVICE_ID_HDR_LEN; 1441 path->device->device_id = (uint8_t *)devid; 1442 } 1443 } else if (cam_periph_error(done_ccb, 0, 1444 SF_RETRY_UA, 1445 &softc->saved_ccb) == ERESTART) { 1446 goto outr; 1447 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1448 /* Don't wedge the queue */ 1449 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 1450 /*run_queue*/TRUE); 1451 } 1452 1453 /* Free the device id space if we don't use it */ 1454 if (devid && length == 0) 1455 free(devid, M_CAMXPT); 1456 xpt_release_ccb(done_ccb); 1457 PROBE_SET_ACTION(softc, PROBE_SERIAL_NUM); 1458 xpt_schedule(periph, priority); 1459 goto out; 1460 } 1461 1462 probe_device_check: 1463 case PROBE_SERIAL_NUM: 1464 { 1465 struct ccb_scsiio *csio; 1466 struct scsi_vpd_unit_serial_number *serial_buf; 1467 u_int32_t priority; 1468 int changed; 1469 int have_serialnum; 1470 1471 changed = 1; 1472 have_serialnum = 0; 1473 csio = &done_ccb->csio; 1474 priority = done_ccb->ccb_h.pinfo.priority; 1475 serial_buf = 1476 (struct scsi_vpd_unit_serial_number *)csio->data_ptr; 1477 1478 if (serial_buf == NULL) { 1479 /* 1480 * Don't process the command as it was never sent 1481 */ 1482 } else if (cam_ccb_status(done_ccb) == CAM_REQ_CMP 1483 && (serial_buf->length > 0)) { 1484 1485 have_serialnum = 1; 1486 path->device->serial_num = 1487 (u_int8_t *)malloc((serial_buf->length + 1), 1488 M_CAMXPT, M_NOWAIT); 1489 if (path->device->serial_num != NULL) { 1490 memcpy(path->device->serial_num, 1491 serial_buf->serial_num, 1492 serial_buf->length); 1493 path->device->serial_num_len = 1494 serial_buf->length; 1495 path->device->serial_num[serial_buf->length] 1496 = '\0'; 1497 } 1498 } else if (cam_periph_error(done_ccb, 0, 1499 SF_RETRY_UA|SF_NO_PRINT, 1500 &softc->saved_ccb) == ERESTART) { 1501 goto outr; 1502 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1503 /* Don't wedge the queue */ 1504 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 1505 /*run_queue*/TRUE); 1506 } 1507 1508 /* 1509 * Let's see if we have seen this device before. 1510 */ 1511 if ((softc->flags & PROBE_INQUIRY_CKSUM) != 0) { 1512 MD5_CTX context; 1513 u_int8_t digest[16]; 1514 1515 MD5Init(&context); 1516 1517 MD5Update(&context, 1518 (unsigned char *)&path->device->inq_data, 1519 sizeof(struct scsi_inquiry_data)); 1520 1521 if (have_serialnum) 1522 MD5Update(&context, serial_buf->serial_num, 1523 serial_buf->length); 1524 1525 MD5Final(digest, &context); 1526 if (bcmp(softc->digest, digest, 16) == 0) 1527 changed = 0; 1528 1529 /* 1530 * XXX Do we need to do a TUR in order to ensure 1531 * that the device really hasn't changed??? 1532 */ 1533 if ((changed != 0) 1534 && ((softc->flags & PROBE_NO_ANNOUNCE) == 0)) 1535 xpt_async(AC_LOST_DEVICE, path, NULL); 1536 } 1537 if (serial_buf != NULL) 1538 free(serial_buf, M_CAMXPT); 1539 1540 if (changed != 0) { 1541 /* 1542 * Now that we have all the necessary 1543 * information to safely perform transfer 1544 * negotiations... Controllers don't perform 1545 * any negotiation or tagged queuing until 1546 * after the first XPT_SET_TRAN_SETTINGS ccb is 1547 * received. So, on a new device, just retrieve 1548 * the user settings, and set them as the current 1549 * settings to set the device up. 1550 */ 1551 proberequestdefaultnegotiation(periph); 1552 xpt_release_ccb(done_ccb); 1553 1554 /* 1555 * Perform a TUR to allow the controller to 1556 * perform any necessary transfer negotiation. 1557 */ 1558 PROBE_SET_ACTION(softc, PROBE_TUR_FOR_NEGOTIATION); 1559 xpt_schedule(periph, priority); 1560 goto out; 1561 } 1562 xpt_release_ccb(done_ccb); 1563 break; 1564 } 1565 case PROBE_TUR_FOR_NEGOTIATION: 1566 case PROBE_DV_EXIT: 1567 if (cam_ccb_status(done_ccb) != CAM_REQ_CMP) { 1568 cam_periph_error(done_ccb, 0, 1569 SF_NO_PRINT | SF_NO_RECOVERY | SF_NO_RETRY, NULL); 1570 } 1571 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1572 /* Don't wedge the queue */ 1573 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 1574 /*run_queue*/TRUE); 1575 } 1576 /* 1577 * Do Domain Validation for lun 0 on devices that claim 1578 * to support Synchronous Transfer modes. 1579 */ 1580 if (softc->action == PROBE_TUR_FOR_NEGOTIATION 1581 && done_ccb->ccb_h.target_lun == 0 1582 && (path->device->inq_data.flags & SID_Sync) != 0 1583 && (path->device->flags & CAM_DEV_IN_DV) == 0) { 1584 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1585 ("Begin Domain Validation\n")); 1586 path->device->flags |= CAM_DEV_IN_DV; 1587 xpt_release_ccb(done_ccb); 1588 PROBE_SET_ACTION(softc, PROBE_INQUIRY_BASIC_DV1); 1589 xpt_schedule(periph, priority); 1590 goto out; 1591 } 1592 if (softc->action == PROBE_DV_EXIT) { 1593 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1594 ("Leave Domain Validation\n")); 1595 } 1596 if (path->device->flags & CAM_DEV_UNCONFIGURED) { 1597 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1598 xpt_acquire_device(path->device); 1599 } 1600 path->device->flags &= 1601 ~(CAM_DEV_IN_DV|CAM_DEV_DV_HIT_BOTTOM); 1602 if ((softc->flags & PROBE_NO_ANNOUNCE) == 0) { 1603 /* Inform the XPT that a new device has been found */ 1604 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1605 xpt_action(done_ccb); 1606 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, 1607 done_ccb); 1608 } 1609 PROBE_SET_ACTION(softc, PROBE_DONE); 1610 xpt_release_ccb(done_ccb); 1611 break; 1612 case PROBE_INQUIRY_BASIC_DV1: 1613 case PROBE_INQUIRY_BASIC_DV2: 1614 { 1615 struct scsi_inquiry_data *nbuf; 1616 struct ccb_scsiio *csio; 1617 1618 if (cam_ccb_status(done_ccb) != CAM_REQ_CMP) { 1619 cam_periph_error(done_ccb, 0, 1620 SF_NO_PRINT | SF_NO_RECOVERY | SF_NO_RETRY, NULL); 1621 } 1622 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1623 /* Don't wedge the queue */ 1624 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 1625 /*run_queue*/TRUE); 1626 } 1627 csio = &done_ccb->csio; 1628 nbuf = (struct scsi_inquiry_data *)csio->data_ptr; 1629 if (bcmp(nbuf, &path->device->inq_data, SHORT_INQUIRY_LENGTH)) { 1630 xpt_print(path, 1631 "inquiry data fails comparison at DV%d step\n", 1632 softc->action == PROBE_INQUIRY_BASIC_DV1 ? 1 : 2); 1633 if (proberequestbackoff(periph, path->device)) { 1634 path->device->flags &= ~CAM_DEV_IN_DV; 1635 PROBE_SET_ACTION(softc, PROBE_TUR_FOR_NEGOTIATION); 1636 } else { 1637 /* give up */ 1638 PROBE_SET_ACTION(softc, PROBE_DV_EXIT); 1639 } 1640 free(nbuf, M_CAMXPT); 1641 xpt_release_ccb(done_ccb); 1642 xpt_schedule(periph, priority); 1643 goto out; 1644 } 1645 free(nbuf, M_CAMXPT); 1646 if (softc->action == PROBE_INQUIRY_BASIC_DV1) { 1647 PROBE_SET_ACTION(softc, PROBE_INQUIRY_BASIC_DV2); 1648 xpt_release_ccb(done_ccb); 1649 xpt_schedule(periph, priority); 1650 goto out; 1651 } 1652 if (softc->action == PROBE_INQUIRY_BASIC_DV2) { 1653 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, 1654 ("Leave Domain Validation Successfully\n")); 1655 } 1656 if (path->device->flags & CAM_DEV_UNCONFIGURED) { 1657 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 1658 xpt_acquire_device(path->device); 1659 } 1660 path->device->flags &= 1661 ~(CAM_DEV_IN_DV|CAM_DEV_DV_HIT_BOTTOM); 1662 if ((softc->flags & PROBE_NO_ANNOUNCE) == 0) { 1663 /* Inform the XPT that a new device has been found */ 1664 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; 1665 xpt_action(done_ccb); 1666 xpt_async(AC_FOUND_DEVICE, done_ccb->ccb_h.path, 1667 done_ccb); 1668 } 1669 PROBE_SET_ACTION(softc, PROBE_DONE); 1670 xpt_release_ccb(done_ccb); 1671 break; 1672 } 1673 default: 1674 panic("probedone: invalid action state 0x%x\n", softc->action); 1675 } 1676 done_ccb = (union ccb *)TAILQ_FIRST(&softc->request_ccbs); 1677 TAILQ_REMOVE(&softc->request_ccbs, &done_ccb->ccb_h, periph_links.tqe); 1678 done_ccb->ccb_h.status = CAM_REQ_CMP; 1679 xpt_done(done_ccb); 1680 if (TAILQ_FIRST(&softc->request_ccbs) == NULL) { 1681 CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, ("Probe completed\n")); 1682 /* Drop freeze taken due to CAM_DEV_QFREEZE flag set. */ 1683 cam_release_devq(path, 0, 0, 0, FALSE); 1684 cam_periph_release_locked(periph); 1685 cam_periph_invalidate(periph); 1686 cam_periph_release_locked(periph); 1687 } else { 1688 probeschedule(periph); 1689 goto out; 1690 } 1691 } 1692 1693 static void 1694 probe_purge_old(struct cam_path *path, struct scsi_report_luns_data *new, 1695 probe_flags flags) 1696 { 1697 struct cam_path *tp; 1698 struct scsi_report_luns_data *old; 1699 u_int idx1, idx2, nlun_old, nlun_new; 1700 lun_id_t this_lun; 1701 u_int8_t *ol, *nl; 1702 1703 if (path->target == NULL) { 1704 return; 1705 } 1706 mtx_lock(&path->target->luns_mtx); 1707 old = path->target->luns; 1708 path->target->luns = new; 1709 mtx_unlock(&path->target->luns_mtx); 1710 if (old == NULL) 1711 return; 1712 nlun_old = scsi_4btoul(old->length) / 8; 1713 nlun_new = scsi_4btoul(new->length) / 8; 1714 1715 /* 1716 * We are not going to assume sorted lists. Deal. 1717 */ 1718 for (idx1 = 0; idx1 < nlun_old; idx1++) { 1719 ol = old->luns[idx1].lundata; 1720 for (idx2 = 0; idx2 < nlun_new; idx2++) { 1721 nl = new->luns[idx2].lundata; 1722 if (memcmp(nl, ol, 8) == 0) { 1723 break; 1724 } 1725 } 1726 if (idx2 < nlun_new) { 1727 continue; 1728 } 1729 /* 1730 * An 'old' item not in the 'new' list. 1731 * Nuke it. Except that if it is lun 0, 1732 * that would be what the probe state 1733 * machine is currently working on, 1734 * so we won't do that. 1735 */ 1736 CAM_GET_LUN(old, idx1, this_lun); 1737 if (this_lun == 0) { 1738 continue; 1739 } 1740 1741 /* 1742 * We also cannot nuke it if it is 1743 * not in a lun format we understand 1744 * and replace the LUN with a "simple" LUN 1745 * if that is all the HBA supports. 1746 */ 1747 if (!(flags & PROBE_EXTLUN)) { 1748 if (!CAM_CAN_GET_SIMPLE_LUN(old, idx1)) 1749 continue; 1750 CAM_GET_SIMPLE_LUN(old, idx1, this_lun); 1751 } 1752 1753 if (xpt_create_path(&tp, NULL, xpt_path_path_id(path), 1754 xpt_path_target_id(path), this_lun) == CAM_REQ_CMP) { 1755 xpt_async(AC_LOST_DEVICE, tp, NULL); 1756 xpt_free_path(tp); 1757 } 1758 } 1759 free(old, M_CAMXPT); 1760 } 1761 1762 static void 1763 probecleanup(struct cam_periph *periph) 1764 { 1765 free(periph->softc, M_CAMXPT); 1766 } 1767 1768 static void 1769 scsi_find_quirk(struct cam_ed *device) 1770 { 1771 struct scsi_quirk_entry *quirk; 1772 caddr_t match; 1773 1774 match = cam_quirkmatch((caddr_t)&device->inq_data, 1775 (caddr_t)scsi_quirk_table, 1776 sizeof(scsi_quirk_table) / 1777 sizeof(*scsi_quirk_table), 1778 sizeof(*scsi_quirk_table), scsi_inquiry_match); 1779 1780 if (match == NULL) 1781 panic("xpt_find_quirk: device didn't match wildcard entry!!"); 1782 1783 quirk = (struct scsi_quirk_entry *)match; 1784 device->quirk = quirk; 1785 device->mintags = quirk->mintags; 1786 device->maxtags = quirk->maxtags; 1787 } 1788 1789 static int 1790 sysctl_cam_search_luns(SYSCTL_HANDLER_ARGS) 1791 { 1792 int error, val; 1793 1794 val = cam_srch_hi; 1795 error = sysctl_handle_int(oidp, &val, 0, req); 1796 if (error != 0 || req->newptr == NULL) 1797 return (error); 1798 if (val == 0 || val == 1) { 1799 cam_srch_hi = val; 1800 return (0); 1801 } else { 1802 return (EINVAL); 1803 } 1804 } 1805 1806 typedef struct { 1807 union ccb *request_ccb; 1808 struct ccb_pathinq *cpi; 1809 int counter; 1810 int lunindex[0]; 1811 } scsi_scan_bus_info; 1812 1813 /* 1814 * To start a scan, request_ccb is an XPT_SCAN_BUS ccb. 1815 * As the scan progresses, scsi_scan_bus is used as the 1816 * callback on completion function. 1817 */ 1818 static void 1819 scsi_scan_bus(struct cam_periph *periph, union ccb *request_ccb) 1820 { 1821 struct mtx *mtx; 1822 1823 CAM_DEBUG(request_ccb->ccb_h.path, CAM_DEBUG_TRACE, 1824 ("scsi_scan_bus\n")); 1825 switch (request_ccb->ccb_h.func_code) { 1826 case XPT_SCAN_BUS: 1827 case XPT_SCAN_TGT: 1828 { 1829 scsi_scan_bus_info *scan_info; 1830 union ccb *work_ccb, *reset_ccb; 1831 struct cam_path *path; 1832 u_int i; 1833 u_int low_target, max_target; 1834 u_int initiator_id; 1835 1836 /* Find out the characteristics of the bus */ 1837 work_ccb = xpt_alloc_ccb_nowait(); 1838 if (work_ccb == NULL) { 1839 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1840 xpt_done(request_ccb); 1841 return; 1842 } 1843 xpt_setup_ccb(&work_ccb->ccb_h, request_ccb->ccb_h.path, 1844 request_ccb->ccb_h.pinfo.priority); 1845 work_ccb->ccb_h.func_code = XPT_PATH_INQ; 1846 xpt_action(work_ccb); 1847 if (work_ccb->ccb_h.status != CAM_REQ_CMP) { 1848 request_ccb->ccb_h.status = work_ccb->ccb_h.status; 1849 xpt_free_ccb(work_ccb); 1850 xpt_done(request_ccb); 1851 return; 1852 } 1853 1854 if ((work_ccb->cpi.hba_misc & PIM_NOINITIATOR) != 0) { 1855 /* 1856 * Can't scan the bus on an adapter that 1857 * cannot perform the initiator role. 1858 */ 1859 request_ccb->ccb_h.status = CAM_REQ_CMP; 1860 xpt_free_ccb(work_ccb); 1861 xpt_done(request_ccb); 1862 return; 1863 } 1864 1865 /* We may need to reset bus first, if we haven't done it yet. */ 1866 if ((work_ccb->cpi.hba_inquiry & 1867 (PI_WIDE_32|PI_WIDE_16|PI_SDTR_ABLE)) && 1868 !(work_ccb->cpi.hba_misc & PIM_NOBUSRESET) && 1869 !timevalisset(&request_ccb->ccb_h.path->bus->last_reset) && 1870 (reset_ccb = xpt_alloc_ccb_nowait()) != NULL) { 1871 xpt_setup_ccb(&reset_ccb->ccb_h, request_ccb->ccb_h.path, 1872 CAM_PRIORITY_NONE); 1873 reset_ccb->ccb_h.func_code = XPT_RESET_BUS; 1874 xpt_action(reset_ccb); 1875 if (reset_ccb->ccb_h.status != CAM_REQ_CMP) { 1876 request_ccb->ccb_h.status = reset_ccb->ccb_h.status; 1877 xpt_free_ccb(reset_ccb); 1878 xpt_free_ccb(work_ccb); 1879 xpt_done(request_ccb); 1880 return; 1881 } 1882 xpt_free_ccb(reset_ccb); 1883 } 1884 1885 /* Save some state for use while we probe for devices */ 1886 scan_info = (scsi_scan_bus_info *) malloc(sizeof(scsi_scan_bus_info) + 1887 (work_ccb->cpi.max_target * sizeof (u_int)), M_CAMXPT, M_ZERO|M_NOWAIT); 1888 if (scan_info == NULL) { 1889 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1890 xpt_free_ccb(work_ccb); 1891 xpt_done(request_ccb); 1892 return; 1893 } 1894 CAM_DEBUG(request_ccb->ccb_h.path, CAM_DEBUG_TRACE, 1895 ("SCAN start for %p\n", scan_info)); 1896 scan_info->request_ccb = request_ccb; 1897 scan_info->cpi = &work_ccb->cpi; 1898 1899 /* Cache on our stack so we can work asynchronously */ 1900 max_target = scan_info->cpi->max_target; 1901 low_target = 0; 1902 initiator_id = scan_info->cpi->initiator_id; 1903 1904 1905 /* 1906 * We can scan all targets in parallel, or do it sequentially. 1907 */ 1908 1909 if (request_ccb->ccb_h.func_code == XPT_SCAN_TGT) { 1910 max_target = low_target = request_ccb->ccb_h.target_id; 1911 scan_info->counter = 0; 1912 } else if (scan_info->cpi->hba_misc & PIM_SEQSCAN) { 1913 max_target = 0; 1914 scan_info->counter = 0; 1915 } else { 1916 scan_info->counter = scan_info->cpi->max_target + 1; 1917 if (scan_info->cpi->initiator_id < scan_info->counter) { 1918 scan_info->counter--; 1919 } 1920 } 1921 mtx = xpt_path_mtx(scan_info->request_ccb->ccb_h.path); 1922 mtx_unlock(mtx); 1923 1924 for (i = low_target; i <= max_target; i++) { 1925 cam_status status; 1926 if (i == initiator_id) 1927 continue; 1928 1929 status = xpt_create_path(&path, NULL, 1930 request_ccb->ccb_h.path_id, 1931 i, 0); 1932 if (status != CAM_REQ_CMP) { 1933 printf("scsi_scan_bus: xpt_create_path failed" 1934 " with status %#x, bus scan halted\n", 1935 status); 1936 free(scan_info, M_CAMXPT); 1937 request_ccb->ccb_h.status = status; 1938 xpt_free_ccb(work_ccb); 1939 xpt_done(request_ccb); 1940 break; 1941 } 1942 work_ccb = xpt_alloc_ccb_nowait(); 1943 if (work_ccb == NULL) { 1944 xpt_free_ccb((union ccb *)scan_info->cpi); 1945 free(scan_info, M_CAMXPT); 1946 xpt_free_path(path); 1947 request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1948 xpt_done(request_ccb); 1949 break; 1950 } 1951 xpt_setup_ccb(&work_ccb->ccb_h, path, 1952 request_ccb->ccb_h.pinfo.priority); 1953 work_ccb->ccb_h.func_code = XPT_SCAN_LUN; 1954 work_ccb->ccb_h.cbfcnp = scsi_scan_bus; 1955 work_ccb->ccb_h.flags |= CAM_UNLOCKED; 1956 work_ccb->ccb_h.ppriv_ptr0 = scan_info; 1957 work_ccb->crcn.flags = request_ccb->crcn.flags; 1958 xpt_action(work_ccb); 1959 } 1960 1961 mtx_lock(mtx); 1962 break; 1963 } 1964 case XPT_SCAN_LUN: 1965 { 1966 cam_status status; 1967 struct cam_path *path, *oldpath; 1968 scsi_scan_bus_info *scan_info; 1969 struct cam_et *target; 1970 struct cam_ed *device, *nextdev; 1971 int next_target; 1972 path_id_t path_id; 1973 target_id_t target_id; 1974 lun_id_t lun_id; 1975 1976 oldpath = request_ccb->ccb_h.path; 1977 1978 status = cam_ccb_status(request_ccb); 1979 scan_info = (scsi_scan_bus_info *)request_ccb->ccb_h.ppriv_ptr0; 1980 path_id = request_ccb->ccb_h.path_id; 1981 target_id = request_ccb->ccb_h.target_id; 1982 lun_id = request_ccb->ccb_h.target_lun; 1983 target = request_ccb->ccb_h.path->target; 1984 next_target = 1; 1985 1986 mtx = xpt_path_mtx(scan_info->request_ccb->ccb_h.path); 1987 mtx_lock(mtx); 1988 mtx_lock(&target->luns_mtx); 1989 if (target->luns) { 1990 lun_id_t first; 1991 u_int nluns = scsi_4btoul(target->luns->length) / 8; 1992 1993 /* 1994 * Make sure we skip over lun 0 if it's the first member 1995 * of the list as we've actually just finished probing 1996 * it. 1997 */ 1998 CAM_GET_LUN(target->luns, 0, first); 1999 if (first == 0 && scan_info->lunindex[target_id] == 0) { 2000 scan_info->lunindex[target_id]++; 2001 } 2002 2003 /* 2004 * Skip any LUNs that the HBA can't deal with. 2005 */ 2006 while (scan_info->lunindex[target_id] < nluns) { 2007 if (scan_info->cpi->hba_misc & PIM_EXTLUNS) { 2008 CAM_GET_LUN(target->luns, 2009 scan_info->lunindex[target_id], 2010 lun_id); 2011 break; 2012 } 2013 2014 if (CAM_CAN_GET_SIMPLE_LUN(target->luns, 2015 scan_info->lunindex[target_id])) { 2016 CAM_GET_SIMPLE_LUN(target->luns, 2017 scan_info->lunindex[target_id], 2018 lun_id); 2019 break; 2020 } 2021 2022 scan_info->lunindex[target_id]++; 2023 } 2024 2025 if (scan_info->lunindex[target_id] < nluns) { 2026 mtx_unlock(&target->luns_mtx); 2027 next_target = 0; 2028 CAM_DEBUG(request_ccb->ccb_h.path, 2029 CAM_DEBUG_PROBE, 2030 ("next lun to try at index %u is %jx\n", 2031 scan_info->lunindex[target_id], 2032 (uintmax_t)lun_id)); 2033 scan_info->lunindex[target_id]++; 2034 } else { 2035 mtx_unlock(&target->luns_mtx); 2036 /* We're done with scanning all luns. */ 2037 } 2038 } else { 2039 mtx_unlock(&target->luns_mtx); 2040 device = request_ccb->ccb_h.path->device; 2041 /* Continue sequential LUN scan if: */ 2042 /* -- we have more LUNs that need recheck */ 2043 mtx_lock(&target->bus->eb_mtx); 2044 nextdev = device; 2045 while ((nextdev = TAILQ_NEXT(nextdev, links)) != NULL) 2046 if ((nextdev->flags & CAM_DEV_UNCONFIGURED) == 0) 2047 break; 2048 mtx_unlock(&target->bus->eb_mtx); 2049 if (nextdev != NULL) { 2050 next_target = 0; 2051 /* -- stop if CAM_QUIRK_NOLUNS is set. */ 2052 } else if (SCSI_QUIRK(device)->quirks & CAM_QUIRK_NOLUNS) { 2053 next_target = 1; 2054 /* -- this LUN is connected and its SCSI version 2055 * allows more LUNs. */ 2056 } else if ((device->flags & CAM_DEV_UNCONFIGURED) == 0) { 2057 if (lun_id < (CAM_SCSI2_MAXLUN-1) || 2058 CAN_SRCH_HI_DENSE(device)) 2059 next_target = 0; 2060 /* -- this LUN is disconnected, its SCSI version 2061 * allows more LUNs and we guess they may be. */ 2062 } else if ((device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0) { 2063 if (lun_id < (CAM_SCSI2_MAXLUN-1) || 2064 CAN_SRCH_HI_SPARSE(device)) 2065 next_target = 0; 2066 } 2067 if (next_target == 0) { 2068 lun_id++; 2069 if (lun_id > scan_info->cpi->max_lun) 2070 next_target = 1; 2071 } 2072 } 2073 2074 /* 2075 * Check to see if we scan any further luns. 2076 */ 2077 if (next_target) { 2078 int done; 2079 2080 /* 2081 * Free the current request path- we're done with it. 2082 */ 2083 xpt_free_path(oldpath); 2084 hop_again: 2085 done = 0; 2086 if (scan_info->request_ccb->ccb_h.func_code == XPT_SCAN_TGT) { 2087 done = 1; 2088 } else if (scan_info->cpi->hba_misc & PIM_SEQSCAN) { 2089 scan_info->counter++; 2090 if (scan_info->counter == 2091 scan_info->cpi->initiator_id) { 2092 scan_info->counter++; 2093 } 2094 if (scan_info->counter >= 2095 scan_info->cpi->max_target+1) { 2096 done = 1; 2097 } 2098 } else { 2099 scan_info->counter--; 2100 if (scan_info->counter == 0) { 2101 done = 1; 2102 } 2103 } 2104 if (done) { 2105 mtx_unlock(mtx); 2106 xpt_free_ccb(request_ccb); 2107 xpt_free_ccb((union ccb *)scan_info->cpi); 2108 request_ccb = scan_info->request_ccb; 2109 CAM_DEBUG(request_ccb->ccb_h.path, 2110 CAM_DEBUG_TRACE, 2111 ("SCAN done for %p\n", scan_info)); 2112 free(scan_info, M_CAMXPT); 2113 request_ccb->ccb_h.status = CAM_REQ_CMP; 2114 xpt_done(request_ccb); 2115 break; 2116 } 2117 2118 if ((scan_info->cpi->hba_misc & PIM_SEQSCAN) == 0) { 2119 mtx_unlock(mtx); 2120 xpt_free_ccb(request_ccb); 2121 break; 2122 } 2123 status = xpt_create_path(&path, NULL, 2124 scan_info->request_ccb->ccb_h.path_id, 2125 scan_info->counter, 0); 2126 if (status != CAM_REQ_CMP) { 2127 mtx_unlock(mtx); 2128 printf("scsi_scan_bus: xpt_create_path failed" 2129 " with status %#x, bus scan halted\n", 2130 status); 2131 xpt_free_ccb(request_ccb); 2132 xpt_free_ccb((union ccb *)scan_info->cpi); 2133 request_ccb = scan_info->request_ccb; 2134 free(scan_info, M_CAMXPT); 2135 request_ccb->ccb_h.status = status; 2136 xpt_done(request_ccb); 2137 break; 2138 } 2139 xpt_setup_ccb(&request_ccb->ccb_h, path, 2140 request_ccb->ccb_h.pinfo.priority); 2141 request_ccb->ccb_h.func_code = XPT_SCAN_LUN; 2142 request_ccb->ccb_h.cbfcnp = scsi_scan_bus; 2143 request_ccb->ccb_h.flags |= CAM_UNLOCKED; 2144 request_ccb->ccb_h.ppriv_ptr0 = scan_info; 2145 request_ccb->crcn.flags = 2146 scan_info->request_ccb->crcn.flags; 2147 } else { 2148 status = xpt_create_path(&path, NULL, 2149 path_id, target_id, lun_id); 2150 /* 2151 * Free the old request path- we're done with it. We 2152 * do this *after* creating the new path so that 2153 * we don't remove a target that has our lun list 2154 * in the case that lun 0 is not present. 2155 */ 2156 xpt_free_path(oldpath); 2157 if (status != CAM_REQ_CMP) { 2158 printf("scsi_scan_bus: xpt_create_path failed " 2159 "with status %#x, halting LUN scan\n", 2160 status); 2161 goto hop_again; 2162 } 2163 xpt_setup_ccb(&request_ccb->ccb_h, path, 2164 request_ccb->ccb_h.pinfo.priority); 2165 request_ccb->ccb_h.func_code = XPT_SCAN_LUN; 2166 request_ccb->ccb_h.cbfcnp = scsi_scan_bus; 2167 request_ccb->ccb_h.flags |= CAM_UNLOCKED; 2168 request_ccb->ccb_h.ppriv_ptr0 = scan_info; 2169 request_ccb->crcn.flags = 2170 scan_info->request_ccb->crcn.flags; 2171 } 2172 mtx_unlock(mtx); 2173 xpt_action(request_ccb); 2174 break; 2175 } 2176 default: 2177 break; 2178 } 2179 } 2180 2181 static void 2182 scsi_scan_lun(struct cam_periph *periph, struct cam_path *path, 2183 cam_flags flags, union ccb *request_ccb) 2184 { 2185 struct ccb_pathinq cpi; 2186 cam_status status; 2187 struct cam_path *new_path; 2188 struct cam_periph *old_periph; 2189 int lock; 2190 2191 CAM_DEBUG(path, CAM_DEBUG_TRACE, ("scsi_scan_lun\n")); 2192 2193 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 2194 cpi.ccb_h.func_code = XPT_PATH_INQ; 2195 xpt_action((union ccb *)&cpi); 2196 2197 if (cpi.ccb_h.status != CAM_REQ_CMP) { 2198 if (request_ccb != NULL) { 2199 request_ccb->ccb_h.status = cpi.ccb_h.status; 2200 xpt_done(request_ccb); 2201 } 2202 return; 2203 } 2204 2205 if ((cpi.hba_misc & PIM_NOINITIATOR) != 0) { 2206 /* 2207 * Can't scan the bus on an adapter that 2208 * cannot perform the initiator role. 2209 */ 2210 if (request_ccb != NULL) { 2211 request_ccb->ccb_h.status = CAM_REQ_CMP; 2212 xpt_done(request_ccb); 2213 } 2214 return; 2215 } 2216 2217 if (request_ccb == NULL) { 2218 request_ccb = xpt_alloc_ccb_nowait(); 2219 if (request_ccb == NULL) { 2220 xpt_print(path, "scsi_scan_lun: can't allocate CCB, " 2221 "can't continue\n"); 2222 return; 2223 } 2224 status = xpt_create_path(&new_path, NULL, 2225 path->bus->path_id, 2226 path->target->target_id, 2227 path->device->lun_id); 2228 if (status != CAM_REQ_CMP) { 2229 xpt_print(path, "scsi_scan_lun: can't create path, " 2230 "can't continue\n"); 2231 xpt_free_ccb(request_ccb); 2232 return; 2233 } 2234 xpt_setup_ccb(&request_ccb->ccb_h, new_path, CAM_PRIORITY_XPT); 2235 request_ccb->ccb_h.cbfcnp = xptscandone; 2236 request_ccb->ccb_h.func_code = XPT_SCAN_LUN; 2237 request_ccb->ccb_h.flags |= CAM_UNLOCKED; 2238 request_ccb->crcn.flags = flags; 2239 } 2240 2241 lock = (xpt_path_owned(path) == 0); 2242 if (lock) 2243 xpt_path_lock(path); 2244 if ((old_periph = cam_periph_find(path, "probe")) != NULL) { 2245 if ((old_periph->flags & CAM_PERIPH_INVALID) == 0) { 2246 probe_softc *softc; 2247 2248 softc = (probe_softc *)old_periph->softc; 2249 TAILQ_INSERT_TAIL(&softc->request_ccbs, 2250 &request_ccb->ccb_h, periph_links.tqe); 2251 } else { 2252 request_ccb->ccb_h.status = CAM_REQ_CMP_ERR; 2253 xpt_done(request_ccb); 2254 } 2255 } else { 2256 status = cam_periph_alloc(proberegister, NULL, probecleanup, 2257 probestart, "probe", 2258 CAM_PERIPH_BIO, 2259 request_ccb->ccb_h.path, NULL, 0, 2260 request_ccb); 2261 2262 if (status != CAM_REQ_CMP) { 2263 xpt_print(path, "scsi_scan_lun: cam_alloc_periph " 2264 "returned an error, can't continue probe\n"); 2265 request_ccb->ccb_h.status = status; 2266 xpt_done(request_ccb); 2267 } 2268 } 2269 if (lock) 2270 xpt_path_unlock(path); 2271 } 2272 2273 static void 2274 xptscandone(struct cam_periph *periph, union ccb *done_ccb) 2275 { 2276 2277 xpt_free_path(done_ccb->ccb_h.path); 2278 xpt_free_ccb(done_ccb); 2279 } 2280 2281 static struct cam_ed * 2282 scsi_alloc_device(struct cam_eb *bus, struct cam_et *target, lun_id_t lun_id) 2283 { 2284 struct scsi_quirk_entry *quirk; 2285 struct cam_ed *device; 2286 2287 device = xpt_alloc_device(bus, target, lun_id); 2288 if (device == NULL) 2289 return (NULL); 2290 2291 /* 2292 * Take the default quirk entry until we have inquiry 2293 * data and can determine a better quirk to use. 2294 */ 2295 quirk = &scsi_quirk_table[scsi_quirk_table_size - 1]; 2296 device->quirk = (void *)quirk; 2297 device->mintags = quirk->mintags; 2298 device->maxtags = quirk->maxtags; 2299 bzero(&device->inq_data, sizeof(device->inq_data)); 2300 device->inq_flags = 0; 2301 device->queue_flags = 0; 2302 device->serial_num = NULL; 2303 device->serial_num_len = 0; 2304 device->device_id = NULL; 2305 device->device_id_len = 0; 2306 device->supported_vpds = NULL; 2307 device->supported_vpds_len = 0; 2308 return (device); 2309 } 2310 2311 static void 2312 scsi_devise_transport(struct cam_path *path) 2313 { 2314 struct ccb_pathinq cpi; 2315 struct ccb_trans_settings cts; 2316 struct scsi_inquiry_data *inq_buf; 2317 2318 /* Get transport information from the SIM */ 2319 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 2320 cpi.ccb_h.func_code = XPT_PATH_INQ; 2321 xpt_action((union ccb *)&cpi); 2322 2323 inq_buf = NULL; 2324 if ((path->device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0) 2325 inq_buf = &path->device->inq_data; 2326 path->device->protocol = PROTO_SCSI; 2327 path->device->protocol_version = 2328 inq_buf != NULL ? SID_ANSI_REV(inq_buf) : cpi.protocol_version; 2329 path->device->transport = cpi.transport; 2330 path->device->transport_version = cpi.transport_version; 2331 2332 /* 2333 * Any device not using SPI3 features should 2334 * be considered SPI2 or lower. 2335 */ 2336 if (inq_buf != NULL) { 2337 if (path->device->transport == XPORT_SPI 2338 && (inq_buf->spi3data & SID_SPI_MASK) == 0 2339 && path->device->transport_version > 2) 2340 path->device->transport_version = 2; 2341 } else { 2342 struct cam_ed* otherdev; 2343 2344 for (otherdev = TAILQ_FIRST(&path->target->ed_entries); 2345 otherdev != NULL; 2346 otherdev = TAILQ_NEXT(otherdev, links)) { 2347 if (otherdev != path->device) 2348 break; 2349 } 2350 2351 if (otherdev != NULL) { 2352 /* 2353 * Initially assume the same versioning as 2354 * prior luns for this target. 2355 */ 2356 path->device->protocol_version = 2357 otherdev->protocol_version; 2358 path->device->transport_version = 2359 otherdev->transport_version; 2360 } else { 2361 /* Until we know better, opt for safty */ 2362 path->device->protocol_version = 2; 2363 if (path->device->transport == XPORT_SPI) 2364 path->device->transport_version = 2; 2365 else 2366 path->device->transport_version = 0; 2367 } 2368 } 2369 2370 /* 2371 * XXX 2372 * For a device compliant with SPC-2 we should be able 2373 * to determine the transport version supported by 2374 * scrutinizing the version descriptors in the 2375 * inquiry buffer. 2376 */ 2377 2378 /* Tell the controller what we think */ 2379 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 2380 cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; 2381 cts.type = CTS_TYPE_CURRENT_SETTINGS; 2382 cts.transport = path->device->transport; 2383 cts.transport_version = path->device->transport_version; 2384 cts.protocol = path->device->protocol; 2385 cts.protocol_version = path->device->protocol_version; 2386 cts.proto_specific.valid = 0; 2387 cts.xport_specific.valid = 0; 2388 xpt_action((union ccb *)&cts); 2389 } 2390 2391 static void 2392 scsi_dev_advinfo(union ccb *start_ccb) 2393 { 2394 struct cam_ed *device; 2395 struct ccb_dev_advinfo *cdai; 2396 off_t amt; 2397 2398 start_ccb->ccb_h.status = CAM_REQ_INVALID; 2399 device = start_ccb->ccb_h.path->device; 2400 cdai = &start_ccb->cdai; 2401 switch(cdai->buftype) { 2402 case CDAI_TYPE_SCSI_DEVID: 2403 if (cdai->flags & CDAI_FLAG_STORE) 2404 return; 2405 cdai->provsiz = device->device_id_len; 2406 if (device->device_id_len == 0) 2407 break; 2408 amt = device->device_id_len; 2409 if (cdai->provsiz > cdai->bufsiz) 2410 amt = cdai->bufsiz; 2411 memcpy(cdai->buf, device->device_id, amt); 2412 break; 2413 case CDAI_TYPE_SERIAL_NUM: 2414 if (cdai->flags & CDAI_FLAG_STORE) 2415 return; 2416 cdai->provsiz = device->serial_num_len; 2417 if (device->serial_num_len == 0) 2418 break; 2419 amt = device->serial_num_len; 2420 if (cdai->provsiz > cdai->bufsiz) 2421 amt = cdai->bufsiz; 2422 memcpy(cdai->buf, device->serial_num, amt); 2423 break; 2424 case CDAI_TYPE_PHYS_PATH: 2425 if (cdai->flags & CDAI_FLAG_STORE) { 2426 if (device->physpath != NULL) { 2427 free(device->physpath, M_CAMXPT); 2428 device->physpath = NULL; 2429 } 2430 device->physpath_len = cdai->bufsiz; 2431 /* Clear existing buffer if zero length */ 2432 if (cdai->bufsiz == 0) 2433 break; 2434 device->physpath = malloc(cdai->bufsiz, M_CAMXPT, M_NOWAIT); 2435 if (device->physpath == NULL) { 2436 start_ccb->ccb_h.status = CAM_REQ_ABORTED; 2437 return; 2438 } 2439 memcpy(device->physpath, cdai->buf, cdai->bufsiz); 2440 } else { 2441 cdai->provsiz = device->physpath_len; 2442 if (device->physpath_len == 0) 2443 break; 2444 amt = device->physpath_len; 2445 if (cdai->provsiz > cdai->bufsiz) 2446 amt = cdai->bufsiz; 2447 memcpy(cdai->buf, device->physpath, amt); 2448 } 2449 break; 2450 case CDAI_TYPE_RCAPLONG: 2451 if (cdai->flags & CDAI_FLAG_STORE) { 2452 if (device->rcap_buf != NULL) { 2453 free(device->rcap_buf, M_CAMXPT); 2454 device->rcap_buf = NULL; 2455 } 2456 2457 device->rcap_len = cdai->bufsiz; 2458 /* Clear existing buffer if zero length */ 2459 if (cdai->bufsiz == 0) 2460 break; 2461 2462 device->rcap_buf = malloc(cdai->bufsiz, M_CAMXPT, 2463 M_NOWAIT); 2464 if (device->rcap_buf == NULL) { 2465 start_ccb->ccb_h.status = CAM_REQ_ABORTED; 2466 return; 2467 } 2468 2469 memcpy(device->rcap_buf, cdai->buf, cdai->bufsiz); 2470 } else { 2471 cdai->provsiz = device->rcap_len; 2472 if (device->rcap_len == 0) 2473 break; 2474 amt = device->rcap_len; 2475 if (cdai->provsiz > cdai->bufsiz) 2476 amt = cdai->bufsiz; 2477 memcpy(cdai->buf, device->rcap_buf, amt); 2478 } 2479 break; 2480 default: 2481 return; 2482 } 2483 start_ccb->ccb_h.status = CAM_REQ_CMP; 2484 2485 if (cdai->flags & CDAI_FLAG_STORE) { 2486 xpt_async(AC_ADVINFO_CHANGED, start_ccb->ccb_h.path, 2487 (void *)(uintptr_t)cdai->buftype); 2488 } 2489 } 2490 2491 static void 2492 scsi_action(union ccb *start_ccb) 2493 { 2494 2495 switch (start_ccb->ccb_h.func_code) { 2496 case XPT_SET_TRAN_SETTINGS: 2497 { 2498 scsi_set_transfer_settings(&start_ccb->cts, 2499 start_ccb->ccb_h.path, 2500 /*async_update*/FALSE); 2501 break; 2502 } 2503 case XPT_SCAN_BUS: 2504 case XPT_SCAN_TGT: 2505 scsi_scan_bus(start_ccb->ccb_h.path->periph, start_ccb); 2506 break; 2507 case XPT_SCAN_LUN: 2508 scsi_scan_lun(start_ccb->ccb_h.path->periph, 2509 start_ccb->ccb_h.path, start_ccb->crcn.flags, 2510 start_ccb); 2511 break; 2512 case XPT_DEV_ADVINFO: 2513 { 2514 scsi_dev_advinfo(start_ccb); 2515 break; 2516 } 2517 default: 2518 xpt_action_default(start_ccb); 2519 break; 2520 } 2521 } 2522 2523 static void 2524 scsi_set_transfer_settings(struct ccb_trans_settings *cts, struct cam_path *path, 2525 int async_update) 2526 { 2527 struct ccb_pathinq cpi; 2528 struct ccb_trans_settings cur_cts; 2529 struct ccb_trans_settings_scsi *scsi; 2530 struct ccb_trans_settings_scsi *cur_scsi; 2531 struct scsi_inquiry_data *inq_data; 2532 struct cam_ed *device; 2533 2534 if (path == NULL || (device = path->device) == NULL) { 2535 cts->ccb_h.status = CAM_PATH_INVALID; 2536 xpt_done((union ccb *)cts); 2537 return; 2538 } 2539 2540 if (cts->protocol == PROTO_UNKNOWN 2541 || cts->protocol == PROTO_UNSPECIFIED) { 2542 cts->protocol = device->protocol; 2543 cts->protocol_version = device->protocol_version; 2544 } 2545 2546 if (cts->protocol_version == PROTO_VERSION_UNKNOWN 2547 || cts->protocol_version == PROTO_VERSION_UNSPECIFIED) 2548 cts->protocol_version = device->protocol_version; 2549 2550 if (cts->protocol != device->protocol) { 2551 xpt_print(path, "Uninitialized Protocol %x:%x?\n", 2552 cts->protocol, device->protocol); 2553 cts->protocol = device->protocol; 2554 } 2555 2556 if (cts->protocol_version > device->protocol_version) { 2557 if (bootverbose) { 2558 xpt_print(path, "Down reving Protocol " 2559 "Version from %d to %d?\n", cts->protocol_version, 2560 device->protocol_version); 2561 } 2562 cts->protocol_version = device->protocol_version; 2563 } 2564 2565 if (cts->transport == XPORT_UNKNOWN 2566 || cts->transport == XPORT_UNSPECIFIED) { 2567 cts->transport = device->transport; 2568 cts->transport_version = device->transport_version; 2569 } 2570 2571 if (cts->transport_version == XPORT_VERSION_UNKNOWN 2572 || cts->transport_version == XPORT_VERSION_UNSPECIFIED) 2573 cts->transport_version = device->transport_version; 2574 2575 if (cts->transport != device->transport) { 2576 xpt_print(path, "Uninitialized Transport %x:%x?\n", 2577 cts->transport, device->transport); 2578 cts->transport = device->transport; 2579 } 2580 2581 if (cts->transport_version > device->transport_version) { 2582 if (bootverbose) { 2583 xpt_print(path, "Down reving Transport " 2584 "Version from %d to %d?\n", cts->transport_version, 2585 device->transport_version); 2586 } 2587 cts->transport_version = device->transport_version; 2588 } 2589 2590 /* 2591 * Nothing more of interest to do unless 2592 * this is a device connected via the 2593 * SCSI protocol. 2594 */ 2595 if (cts->protocol != PROTO_SCSI) { 2596 if (async_update == FALSE) 2597 xpt_action_default((union ccb *)cts); 2598 return; 2599 } 2600 2601 inq_data = &device->inq_data; 2602 scsi = &cts->proto_specific.scsi; 2603 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NONE); 2604 cpi.ccb_h.func_code = XPT_PATH_INQ; 2605 xpt_action((union ccb *)&cpi); 2606 2607 /* SCSI specific sanity checking */ 2608 if ((cpi.hba_inquiry & PI_TAG_ABLE) == 0 2609 || (INQ_DATA_TQ_ENABLED(inq_data)) == 0 2610 || (device->queue_flags & SCP_QUEUE_DQUE) != 0 2611 || (device->mintags == 0)) { 2612 /* 2613 * Can't tag on hardware that doesn't support tags, 2614 * doesn't have it enabled, or has broken tag support. 2615 */ 2616 scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB; 2617 } 2618 2619 if (async_update == FALSE) { 2620 /* 2621 * Perform sanity checking against what the 2622 * controller and device can do. 2623 */ 2624 xpt_setup_ccb(&cur_cts.ccb_h, path, CAM_PRIORITY_NONE); 2625 cur_cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 2626 cur_cts.type = cts->type; 2627 xpt_action((union ccb *)&cur_cts); 2628 if (cam_ccb_status((union ccb *)&cur_cts) != CAM_REQ_CMP) { 2629 return; 2630 } 2631 cur_scsi = &cur_cts.proto_specific.scsi; 2632 if ((scsi->valid & CTS_SCSI_VALID_TQ) == 0) { 2633 scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB; 2634 scsi->flags |= cur_scsi->flags & CTS_SCSI_FLAGS_TAG_ENB; 2635 } 2636 if ((cur_scsi->valid & CTS_SCSI_VALID_TQ) == 0) 2637 scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB; 2638 } 2639 2640 /* SPI specific sanity checking */ 2641 if (cts->transport == XPORT_SPI && async_update == FALSE) { 2642 u_int spi3caps; 2643 struct ccb_trans_settings_spi *spi; 2644 struct ccb_trans_settings_spi *cur_spi; 2645 2646 spi = &cts->xport_specific.spi; 2647 2648 cur_spi = &cur_cts.xport_specific.spi; 2649 2650 /* Fill in any gaps in what the user gave us */ 2651 if ((spi->valid & CTS_SPI_VALID_SYNC_RATE) == 0) 2652 spi->sync_period = cur_spi->sync_period; 2653 if ((cur_spi->valid & CTS_SPI_VALID_SYNC_RATE) == 0) 2654 spi->sync_period = 0; 2655 if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) == 0) 2656 spi->sync_offset = cur_spi->sync_offset; 2657 if ((cur_spi->valid & CTS_SPI_VALID_SYNC_OFFSET) == 0) 2658 spi->sync_offset = 0; 2659 if ((spi->valid & CTS_SPI_VALID_PPR_OPTIONS) == 0) 2660 spi->ppr_options = cur_spi->ppr_options; 2661 if ((cur_spi->valid & CTS_SPI_VALID_PPR_OPTIONS) == 0) 2662 spi->ppr_options = 0; 2663 if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) == 0) 2664 spi->bus_width = cur_spi->bus_width; 2665 if ((cur_spi->valid & CTS_SPI_VALID_BUS_WIDTH) == 0) 2666 spi->bus_width = 0; 2667 if ((spi->valid & CTS_SPI_VALID_DISC) == 0) { 2668 spi->flags &= ~CTS_SPI_FLAGS_DISC_ENB; 2669 spi->flags |= cur_spi->flags & CTS_SPI_FLAGS_DISC_ENB; 2670 } 2671 if ((cur_spi->valid & CTS_SPI_VALID_DISC) == 0) 2672 spi->flags &= ~CTS_SPI_FLAGS_DISC_ENB; 2673 if (((device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0 2674 && (inq_data->flags & SID_Sync) == 0 2675 && cts->type == CTS_TYPE_CURRENT_SETTINGS) 2676 || ((cpi.hba_inquiry & PI_SDTR_ABLE) == 0)) { 2677 /* Force async */ 2678 spi->sync_period = 0; 2679 spi->sync_offset = 0; 2680 } 2681 2682 switch (spi->bus_width) { 2683 case MSG_EXT_WDTR_BUS_32_BIT: 2684 if (((device->flags & CAM_DEV_INQUIRY_DATA_VALID) == 0 2685 || (inq_data->flags & SID_WBus32) != 0 2686 || cts->type == CTS_TYPE_USER_SETTINGS) 2687 && (cpi.hba_inquiry & PI_WIDE_32) != 0) 2688 break; 2689 /* Fall Through to 16-bit */ 2690 case MSG_EXT_WDTR_BUS_16_BIT: 2691 if (((device->flags & CAM_DEV_INQUIRY_DATA_VALID) == 0 2692 || (inq_data->flags & SID_WBus16) != 0 2693 || cts->type == CTS_TYPE_USER_SETTINGS) 2694 && (cpi.hba_inquiry & PI_WIDE_16) != 0) { 2695 spi->bus_width = MSG_EXT_WDTR_BUS_16_BIT; 2696 break; 2697 } 2698 /* Fall Through to 8-bit */ 2699 default: /* New bus width?? */ 2700 case MSG_EXT_WDTR_BUS_8_BIT: 2701 /* All targets can do this */ 2702 spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT; 2703 break; 2704 } 2705 2706 spi3caps = cpi.xport_specific.spi.ppr_options; 2707 if ((device->flags & CAM_DEV_INQUIRY_DATA_VALID) != 0 2708 && cts->type == CTS_TYPE_CURRENT_SETTINGS) 2709 spi3caps &= inq_data->spi3data; 2710 2711 if ((spi3caps & SID_SPI_CLOCK_DT) == 0) 2712 spi->ppr_options &= ~MSG_EXT_PPR_DT_REQ; 2713 2714 if ((spi3caps & SID_SPI_IUS) == 0) 2715 spi->ppr_options &= ~MSG_EXT_PPR_IU_REQ; 2716 2717 if ((spi3caps & SID_SPI_QAS) == 0) 2718 spi->ppr_options &= ~MSG_EXT_PPR_QAS_REQ; 2719 2720 /* No SPI Transfer settings are allowed unless we are wide */ 2721 if (spi->bus_width == 0) 2722 spi->ppr_options = 0; 2723 2724 if ((spi->valid & CTS_SPI_VALID_DISC) 2725 && ((spi->flags & CTS_SPI_FLAGS_DISC_ENB) == 0)) { 2726 /* 2727 * Can't tag queue without disconnection. 2728 */ 2729 scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB; 2730 scsi->valid |= CTS_SCSI_VALID_TQ; 2731 } 2732 2733 /* 2734 * If we are currently performing tagged transactions to 2735 * this device and want to change its negotiation parameters, 2736 * go non-tagged for a bit to give the controller a chance to 2737 * negotiate unhampered by tag messages. 2738 */ 2739 if (cts->type == CTS_TYPE_CURRENT_SETTINGS 2740 && (device->inq_flags & SID_CmdQue) != 0 2741 && (scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0 2742 && (spi->flags & (CTS_SPI_VALID_SYNC_RATE| 2743 CTS_SPI_VALID_SYNC_OFFSET| 2744 CTS_SPI_VALID_BUS_WIDTH)) != 0) 2745 scsi_toggle_tags(path); 2746 } 2747 2748 if (cts->type == CTS_TYPE_CURRENT_SETTINGS 2749 && (scsi->valid & CTS_SCSI_VALID_TQ) != 0) { 2750 int device_tagenb; 2751 2752 /* 2753 * If we are transitioning from tags to no-tags or 2754 * vice-versa, we need to carefully freeze and restart 2755 * the queue so that we don't overlap tagged and non-tagged 2756 * commands. We also temporarily stop tags if there is 2757 * a change in transfer negotiation settings to allow 2758 * "tag-less" negotiation. 2759 */ 2760 if ((device->flags & CAM_DEV_TAG_AFTER_COUNT) != 0 2761 || (device->inq_flags & SID_CmdQue) != 0) 2762 device_tagenb = TRUE; 2763 else 2764 device_tagenb = FALSE; 2765 2766 if (((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0 2767 && device_tagenb == FALSE) 2768 || ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) == 0 2769 && device_tagenb == TRUE)) { 2770 2771 if ((scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0) { 2772 /* 2773 * Delay change to use tags until after a 2774 * few commands have gone to this device so 2775 * the controller has time to perform transfer 2776 * negotiations without tagged messages getting 2777 * in the way. 2778 */ 2779 device->tag_delay_count = CAM_TAG_DELAY_COUNT; 2780 device->flags |= CAM_DEV_TAG_AFTER_COUNT; 2781 } else { 2782 xpt_stop_tags(path); 2783 } 2784 } 2785 } 2786 if (async_update == FALSE) 2787 xpt_action_default((union ccb *)cts); 2788 } 2789 2790 static void 2791 scsi_toggle_tags(struct cam_path *path) 2792 { 2793 struct cam_ed *dev; 2794 2795 /* 2796 * Give controllers a chance to renegotiate 2797 * before starting tag operations. We 2798 * "toggle" tagged queuing off then on 2799 * which causes the tag enable command delay 2800 * counter to come into effect. 2801 */ 2802 dev = path->device; 2803 if ((dev->flags & CAM_DEV_TAG_AFTER_COUNT) != 0 2804 || ((dev->inq_flags & SID_CmdQue) != 0 2805 && (dev->inq_flags & (SID_Sync|SID_WBus16|SID_WBus32)) != 0)) { 2806 struct ccb_trans_settings cts; 2807 2808 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NONE); 2809 cts.protocol = PROTO_SCSI; 2810 cts.protocol_version = PROTO_VERSION_UNSPECIFIED; 2811 cts.transport = XPORT_UNSPECIFIED; 2812 cts.transport_version = XPORT_VERSION_UNSPECIFIED; 2813 cts.proto_specific.scsi.flags = 0; 2814 cts.proto_specific.scsi.valid = CTS_SCSI_VALID_TQ; 2815 scsi_set_transfer_settings(&cts, path, 2816 /*async_update*/TRUE); 2817 cts.proto_specific.scsi.flags = CTS_SCSI_FLAGS_TAG_ENB; 2818 scsi_set_transfer_settings(&cts, path, 2819 /*async_update*/TRUE); 2820 } 2821 } 2822 2823 /* 2824 * Handle any per-device event notifications that require action by the XPT. 2825 */ 2826 static void 2827 scsi_dev_async(u_int32_t async_code, struct cam_eb *bus, struct cam_et *target, 2828 struct cam_ed *device, void *async_arg) 2829 { 2830 cam_status status; 2831 struct cam_path newpath; 2832 2833 /* 2834 * We only need to handle events for real devices. 2835 */ 2836 if (target->target_id == CAM_TARGET_WILDCARD 2837 || device->lun_id == CAM_LUN_WILDCARD) 2838 return; 2839 2840 /* 2841 * We need our own path with wildcards expanded to 2842 * handle certain types of events. 2843 */ 2844 if ((async_code == AC_SENT_BDR) 2845 || (async_code == AC_BUS_RESET) 2846 || (async_code == AC_INQ_CHANGED)) 2847 status = xpt_compile_path(&newpath, NULL, 2848 bus->path_id, 2849 target->target_id, 2850 device->lun_id); 2851 else 2852 status = CAM_REQ_CMP_ERR; 2853 2854 if (status == CAM_REQ_CMP) { 2855 2856 /* 2857 * Allow transfer negotiation to occur in a 2858 * tag free environment and after settle delay. 2859 */ 2860 if (async_code == AC_SENT_BDR 2861 || async_code == AC_BUS_RESET) { 2862 cam_freeze_devq(&newpath); 2863 cam_release_devq(&newpath, 2864 RELSIM_RELEASE_AFTER_TIMEOUT, 2865 /*reduction*/0, 2866 /*timeout*/scsi_delay, 2867 /*getcount_only*/0); 2868 scsi_toggle_tags(&newpath); 2869 } 2870 2871 if (async_code == AC_INQ_CHANGED) { 2872 /* 2873 * We've sent a start unit command, or 2874 * something similar to a device that 2875 * may have caused its inquiry data to 2876 * change. So we re-scan the device to 2877 * refresh the inquiry data for it. 2878 */ 2879 scsi_scan_lun(newpath.periph, &newpath, 2880 CAM_EXPECT_INQ_CHANGE, NULL); 2881 } 2882 xpt_release_path(&newpath); 2883 } else if (async_code == AC_LOST_DEVICE && 2884 (device->flags & CAM_DEV_UNCONFIGURED) == 0) { 2885 device->flags |= CAM_DEV_UNCONFIGURED; 2886 xpt_release_device(device); 2887 } else if (async_code == AC_TRANSFER_NEG) { 2888 struct ccb_trans_settings *settings; 2889 struct cam_path path; 2890 2891 settings = (struct ccb_trans_settings *)async_arg; 2892 xpt_compile_path(&path, NULL, bus->path_id, target->target_id, 2893 device->lun_id); 2894 scsi_set_transfer_settings(settings, &path, 2895 /*async_update*/TRUE); 2896 xpt_release_path(&path); 2897 } 2898 } 2899 2900 static void 2901 scsi_announce_periph(struct cam_periph *periph) 2902 { 2903 struct ccb_pathinq cpi; 2904 struct ccb_trans_settings cts; 2905 struct cam_path *path = periph->path; 2906 u_int speed; 2907 u_int freq; 2908 u_int mb; 2909 2910 cam_periph_assert(periph, MA_OWNED); 2911 2912 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NORMAL); 2913 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 2914 cts.type = CTS_TYPE_CURRENT_SETTINGS; 2915 xpt_action((union ccb*)&cts); 2916 if (cam_ccb_status((union ccb *)&cts) != CAM_REQ_CMP) 2917 return; 2918 /* Ask the SIM for its base transfer speed */ 2919 xpt_setup_ccb(&cpi.ccb_h, path, CAM_PRIORITY_NORMAL); 2920 cpi.ccb_h.func_code = XPT_PATH_INQ; 2921 xpt_action((union ccb *)&cpi); 2922 /* Report connection speed */ 2923 speed = cpi.base_transfer_speed; 2924 freq = 0; 2925 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_SPI) { 2926 struct ccb_trans_settings_spi *spi = 2927 &cts.xport_specific.spi; 2928 2929 if ((spi->valid & CTS_SPI_VALID_SYNC_OFFSET) != 0 2930 && spi->sync_offset != 0) { 2931 freq = scsi_calc_syncsrate(spi->sync_period); 2932 speed = freq; 2933 } 2934 if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) != 0) 2935 speed *= (0x01 << spi->bus_width); 2936 } 2937 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_FC) { 2938 struct ccb_trans_settings_fc *fc = 2939 &cts.xport_specific.fc; 2940 2941 if (fc->valid & CTS_FC_VALID_SPEED) 2942 speed = fc->bitrate; 2943 } 2944 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_SAS) { 2945 struct ccb_trans_settings_sas *sas = 2946 &cts.xport_specific.sas; 2947 2948 if (sas->valid & CTS_SAS_VALID_SPEED) 2949 speed = sas->bitrate; 2950 } 2951 mb = speed / 1000; 2952 if (mb > 0) 2953 printf("%s%d: %d.%03dMB/s transfers", 2954 periph->periph_name, periph->unit_number, 2955 mb, speed % 1000); 2956 else 2957 printf("%s%d: %dKB/s transfers", periph->periph_name, 2958 periph->unit_number, speed); 2959 /* Report additional information about SPI connections */ 2960 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_SPI) { 2961 struct ccb_trans_settings_spi *spi; 2962 2963 spi = &cts.xport_specific.spi; 2964 if (freq != 0) { 2965 printf(" (%d.%03dMHz%s, offset %d", freq / 1000, 2966 freq % 1000, 2967 (spi->ppr_options & MSG_EXT_PPR_DT_REQ) != 0 2968 ? " DT" : "", 2969 spi->sync_offset); 2970 } 2971 if ((spi->valid & CTS_SPI_VALID_BUS_WIDTH) != 0 2972 && spi->bus_width > 0) { 2973 if (freq != 0) { 2974 printf(", "); 2975 } else { 2976 printf(" ("); 2977 } 2978 printf("%dbit)", 8 * (0x01 << spi->bus_width)); 2979 } else if (freq != 0) { 2980 printf(")"); 2981 } 2982 } 2983 if (cts.ccb_h.status == CAM_REQ_CMP && cts.transport == XPORT_FC) { 2984 struct ccb_trans_settings_fc *fc; 2985 2986 fc = &cts.xport_specific.fc; 2987 if (fc->valid & CTS_FC_VALID_WWNN) 2988 printf(" WWNN 0x%llx", (long long) fc->wwnn); 2989 if (fc->valid & CTS_FC_VALID_WWPN) 2990 printf(" WWPN 0x%llx", (long long) fc->wwpn); 2991 if (fc->valid & CTS_FC_VALID_PORT) 2992 printf(" PortID 0x%x", fc->port); 2993 } 2994 printf("\n"); 2995 } 2996 2997