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