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