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