1 /* 2 * Implementation of SCSI Direct Access Peripheral driver for CAM. 3 * 4 * Copyright (c) 1997 Justin T. Gibbs. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions, and the following disclaimer, 12 * without modification, immediately at the beginning of the file. 13 * 2. The name of the author may not be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #ifdef _KERNEL 32 #include "opt_hw_wdog.h" 33 #endif /* _KERNEL */ 34 35 #include <sys/param.h> 36 37 #ifdef _KERNEL 38 #include <sys/systm.h> 39 #include <sys/kernel.h> 40 #include <sys/bio.h> 41 #include <sys/sysctl.h> 42 #endif /* _KERNEL */ 43 44 #include <sys/devicestat.h> 45 #include <sys/conf.h> 46 #include <sys/eventhandler.h> 47 #include <sys/malloc.h> 48 #include <sys/cons.h> 49 50 #include <machine/md_var.h> 51 52 #include <vm/vm.h> 53 #include <vm/pmap.h> 54 55 #include <geom/geom_disk.h> 56 57 #ifndef _KERNEL 58 #include <stdio.h> 59 #include <string.h> 60 #endif /* _KERNEL */ 61 62 #include <cam/cam.h> 63 #include <cam/cam_ccb.h> 64 #include <cam/cam_periph.h> 65 #include <cam/cam_xpt_periph.h> 66 67 #include <cam/scsi/scsi_message.h> 68 69 #ifndef _KERNEL 70 #include <cam/scsi/scsi_da.h> 71 #endif /* !_KERNEL */ 72 73 #ifdef _KERNEL 74 typedef enum { 75 DA_STATE_PROBE, 76 DA_STATE_PROBE2, 77 DA_STATE_NORMAL 78 } da_state; 79 80 typedef enum { 81 DA_FLAG_PACK_INVALID = 0x001, 82 DA_FLAG_NEW_PACK = 0x002, 83 DA_FLAG_PACK_LOCKED = 0x004, 84 DA_FLAG_PACK_REMOVABLE = 0x008, 85 DA_FLAG_TAGGED_QUEUING = 0x010, 86 DA_FLAG_NEED_OTAG = 0x020, 87 DA_FLAG_WENT_IDLE = 0x040, 88 DA_FLAG_RETRY_UA = 0x080, 89 DA_FLAG_OPEN = 0x100 90 } da_flags; 91 92 typedef enum { 93 DA_Q_NONE = 0x00, 94 DA_Q_NO_SYNC_CACHE = 0x01, 95 DA_Q_NO_6_BYTE = 0x02 96 } da_quirks; 97 98 typedef enum { 99 DA_CCB_PROBE = 0x01, 100 DA_CCB_PROBE2 = 0x02, 101 DA_CCB_BUFFER_IO = 0x03, 102 DA_CCB_WAITING = 0x04, 103 DA_CCB_DUMP = 0x05, 104 DA_CCB_TYPE_MASK = 0x0F, 105 DA_CCB_RETRY_UA = 0x10 106 } da_ccb_state; 107 108 /* Offsets into our private area for storing information */ 109 #define ccb_state ppriv_field0 110 #define ccb_bp ppriv_ptr1 111 112 struct disk_params { 113 u_int8_t heads; 114 u_int32_t cylinders; 115 u_int8_t secs_per_track; 116 u_int32_t secsize; /* Number of bytes/sector */ 117 u_int64_t sectors; /* total number sectors */ 118 }; 119 120 struct da_softc { 121 struct bio_queue_head bio_queue; 122 SLIST_ENTRY(da_softc) links; 123 LIST_HEAD(, ccb_hdr) pending_ccbs; 124 da_state state; 125 da_flags flags; 126 da_quirks quirks; 127 int minimum_cmd_size; 128 int ordered_tag_count; 129 int outstanding_cmds; 130 struct disk_params params; 131 struct disk disk; 132 union ccb saved_ccb; 133 struct sysctl_ctx_list sysctl_ctx; 134 struct sysctl_oid *sysctl_tree; 135 }; 136 137 struct da_quirk_entry { 138 struct scsi_inquiry_pattern inq_pat; 139 da_quirks quirks; 140 }; 141 142 static const char quantum[] = "QUANTUM"; 143 static const char microp[] = "MICROP"; 144 145 static struct da_quirk_entry da_quirk_table[] = 146 { 147 /* 148 * Logitec USB/Firewire LHD-P30FU 149 */ 150 { 151 /* USB part */ 152 {T_DIRECT, SIP_MEDIA_FIXED, "HITACHI_", "DK23DA*", "*"}, 153 /*quirks*/ DA_Q_NO_6_BYTE 154 }, 155 { 156 /* Firewire part */ 157 {T_DIRECT, SIP_MEDIA_FIXED, "LSILogic", "SYM13FW*", "*"}, 158 /*quirks*/ DA_Q_NO_6_BYTE 159 }, 160 { 161 /* 162 * Fujitsu M2513A MO drives. 163 * Tested devices: M2513A2 firmware versions 1200 & 1300. 164 * (dip switch selects whether T_DIRECT or T_OPTICAL device) 165 * Reported by: W.Scholten <whs@xs4all.nl> 166 */ 167 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"}, 168 /*quirks*/ DA_Q_NO_SYNC_CACHE 169 }, 170 { 171 /* See above. */ 172 {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"}, 173 /*quirks*/ DA_Q_NO_SYNC_CACHE 174 }, 175 { 176 /* 177 * This particular Fujitsu drive doesn't like the 178 * synchronize cache command. 179 * Reported by: Tom Jackson <toj@gorilla.net> 180 */ 181 {T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"}, 182 /*quirks*/ DA_Q_NO_SYNC_CACHE 183 184 }, 185 { 186 /* 187 * This drive doesn't like the synchronize cache command 188 * either. Reported by: Matthew Jacob <mjacob@feral.com> 189 * in NetBSD PR kern/6027, August 24, 1998. 190 */ 191 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"}, 192 /*quirks*/ DA_Q_NO_SYNC_CACHE 193 }, 194 { 195 /* 196 * This drive doesn't like the synchronize cache command 197 * either. Reported by: Hellmuth Michaelis (hm@kts.org) 198 * (PR 8882). 199 */ 200 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"}, 201 /*quirks*/ DA_Q_NO_SYNC_CACHE 202 }, 203 { 204 /* 205 * Doesn't like the synchronize cache command. 206 * Reported by: Blaz Zupan <blaz@gold.amis.net> 207 */ 208 {T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"}, 209 /*quirks*/ DA_Q_NO_SYNC_CACHE 210 }, 211 { 212 /* 213 * Doesn't like the synchronize cache command. 214 */ 215 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"}, 216 /*quirks*/ DA_Q_NO_SYNC_CACHE 217 }, 218 { 219 /* 220 * Doesn't like the synchronize cache command. 221 */ 222 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"}, 223 /*quirks*/ DA_Q_NO_SYNC_CACHE 224 }, 225 { 226 /* 227 * Doesn't work correctly with 6 byte reads/writes. 228 * Returns illegal request, and points to byte 9 of the 229 * 6-byte CDB. 230 * Reported by: Adam McDougall <bsdx@spawnet.com> 231 */ 232 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"}, 233 /*quirks*/ DA_Q_NO_6_BYTE 234 }, 235 { 236 /* 237 * See above. 238 */ 239 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"}, 240 /*quirks*/ DA_Q_NO_6_BYTE 241 }, 242 243 /* Below a list of quirks for USB devices supported by umass. */ 244 { 245 /* 246 * This USB floppy drive uses the UFI command set. This 247 * command set is a derivative of the ATAPI command set and 248 * does not support READ_6 commands only READ_10. It also does 249 * not support sync cache (0x35). 250 */ 251 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"}, 252 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 253 }, 254 { 255 /* Another USB floppy */ 256 {T_DIRECT, SIP_MEDIA_REMOVABLE, "MATSHITA", "FDD CF-VFDU*","*"}, 257 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 258 }, 259 { 260 /* 261 * Sony Memory Stick adapter MSAC-US1 and 262 * Sony PCG-C1VJ Internal Memory Stick Slot (MSC-U01). 263 * Make all sony MS* products use this quirk. 264 */ 265 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "MS*", "*"}, 266 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 267 }, 268 { 269 /* 270 * Sony Memory Stick adapter for the CLIE series 271 * of PalmOS PDA's 272 */ 273 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "CLIE*", "*"}, 274 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 275 }, 276 { 277 /* 278 * Sony DSC cameras (DSC-S30, DSC-S50, DSC-S70) 279 */ 280 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"}, 281 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 282 }, 283 { 284 /* 285 * Maxtor 3000LE USB Drive 286 */ 287 {T_DIRECT, SIP_MEDIA_FIXED, "MAXTOR*", "K040H2*", "*"}, 288 /*quirks*/ DA_Q_NO_6_BYTE 289 }, 290 { 291 /* 292 * LaCie USB drive, among others 293 */ 294 {T_DIRECT, SIP_MEDIA_FIXED, "Maxtor*", "D080H4*", "*"}, 295 /*quirks*/ DA_Q_NO_6_BYTE 296 }, 297 { 298 {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "MCF3064AP", "*"}, 299 /*quirks*/ DA_Q_NO_6_BYTE 300 }, 301 { 302 /* 303 * Microtech USB CameraMate 304 */ 305 {T_DIRECT, SIP_MEDIA_REMOVABLE, "eUSB Compact*", 306 "Compact Flash*", "*"}, 307 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 308 }, 309 { 310 /* 311 * The vendor, product and version strings coming from the 312 * controller are null terminated instead of being padded with 313 * spaces. The trailing wildcard character '*' is required. 314 */ 315 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SMSC*", "USB FDC*","*"}, 316 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 317 }, 318 { 319 /* 320 * Olympus digital cameras (C-3040ZOOM, C-2040ZOOM, C-1) 321 */ 322 {T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "C-*", "*"}, 323 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 324 }, 325 { 326 /* 327 * Olympus digital cameras (D-370) 328 */ 329 {T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "D-*", "*"}, 330 /*quirks*/ DA_Q_NO_6_BYTE 331 }, 332 { 333 /* 334 * Olympus digital cameras (E-100RS, E-10). 335 */ 336 {T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "E-*", "*"}, 337 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 338 }, 339 { 340 /* 341 * KingByte Pen Drives 342 */ 343 {T_DIRECT, SIP_MEDIA_REMOVABLE, "NO BRAND", "PEN DRIVE", "*"}, 344 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 345 }, 346 { 347 /* 348 * FujiFilm Camera 349 */ 350 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJIFILMUSB-DRIVEUNIT", 351 "USB-DRIVEUNIT", "*"}, 352 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 353 }, 354 { 355 /* 356 * Nikon Coolpix E775/E995 Cameras 357 */ 358 {T_DIRECT, SIP_MEDIA_REMOVABLE, "NIKON", "NIKON DSC E*", "*"}, 359 /*quirks*/ DA_Q_NO_6_BYTE 360 }, 361 { 362 /* 363 * Nikon Coolpix E885 Camera 364 */ 365 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Nikon", "Digital Camera", "*"}, 366 /*quirks*/ DA_Q_NO_6_BYTE 367 }, 368 { 369 /* 370 * SimpleTech FlashLink UCF-100 371 */ 372 {T_DIRECT, SIP_MEDIA_REMOVABLE, "OEI-USB", "CompactFlash", "*"}, 373 /*quirks*/ DA_Q_NO_6_BYTE 374 }, 375 { 376 /* 377 * Minolta Dimage 2330 378 */ 379 {T_DIRECT, SIP_MEDIA_REMOVABLE, "MINOLTA", "DIMAGE 2330*", "*"}, 380 /*quirks*/ DA_Q_NO_6_BYTE 381 }, 382 { 383 /* 384 * Minolta Dimage E203 385 */ 386 {T_DIRECT, SIP_MEDIA_REMOVABLE, "MINOLTA", "DiMAGE E203", "*"}, 387 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 388 }, 389 { 390 /* 391 * DIVA USB Mp3 Player. 392 * PR: kern/33638 393 */ 394 {T_DIRECT, SIP_MEDIA_REMOVABLE, "DIVA USB", "Media Reader","*"}, 395 /*quirks*/ DA_Q_NO_6_BYTE 396 }, 397 { 398 /* 399 * Daisy Technology PhotoClip USB Camera 400 */ 401 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Digital", "World DMC","*"}, 402 /*quirks*/ DA_Q_NO_6_BYTE 403 }, 404 { 405 /* 406 * Apacer HandyDrive 407 * PR: kern/43627 408 */ 409 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Apacer", "HandyDrive", "*"}, 410 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 411 }, 412 { 413 /* 414 * Daisy Technology PhotoClip on Zoran chip 415 * PR: kern/43580 416 */ 417 {T_DIRECT, SIP_MEDIA_REMOVABLE, "ZORAN", "COACH", "*"}, 418 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 419 }, 420 { 421 /* 422 * HP 315 Digital Camera 423 * PR: kern/41010 424 */ 425 {T_DIRECT, SIP_MEDIA_REMOVABLE, "HP", "USB CAMERA", "*"}, 426 /*quirks*/ DA_Q_NO_6_BYTE 427 }, 428 { 429 /* 430 * Fujitsu-Siemens Memorybird pen drive 431 * PR: kern/34712 432 */ 433 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Fujitsu", "Memorybird", "*"}, 434 /*quirks*/ DA_Q_NO_6_BYTE 435 }, 436 { 437 /* 438 * Sony USB Key-Storage 439 * PR: kern/46386 440 */ 441 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Storage Media", "*"}, 442 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 443 }, 444 { 445 /* 446 * Lexar Media Jumpdrive 447 * PR: kern/47006 448 */ 449 {T_DIRECT, SIP_MEDIA_REMOVABLE, "LEXAR", "DIGITAL FILM", "*"}, 450 /*quirks*/ DA_Q_NO_6_BYTE 451 }, 452 { 453 /* 454 * Pentax USB Optio 230 camera 455 * PR: kern/46369 456 */ 457 {T_DIRECT, SIP_MEDIA_REMOVABLE, 458 "PENTAX", "DIGITAL_CAMERA", "*"}, 459 /*quirks*/ DA_Q_NO_6_BYTE 460 }, 461 { 462 /* 463 * Casio QV-R3 USB camera (uses Pentax chip as above) 464 * PR: kern/46545 465 */ 466 {T_DIRECT, SIP_MEDIA_REMOVABLE, 467 "CASIO", "DIGITAL_CAMERA", "*"}, 468 /*quirks*/ DA_Q_NO_6_BYTE 469 }, 470 { 471 /* 472 * M-Systems DiskOnKey USB flash key 473 * PR: kern/47793 474 */ 475 {T_DIRECT, SIP_MEDIA_REMOVABLE, "M-Sys", "DiskOnKey", "*"}, 476 /*quirks*/ DA_Q_NO_6_BYTE 477 }, 478 { 479 /* 480 * SanDisk ImageMate (I, II, ...) compact flash 481 * PR: kern/47877 482 */ 483 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk", "ImageMate*", "*"}, 484 /*quirks*/ DA_Q_NO_6_BYTE 485 }, 486 { 487 /* 488 * Feiya "slider" dual-slot flash reader. The vendor field 489 * is blank so this may match other devices. 490 * PR: kern/50020 491 */ 492 {T_DIRECT, SIP_MEDIA_REMOVABLE, "", "USB CARD READER", "*"}, 493 /*quirks*/ DA_Q_NO_6_BYTE 494 }, 495 { 496 /* 497 * SmartDisk (Mitsumi) USB floppy drive 498 * PR: kern/50226 499 */ 500 {T_DIRECT, SIP_MEDIA_REMOVABLE, "MITSUMI", "USB FDD", "*"}, 501 /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE 502 } 503 }; 504 505 static disk_strategy_t dastrategy; 506 static dumper_t dadump; 507 static periph_init_t dainit; 508 static void daasync(void *callback_arg, u_int32_t code, 509 struct cam_path *path, void *arg); 510 static int dacmdsizesysctl(SYSCTL_HANDLER_ARGS); 511 static periph_ctor_t daregister; 512 static periph_dtor_t dacleanup; 513 static periph_start_t dastart; 514 static periph_oninv_t daoninvalidate; 515 static void dadone(struct cam_periph *periph, 516 union ccb *done_ccb); 517 static int daerror(union ccb *ccb, u_int32_t cam_flags, 518 u_int32_t sense_flags); 519 static void daprevent(struct cam_periph *periph, int action); 520 static int dagetcapacity(struct cam_periph *periph); 521 static void dasetgeom(struct cam_periph *periph, uint32_t block_len, 522 uint64_t maxsector); 523 static timeout_t dasendorderedtag; 524 static void dashutdown(void *arg, int howto); 525 526 #ifndef DA_DEFAULT_TIMEOUT 527 #define DA_DEFAULT_TIMEOUT 60 /* Timeout in seconds */ 528 #endif 529 530 #ifndef DA_DEFAULT_RETRY 531 #define DA_DEFAULT_RETRY 4 532 #endif 533 534 static int da_retry_count = DA_DEFAULT_RETRY; 535 static int da_default_timeout = DA_DEFAULT_TIMEOUT; 536 537 SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0, 538 "CAM Direct Access Disk driver"); 539 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW, 540 &da_retry_count, 0, "Normal I/O retry count"); 541 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count); 542 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW, 543 &da_default_timeout, 0, "Normal I/O timeout (in seconds)"); 544 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout); 545 546 /* 547 * DA_ORDEREDTAG_INTERVAL determines how often, relative 548 * to the default timeout, we check to see whether an ordered 549 * tagged transaction is appropriate to prevent simple tag 550 * starvation. Since we'd like to ensure that there is at least 551 * 1/2 of the timeout length left for a starved transaction to 552 * complete after we've sent an ordered tag, we must poll at least 553 * four times in every timeout period. This takes care of the worst 554 * case where a starved transaction starts during an interval that 555 * meets the requirement "don't send an ordered tag" test so it takes 556 * us two intervals to determine that a tag must be sent. 557 */ 558 #ifndef DA_ORDEREDTAG_INTERVAL 559 #define DA_ORDEREDTAG_INTERVAL 4 560 #endif 561 562 static struct periph_driver dadriver = 563 { 564 dainit, "da", 565 TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0 566 }; 567 568 PERIPHDRIVER_DECLARE(da, dadriver); 569 570 static SLIST_HEAD(,da_softc) softc_list; 571 572 static int 573 daopen(struct disk *dp) 574 { 575 struct cam_periph *periph; 576 struct da_softc *softc; 577 int unit; 578 int error; 579 int s; 580 581 s = splsoftcam(); 582 periph = (struct cam_periph *)dp->d_drv1; 583 unit = periph->unit_number; 584 if (periph == NULL) { 585 splx(s); 586 return (ENXIO); 587 } 588 589 softc = (struct da_softc *)periph->softc; 590 591 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, 592 ("daopen: disk=%s%d (unit %d)\n", dp->d_name, dp->d_unit, 593 unit)); 594 595 if ((error = cam_periph_lock(periph, PRIBIO|PCATCH)) != 0) 596 return (error); /* error code from tsleep */ 597 598 if (cam_periph_acquire(periph) != CAM_REQ_CMP) 599 return(ENXIO); 600 softc->flags |= DA_FLAG_OPEN; 601 602 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) { 603 /* Invalidate our pack information. */ 604 softc->flags &= ~DA_FLAG_PACK_INVALID; 605 } 606 splx(s); 607 608 error = dagetcapacity(periph); 609 610 if (error == 0) { 611 612 softc->disk.d_sectorsize = softc->params.secsize; 613 softc->disk.d_mediasize = softc->params.secsize * (off_t)softc->params.sectors; 614 /* XXX: these are not actually "firmware" values, so they may be wrong */ 615 softc->disk.d_fwsectors = softc->params.secs_per_track; 616 softc->disk.d_fwheads = softc->params.heads; 617 softc->disk.d_devstat->block_size = softc->params.secsize; 618 softc->disk.d_devstat->flags &= ~DEVSTAT_BS_UNAVAILABLE; 619 } 620 621 if (error == 0) { 622 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) 623 daprevent(periph, PR_PREVENT); 624 } else { 625 softc->flags &= ~DA_FLAG_OPEN; 626 cam_periph_release(periph); 627 } 628 cam_periph_unlock(periph); 629 return (error); 630 } 631 632 static int 633 daclose(struct disk *dp) 634 { 635 struct cam_periph *periph; 636 struct da_softc *softc; 637 int error; 638 639 periph = (struct cam_periph *)dp->d_drv1; 640 if (periph == NULL) 641 return (ENXIO); 642 643 softc = (struct da_softc *)periph->softc; 644 645 if ((error = cam_periph_lock(periph, PRIBIO)) != 0) { 646 return (error); /* error code from tsleep */ 647 } 648 649 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) { 650 union ccb *ccb; 651 652 ccb = cam_periph_getccb(periph, /*priority*/1); 653 654 scsi_synchronize_cache(&ccb->csio, 655 /*retries*/1, 656 /*cbfcnp*/dadone, 657 MSG_SIMPLE_Q_TAG, 658 /*begin_lba*/0,/* Cover the whole disk */ 659 /*lb_count*/0, 660 SSD_FULL_SIZE, 661 5 * 60 * 1000); 662 663 cam_periph_runccb(ccb, /*error_routine*/NULL, /*cam_flags*/0, 664 /*sense_flags*/SF_RETRY_UA, 665 softc->disk.d_devstat); 666 667 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 668 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == 669 CAM_SCSI_STATUS_ERROR) { 670 int asc, ascq; 671 int sense_key, error_code; 672 673 scsi_extract_sense(&ccb->csio.sense_data, 674 &error_code, 675 &sense_key, 676 &asc, &ascq); 677 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 678 scsi_sense_print(&ccb->csio); 679 } else { 680 xpt_print_path(periph->path); 681 printf("Synchronize cache failed, status " 682 "== 0x%x, scsi status == 0x%x\n", 683 ccb->csio.ccb_h.status, 684 ccb->csio.scsi_status); 685 } 686 } 687 688 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 689 cam_release_devq(ccb->ccb_h.path, 690 /*relsim_flags*/0, 691 /*reduction*/0, 692 /*timeout*/0, 693 /*getcount_only*/0); 694 695 xpt_release_ccb(ccb); 696 697 } 698 699 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) { 700 daprevent(periph, PR_ALLOW); 701 /* 702 * If we've got removeable media, mark the blocksize as 703 * unavailable, since it could change when new media is 704 * inserted. 705 */ 706 softc->disk.d_devstat->flags |= DEVSTAT_BS_UNAVAILABLE; 707 } 708 709 softc->flags &= ~DA_FLAG_OPEN; 710 cam_periph_unlock(periph); 711 cam_periph_release(periph); 712 return (0); 713 } 714 715 /* 716 * Actually translate the requested transfer into one the physical driver 717 * can understand. The transfer is described by a buf and will include 718 * only one physical transfer. 719 */ 720 static void 721 dastrategy(struct bio *bp) 722 { 723 struct cam_periph *periph; 724 struct da_softc *softc; 725 int s; 726 727 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 728 if (periph == NULL) { 729 biofinish(bp, NULL, ENXIO); 730 return; 731 } 732 softc = (struct da_softc *)periph->softc; 733 #if 0 734 /* 735 * check it's not too big a transfer for our adapter 736 */ 737 scsi_minphys(bp,&sd_switch); 738 #endif 739 740 /* 741 * Mask interrupts so that the pack cannot be invalidated until 742 * after we are in the queue. Otherwise, we might not properly 743 * clean up one of the buffers. 744 */ 745 s = splbio(); 746 747 /* 748 * If the device has been made invalid, error out 749 */ 750 if ((softc->flags & DA_FLAG_PACK_INVALID)) { 751 splx(s); 752 biofinish(bp, NULL, ENXIO); 753 return; 754 } 755 756 /* 757 * Place it in the queue of disk activities for this disk 758 */ 759 bioq_disksort(&softc->bio_queue, bp); 760 761 splx(s); 762 763 /* 764 * Schedule ourselves for performing the work. 765 */ 766 xpt_schedule(periph, /* XXX priority */1); 767 768 return; 769 } 770 771 static int 772 dadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length) 773 { 774 struct cam_periph *periph; 775 struct da_softc *softc; 776 u_int secsize; 777 struct ccb_scsiio csio; 778 struct disk *dp; 779 780 dp = arg; 781 periph = dp->d_drv1; 782 if (periph == NULL) 783 return (ENXIO); 784 softc = (struct da_softc *)periph->softc; 785 secsize = softc->params.secsize; 786 787 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) 788 return (ENXIO); 789 790 if (length > 0) { 791 xpt_setup_ccb(&csio.ccb_h, periph->path, /*priority*/1); 792 csio.ccb_h.ccb_state = DA_CCB_DUMP; 793 scsi_read_write(&csio, 794 /*retries*/1, 795 dadone, 796 MSG_ORDERED_Q_TAG, 797 /*read*/FALSE, 798 /*byte2*/0, 799 /*minimum_cmd_size*/ softc->minimum_cmd_size, 800 offset / secsize, 801 length / secsize, 802 /*data_ptr*/(u_int8_t *) virtual, 803 /*dxfer_len*/length, 804 /*sense_len*/SSD_FULL_SIZE, 805 DA_DEFAULT_TIMEOUT * 1000); 806 xpt_polled_action((union ccb *)&csio); 807 808 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 809 printf("Aborting dump due to I/O error.\n"); 810 if ((csio.ccb_h.status & CAM_STATUS_MASK) == 811 CAM_SCSI_STATUS_ERROR) 812 scsi_sense_print(&csio); 813 else 814 printf("status == 0x%x, scsi status == 0x%x\n", 815 csio.ccb_h.status, csio.scsi_status); 816 return(EIO); 817 } 818 return(0); 819 } 820 821 /* 822 * Sync the disk cache contents to the physical media. 823 */ 824 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) { 825 826 xpt_setup_ccb(&csio.ccb_h, periph->path, /*priority*/1); 827 csio.ccb_h.ccb_state = DA_CCB_DUMP; 828 scsi_synchronize_cache(&csio, 829 /*retries*/1, 830 /*cbfcnp*/dadone, 831 MSG_SIMPLE_Q_TAG, 832 /*begin_lba*/0,/* Cover the whole disk */ 833 /*lb_count*/0, 834 SSD_FULL_SIZE, 835 5 * 60 * 1000); 836 xpt_polled_action((union ccb *)&csio); 837 838 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 839 if ((csio.ccb_h.status & CAM_STATUS_MASK) == 840 CAM_SCSI_STATUS_ERROR) { 841 int asc, ascq; 842 int sense_key, error_code; 843 844 scsi_extract_sense(&csio.sense_data, 845 &error_code, 846 &sense_key, 847 &asc, &ascq); 848 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 849 scsi_sense_print(&csio); 850 } else { 851 xpt_print_path(periph->path); 852 printf("Synchronize cache failed, status " 853 "== 0x%x, scsi status == 0x%x\n", 854 csio.ccb_h.status, csio.scsi_status); 855 } 856 } 857 } 858 return (0); 859 } 860 861 static void 862 dainit(void) 863 { 864 cam_status status; 865 struct cam_path *path; 866 867 SLIST_INIT(&softc_list); 868 869 /* 870 * Install a global async callback. This callback will 871 * receive async callbacks like "new device found". 872 */ 873 status = xpt_create_path(&path, /*periph*/NULL, CAM_XPT_PATH_ID, 874 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD); 875 876 if (status == CAM_REQ_CMP) { 877 struct ccb_setasync csa; 878 879 xpt_setup_ccb(&csa.ccb_h, path, /*priority*/5); 880 csa.ccb_h.func_code = XPT_SASYNC_CB; 881 csa.event_enable = AC_FOUND_DEVICE; 882 csa.callback = daasync; 883 csa.callback_arg = NULL; 884 xpt_action((union ccb *)&csa); 885 status = csa.ccb_h.status; 886 xpt_free_path(path); 887 } 888 889 if (status != CAM_REQ_CMP) { 890 printf("da: Failed to attach master async callback " 891 "due to status 0x%x!\n", status); 892 } else { 893 894 /* 895 * Schedule a periodic event to occasionally send an 896 * ordered tag to a device. 897 */ 898 timeout(dasendorderedtag, NULL, 899 (DA_DEFAULT_TIMEOUT * hz) / DA_ORDEREDTAG_INTERVAL); 900 901 /* Register our shutdown event handler */ 902 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown, 903 NULL, SHUTDOWN_PRI_DEFAULT)) == NULL) 904 printf("dainit: shutdown event registration failed!\n"); 905 } 906 } 907 908 static void 909 daoninvalidate(struct cam_periph *periph) 910 { 911 int s; 912 struct da_softc *softc; 913 struct ccb_setasync csa; 914 915 softc = (struct da_softc *)periph->softc; 916 917 /* 918 * De-register any async callbacks. 919 */ 920 xpt_setup_ccb(&csa.ccb_h, periph->path, 921 /* priority */ 5); 922 csa.ccb_h.func_code = XPT_SASYNC_CB; 923 csa.event_enable = 0; 924 csa.callback = daasync; 925 csa.callback_arg = periph; 926 xpt_action((union ccb *)&csa); 927 928 softc->flags |= DA_FLAG_PACK_INVALID; 929 930 /* 931 * Although the oninvalidate() routines are always called at 932 * splsoftcam, we need to be at splbio() here to keep the buffer 933 * queue from being modified while we traverse it. 934 */ 935 s = splbio(); 936 937 /* 938 * Return all queued I/O with ENXIO. 939 * XXX Handle any transactions queued to the card 940 * with XPT_ABORT_CCB. 941 */ 942 bioq_flush(&softc->bio_queue, NULL, ENXIO); 943 splx(s); 944 945 SLIST_REMOVE(&softc_list, softc, da_softc, links); 946 947 xpt_print_path(periph->path); 948 printf("lost device\n"); 949 } 950 951 static void 952 dacleanup(struct cam_periph *periph) 953 { 954 struct da_softc *softc; 955 956 softc = (struct da_softc *)periph->softc; 957 958 xpt_print_path(periph->path); 959 printf("removing device entry\n"); 960 /* 961 * If we can't free the sysctl tree, oh well... 962 */ 963 if (sysctl_ctx_free(&softc->sysctl_ctx) != 0) { 964 xpt_print_path(periph->path); 965 printf("can't remove sysctl context\n"); 966 } 967 disk_destroy(&softc->disk); 968 free(softc, M_DEVBUF); 969 } 970 971 static void 972 daasync(void *callback_arg, u_int32_t code, 973 struct cam_path *path, void *arg) 974 { 975 struct cam_periph *periph; 976 977 periph = (struct cam_periph *)callback_arg; 978 switch (code) { 979 case AC_FOUND_DEVICE: 980 { 981 struct ccb_getdev *cgd; 982 cam_status status; 983 984 cgd = (struct ccb_getdev *)arg; 985 if (cgd == NULL) 986 break; 987 988 if (SID_TYPE(&cgd->inq_data) != T_DIRECT 989 && SID_TYPE(&cgd->inq_data) != T_RBC 990 && SID_TYPE(&cgd->inq_data) != T_OPTICAL) 991 break; 992 993 /* 994 * Allocate a peripheral instance for 995 * this device and start the probe 996 * process. 997 */ 998 status = cam_periph_alloc(daregister, daoninvalidate, 999 dacleanup, dastart, 1000 "da", CAM_PERIPH_BIO, 1001 cgd->ccb_h.path, daasync, 1002 AC_FOUND_DEVICE, cgd); 1003 1004 if (status != CAM_REQ_CMP 1005 && status != CAM_REQ_INPROG) 1006 printf("daasync: Unable to attach to new device " 1007 "due to status 0x%x\n", status); 1008 break; 1009 } 1010 case AC_SENT_BDR: 1011 case AC_BUS_RESET: 1012 { 1013 struct da_softc *softc; 1014 struct ccb_hdr *ccbh; 1015 int s; 1016 1017 softc = (struct da_softc *)periph->softc; 1018 s = splsoftcam(); 1019 /* 1020 * Don't fail on the expected unit attention 1021 * that will occur. 1022 */ 1023 softc->flags |= DA_FLAG_RETRY_UA; 1024 LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le) 1025 ccbh->ccb_state |= DA_CCB_RETRY_UA; 1026 splx(s); 1027 /* FALLTHROUGH*/ 1028 } 1029 default: 1030 cam_periph_async(periph, code, path, arg); 1031 break; 1032 } 1033 } 1034 1035 static int 1036 dacmdsizesysctl(SYSCTL_HANDLER_ARGS) 1037 { 1038 int error, value; 1039 1040 value = *(int *)arg1; 1041 1042 error = sysctl_handle_int(oidp, &value, 0, req); 1043 1044 if ((error != 0) 1045 || (req->newptr == NULL)) 1046 return (error); 1047 1048 /* 1049 * Acceptable values here are 6, 10, 12 or 16. 1050 */ 1051 if (value < 6) 1052 value = 6; 1053 else if ((value > 6) 1054 && (value <= 10)) 1055 value = 10; 1056 else if ((value > 10) 1057 && (value <= 12)) 1058 value = 12; 1059 else if (value > 12) 1060 value = 16; 1061 1062 *(int *)arg1 = value; 1063 1064 return (0); 1065 } 1066 1067 static cam_status 1068 daregister(struct cam_periph *periph, void *arg) 1069 { 1070 int s; 1071 struct da_softc *softc; 1072 struct ccb_setasync csa; 1073 struct ccb_getdev *cgd; 1074 char tmpstr[80], tmpstr2[80]; 1075 caddr_t match; 1076 1077 cgd = (struct ccb_getdev *)arg; 1078 if (periph == NULL) { 1079 printf("daregister: periph was NULL!!\n"); 1080 return(CAM_REQ_CMP_ERR); 1081 } 1082 1083 if (cgd == NULL) { 1084 printf("daregister: no getdev CCB, can't register device\n"); 1085 return(CAM_REQ_CMP_ERR); 1086 } 1087 1088 softc = (struct da_softc *)malloc(sizeof(*softc), M_DEVBUF, 1089 M_NOWAIT|M_ZERO); 1090 1091 if (softc == NULL) { 1092 printf("daregister: Unable to probe new device. " 1093 "Unable to allocate softc\n"); 1094 return(CAM_REQ_CMP_ERR); 1095 } 1096 1097 LIST_INIT(&softc->pending_ccbs); 1098 softc->state = DA_STATE_PROBE; 1099 bioq_init(&softc->bio_queue); 1100 if (SID_IS_REMOVABLE(&cgd->inq_data)) 1101 softc->flags |= DA_FLAG_PACK_REMOVABLE; 1102 if ((cgd->inq_data.flags & SID_CmdQue) != 0) 1103 softc->flags |= DA_FLAG_TAGGED_QUEUING; 1104 1105 periph->softc = softc; 1106 1107 /* 1108 * See if this device has any quirks. 1109 */ 1110 match = cam_quirkmatch((caddr_t)&cgd->inq_data, 1111 (caddr_t)da_quirk_table, 1112 sizeof(da_quirk_table)/sizeof(*da_quirk_table), 1113 sizeof(*da_quirk_table), scsi_inquiry_match); 1114 1115 if (match != NULL) 1116 softc->quirks = ((struct da_quirk_entry *)match)->quirks; 1117 else 1118 softc->quirks = DA_Q_NONE; 1119 1120 snprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number); 1121 snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number); 1122 sysctl_ctx_init(&softc->sysctl_ctx); 1123 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx, 1124 SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2, 1125 CTLFLAG_RD, 0, tmpstr); 1126 if (softc->sysctl_tree == NULL) { 1127 printf("daregister: unable to allocate sysctl tree\n"); 1128 free(softc, M_DEVBUF); 1129 return (CAM_REQ_CMP_ERR); 1130 } 1131 1132 /* 1133 * RBC devices don't have to support READ(6), only READ(10). 1134 */ 1135 if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC) 1136 softc->minimum_cmd_size = 10; 1137 else 1138 softc->minimum_cmd_size = 6; 1139 1140 /* 1141 * Load the user's default, if any. 1142 */ 1143 snprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size", 1144 periph->unit_number); 1145 TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size); 1146 1147 /* 1148 * 6, 10, 12 and 16 are the currently permissible values. 1149 */ 1150 if (softc->minimum_cmd_size < 6) 1151 softc->minimum_cmd_size = 6; 1152 else if ((softc->minimum_cmd_size > 6) 1153 && (softc->minimum_cmd_size <= 10)) 1154 softc->minimum_cmd_size = 10; 1155 else if ((softc->minimum_cmd_size > 10) 1156 && (softc->minimum_cmd_size <= 12)) 1157 softc->minimum_cmd_size = 12; 1158 else if (softc->minimum_cmd_size > 12) 1159 softc->minimum_cmd_size = 16; 1160 1161 /* 1162 * Now register the sysctl handler, so the user can the value on 1163 * the fly. 1164 */ 1165 SYSCTL_ADD_PROC(&softc->sysctl_ctx,SYSCTL_CHILDREN(softc->sysctl_tree), 1166 OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW, 1167 &softc->minimum_cmd_size, 0, dacmdsizesysctl, "I", 1168 "Minimum CDB size"); 1169 1170 /* 1171 * Block our timeout handler while we 1172 * add this softc to the dev list. 1173 */ 1174 s = splsoftclock(); 1175 SLIST_INSERT_HEAD(&softc_list, softc, links); 1176 splx(s); 1177 1178 /* 1179 * Register this media as a disk 1180 */ 1181 1182 softc->disk.d_open = daopen; 1183 softc->disk.d_close = daclose; 1184 softc->disk.d_strategy = dastrategy; 1185 softc->disk.d_dump = dadump; 1186 softc->disk.d_name = "da"; 1187 softc->disk.d_drv1 = periph; 1188 softc->disk.d_maxsize = DFLTPHYS; /* XXX: probably not arbitrary */ 1189 disk_create(periph->unit_number, &softc->disk, 0, NULL, NULL); 1190 1191 /* 1192 * Add async callbacks for bus reset and 1193 * bus device reset calls. I don't bother 1194 * checking if this fails as, in most cases, 1195 * the system will function just fine without 1196 * them and the only alternative would be to 1197 * not attach the device on failure. 1198 */ 1199 xpt_setup_ccb(&csa.ccb_h, periph->path, /*priority*/5); 1200 csa.ccb_h.func_code = XPT_SASYNC_CB; 1201 csa.event_enable = AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE; 1202 csa.callback = daasync; 1203 csa.callback_arg = periph; 1204 xpt_action((union ccb *)&csa); 1205 /* 1206 * Lock this peripheral until we are setup. 1207 * This first call can't block 1208 */ 1209 (void)cam_periph_lock(periph, PRIBIO); 1210 xpt_schedule(periph, /*priority*/5); 1211 1212 return(CAM_REQ_CMP); 1213 } 1214 1215 static void 1216 dastart(struct cam_periph *periph, union ccb *start_ccb) 1217 { 1218 struct da_softc *softc; 1219 1220 softc = (struct da_softc *)periph->softc; 1221 1222 1223 switch (softc->state) { 1224 case DA_STATE_NORMAL: 1225 { 1226 /* Pull a buffer from the queue and get going on it */ 1227 struct bio *bp; 1228 int s; 1229 1230 /* 1231 * See if there is a buf with work for us to do.. 1232 */ 1233 s = splbio(); 1234 bp = bioq_first(&softc->bio_queue); 1235 if (periph->immediate_priority <= periph->pinfo.priority) { 1236 CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE, 1237 ("queuing for immediate ccb\n")); 1238 start_ccb->ccb_h.ccb_state = DA_CCB_WAITING; 1239 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h, 1240 periph_links.sle); 1241 periph->immediate_priority = CAM_PRIORITY_NONE; 1242 splx(s); 1243 wakeup(&periph->ccb_list); 1244 } else if (bp == NULL) { 1245 splx(s); 1246 xpt_release_ccb(start_ccb); 1247 } else { 1248 int oldspl; 1249 u_int8_t tag_code; 1250 1251 bioq_remove(&softc->bio_queue, bp); 1252 1253 if ((softc->flags & DA_FLAG_NEED_OTAG) != 0) { 1254 softc->flags &= ~DA_FLAG_NEED_OTAG; 1255 softc->ordered_tag_count++; 1256 tag_code = MSG_ORDERED_Q_TAG; 1257 } else { 1258 tag_code = MSG_SIMPLE_Q_TAG; 1259 } 1260 scsi_read_write(&start_ccb->csio, 1261 /*retries*/da_retry_count, 1262 /*cbfcnp*/dadone, 1263 /*tag_action*/tag_code, 1264 /*read_op*/bp->bio_cmd == BIO_READ, 1265 /*byte2*/0, 1266 softc->minimum_cmd_size, 1267 /*lba*/bp->bio_pblkno, 1268 /*block_count*/bp->bio_bcount / 1269 softc->params.secsize, 1270 /*data_ptr*/ bp->bio_data, 1271 /*dxfer_len*/ bp->bio_bcount, 1272 /*sense_len*/SSD_FULL_SIZE, 1273 /*timeout*/da_default_timeout*1000); 1274 start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO; 1275 1276 /* 1277 * Block out any asyncronous callbacks 1278 * while we touch the pending ccb list. 1279 */ 1280 oldspl = splcam(); 1281 LIST_INSERT_HEAD(&softc->pending_ccbs, 1282 &start_ccb->ccb_h, periph_links.le); 1283 softc->outstanding_cmds++; 1284 splx(oldspl); 1285 1286 /* We expect a unit attention from this device */ 1287 if ((softc->flags & DA_FLAG_RETRY_UA) != 0) { 1288 start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA; 1289 softc->flags &= ~DA_FLAG_RETRY_UA; 1290 } 1291 1292 start_ccb->ccb_h.ccb_bp = bp; 1293 bp = bioq_first(&softc->bio_queue); 1294 splx(s); 1295 1296 xpt_action(start_ccb); 1297 } 1298 1299 if (bp != NULL) { 1300 /* Have more work to do, so ensure we stay scheduled */ 1301 xpt_schedule(periph, /* XXX priority */1); 1302 } 1303 break; 1304 } 1305 case DA_STATE_PROBE: 1306 { 1307 struct ccb_scsiio *csio; 1308 struct scsi_read_capacity_data *rcap; 1309 1310 rcap = (struct scsi_read_capacity_data *)malloc(sizeof(*rcap), 1311 M_TEMP, 1312 M_NOWAIT); 1313 if (rcap == NULL) { 1314 printf("dastart: Couldn't malloc read_capacity data\n"); 1315 /* da_free_periph??? */ 1316 break; 1317 } 1318 csio = &start_ccb->csio; 1319 scsi_read_capacity(csio, 1320 /*retries*/4, 1321 dadone, 1322 MSG_SIMPLE_Q_TAG, 1323 rcap, 1324 SSD_FULL_SIZE, 1325 /*timeout*/5000); 1326 start_ccb->ccb_h.ccb_bp = NULL; 1327 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE; 1328 xpt_action(start_ccb); 1329 break; 1330 } 1331 case DA_STATE_PROBE2: 1332 { 1333 struct ccb_scsiio *csio; 1334 struct scsi_read_capacity_data_long *rcaplong; 1335 1336 rcaplong = (struct scsi_read_capacity_data_long *) 1337 malloc(sizeof(*rcaplong), M_TEMP, M_NOWAIT); 1338 if (rcaplong == NULL) { 1339 printf("dastart: Couldn't malloc read_capacity data\n"); 1340 /* da_free_periph??? */ 1341 break; 1342 } 1343 csio = &start_ccb->csio; 1344 scsi_read_capacity_16(csio, 1345 /*retries*/ 4, 1346 /*cbfcnp*/ dadone, 1347 /*tag_action*/ MSG_SIMPLE_Q_TAG, 1348 /*lba*/ 0, 1349 /*reladr*/ 0, 1350 /*pmi*/ 0, 1351 rcaplong, 1352 /*sense_len*/ SSD_FULL_SIZE, 1353 /*timeout*/ 60000); 1354 start_ccb->ccb_h.ccb_bp = NULL; 1355 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE2; 1356 xpt_action(start_ccb); 1357 break; 1358 } 1359 } 1360 } 1361 1362 static int 1363 cmd6workaround(union ccb *ccb) 1364 { 1365 struct scsi_rw_6 cmd6; 1366 struct scsi_rw_10 *cmd10; 1367 struct da_softc *softc; 1368 u_int8_t *cdb; 1369 int frozen; 1370 1371 cdb = ccb->csio.cdb_io.cdb_bytes; 1372 1373 /* Translation only possible if CDB is an array and cmd is R/W6 */ 1374 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 || 1375 (*cdb != READ_6 && *cdb != WRITE_6)) 1376 return 0; 1377 1378 xpt_print_path(ccb->ccb_h.path); 1379 printf("READ(6)/WRITE(6) not supported, " 1380 "increasing minimum_cmd_size to 10.\n"); 1381 softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc; 1382 softc->minimum_cmd_size = 10; 1383 1384 bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6)); 1385 cmd10 = (struct scsi_rw_10 *)cdb; 1386 cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10; 1387 cmd10->byte2 = 0; 1388 scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr); 1389 cmd10->reserved = 0; 1390 scsi_ulto2b(cmd6.length, cmd10->length); 1391 cmd10->control = cmd6.control; 1392 ccb->csio.cdb_len = sizeof(*cmd10); 1393 1394 /* Requeue request, unfreezing queue if necessary */ 1395 frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0; 1396 ccb->ccb_h.status = CAM_REQUEUE_REQ; 1397 xpt_action(ccb); 1398 if (frozen) { 1399 cam_release_devq(ccb->ccb_h.path, 1400 /*relsim_flags*/0, 1401 /*reduction*/0, 1402 /*timeout*/0, 1403 /*getcount_only*/0); 1404 } 1405 return (ERESTART); 1406 } 1407 1408 static void 1409 dadone(struct cam_periph *periph, union ccb *done_ccb) 1410 { 1411 struct da_softc *softc; 1412 struct ccb_scsiio *csio; 1413 1414 softc = (struct da_softc *)periph->softc; 1415 csio = &done_ccb->csio; 1416 switch (csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) { 1417 case DA_CCB_BUFFER_IO: 1418 { 1419 struct bio *bp; 1420 int oldspl; 1421 1422 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 1423 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1424 int error; 1425 int s; 1426 int sf; 1427 1428 if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0) 1429 sf = SF_RETRY_UA; 1430 else 1431 sf = 0; 1432 1433 error = daerror(done_ccb, CAM_RETRY_SELTO, sf); 1434 if (error == ERESTART) { 1435 /* 1436 * A retry was scheuled, so 1437 * just return. 1438 */ 1439 return; 1440 } 1441 if (error != 0) { 1442 1443 s = splbio(); 1444 1445 if (error == ENXIO) { 1446 /* 1447 * Catastrophic error. Mark our pack as 1448 * invalid. 1449 */ 1450 /* XXX See if this is really a media 1451 * change first. 1452 */ 1453 xpt_print_path(periph->path); 1454 printf("Invalidating pack\n"); 1455 softc->flags |= DA_FLAG_PACK_INVALID; 1456 } 1457 1458 /* 1459 * return all queued I/O with EIO, so that 1460 * the client can retry these I/Os in the 1461 * proper order should it attempt to recover. 1462 */ 1463 bioq_flush(&softc->bio_queue, NULL, EIO); 1464 splx(s); 1465 bp->bio_error = error; 1466 bp->bio_resid = bp->bio_bcount; 1467 bp->bio_flags |= BIO_ERROR; 1468 } else { 1469 bp->bio_resid = csio->resid; 1470 bp->bio_error = 0; 1471 if (bp->bio_resid != 0) { 1472 /* Short transfer ??? */ 1473 #if 0 1474 if (cmd6workaround(done_ccb) 1475 == ERESTART) 1476 return; 1477 #endif 1478 bp->bio_flags |= BIO_ERROR; 1479 } 1480 } 1481 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1482 cam_release_devq(done_ccb->ccb_h.path, 1483 /*relsim_flags*/0, 1484 /*reduction*/0, 1485 /*timeout*/0, 1486 /*getcount_only*/0); 1487 } else { 1488 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1489 panic("REQ_CMP with QFRZN"); 1490 bp->bio_resid = csio->resid; 1491 if (csio->resid > 0) { 1492 /* Short transfer ??? */ 1493 #if 0 /* XXX most of the broken umass devices need this ad-hoc work around */ 1494 if (cmd6workaround(done_ccb) == ERESTART) 1495 return; 1496 #endif 1497 bp->bio_flags |= BIO_ERROR; 1498 } 1499 } 1500 1501 /* 1502 * Block out any asyncronous callbacks 1503 * while we touch the pending ccb list. 1504 */ 1505 oldspl = splcam(); 1506 LIST_REMOVE(&done_ccb->ccb_h, periph_links.le); 1507 softc->outstanding_cmds--; 1508 if (softc->outstanding_cmds == 0) 1509 softc->flags |= DA_FLAG_WENT_IDLE; 1510 splx(oldspl); 1511 1512 biodone(bp); 1513 break; 1514 } 1515 case DA_CCB_PROBE: 1516 case DA_CCB_PROBE2: 1517 { 1518 struct scsi_read_capacity_data *rdcap; 1519 struct scsi_read_capacity_data_long *rcaplong; 1520 char announce_buf[80]; 1521 1522 rdcap = NULL; 1523 rcaplong = NULL; 1524 if (softc->state == DA_STATE_PROBE) 1525 rdcap =(struct scsi_read_capacity_data *)csio->data_ptr; 1526 else 1527 rcaplong = (struct scsi_read_capacity_data_long *) 1528 csio->data_ptr; 1529 1530 if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) { 1531 struct disk_params *dp; 1532 uint32_t block_size; 1533 uint64_t maxsector; 1534 1535 if (softc->state == DA_STATE_PROBE) { 1536 block_size = scsi_4btoul(rdcap->length); 1537 maxsector = scsi_4btoul(rdcap->addr); 1538 1539 /* 1540 * According to SBC-2, if the standard 10 1541 * byte READ CAPACITY command returns 2^32, 1542 * we should issue the 16 byte version of 1543 * the command, since the device in question 1544 * has more sectors than can be represented 1545 * with the short version of the command. 1546 */ 1547 if (maxsector == 0xffffffff) { 1548 softc->state = DA_STATE_PROBE2; 1549 free(rdcap, M_TEMP); 1550 xpt_release_ccb(done_ccb); 1551 xpt_schedule(periph, /*priority*/5); 1552 return; 1553 } 1554 } else { 1555 block_size = scsi_4btoul(rcaplong->length); 1556 maxsector = scsi_8btou64(rcaplong->addr); 1557 } 1558 dasetgeom(periph, block_size, maxsector); 1559 dp = &softc->params; 1560 snprintf(announce_buf, sizeof(announce_buf), 1561 "%juMB (%ju %u byte sectors: %dH %dS/T %dC)", 1562 (uintmax_t) (((uintmax_t)dp->secsize * 1563 dp->sectors) / (1024*1024)), 1564 (uintmax_t)dp->sectors, 1565 dp->secsize, dp->heads, dp->secs_per_track, 1566 dp->cylinders); 1567 } else { 1568 int error; 1569 1570 announce_buf[0] = '\0'; 1571 1572 /* 1573 * Retry any UNIT ATTENTION type errors. They 1574 * are expected at boot. 1575 */ 1576 error = daerror(done_ccb, CAM_RETRY_SELTO, 1577 SF_RETRY_UA|SF_NO_PRINT); 1578 if (error == ERESTART) { 1579 /* 1580 * A retry was scheuled, so 1581 * just return. 1582 */ 1583 return; 1584 } else if (error != 0) { 1585 struct scsi_sense_data *sense; 1586 int asc, ascq; 1587 int sense_key, error_code; 1588 int have_sense; 1589 cam_status status; 1590 struct ccb_getdev cgd; 1591 1592 /* Don't wedge this device's queue */ 1593 status = done_ccb->ccb_h.status; 1594 if ((status & CAM_DEV_QFRZN) != 0) 1595 cam_release_devq(done_ccb->ccb_h.path, 1596 /*relsim_flags*/0, 1597 /*reduction*/0, 1598 /*timeout*/0, 1599 /*getcount_only*/0); 1600 1601 1602 xpt_setup_ccb(&cgd.ccb_h, 1603 done_ccb->ccb_h.path, 1604 /* priority */ 1); 1605 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 1606 xpt_action((union ccb *)&cgd); 1607 1608 if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0) 1609 || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0) 1610 || ((status & CAM_AUTOSNS_VALID) == 0)) 1611 have_sense = FALSE; 1612 else 1613 have_sense = TRUE; 1614 1615 if (have_sense) { 1616 sense = &csio->sense_data; 1617 scsi_extract_sense(sense, &error_code, 1618 &sense_key, 1619 &asc, &ascq); 1620 } 1621 /* 1622 * Attach to anything that claims to be a 1623 * direct access or optical disk device, 1624 * as long as it doesn't return a "Logical 1625 * unit not supported" (0x25) error. 1626 */ 1627 if ((have_sense) && (asc != 0x25) 1628 && (error_code == SSD_CURRENT_ERROR)) { 1629 const char *sense_key_desc; 1630 const char *asc_desc; 1631 1632 scsi_sense_desc(sense_key, asc, ascq, 1633 &cgd.inq_data, 1634 &sense_key_desc, 1635 &asc_desc); 1636 snprintf(announce_buf, 1637 sizeof(announce_buf), 1638 "Attempt to query device " 1639 "size failed: %s, %s", 1640 sense_key_desc, 1641 asc_desc); 1642 } else { 1643 if (have_sense) 1644 scsi_sense_print( 1645 &done_ccb->csio); 1646 else { 1647 xpt_print_path(periph->path); 1648 printf("got CAM status %#x\n", 1649 done_ccb->ccb_h.status); 1650 } 1651 1652 xpt_print_path(periph->path); 1653 printf("fatal error, failed" 1654 " to attach to device\n"); 1655 1656 /* 1657 * Free up resources. 1658 */ 1659 cam_periph_invalidate(periph); 1660 } 1661 } 1662 } 1663 free(csio->data_ptr, M_TEMP); 1664 if (announce_buf[0] != '\0') 1665 xpt_announce_periph(periph, announce_buf); 1666 softc->state = DA_STATE_NORMAL; 1667 /* 1668 * Since our peripheral may be invalidated by an error 1669 * above or an external event, we must release our CCB 1670 * before releasing the probe lock on the peripheral. 1671 * The peripheral will only go away once the last lock 1672 * is removed, and we need it around for the CCB release 1673 * operation. 1674 */ 1675 xpt_release_ccb(done_ccb); 1676 cam_periph_unlock(periph); 1677 return; 1678 } 1679 case DA_CCB_WAITING: 1680 { 1681 /* Caller will release the CCB */ 1682 wakeup(&done_ccb->ccb_h.cbfcnp); 1683 return; 1684 } 1685 case DA_CCB_DUMP: 1686 /* No-op. We're polling */ 1687 return; 1688 default: 1689 break; 1690 } 1691 xpt_release_ccb(done_ccb); 1692 } 1693 1694 static int 1695 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags) 1696 { 1697 struct da_softc *softc; 1698 struct cam_periph *periph; 1699 int error; 1700 1701 periph = xpt_path_periph(ccb->ccb_h.path); 1702 softc = (struct da_softc *)periph->softc; 1703 1704 /* 1705 * Automatically detect devices that do not support 1706 * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs. 1707 */ 1708 error = 0; 1709 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) { 1710 error = cmd6workaround(ccb); 1711 } else if (((ccb->ccb_h.status & CAM_STATUS_MASK) == 1712 CAM_SCSI_STATUS_ERROR) 1713 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID) 1714 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND) 1715 && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0) 1716 && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) { 1717 int sense_key, error_code, asc, ascq; 1718 1719 scsi_extract_sense(&ccb->csio.sense_data, 1720 &error_code, &sense_key, &asc, &ascq); 1721 if (sense_key == SSD_KEY_ILLEGAL_REQUEST) 1722 error = cmd6workaround(ccb); 1723 } 1724 if (error == ERESTART) 1725 return (ERESTART); 1726 1727 /* 1728 * XXX 1729 * Until we have a better way of doing pack validation, 1730 * don't treat UAs as errors. 1731 */ 1732 sense_flags |= SF_RETRY_UA; 1733 return(cam_periph_error(ccb, cam_flags, sense_flags, 1734 &softc->saved_ccb)); 1735 } 1736 1737 static void 1738 daprevent(struct cam_periph *periph, int action) 1739 { 1740 struct da_softc *softc; 1741 union ccb *ccb; 1742 int error; 1743 1744 softc = (struct da_softc *)periph->softc; 1745 1746 if (((action == PR_ALLOW) 1747 && (softc->flags & DA_FLAG_PACK_LOCKED) == 0) 1748 || ((action == PR_PREVENT) 1749 && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) { 1750 return; 1751 } 1752 1753 ccb = cam_periph_getccb(periph, /*priority*/1); 1754 1755 scsi_prevent(&ccb->csio, 1756 /*retries*/1, 1757 /*cbcfp*/dadone, 1758 MSG_SIMPLE_Q_TAG, 1759 action, 1760 SSD_FULL_SIZE, 1761 5000); 1762 1763 error = cam_periph_runccb(ccb, /*error_routine*/NULL, CAM_RETRY_SELTO, 1764 SF_RETRY_UA, softc->disk.d_devstat); 1765 1766 if (error == 0) { 1767 if (action == PR_ALLOW) 1768 softc->flags &= ~DA_FLAG_PACK_LOCKED; 1769 else 1770 softc->flags |= DA_FLAG_PACK_LOCKED; 1771 } 1772 1773 xpt_release_ccb(ccb); 1774 } 1775 1776 static int 1777 dagetcapacity(struct cam_periph *periph) 1778 { 1779 struct da_softc *softc; 1780 union ccb *ccb; 1781 struct scsi_read_capacity_data *rcap; 1782 struct scsi_read_capacity_data_long *rcaplong; 1783 uint32_t block_len; 1784 uint64_t maxsector; 1785 int error; 1786 1787 softc = (struct da_softc *)periph->softc; 1788 block_len = 0; 1789 maxsector = 0; 1790 error = 0; 1791 1792 /* Do a read capacity */ 1793 rcap = (struct scsi_read_capacity_data *)malloc(sizeof(*rcaplong), 1794 M_TEMP, 1795 M_WAITOK); 1796 1797 ccb = cam_periph_getccb(periph, /*priority*/1); 1798 scsi_read_capacity(&ccb->csio, 1799 /*retries*/4, 1800 /*cbfncp*/dadone, 1801 MSG_SIMPLE_Q_TAG, 1802 rcap, 1803 SSD_FULL_SIZE, 1804 /*timeout*/60000); 1805 ccb->ccb_h.ccb_bp = NULL; 1806 1807 error = cam_periph_runccb(ccb, daerror, 1808 /*cam_flags*/CAM_RETRY_SELTO, 1809 /*sense_flags*/SF_RETRY_UA, 1810 softc->disk.d_devstat); 1811 1812 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1813 cam_release_devq(ccb->ccb_h.path, 1814 /*relsim_flags*/0, 1815 /*reduction*/0, 1816 /*timeout*/0, 1817 /*getcount_only*/0); 1818 1819 if (error == 0) { 1820 block_len = scsi_4btoul(rcap->length); 1821 maxsector = scsi_4btoul(rcap->addr); 1822 1823 if (maxsector != 0xffffffff) 1824 goto done; 1825 } else 1826 goto done; 1827 1828 rcaplong = (struct scsi_read_capacity_data_long *)rcap; 1829 1830 scsi_read_capacity_16(&ccb->csio, 1831 /*retries*/ 4, 1832 /*cbfcnp*/ dadone, 1833 /*tag_action*/ MSG_SIMPLE_Q_TAG, 1834 /*lba*/ 0, 1835 /*reladr*/ 0, 1836 /*pmi*/ 0, 1837 rcaplong, 1838 /*sense_len*/ SSD_FULL_SIZE, 1839 /*timeout*/ 60000); 1840 ccb->ccb_h.ccb_bp = NULL; 1841 1842 error = cam_periph_runccb(ccb, daerror, 1843 /*cam_flags*/CAM_RETRY_SELTO, 1844 /*sense_flags*/SF_RETRY_UA, 1845 softc->disk.d_devstat); 1846 1847 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1848 cam_release_devq(ccb->ccb_h.path, 1849 /*relsim_flags*/0, 1850 /*reduction*/0, 1851 /*timeout*/0, 1852 /*getcount_only*/0); 1853 1854 if (error == 0) { 1855 block_len = scsi_4btoul(rcaplong->length); 1856 maxsector = scsi_8btou64(rcaplong->addr); 1857 } 1858 1859 done: 1860 1861 if (error == 0) 1862 dasetgeom(periph, block_len, maxsector); 1863 1864 xpt_release_ccb(ccb); 1865 1866 free(rcap, M_TEMP); 1867 1868 return (error); 1869 } 1870 1871 static void 1872 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector) 1873 { 1874 struct ccb_calc_geometry ccg; 1875 struct da_softc *softc; 1876 struct disk_params *dp; 1877 1878 softc = (struct da_softc *)periph->softc; 1879 1880 dp = &softc->params; 1881 dp->secsize = block_len; 1882 dp->sectors = maxsector + 1; 1883 /* 1884 * Have the controller provide us with a geometry 1885 * for this disk. The only time the geometry 1886 * matters is when we boot and the controller 1887 * is the only one knowledgeable enough to come 1888 * up with something that will make this a bootable 1889 * device. 1890 */ 1891 xpt_setup_ccb(&ccg.ccb_h, periph->path, /*priority*/1); 1892 ccg.ccb_h.func_code = XPT_CALC_GEOMETRY; 1893 ccg.block_size = dp->secsize; 1894 ccg.volume_size = dp->sectors; 1895 ccg.heads = 0; 1896 ccg.secs_per_track = 0; 1897 ccg.cylinders = 0; 1898 xpt_action((union ccb*)&ccg); 1899 dp->heads = ccg.heads; 1900 dp->secs_per_track = ccg.secs_per_track; 1901 dp->cylinders = ccg.cylinders; 1902 } 1903 1904 static void 1905 dasendorderedtag(void *arg) 1906 { 1907 struct da_softc *softc; 1908 int s; 1909 1910 for (softc = SLIST_FIRST(&softc_list); 1911 softc != NULL; 1912 softc = SLIST_NEXT(softc, links)) { 1913 s = splsoftcam(); 1914 if ((softc->ordered_tag_count == 0) 1915 && ((softc->flags & DA_FLAG_WENT_IDLE) == 0)) { 1916 softc->flags |= DA_FLAG_NEED_OTAG; 1917 } 1918 if (softc->outstanding_cmds > 0) 1919 softc->flags &= ~DA_FLAG_WENT_IDLE; 1920 1921 softc->ordered_tag_count = 0; 1922 splx(s); 1923 } 1924 /* Queue us up again */ 1925 timeout(dasendorderedtag, NULL, 1926 (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL); 1927 } 1928 1929 /* 1930 * Step through all DA peripheral drivers, and if the device is still open, 1931 * sync the disk cache to physical media. 1932 */ 1933 static void 1934 dashutdown(void * arg, int howto) 1935 { 1936 struct cam_periph *periph; 1937 struct da_softc *softc; 1938 1939 TAILQ_FOREACH(periph, &dadriver.units, unit_links) { 1940 union ccb ccb; 1941 softc = (struct da_softc *)periph->softc; 1942 1943 /* 1944 * We only sync the cache if the drive is still open, and 1945 * if the drive is capable of it.. 1946 */ 1947 if (((softc->flags & DA_FLAG_OPEN) == 0) 1948 || (softc->quirks & DA_Q_NO_SYNC_CACHE)) 1949 continue; 1950 1951 xpt_setup_ccb(&ccb.ccb_h, periph->path, /*priority*/1); 1952 1953 ccb.ccb_h.ccb_state = DA_CCB_DUMP; 1954 scsi_synchronize_cache(&ccb.csio, 1955 /*retries*/1, 1956 /*cbfcnp*/dadone, 1957 MSG_SIMPLE_Q_TAG, 1958 /*begin_lba*/0, /* whole disk */ 1959 /*lb_count*/0, 1960 SSD_FULL_SIZE, 1961 60 * 60 * 1000); 1962 1963 xpt_polled_action(&ccb); 1964 1965 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1966 if (((ccb.ccb_h.status & CAM_STATUS_MASK) == 1967 CAM_SCSI_STATUS_ERROR) 1968 && (ccb.csio.scsi_status == SCSI_STATUS_CHECK_COND)){ 1969 int error_code, sense_key, asc, ascq; 1970 1971 scsi_extract_sense(&ccb.csio.sense_data, 1972 &error_code, &sense_key, 1973 &asc, &ascq); 1974 1975 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 1976 scsi_sense_print(&ccb.csio); 1977 } else { 1978 xpt_print_path(periph->path); 1979 printf("Synchronize cache failed, status " 1980 "== 0x%x, scsi status == 0x%x\n", 1981 ccb.ccb_h.status, ccb.csio.scsi_status); 1982 } 1983 } 1984 1985 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 1986 cam_release_devq(ccb.ccb_h.path, 1987 /*relsim_flags*/0, 1988 /*reduction*/0, 1989 /*timeout*/0, 1990 /*getcount_only*/0); 1991 1992 } 1993 } 1994 1995 #else /* !_KERNEL */ 1996 1997 /* 1998 * XXX This is only left out of the kernel build to silence warnings. If, 1999 * for some reason this function is used in the kernel, the ifdefs should 2000 * be moved so it is included both in the kernel and userland. 2001 */ 2002 void 2003 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries, 2004 void (*cbfcnp)(struct cam_periph *, union ccb *), 2005 u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave, 2006 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len, 2007 u_int32_t timeout) 2008 { 2009 struct scsi_format_unit *scsi_cmd; 2010 2011 scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes; 2012 scsi_cmd->opcode = FORMAT_UNIT; 2013 scsi_cmd->byte2 = byte2; 2014 scsi_ulto2b(ileave, scsi_cmd->interleave); 2015 2016 cam_fill_csio(csio, 2017 retries, 2018 cbfcnp, 2019 /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE, 2020 tag_action, 2021 data_ptr, 2022 dxfer_len, 2023 sense_len, 2024 sizeof(*scsi_cmd), 2025 timeout); 2026 } 2027 2028 #endif /* _KERNEL */ 2029