1 /*- 2 * Copyright (c) 2009 Alexander Motin <mav@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer, 10 * without modification, immediately at the beginning of the file. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include "opt_ada.h" 31 #include "opt_ata.h" 32 33 #include <sys/param.h> 34 35 #ifdef _KERNEL 36 #include <sys/systm.h> 37 #include <sys/kernel.h> 38 #include <sys/bio.h> 39 #include <sys/sysctl.h> 40 #include <sys/taskqueue.h> 41 #include <sys/lock.h> 42 #include <sys/mutex.h> 43 #include <sys/conf.h> 44 #include <sys/devicestat.h> 45 #include <sys/eventhandler.h> 46 #include <sys/malloc.h> 47 #include <sys/cons.h> 48 #include <sys/reboot.h> 49 #include <geom/geom_disk.h> 50 #endif /* _KERNEL */ 51 52 #ifndef _KERNEL 53 #include <stdio.h> 54 #include <string.h> 55 #endif /* _KERNEL */ 56 57 #include <cam/cam.h> 58 #include <cam/cam_ccb.h> 59 #include <cam/cam_periph.h> 60 #include <cam/cam_xpt_periph.h> 61 #include <cam/cam_sim.h> 62 63 #include <cam/ata/ata_all.h> 64 65 #include <machine/md_var.h> /* geometry translation */ 66 67 #ifdef _KERNEL 68 69 #define ATA_MAX_28BIT_LBA 268435455UL 70 71 typedef enum { 72 ADA_STATE_RAHEAD, 73 ADA_STATE_WCACHE, 74 ADA_STATE_NORMAL 75 } ada_state; 76 77 typedef enum { 78 ADA_FLAG_PACK_INVALID = 0x001, 79 ADA_FLAG_CAN_48BIT = 0x002, 80 ADA_FLAG_CAN_FLUSHCACHE = 0x004, 81 ADA_FLAG_CAN_NCQ = 0x008, 82 ADA_FLAG_CAN_DMA = 0x010, 83 ADA_FLAG_NEED_OTAG = 0x020, 84 ADA_FLAG_WENT_IDLE = 0x040, 85 ADA_FLAG_CAN_TRIM = 0x080, 86 ADA_FLAG_OPEN = 0x100, 87 ADA_FLAG_SCTX_INIT = 0x200, 88 ADA_FLAG_CAN_CFA = 0x400, 89 ADA_FLAG_CAN_POWERMGT = 0x800 90 } ada_flags; 91 92 typedef enum { 93 ADA_Q_NONE = 0x00, 94 ADA_Q_4K = 0x01, 95 } ada_quirks; 96 97 typedef enum { 98 ADA_CCB_RAHEAD = 0x01, 99 ADA_CCB_WCACHE = 0x02, 100 ADA_CCB_BUFFER_IO = 0x03, 101 ADA_CCB_WAITING = 0x04, 102 ADA_CCB_DUMP = 0x05, 103 ADA_CCB_TRIM = 0x06, 104 ADA_CCB_TYPE_MASK = 0x0F, 105 } ada_ccb_state; 106 107 /* Offsets into our private area for storing information */ 108 #define ccb_state ppriv_field0 109 #define ccb_bp ppriv_ptr1 110 111 struct disk_params { 112 u_int8_t heads; 113 u_int8_t secs_per_track; 114 u_int32_t cylinders; 115 u_int32_t secsize; /* Number of bytes/logical sector */ 116 u_int64_t sectors; /* Total number sectors */ 117 }; 118 119 #define TRIM_MAX_BLOCKS 8 120 #define TRIM_MAX_RANGES (TRIM_MAX_BLOCKS * 64) 121 #define TRIM_MAX_BIOS (TRIM_MAX_RANGES * 4) 122 struct trim_request { 123 uint8_t data[TRIM_MAX_RANGES * 8]; 124 struct bio *bps[TRIM_MAX_BIOS]; 125 }; 126 127 struct ada_softc { 128 struct bio_queue_head bio_queue; 129 struct bio_queue_head trim_queue; 130 ada_state state; 131 ada_flags flags; 132 ada_quirks quirks; 133 int ordered_tag_count; 134 int outstanding_cmds; 135 int trim_max_ranges; 136 int trim_running; 137 int read_ahead; 138 int write_cache; 139 #ifdef ADA_TEST_FAILURE 140 int force_read_error; 141 int force_write_error; 142 int periodic_read_error; 143 int periodic_read_count; 144 #endif 145 struct disk_params params; 146 struct disk *disk; 147 struct task sysctl_task; 148 struct sysctl_ctx_list sysctl_ctx; 149 struct sysctl_oid *sysctl_tree; 150 struct callout sendordered_c; 151 struct trim_request trim_req; 152 }; 153 154 struct ada_quirk_entry { 155 struct scsi_inquiry_pattern inq_pat; 156 ada_quirks quirks; 157 }; 158 159 static struct ada_quirk_entry ada_quirk_table[] = 160 { 161 { 162 /* Hitachi Advanced Format (4k) drives */ 163 { T_DIRECT, SIP_MEDIA_FIXED, "*", "Hitachi H??????????E3*", "*" }, 164 /*quirks*/ADA_Q_4K 165 }, 166 { 167 /* Samsung Advanced Format (4k) drives */ 168 { T_DIRECT, SIP_MEDIA_FIXED, "*", "SAMSUNG HD155UI*", "*" }, 169 /*quirks*/ADA_Q_4K 170 }, 171 { 172 /* Samsung Advanced Format (4k) drives */ 173 { T_DIRECT, SIP_MEDIA_FIXED, "*", "SAMSUNG HD204UI*", "*" }, 174 /*quirks*/ADA_Q_4K 175 }, 176 { 177 /* Seagate Barracuda Green Advanced Format (4k) drives */ 178 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST????DL*", "*" }, 179 /*quirks*/ADA_Q_4K 180 }, 181 { 182 /* Seagate Barracuda Advanced Format (4k) drives */ 183 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST???DM*", "*" }, 184 /*quirks*/ADA_Q_4K 185 }, 186 { 187 /* Seagate Barracuda Advanced Format (4k) drives */ 188 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST????DM*", "*" }, 189 /*quirks*/ADA_Q_4K 190 }, 191 { 192 /* Seagate Momentus Advanced Format (4k) drives */ 193 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9500423AS*", "*" }, 194 /*quirks*/ADA_Q_4K 195 }, 196 { 197 /* Seagate Momentus Advanced Format (4k) drives */ 198 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9500424AS*", "*" }, 199 /*quirks*/ADA_Q_4K 200 }, 201 { 202 /* Seagate Momentus Advanced Format (4k) drives */ 203 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9640423AS*", "*" }, 204 /*quirks*/ADA_Q_4K 205 }, 206 { 207 /* Seagate Momentus Advanced Format (4k) drives */ 208 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9640424AS*", "*" }, 209 /*quirks*/ADA_Q_4K 210 }, 211 { 212 /* Seagate Momentus Advanced Format (4k) drives */ 213 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9750420AS*", "*" }, 214 /*quirks*/ADA_Q_4K 215 }, 216 { 217 /* Seagate Momentus Advanced Format (4k) drives */ 218 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9750422AS*", "*" }, 219 /*quirks*/ADA_Q_4K 220 }, 221 { 222 /* Seagate Momentus Advanced Format (4k) drives */ 223 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST9750423AS*", "*" }, 224 /*quirks*/ADA_Q_4K 225 }, 226 { 227 /* Seagate Momentus Thin Advanced Format (4k) drives */ 228 { T_DIRECT, SIP_MEDIA_FIXED, "*", "ST???LT*", "*" }, 229 /*quirks*/ADA_Q_4K 230 }, 231 { 232 /* WDC Caviar Green Advanced Format (4k) drives */ 233 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD????RS*", "*" }, 234 /*quirks*/ADA_Q_4K 235 }, 236 { 237 /* WDC Caviar Green Advanced Format (4k) drives */ 238 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD????RX*", "*" }, 239 /*quirks*/ADA_Q_4K 240 }, 241 { 242 /* WDC Caviar Green Advanced Format (4k) drives */ 243 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD??????RS*", "*" }, 244 /*quirks*/ADA_Q_4K 245 }, 246 { 247 /* WDC Caviar Green Advanced Format (4k) drives */ 248 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD??????RX*", "*" }, 249 /*quirks*/ADA_Q_4K 250 }, 251 { 252 /* WDC Scorpio Black Advanced Format (4k) drives */ 253 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD???PKT*", "*" }, 254 /*quirks*/ADA_Q_4K 255 }, 256 { 257 /* WDC Scorpio Black Advanced Format (4k) drives */ 258 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD?????PKT*", "*" }, 259 /*quirks*/ADA_Q_4K 260 }, 261 { 262 /* WDC Scorpio Blue Advanced Format (4k) drives */ 263 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD???PVT*", "*" }, 264 /*quirks*/ADA_Q_4K 265 }, 266 { 267 /* WDC Scorpio Blue Advanced Format (4k) drives */ 268 { T_DIRECT, SIP_MEDIA_FIXED, "*", "WDC WD?????PVT*", "*" }, 269 /*quirks*/ADA_Q_4K 270 }, 271 { 272 /* Default */ 273 { 274 T_ANY, SIP_MEDIA_REMOVABLE|SIP_MEDIA_FIXED, 275 /*vendor*/"*", /*product*/"*", /*revision*/"*" 276 }, 277 /*quirks*/0 278 }, 279 }; 280 281 static disk_strategy_t adastrategy; 282 static dumper_t adadump; 283 static periph_init_t adainit; 284 static void adaasync(void *callback_arg, u_int32_t code, 285 struct cam_path *path, void *arg); 286 static void adasysctlinit(void *context, int pending); 287 static periph_ctor_t adaregister; 288 static periph_dtor_t adacleanup; 289 static periph_start_t adastart; 290 static periph_oninv_t adaoninvalidate; 291 static void adadone(struct cam_periph *periph, 292 union ccb *done_ccb); 293 static int adaerror(union ccb *ccb, u_int32_t cam_flags, 294 u_int32_t sense_flags); 295 static void adagetparams(struct cam_periph *periph, 296 struct ccb_getdev *cgd); 297 static timeout_t adasendorderedtag; 298 static void adashutdown(void *arg, int howto); 299 static void adasuspend(void *arg); 300 static void adaresume(void *arg); 301 302 #ifndef ADA_DEFAULT_LEGACY_ALIASES 303 #ifdef ATA_CAM 304 #define ADA_DEFAULT_LEGACY_ALIASES 1 305 #else 306 #define ADA_DEFAULT_LEGACY_ALIASES 0 307 #endif 308 #endif 309 310 #ifndef ADA_DEFAULT_TIMEOUT 311 #define ADA_DEFAULT_TIMEOUT 30 /* Timeout in seconds */ 312 #endif 313 314 #ifndef ADA_DEFAULT_RETRY 315 #define ADA_DEFAULT_RETRY 4 316 #endif 317 318 #ifndef ADA_DEFAULT_SEND_ORDERED 319 #define ADA_DEFAULT_SEND_ORDERED 1 320 #endif 321 322 #ifndef ADA_DEFAULT_SPINDOWN_SHUTDOWN 323 #define ADA_DEFAULT_SPINDOWN_SHUTDOWN 1 324 #endif 325 326 #ifndef ADA_DEFAULT_SPINDOWN_SUSPEND 327 #define ADA_DEFAULT_SPINDOWN_SUSPEND 1 328 #endif 329 330 #ifndef ADA_DEFAULT_READ_AHEAD 331 #define ADA_DEFAULT_READ_AHEAD 1 332 #endif 333 334 #ifndef ADA_DEFAULT_WRITE_CACHE 335 #define ADA_DEFAULT_WRITE_CACHE 1 336 #endif 337 338 #define ADA_RA (softc->read_ahead >= 0 ? \ 339 softc->read_ahead : ada_read_ahead) 340 #define ADA_WC (softc->write_cache >= 0 ? \ 341 softc->write_cache : ada_write_cache) 342 343 /* 344 * Most platforms map firmware geometry to actual, but some don't. If 345 * not overridden, default to nothing. 346 */ 347 #ifndef ata_disk_firmware_geom_adjust 348 #define ata_disk_firmware_geom_adjust(disk) 349 #endif 350 351 static int ada_legacy_aliases = ADA_DEFAULT_LEGACY_ALIASES; 352 static int ada_retry_count = ADA_DEFAULT_RETRY; 353 static int ada_default_timeout = ADA_DEFAULT_TIMEOUT; 354 static int ada_send_ordered = ADA_DEFAULT_SEND_ORDERED; 355 static int ada_spindown_shutdown = ADA_DEFAULT_SPINDOWN_SHUTDOWN; 356 static int ada_spindown_suspend = ADA_DEFAULT_SPINDOWN_SUSPEND; 357 static int ada_read_ahead = ADA_DEFAULT_READ_AHEAD; 358 static int ada_write_cache = ADA_DEFAULT_WRITE_CACHE; 359 360 static SYSCTL_NODE(_kern_cam, OID_AUTO, ada, CTLFLAG_RD, 0, 361 "CAM Direct Access Disk driver"); 362 SYSCTL_INT(_kern_cam_ada, OID_AUTO, legacy_aliases, CTLFLAG_RW, 363 &ada_legacy_aliases, 0, "Create legacy-like device aliases"); 364 TUNABLE_INT("kern.cam.ada.legacy_aliases", &ada_legacy_aliases); 365 SYSCTL_INT(_kern_cam_ada, OID_AUTO, retry_count, CTLFLAG_RW, 366 &ada_retry_count, 0, "Normal I/O retry count"); 367 TUNABLE_INT("kern.cam.ada.retry_count", &ada_retry_count); 368 SYSCTL_INT(_kern_cam_ada, OID_AUTO, default_timeout, CTLFLAG_RW, 369 &ada_default_timeout, 0, "Normal I/O timeout (in seconds)"); 370 TUNABLE_INT("kern.cam.ada.default_timeout", &ada_default_timeout); 371 SYSCTL_INT(_kern_cam_ada, OID_AUTO, ada_send_ordered, CTLFLAG_RW, 372 &ada_send_ordered, 0, "Send Ordered Tags"); 373 TUNABLE_INT("kern.cam.ada.ada_send_ordered", &ada_send_ordered); 374 SYSCTL_INT(_kern_cam_ada, OID_AUTO, spindown_shutdown, CTLFLAG_RW, 375 &ada_spindown_shutdown, 0, "Spin down upon shutdown"); 376 TUNABLE_INT("kern.cam.ada.spindown_shutdown", &ada_spindown_shutdown); 377 SYSCTL_INT(_kern_cam_ada, OID_AUTO, spindown_suspend, CTLFLAG_RW, 378 &ada_spindown_suspend, 0, "Spin down upon suspend"); 379 TUNABLE_INT("kern.cam.ada.spindown_suspend", &ada_spindown_suspend); 380 SYSCTL_INT(_kern_cam_ada, OID_AUTO, read_ahead, CTLFLAG_RW, 381 &ada_read_ahead, 0, "Enable disk read-ahead"); 382 TUNABLE_INT("kern.cam.ada.read_ahead", &ada_read_ahead); 383 SYSCTL_INT(_kern_cam_ada, OID_AUTO, write_cache, CTLFLAG_RW, 384 &ada_write_cache, 0, "Enable disk write cache"); 385 TUNABLE_INT("kern.cam.ada.write_cache", &ada_write_cache); 386 387 /* 388 * ADA_ORDEREDTAG_INTERVAL determines how often, relative 389 * to the default timeout, we check to see whether an ordered 390 * tagged transaction is appropriate to prevent simple tag 391 * starvation. Since we'd like to ensure that there is at least 392 * 1/2 of the timeout length left for a starved transaction to 393 * complete after we've sent an ordered tag, we must poll at least 394 * four times in every timeout period. This takes care of the worst 395 * case where a starved transaction starts during an interval that 396 * meets the requirement "don't send an ordered tag" test so it takes 397 * us two intervals to determine that a tag must be sent. 398 */ 399 #ifndef ADA_ORDEREDTAG_INTERVAL 400 #define ADA_ORDEREDTAG_INTERVAL 4 401 #endif 402 403 static struct periph_driver adadriver = 404 { 405 adainit, "ada", 406 TAILQ_HEAD_INITIALIZER(adadriver.units), /* generation */ 0 407 }; 408 409 PERIPHDRIVER_DECLARE(ada, adadriver); 410 411 static MALLOC_DEFINE(M_ATADA, "ata_da", "ata_da buffers"); 412 413 static int 414 adaopen(struct disk *dp) 415 { 416 struct cam_periph *periph; 417 struct ada_softc *softc; 418 int error; 419 420 periph = (struct cam_periph *)dp->d_drv1; 421 if (periph == NULL) { 422 return (ENXIO); 423 } 424 425 if (cam_periph_acquire(periph) != CAM_REQ_CMP) { 426 return(ENXIO); 427 } 428 429 cam_periph_lock(periph); 430 if ((error = cam_periph_hold(periph, PRIBIO|PCATCH)) != 0) { 431 cam_periph_unlock(periph); 432 cam_periph_release(periph); 433 return (error); 434 } 435 436 softc = (struct ada_softc *)periph->softc; 437 softc->flags |= ADA_FLAG_OPEN; 438 439 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, 440 ("adaopen: disk=%s%d (unit %d)\n", dp->d_name, dp->d_unit, 441 periph->unit_number)); 442 443 if ((softc->flags & ADA_FLAG_PACK_INVALID) != 0) { 444 /* Invalidate our pack information. */ 445 softc->flags &= ~ADA_FLAG_PACK_INVALID; 446 } 447 448 cam_periph_unhold(periph); 449 cam_periph_unlock(periph); 450 return (0); 451 } 452 453 static int 454 adaclose(struct disk *dp) 455 { 456 struct cam_periph *periph; 457 struct ada_softc *softc; 458 union ccb *ccb; 459 int error; 460 461 periph = (struct cam_periph *)dp->d_drv1; 462 if (periph == NULL) 463 return (ENXIO); 464 465 cam_periph_lock(periph); 466 if ((error = cam_periph_hold(periph, PRIBIO)) != 0) { 467 cam_periph_unlock(periph); 468 cam_periph_release(periph); 469 return (error); 470 } 471 472 softc = (struct ada_softc *)periph->softc; 473 /* We only sync the cache if the drive is capable of it. */ 474 if ((softc->flags & ADA_FLAG_CAN_FLUSHCACHE) != 0 && 475 (softc->flags & ADA_FLAG_PACK_INVALID) == 0) { 476 477 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL); 478 cam_fill_ataio(&ccb->ataio, 479 1, 480 adadone, 481 CAM_DIR_NONE, 482 0, 483 NULL, 484 0, 485 ada_default_timeout*1000); 486 487 if (softc->flags & ADA_FLAG_CAN_48BIT) 488 ata_48bit_cmd(&ccb->ataio, ATA_FLUSHCACHE48, 0, 0, 0); 489 else 490 ata_28bit_cmd(&ccb->ataio, ATA_FLUSHCACHE, 0, 0, 0); 491 cam_periph_runccb(ccb, /*error_routine*/NULL, /*cam_flags*/0, 492 /*sense_flags*/0, softc->disk->d_devstat); 493 494 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 495 xpt_print(periph->path, "Synchronize cache failed\n"); 496 497 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 498 cam_release_devq(ccb->ccb_h.path, 499 /*relsim_flags*/0, 500 /*reduction*/0, 501 /*timeout*/0, 502 /*getcount_only*/0); 503 xpt_release_ccb(ccb); 504 } 505 506 softc->flags &= ~ADA_FLAG_OPEN; 507 cam_periph_unhold(periph); 508 cam_periph_unlock(periph); 509 cam_periph_release(periph); 510 return (0); 511 } 512 513 static void 514 adaschedule(struct cam_periph *periph) 515 { 516 struct ada_softc *softc = (struct ada_softc *)periph->softc; 517 uint32_t prio; 518 519 /* Check if cam_periph_getccb() was called. */ 520 prio = periph->immediate_priority; 521 522 /* Check if we have more work to do. */ 523 if (bioq_first(&softc->bio_queue) || 524 (!softc->trim_running && bioq_first(&softc->trim_queue))) { 525 prio = CAM_PRIORITY_NORMAL; 526 } 527 528 /* Schedule CCB if any of above is true. */ 529 if (prio != CAM_PRIORITY_NONE) 530 xpt_schedule(periph, prio); 531 } 532 533 /* 534 * Actually translate the requested transfer into one the physical driver 535 * can understand. The transfer is described by a buf and will include 536 * only one physical transfer. 537 */ 538 static void 539 adastrategy(struct bio *bp) 540 { 541 struct cam_periph *periph; 542 struct ada_softc *softc; 543 544 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 545 if (periph == NULL) { 546 biofinish(bp, NULL, ENXIO); 547 return; 548 } 549 softc = (struct ada_softc *)periph->softc; 550 551 cam_periph_lock(periph); 552 553 /* 554 * If the device has been made invalid, error out 555 */ 556 if ((softc->flags & ADA_FLAG_PACK_INVALID)) { 557 cam_periph_unlock(periph); 558 biofinish(bp, NULL, ENXIO); 559 return; 560 } 561 562 /* 563 * Place it in the queue of disk activities for this disk 564 */ 565 if (bp->bio_cmd == BIO_DELETE && 566 (softc->flags & ADA_FLAG_CAN_TRIM)) 567 bioq_disksort(&softc->trim_queue, bp); 568 else 569 bioq_disksort(&softc->bio_queue, bp); 570 571 /* 572 * Schedule ourselves for performing the work. 573 */ 574 adaschedule(periph); 575 cam_periph_unlock(periph); 576 577 return; 578 } 579 580 static int 581 adadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length) 582 { 583 struct cam_periph *periph; 584 struct ada_softc *softc; 585 u_int secsize; 586 union ccb ccb; 587 struct disk *dp; 588 uint64_t lba; 589 uint16_t count; 590 591 dp = arg; 592 periph = dp->d_drv1; 593 if (periph == NULL) 594 return (ENXIO); 595 softc = (struct ada_softc *)periph->softc; 596 cam_periph_lock(periph); 597 secsize = softc->params.secsize; 598 lba = offset / secsize; 599 count = length / secsize; 600 601 if ((softc->flags & ADA_FLAG_PACK_INVALID) != 0) { 602 cam_periph_unlock(periph); 603 return (ENXIO); 604 } 605 606 if (length > 0) { 607 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 608 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 609 cam_fill_ataio(&ccb.ataio, 610 0, 611 adadone, 612 CAM_DIR_OUT, 613 0, 614 (u_int8_t *) virtual, 615 length, 616 ada_default_timeout*1000); 617 if ((softc->flags & ADA_FLAG_CAN_48BIT) && 618 (lba + count >= ATA_MAX_28BIT_LBA || 619 count >= 256)) { 620 ata_48bit_cmd(&ccb.ataio, ATA_WRITE_DMA48, 621 0, lba, count); 622 } else { 623 ata_28bit_cmd(&ccb.ataio, ATA_WRITE_DMA, 624 0, lba, count); 625 } 626 xpt_polled_action(&ccb); 627 628 if ((ccb.ataio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 629 printf("Aborting dump due to I/O error.\n"); 630 cam_periph_unlock(periph); 631 return(EIO); 632 } 633 cam_periph_unlock(periph); 634 return(0); 635 } 636 637 if (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) { 638 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 639 640 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 641 cam_fill_ataio(&ccb.ataio, 642 1, 643 adadone, 644 CAM_DIR_NONE, 645 0, 646 NULL, 647 0, 648 ada_default_timeout*1000); 649 650 if (softc->flags & ADA_FLAG_CAN_48BIT) 651 ata_48bit_cmd(&ccb.ataio, ATA_FLUSHCACHE48, 0, 0, 0); 652 else 653 ata_28bit_cmd(&ccb.ataio, ATA_FLUSHCACHE, 0, 0, 0); 654 xpt_polled_action(&ccb); 655 656 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 657 xpt_print(periph->path, "Synchronize cache failed\n"); 658 659 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 660 cam_release_devq(ccb.ccb_h.path, 661 /*relsim_flags*/0, 662 /*reduction*/0, 663 /*timeout*/0, 664 /*getcount_only*/0); 665 } 666 cam_periph_unlock(periph); 667 return (0); 668 } 669 670 static void 671 adainit(void) 672 { 673 cam_status status; 674 675 /* 676 * Install a global async callback. This callback will 677 * receive async callbacks like "new device found". 678 */ 679 status = xpt_register_async(AC_FOUND_DEVICE, adaasync, NULL, NULL); 680 681 if (status != CAM_REQ_CMP) { 682 printf("ada: Failed to attach master async callback " 683 "due to status 0x%x!\n", status); 684 } else if (ada_send_ordered) { 685 686 /* Register our event handlers */ 687 if ((EVENTHANDLER_REGISTER(power_suspend, adasuspend, 688 NULL, EVENTHANDLER_PRI_LAST)) == NULL) 689 printf("adainit: power event registration failed!\n"); 690 if ((EVENTHANDLER_REGISTER(power_resume, adaresume, 691 NULL, EVENTHANDLER_PRI_LAST)) == NULL) 692 printf("adainit: power event registration failed!\n"); 693 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, adashutdown, 694 NULL, SHUTDOWN_PRI_DEFAULT)) == NULL) 695 printf("adainit: shutdown event registration failed!\n"); 696 } 697 } 698 699 static void 700 adaoninvalidate(struct cam_periph *periph) 701 { 702 struct ada_softc *softc; 703 704 softc = (struct ada_softc *)periph->softc; 705 706 /* 707 * De-register any async callbacks. 708 */ 709 xpt_register_async(0, adaasync, periph, periph->path); 710 711 softc->flags |= ADA_FLAG_PACK_INVALID; 712 713 /* 714 * Return all queued I/O with ENXIO. 715 * XXX Handle any transactions queued to the card 716 * with XPT_ABORT_CCB. 717 */ 718 bioq_flush(&softc->bio_queue, NULL, ENXIO); 719 bioq_flush(&softc->trim_queue, NULL, ENXIO); 720 721 disk_gone(softc->disk); 722 xpt_print(periph->path, "lost device\n"); 723 } 724 725 static void 726 adacleanup(struct cam_periph *periph) 727 { 728 struct ada_softc *softc; 729 730 softc = (struct ada_softc *)periph->softc; 731 732 xpt_print(periph->path, "removing device entry\n"); 733 cam_periph_unlock(periph); 734 735 /* 736 * If we can't free the sysctl tree, oh well... 737 */ 738 if ((softc->flags & ADA_FLAG_SCTX_INIT) != 0 739 && sysctl_ctx_free(&softc->sysctl_ctx) != 0) { 740 xpt_print(periph->path, "can't remove sysctl context\n"); 741 } 742 743 disk_destroy(softc->disk); 744 callout_drain(&softc->sendordered_c); 745 free(softc, M_DEVBUF); 746 cam_periph_lock(periph); 747 } 748 749 static void 750 adaasync(void *callback_arg, u_int32_t code, 751 struct cam_path *path, void *arg) 752 { 753 struct cam_periph *periph; 754 struct ada_softc *softc; 755 756 periph = (struct cam_periph *)callback_arg; 757 switch (code) { 758 case AC_FOUND_DEVICE: 759 { 760 struct ccb_getdev *cgd; 761 cam_status status; 762 763 cgd = (struct ccb_getdev *)arg; 764 if (cgd == NULL) 765 break; 766 767 if (cgd->protocol != PROTO_ATA) 768 break; 769 770 /* 771 * Allocate a peripheral instance for 772 * this device and start the probe 773 * process. 774 */ 775 status = cam_periph_alloc(adaregister, adaoninvalidate, 776 adacleanup, adastart, 777 "ada", CAM_PERIPH_BIO, 778 cgd->ccb_h.path, adaasync, 779 AC_FOUND_DEVICE, cgd); 780 781 if (status != CAM_REQ_CMP 782 && status != CAM_REQ_INPROG) 783 printf("adaasync: Unable to attach to new device " 784 "due to status 0x%x\n", status); 785 break; 786 } 787 case AC_SENT_BDR: 788 case AC_BUS_RESET: 789 { 790 struct ccb_getdev cgd; 791 792 softc = (struct ada_softc *)periph->softc; 793 cam_periph_async(periph, code, path, arg); 794 if (softc->state != ADA_STATE_NORMAL) 795 break; 796 xpt_setup_ccb(&cgd.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 797 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 798 xpt_action((union ccb *)&cgd); 799 if (ADA_RA >= 0 && 800 cgd.ident_data.support.command1 & ATA_SUPPORT_LOOKAHEAD) 801 softc->state = ADA_STATE_RAHEAD; 802 else if (ADA_WC >= 0 && 803 cgd.ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) 804 softc->state = ADA_STATE_WCACHE; 805 else 806 break; 807 cam_periph_acquire(periph); 808 cam_freeze_devq_arg(periph->path, 809 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 810 xpt_schedule(periph, CAM_PRIORITY_DEV); 811 } 812 default: 813 cam_periph_async(periph, code, path, arg); 814 break; 815 } 816 } 817 818 static void 819 adasysctlinit(void *context, int pending) 820 { 821 struct cam_periph *periph; 822 struct ada_softc *softc; 823 char tmpstr[80], tmpstr2[80]; 824 825 periph = (struct cam_periph *)context; 826 827 /* periph was held for us when this task was enqueued */ 828 if (periph->flags & CAM_PERIPH_INVALID) { 829 cam_periph_release(periph); 830 return; 831 } 832 833 softc = (struct ada_softc *)periph->softc; 834 snprintf(tmpstr, sizeof(tmpstr), "CAM ADA unit %d", periph->unit_number); 835 snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number); 836 837 sysctl_ctx_init(&softc->sysctl_ctx); 838 softc->flags |= ADA_FLAG_SCTX_INIT; 839 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx, 840 SYSCTL_STATIC_CHILDREN(_kern_cam_ada), OID_AUTO, tmpstr2, 841 CTLFLAG_RD, 0, tmpstr); 842 if (softc->sysctl_tree == NULL) { 843 printf("adasysctlinit: unable to allocate sysctl tree\n"); 844 cam_periph_release(periph); 845 return; 846 } 847 848 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 849 OID_AUTO, "read_ahead", CTLFLAG_RW | CTLFLAG_MPSAFE, 850 &softc->read_ahead, 0, "Enable disk read ahead."); 851 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 852 OID_AUTO, "write_cache", CTLFLAG_RW | CTLFLAG_MPSAFE, 853 &softc->write_cache, 0, "Enable disk write cache."); 854 #ifdef ADA_TEST_FAILURE 855 /* 856 * Add a 'door bell' sysctl which allows one to set it from userland 857 * and cause something bad to happen. For the moment, we only allow 858 * whacking the next read or write. 859 */ 860 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 861 OID_AUTO, "force_read_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 862 &softc->force_read_error, 0, 863 "Force a read error for the next N reads."); 864 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 865 OID_AUTO, "force_write_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 866 &softc->force_write_error, 0, 867 "Force a write error for the next N writes."); 868 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 869 OID_AUTO, "periodic_read_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 870 &softc->periodic_read_error, 0, 871 "Force a read error every N reads (don't set too low)."); 872 #endif 873 cam_periph_release(periph); 874 } 875 876 static int 877 adagetattr(struct bio *bp) 878 { 879 int ret = -1; 880 struct cam_periph *periph; 881 882 if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL) 883 return ENXIO; 884 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 885 if (periph->path == NULL) 886 return ENXIO; 887 888 ret = xpt_getattr(bp->bio_data, bp->bio_length, bp->bio_attribute, 889 periph->path); 890 if (ret == 0) 891 bp->bio_completed = bp->bio_length; 892 return ret; 893 } 894 895 static cam_status 896 adaregister(struct cam_periph *periph, void *arg) 897 { 898 struct ada_softc *softc; 899 struct ccb_pathinq cpi; 900 struct ccb_getdev *cgd; 901 char announce_buf[80], buf1[32]; 902 struct disk_params *dp; 903 caddr_t match; 904 u_int maxio; 905 int legacy_id, quirks; 906 907 cgd = (struct ccb_getdev *)arg; 908 if (periph == NULL) { 909 printf("adaregister: periph was NULL!!\n"); 910 return(CAM_REQ_CMP_ERR); 911 } 912 913 if (cgd == NULL) { 914 printf("adaregister: no getdev CCB, can't register device\n"); 915 return(CAM_REQ_CMP_ERR); 916 } 917 918 softc = (struct ada_softc *)malloc(sizeof(*softc), M_DEVBUF, 919 M_NOWAIT|M_ZERO); 920 921 if (softc == NULL) { 922 printf("adaregister: Unable to probe new device. " 923 "Unable to allocate softc\n"); 924 return(CAM_REQ_CMP_ERR); 925 } 926 927 bioq_init(&softc->bio_queue); 928 bioq_init(&softc->trim_queue); 929 930 if (cgd->ident_data.capabilities1 & ATA_SUPPORT_DMA && 931 (cgd->inq_flags & SID_DMA)) 932 softc->flags |= ADA_FLAG_CAN_DMA; 933 if (cgd->ident_data.support.command2 & ATA_SUPPORT_ADDRESS48) 934 softc->flags |= ADA_FLAG_CAN_48BIT; 935 if (cgd->ident_data.support.command2 & ATA_SUPPORT_FLUSHCACHE) 936 softc->flags |= ADA_FLAG_CAN_FLUSHCACHE; 937 if (cgd->ident_data.support.command1 & ATA_SUPPORT_POWERMGT) 938 softc->flags |= ADA_FLAG_CAN_POWERMGT; 939 if (cgd->ident_data.satacapabilities & ATA_SUPPORT_NCQ && 940 (cgd->inq_flags & SID_DMA) && (cgd->inq_flags & SID_CmdQue)) 941 softc->flags |= ADA_FLAG_CAN_NCQ; 942 if (cgd->ident_data.support_dsm & ATA_SUPPORT_DSM_TRIM) { 943 softc->flags |= ADA_FLAG_CAN_TRIM; 944 softc->trim_max_ranges = TRIM_MAX_RANGES; 945 if (cgd->ident_data.max_dsm_blocks != 0) { 946 softc->trim_max_ranges = 947 min(cgd->ident_data.max_dsm_blocks * 64, 948 softc->trim_max_ranges); 949 } 950 } 951 if (cgd->ident_data.support.command2 & ATA_SUPPORT_CFA) 952 softc->flags |= ADA_FLAG_CAN_CFA; 953 954 periph->softc = softc; 955 956 /* 957 * See if this device has any quirks. 958 */ 959 match = cam_quirkmatch((caddr_t)&cgd->ident_data, 960 (caddr_t)ada_quirk_table, 961 sizeof(ada_quirk_table)/sizeof(*ada_quirk_table), 962 sizeof(*ada_quirk_table), ata_identify_match); 963 if (match != NULL) 964 softc->quirks = ((struct ada_quirk_entry *)match)->quirks; 965 else 966 softc->quirks = ADA_Q_NONE; 967 968 bzero(&cpi, sizeof(cpi)); 969 xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NONE); 970 cpi.ccb_h.func_code = XPT_PATH_INQ; 971 xpt_action((union ccb *)&cpi); 972 973 TASK_INIT(&softc->sysctl_task, 0, adasysctlinit, periph); 974 975 /* 976 * Register this media as a disk 977 */ 978 (void)cam_periph_hold(periph, PRIBIO); 979 mtx_unlock(periph->sim->mtx); 980 snprintf(announce_buf, sizeof(announce_buf), 981 "kern.cam.ada.%d.quirks", periph->unit_number); 982 quirks = softc->quirks; 983 TUNABLE_INT_FETCH(announce_buf, &quirks); 984 softc->quirks = quirks; 985 softc->read_ahead = -1; 986 snprintf(announce_buf, sizeof(announce_buf), 987 "kern.cam.ada.%d.read_ahead", periph->unit_number); 988 TUNABLE_INT_FETCH(announce_buf, &softc->read_ahead); 989 softc->write_cache = -1; 990 snprintf(announce_buf, sizeof(announce_buf), 991 "kern.cam.ada.%d.write_cache", periph->unit_number); 992 TUNABLE_INT_FETCH(announce_buf, &softc->write_cache); 993 adagetparams(periph, cgd); 994 softc->disk = disk_alloc(); 995 softc->disk->d_devstat = devstat_new_entry(periph->periph_name, 996 periph->unit_number, softc->params.secsize, 997 DEVSTAT_ALL_SUPPORTED, 998 DEVSTAT_TYPE_DIRECT | 999 XPORT_DEVSTAT_TYPE(cpi.transport), 1000 DEVSTAT_PRIORITY_DISK); 1001 softc->disk->d_open = adaopen; 1002 softc->disk->d_close = adaclose; 1003 softc->disk->d_strategy = adastrategy; 1004 softc->disk->d_getattr = adagetattr; 1005 softc->disk->d_dump = adadump; 1006 softc->disk->d_name = "ada"; 1007 softc->disk->d_drv1 = periph; 1008 maxio = cpi.maxio; /* Honor max I/O size of SIM */ 1009 if (maxio == 0) 1010 maxio = DFLTPHYS; /* traditional default */ 1011 else if (maxio > MAXPHYS) 1012 maxio = MAXPHYS; /* for safety */ 1013 if (softc->flags & ADA_FLAG_CAN_48BIT) 1014 maxio = min(maxio, 65536 * softc->params.secsize); 1015 else /* 28bit ATA command limit */ 1016 maxio = min(maxio, 256 * softc->params.secsize); 1017 softc->disk->d_maxsize = maxio; 1018 softc->disk->d_unit = periph->unit_number; 1019 softc->disk->d_flags = 0; 1020 if (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) 1021 softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE; 1022 if ((softc->flags & ADA_FLAG_CAN_TRIM) || 1023 ((softc->flags & ADA_FLAG_CAN_CFA) && 1024 !(softc->flags & ADA_FLAG_CAN_48BIT))) 1025 softc->disk->d_flags |= DISKFLAG_CANDELETE; 1026 strlcpy(softc->disk->d_descr, cgd->ident_data.model, 1027 MIN(sizeof(softc->disk->d_descr), sizeof(cgd->ident_data.model))); 1028 softc->disk->d_hba_vendor = cpi.hba_vendor; 1029 softc->disk->d_hba_device = cpi.hba_device; 1030 softc->disk->d_hba_subvendor = cpi.hba_subvendor; 1031 softc->disk->d_hba_subdevice = cpi.hba_subdevice; 1032 1033 softc->disk->d_sectorsize = softc->params.secsize; 1034 softc->disk->d_mediasize = (off_t)softc->params.sectors * 1035 softc->params.secsize; 1036 if (ata_physical_sector_size(&cgd->ident_data) != 1037 softc->params.secsize) { 1038 softc->disk->d_stripesize = 1039 ata_physical_sector_size(&cgd->ident_data); 1040 softc->disk->d_stripeoffset = (softc->disk->d_stripesize - 1041 ata_logical_sector_offset(&cgd->ident_data)) % 1042 softc->disk->d_stripesize; 1043 } else if (softc->quirks & ADA_Q_4K) { 1044 softc->disk->d_stripesize = 4096; 1045 softc->disk->d_stripeoffset = 0; 1046 } 1047 softc->disk->d_fwsectors = softc->params.secs_per_track; 1048 softc->disk->d_fwheads = softc->params.heads; 1049 ata_disk_firmware_geom_adjust(softc->disk); 1050 1051 if (ada_legacy_aliases) { 1052 #ifdef ATA_STATIC_ID 1053 legacy_id = xpt_path_legacy_ata_id(periph->path); 1054 #else 1055 legacy_id = softc->disk->d_unit; 1056 #endif 1057 if (legacy_id >= 0) { 1058 snprintf(announce_buf, sizeof(announce_buf), 1059 "kern.devalias.%s%d", 1060 softc->disk->d_name, softc->disk->d_unit); 1061 snprintf(buf1, sizeof(buf1), 1062 "ad%d", legacy_id); 1063 setenv(announce_buf, buf1); 1064 } 1065 } else 1066 legacy_id = -1; 1067 disk_create(softc->disk, DISK_VERSION); 1068 mtx_lock(periph->sim->mtx); 1069 cam_periph_unhold(periph); 1070 1071 dp = &softc->params; 1072 snprintf(announce_buf, sizeof(announce_buf), 1073 "%juMB (%ju %u byte sectors: %dH %dS/T %dC)", 1074 (uintmax_t)(((uintmax_t)dp->secsize * 1075 dp->sectors) / (1024*1024)), 1076 (uintmax_t)dp->sectors, 1077 dp->secsize, dp->heads, 1078 dp->secs_per_track, dp->cylinders); 1079 xpt_announce_periph(periph, announce_buf); 1080 if (legacy_id >= 0) 1081 printf("%s%d: Previously was known as ad%d\n", 1082 periph->periph_name, periph->unit_number, legacy_id); 1083 1084 /* 1085 * Create our sysctl variables, now that we know 1086 * we have successfully attached. 1087 */ 1088 cam_periph_acquire(periph); 1089 taskqueue_enqueue(taskqueue_thread, &softc->sysctl_task); 1090 1091 /* 1092 * Add async callbacks for bus reset and 1093 * bus device reset calls. I don't bother 1094 * checking if this fails as, in most cases, 1095 * the system will function just fine without 1096 * them and the only alternative would be to 1097 * not attach the device on failure. 1098 */ 1099 xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE, 1100 adaasync, periph, periph->path); 1101 1102 /* 1103 * Schedule a periodic event to occasionally send an 1104 * ordered tag to a device. 1105 */ 1106 callout_init_mtx(&softc->sendordered_c, periph->sim->mtx, 0); 1107 callout_reset(&softc->sendordered_c, 1108 (ADA_DEFAULT_TIMEOUT * hz) / ADA_ORDEREDTAG_INTERVAL, 1109 adasendorderedtag, softc); 1110 1111 if (ADA_RA >= 0 && 1112 cgd->ident_data.support.command1 & ATA_SUPPORT_LOOKAHEAD) { 1113 softc->state = ADA_STATE_RAHEAD; 1114 cam_periph_acquire(periph); 1115 cam_freeze_devq_arg(periph->path, 1116 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 1117 xpt_schedule(periph, CAM_PRIORITY_DEV); 1118 } else if (ADA_WC >= 0 && 1119 cgd->ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) { 1120 softc->state = ADA_STATE_WCACHE; 1121 cam_periph_acquire(periph); 1122 cam_freeze_devq_arg(periph->path, 1123 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 1124 xpt_schedule(periph, CAM_PRIORITY_DEV); 1125 } else 1126 softc->state = ADA_STATE_NORMAL; 1127 1128 return(CAM_REQ_CMP); 1129 } 1130 1131 static void 1132 adastart(struct cam_periph *periph, union ccb *start_ccb) 1133 { 1134 struct ada_softc *softc = (struct ada_softc *)periph->softc; 1135 struct ccb_ataio *ataio = &start_ccb->ataio; 1136 1137 switch (softc->state) { 1138 case ADA_STATE_NORMAL: 1139 { 1140 struct bio *bp; 1141 u_int8_t tag_code; 1142 1143 /* Execute immediate CCB if waiting. */ 1144 if (periph->immediate_priority <= periph->pinfo.priority) { 1145 CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE, 1146 ("queuing for immediate ccb\n")); 1147 start_ccb->ccb_h.ccb_state = ADA_CCB_WAITING; 1148 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h, 1149 periph_links.sle); 1150 periph->immediate_priority = CAM_PRIORITY_NONE; 1151 wakeup(&periph->ccb_list); 1152 /* Have more work to do, so ensure we stay scheduled */ 1153 adaschedule(periph); 1154 break; 1155 } 1156 /* Run TRIM if not running yet. */ 1157 if (!softc->trim_running && 1158 (bp = bioq_first(&softc->trim_queue)) != 0) { 1159 struct trim_request *req = &softc->trim_req; 1160 struct bio *bp1; 1161 uint64_t lastlba = (uint64_t)-1; 1162 int bps = 0, c, lastcount = 0, off, ranges = 0; 1163 1164 softc->trim_running = 1; 1165 bzero(req, sizeof(*req)); 1166 bp1 = bp; 1167 do { 1168 uint64_t lba = bp1->bio_pblkno; 1169 int count = bp1->bio_bcount / 1170 softc->params.secsize; 1171 1172 bioq_remove(&softc->trim_queue, bp1); 1173 1174 /* Try to extend the previous range. */ 1175 if (lba == lastlba) { 1176 c = min(count, 0xffff - lastcount); 1177 lastcount += c; 1178 off = (ranges - 1) * 8; 1179 req->data[off + 6] = lastcount & 0xff; 1180 req->data[off + 7] = 1181 (lastcount >> 8) & 0xff; 1182 count -= c; 1183 lba += c; 1184 } 1185 1186 while (count > 0) { 1187 c = min(count, 0xffff); 1188 off = ranges * 8; 1189 req->data[off + 0] = lba & 0xff; 1190 req->data[off + 1] = (lba >> 8) & 0xff; 1191 req->data[off + 2] = (lba >> 16) & 0xff; 1192 req->data[off + 3] = (lba >> 24) & 0xff; 1193 req->data[off + 4] = (lba >> 32) & 0xff; 1194 req->data[off + 5] = (lba >> 40) & 0xff; 1195 req->data[off + 6] = c & 0xff; 1196 req->data[off + 7] = (c >> 8) & 0xff; 1197 lba += c; 1198 count -= c; 1199 lastcount = c; 1200 ranges++; 1201 } 1202 lastlba = lba; 1203 req->bps[bps++] = bp1; 1204 bp1 = bioq_first(&softc->trim_queue); 1205 if (bps >= TRIM_MAX_BIOS || 1206 bp1 == NULL || 1207 bp1->bio_bcount / softc->params.secsize > 1208 (softc->trim_max_ranges - ranges) * 0xffff) 1209 break; 1210 } while (1); 1211 cam_fill_ataio(ataio, 1212 ada_retry_count, 1213 adadone, 1214 CAM_DIR_OUT, 1215 0, 1216 req->data, 1217 ((ranges + 63) / 64) * 512, 1218 ada_default_timeout * 1000); 1219 ata_48bit_cmd(ataio, ATA_DATA_SET_MANAGEMENT, 1220 ATA_DSM_TRIM, 0, (ranges + 63) / 64); 1221 start_ccb->ccb_h.ccb_state = ADA_CCB_TRIM; 1222 goto out; 1223 } 1224 /* Run regular command. */ 1225 bp = bioq_first(&softc->bio_queue); 1226 if (bp == NULL) { 1227 xpt_release_ccb(start_ccb); 1228 break; 1229 } 1230 bioq_remove(&softc->bio_queue, bp); 1231 1232 if ((bp->bio_flags & BIO_ORDERED) != 0 1233 || (softc->flags & ADA_FLAG_NEED_OTAG) != 0) { 1234 softc->flags &= ~ADA_FLAG_NEED_OTAG; 1235 softc->ordered_tag_count++; 1236 tag_code = 0; 1237 } else { 1238 tag_code = 1; 1239 } 1240 switch (bp->bio_cmd) { 1241 case BIO_READ: 1242 case BIO_WRITE: 1243 { 1244 uint64_t lba = bp->bio_pblkno; 1245 uint16_t count = bp->bio_bcount / softc->params.secsize; 1246 #ifdef ADA_TEST_FAILURE 1247 int fail = 0; 1248 1249 /* 1250 * Support the failure ioctls. If the command is a 1251 * read, and there are pending forced read errors, or 1252 * if a write and pending write errors, then fail this 1253 * operation with EIO. This is useful for testing 1254 * purposes. Also, support having every Nth read fail. 1255 * 1256 * This is a rather blunt tool. 1257 */ 1258 if (bp->bio_cmd == BIO_READ) { 1259 if (softc->force_read_error) { 1260 softc->force_read_error--; 1261 fail = 1; 1262 } 1263 if (softc->periodic_read_error > 0) { 1264 if (++softc->periodic_read_count >= 1265 softc->periodic_read_error) { 1266 softc->periodic_read_count = 0; 1267 fail = 1; 1268 } 1269 } 1270 } else { 1271 if (softc->force_write_error) { 1272 softc->force_write_error--; 1273 fail = 1; 1274 } 1275 } 1276 if (fail) { 1277 bp->bio_error = EIO; 1278 bp->bio_flags |= BIO_ERROR; 1279 biodone(bp); 1280 xpt_release_ccb(start_ccb); 1281 adaschedule(periph); 1282 return; 1283 } 1284 #endif 1285 cam_fill_ataio(ataio, 1286 ada_retry_count, 1287 adadone, 1288 bp->bio_cmd == BIO_READ ? 1289 CAM_DIR_IN : CAM_DIR_OUT, 1290 tag_code, 1291 bp->bio_data, 1292 bp->bio_bcount, 1293 ada_default_timeout*1000); 1294 1295 if ((softc->flags & ADA_FLAG_CAN_NCQ) && tag_code) { 1296 if (bp->bio_cmd == BIO_READ) { 1297 ata_ncq_cmd(ataio, ATA_READ_FPDMA_QUEUED, 1298 lba, count); 1299 } else { 1300 ata_ncq_cmd(ataio, ATA_WRITE_FPDMA_QUEUED, 1301 lba, count); 1302 } 1303 } else if ((softc->flags & ADA_FLAG_CAN_48BIT) && 1304 (lba + count >= ATA_MAX_28BIT_LBA || 1305 count > 256)) { 1306 if (softc->flags & ADA_FLAG_CAN_DMA) { 1307 if (bp->bio_cmd == BIO_READ) { 1308 ata_48bit_cmd(ataio, ATA_READ_DMA48, 1309 0, lba, count); 1310 } else { 1311 ata_48bit_cmd(ataio, ATA_WRITE_DMA48, 1312 0, lba, count); 1313 } 1314 } else { 1315 if (bp->bio_cmd == BIO_READ) { 1316 ata_48bit_cmd(ataio, ATA_READ_MUL48, 1317 0, lba, count); 1318 } else { 1319 ata_48bit_cmd(ataio, ATA_WRITE_MUL48, 1320 0, lba, count); 1321 } 1322 } 1323 } else { 1324 if (count == 256) 1325 count = 0; 1326 if (softc->flags & ADA_FLAG_CAN_DMA) { 1327 if (bp->bio_cmd == BIO_READ) { 1328 ata_28bit_cmd(ataio, ATA_READ_DMA, 1329 0, lba, count); 1330 } else { 1331 ata_28bit_cmd(ataio, ATA_WRITE_DMA, 1332 0, lba, count); 1333 } 1334 } else { 1335 if (bp->bio_cmd == BIO_READ) { 1336 ata_28bit_cmd(ataio, ATA_READ_MUL, 1337 0, lba, count); 1338 } else { 1339 ata_28bit_cmd(ataio, ATA_WRITE_MUL, 1340 0, lba, count); 1341 } 1342 } 1343 } 1344 break; 1345 } 1346 case BIO_DELETE: 1347 { 1348 uint64_t lba = bp->bio_pblkno; 1349 uint16_t count = bp->bio_bcount / softc->params.secsize; 1350 1351 cam_fill_ataio(ataio, 1352 ada_retry_count, 1353 adadone, 1354 CAM_DIR_NONE, 1355 0, 1356 NULL, 1357 0, 1358 ada_default_timeout*1000); 1359 1360 if (count >= 256) 1361 count = 0; 1362 ata_28bit_cmd(ataio, ATA_CFA_ERASE, 0, lba, count); 1363 break; 1364 } 1365 case BIO_FLUSH: 1366 cam_fill_ataio(ataio, 1367 1, 1368 adadone, 1369 CAM_DIR_NONE, 1370 0, 1371 NULL, 1372 0, 1373 ada_default_timeout*1000); 1374 1375 if (softc->flags & ADA_FLAG_CAN_48BIT) 1376 ata_48bit_cmd(ataio, ATA_FLUSHCACHE48, 0, 0, 0); 1377 else 1378 ata_28bit_cmd(ataio, ATA_FLUSHCACHE, 0, 0, 0); 1379 break; 1380 } 1381 start_ccb->ccb_h.ccb_state = ADA_CCB_BUFFER_IO; 1382 out: 1383 start_ccb->ccb_h.ccb_bp = bp; 1384 softc->outstanding_cmds++; 1385 xpt_action(start_ccb); 1386 1387 /* May have more work to do, so ensure we stay scheduled */ 1388 adaschedule(periph); 1389 break; 1390 } 1391 case ADA_STATE_RAHEAD: 1392 case ADA_STATE_WCACHE: 1393 { 1394 if (softc->flags & ADA_FLAG_PACK_INVALID) { 1395 softc->state = ADA_STATE_NORMAL; 1396 xpt_release_ccb(start_ccb); 1397 cam_release_devq(periph->path, 1398 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1399 adaschedule(periph); 1400 cam_periph_release_locked(periph); 1401 return; 1402 } 1403 1404 cam_fill_ataio(ataio, 1405 1, 1406 adadone, 1407 CAM_DIR_NONE, 1408 0, 1409 NULL, 1410 0, 1411 ada_default_timeout*1000); 1412 1413 if (softc->state == ADA_STATE_RAHEAD) { 1414 ata_28bit_cmd(ataio, ATA_SETFEATURES, ADA_RA ? 1415 ATA_SF_ENAB_RCACHE : ATA_SF_DIS_RCACHE, 0, 0); 1416 start_ccb->ccb_h.ccb_state = ADA_CCB_RAHEAD; 1417 } else { 1418 ata_28bit_cmd(ataio, ATA_SETFEATURES, ADA_WC ? 1419 ATA_SF_ENAB_WCACHE : ATA_SF_DIS_WCACHE, 0, 0); 1420 start_ccb->ccb_h.ccb_state = ADA_CCB_WCACHE; 1421 } 1422 xpt_action(start_ccb); 1423 break; 1424 } 1425 } 1426 } 1427 1428 static void 1429 adadone(struct cam_periph *periph, union ccb *done_ccb) 1430 { 1431 struct ada_softc *softc; 1432 struct ccb_ataio *ataio; 1433 struct ccb_getdev *cgd; 1434 1435 softc = (struct ada_softc *)periph->softc; 1436 ataio = &done_ccb->ataio; 1437 switch (ataio->ccb_h.ccb_state & ADA_CCB_TYPE_MASK) { 1438 case ADA_CCB_BUFFER_IO: 1439 case ADA_CCB_TRIM: 1440 { 1441 struct bio *bp; 1442 1443 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 1444 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1445 int error; 1446 1447 error = adaerror(done_ccb, 0, 0); 1448 if (error == ERESTART) { 1449 /* A retry was scheduled, so just return. */ 1450 return; 1451 } 1452 if (error != 0) { 1453 if (error == ENXIO && 1454 (softc->flags & ADA_FLAG_PACK_INVALID) == 0) { 1455 /* 1456 * Catastrophic error. Mark our pack as 1457 * invalid. 1458 */ 1459 /* 1460 * XXX See if this is really a media 1461 * XXX change first? 1462 */ 1463 xpt_print(periph->path, 1464 "Invalidating pack\n"); 1465 softc->flags |= ADA_FLAG_PACK_INVALID; 1466 } 1467 bp->bio_error = error; 1468 bp->bio_resid = bp->bio_bcount; 1469 bp->bio_flags |= BIO_ERROR; 1470 } else { 1471 bp->bio_resid = ataio->resid; 1472 bp->bio_error = 0; 1473 if (bp->bio_resid != 0) 1474 bp->bio_flags |= BIO_ERROR; 1475 } 1476 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1477 cam_release_devq(done_ccb->ccb_h.path, 1478 /*relsim_flags*/0, 1479 /*reduction*/0, 1480 /*timeout*/0, 1481 /*getcount_only*/0); 1482 } else { 1483 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1484 panic("REQ_CMP with QFRZN"); 1485 bp->bio_resid = ataio->resid; 1486 if (ataio->resid > 0) 1487 bp->bio_flags |= BIO_ERROR; 1488 } 1489 softc->outstanding_cmds--; 1490 if (softc->outstanding_cmds == 0) 1491 softc->flags |= ADA_FLAG_WENT_IDLE; 1492 if ((ataio->ccb_h.ccb_state & ADA_CCB_TYPE_MASK) == 1493 ADA_CCB_TRIM) { 1494 struct trim_request *req = 1495 (struct trim_request *)ataio->data_ptr; 1496 int i; 1497 1498 for (i = 1; i < TRIM_MAX_BIOS && req->bps[i]; i++) { 1499 struct bio *bp1 = req->bps[i]; 1500 1501 bp1->bio_resid = bp->bio_resid; 1502 bp1->bio_error = bp->bio_error; 1503 if (bp->bio_flags & BIO_ERROR) 1504 bp1->bio_flags |= BIO_ERROR; 1505 biodone(bp1); 1506 } 1507 softc->trim_running = 0; 1508 biodone(bp); 1509 adaschedule(periph); 1510 } else 1511 biodone(bp); 1512 break; 1513 } 1514 case ADA_CCB_RAHEAD: 1515 { 1516 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1517 if (adaerror(done_ccb, 0, 0) == ERESTART) { 1518 return; 1519 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1520 cam_release_devq(done_ccb->ccb_h.path, 1521 /*relsim_flags*/0, 1522 /*reduction*/0, 1523 /*timeout*/0, 1524 /*getcount_only*/0); 1525 } 1526 } 1527 1528 /* 1529 * Since our peripheral may be invalidated by an error 1530 * above or an external event, we must release our CCB 1531 * before releasing the reference on the peripheral. 1532 * The peripheral will only go away once the last reference 1533 * is removed, and we need it around for the CCB release 1534 * operation. 1535 */ 1536 cgd = (struct ccb_getdev *)done_ccb; 1537 xpt_setup_ccb(&cgd->ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1538 cgd->ccb_h.func_code = XPT_GDEV_TYPE; 1539 xpt_action((union ccb *)cgd); 1540 if (ADA_WC >= 0 && 1541 cgd->ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) { 1542 softc->state = ADA_STATE_WCACHE; 1543 xpt_release_ccb(done_ccb); 1544 xpt_schedule(periph, CAM_PRIORITY_DEV); 1545 return; 1546 } 1547 softc->state = ADA_STATE_NORMAL; 1548 xpt_release_ccb(done_ccb); 1549 cam_release_devq(periph->path, 1550 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1551 adaschedule(periph); 1552 cam_periph_release_locked(periph); 1553 return; 1554 } 1555 case ADA_CCB_WCACHE: 1556 { 1557 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1558 if (adaerror(done_ccb, 0, 0) == ERESTART) { 1559 return; 1560 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1561 cam_release_devq(done_ccb->ccb_h.path, 1562 /*relsim_flags*/0, 1563 /*reduction*/0, 1564 /*timeout*/0, 1565 /*getcount_only*/0); 1566 } 1567 } 1568 1569 softc->state = ADA_STATE_NORMAL; 1570 /* 1571 * Since our peripheral may be invalidated by an error 1572 * above or an external event, we must release our CCB 1573 * before releasing the reference on the peripheral. 1574 * The peripheral will only go away once the last reference 1575 * is removed, and we need it around for the CCB release 1576 * operation. 1577 */ 1578 xpt_release_ccb(done_ccb); 1579 cam_release_devq(periph->path, 1580 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1581 adaschedule(periph); 1582 cam_periph_release_locked(periph); 1583 return; 1584 } 1585 case ADA_CCB_WAITING: 1586 { 1587 /* Caller will release the CCB */ 1588 wakeup(&done_ccb->ccb_h.cbfcnp); 1589 return; 1590 } 1591 case ADA_CCB_DUMP: 1592 /* No-op. We're polling */ 1593 return; 1594 default: 1595 break; 1596 } 1597 xpt_release_ccb(done_ccb); 1598 } 1599 1600 static int 1601 adaerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags) 1602 { 1603 1604 return(cam_periph_error(ccb, cam_flags, sense_flags, NULL)); 1605 } 1606 1607 static void 1608 adagetparams(struct cam_periph *periph, struct ccb_getdev *cgd) 1609 { 1610 struct ada_softc *softc = (struct ada_softc *)periph->softc; 1611 struct disk_params *dp = &softc->params; 1612 u_int64_t lbasize48; 1613 u_int32_t lbasize; 1614 1615 dp->secsize = ata_logical_sector_size(&cgd->ident_data); 1616 if ((cgd->ident_data.atavalid & ATA_FLAG_54_58) && 1617 cgd->ident_data.current_heads && cgd->ident_data.current_sectors) { 1618 dp->heads = cgd->ident_data.current_heads; 1619 dp->secs_per_track = cgd->ident_data.current_sectors; 1620 dp->cylinders = cgd->ident_data.cylinders; 1621 dp->sectors = (u_int32_t)cgd->ident_data.current_size_1 | 1622 ((u_int32_t)cgd->ident_data.current_size_2 << 16); 1623 } else { 1624 dp->heads = cgd->ident_data.heads; 1625 dp->secs_per_track = cgd->ident_data.sectors; 1626 dp->cylinders = cgd->ident_data.cylinders; 1627 dp->sectors = cgd->ident_data.cylinders * dp->heads * dp->secs_per_track; 1628 } 1629 lbasize = (u_int32_t)cgd->ident_data.lba_size_1 | 1630 ((u_int32_t)cgd->ident_data.lba_size_2 << 16); 1631 1632 /* use the 28bit LBA size if valid or bigger than the CHS mapping */ 1633 if (cgd->ident_data.cylinders == 16383 || dp->sectors < lbasize) 1634 dp->sectors = lbasize; 1635 1636 /* use the 48bit LBA size if valid */ 1637 lbasize48 = ((u_int64_t)cgd->ident_data.lba_size48_1) | 1638 ((u_int64_t)cgd->ident_data.lba_size48_2 << 16) | 1639 ((u_int64_t)cgd->ident_data.lba_size48_3 << 32) | 1640 ((u_int64_t)cgd->ident_data.lba_size48_4 << 48); 1641 if ((cgd->ident_data.support.command2 & ATA_SUPPORT_ADDRESS48) && 1642 lbasize48 > ATA_MAX_28BIT_LBA) 1643 dp->sectors = lbasize48; 1644 } 1645 1646 static void 1647 adasendorderedtag(void *arg) 1648 { 1649 struct ada_softc *softc = arg; 1650 1651 if (ada_send_ordered) { 1652 if ((softc->ordered_tag_count == 0) 1653 && ((softc->flags & ADA_FLAG_WENT_IDLE) == 0)) { 1654 softc->flags |= ADA_FLAG_NEED_OTAG; 1655 } 1656 if (softc->outstanding_cmds > 0) 1657 softc->flags &= ~ADA_FLAG_WENT_IDLE; 1658 1659 softc->ordered_tag_count = 0; 1660 } 1661 /* Queue us up again */ 1662 callout_reset(&softc->sendordered_c, 1663 (ADA_DEFAULT_TIMEOUT * hz) / ADA_ORDEREDTAG_INTERVAL, 1664 adasendorderedtag, softc); 1665 } 1666 1667 /* 1668 * Step through all ADA peripheral drivers, and if the device is still open, 1669 * sync the disk cache to physical media. 1670 */ 1671 static void 1672 adaflush(void) 1673 { 1674 struct cam_periph *periph; 1675 struct ada_softc *softc; 1676 1677 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1678 union ccb ccb; 1679 1680 /* If we paniced with lock held - not recurse here. */ 1681 if (cam_periph_owned(periph)) 1682 continue; 1683 cam_periph_lock(periph); 1684 softc = (struct ada_softc *)periph->softc; 1685 /* 1686 * We only sync the cache if the drive is still open, and 1687 * if the drive is capable of it.. 1688 */ 1689 if (((softc->flags & ADA_FLAG_OPEN) == 0) || 1690 (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) == 0) { 1691 cam_periph_unlock(periph); 1692 continue; 1693 } 1694 1695 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1696 1697 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 1698 cam_fill_ataio(&ccb.ataio, 1699 1, 1700 adadone, 1701 CAM_DIR_NONE, 1702 0, 1703 NULL, 1704 0, 1705 ada_default_timeout*1000); 1706 1707 if (softc->flags & ADA_FLAG_CAN_48BIT) 1708 ata_48bit_cmd(&ccb.ataio, ATA_FLUSHCACHE48, 0, 0, 0); 1709 else 1710 ata_28bit_cmd(&ccb.ataio, ATA_FLUSHCACHE, 0, 0, 0); 1711 xpt_polled_action(&ccb); 1712 1713 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 1714 xpt_print(periph->path, "Synchronize cache failed\n"); 1715 1716 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 1717 cam_release_devq(ccb.ccb_h.path, 1718 /*relsim_flags*/0, 1719 /*reduction*/0, 1720 /*timeout*/0, 1721 /*getcount_only*/0); 1722 cam_periph_unlock(periph); 1723 } 1724 } 1725 1726 static void 1727 adaspindown(uint8_t cmd, int flags) 1728 { 1729 struct cam_periph *periph; 1730 struct ada_softc *softc; 1731 1732 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1733 union ccb ccb; 1734 1735 /* If we paniced with lock held - not recurse here. */ 1736 if (cam_periph_owned(periph)) 1737 continue; 1738 cam_periph_lock(periph); 1739 softc = (struct ada_softc *)periph->softc; 1740 /* 1741 * We only spin-down the drive if it is capable of it.. 1742 */ 1743 if ((softc->flags & ADA_FLAG_CAN_POWERMGT) == 0) { 1744 cam_periph_unlock(periph); 1745 continue; 1746 } 1747 1748 if (bootverbose) 1749 xpt_print(periph->path, "spin-down\n"); 1750 1751 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1752 1753 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 1754 cam_fill_ataio(&ccb.ataio, 1755 1, 1756 adadone, 1757 CAM_DIR_NONE | flags, 1758 0, 1759 NULL, 1760 0, 1761 ada_default_timeout*1000); 1762 1763 ata_28bit_cmd(&ccb.ataio, cmd, 0, 0, 0); 1764 xpt_polled_action(&ccb); 1765 1766 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 1767 xpt_print(periph->path, "Spin-down disk failed\n"); 1768 1769 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 1770 cam_release_devq(ccb.ccb_h.path, 1771 /*relsim_flags*/0, 1772 /*reduction*/0, 1773 /*timeout*/0, 1774 /*getcount_only*/0); 1775 cam_periph_unlock(periph); 1776 } 1777 } 1778 1779 static void 1780 adashutdown(void *arg, int howto) 1781 { 1782 1783 adaflush(); 1784 if (ada_spindown_shutdown != 0 && 1785 (howto & (RB_HALT | RB_POWEROFF)) != 0) 1786 adaspindown(ATA_STANDBY_IMMEDIATE, 0); 1787 } 1788 1789 static void 1790 adasuspend(void *arg) 1791 { 1792 1793 adaflush(); 1794 if (ada_spindown_suspend != 0) 1795 adaspindown(ATA_SLEEP, CAM_DEV_QFREEZE); 1796 } 1797 1798 static void 1799 adaresume(void *arg) 1800 { 1801 struct cam_periph *periph; 1802 struct ada_softc *softc; 1803 1804 if (ada_spindown_suspend == 0) 1805 return; 1806 1807 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1808 cam_periph_lock(periph); 1809 softc = (struct ada_softc *)periph->softc; 1810 /* 1811 * We only spin-down the drive if it is capable of it.. 1812 */ 1813 if ((softc->flags & ADA_FLAG_CAN_POWERMGT) == 0) { 1814 cam_periph_unlock(periph); 1815 continue; 1816 } 1817 1818 if (bootverbose) 1819 xpt_print(periph->path, "resume\n"); 1820 1821 /* 1822 * Drop freeze taken due to CAM_DEV_QFREEZE flag set on 1823 * sleep request. 1824 */ 1825 cam_release_devq(periph->path, 1826 /*relsim_flags*/0, 1827 /*openings*/0, 1828 /*timeout*/0, 1829 /*getcount_only*/0); 1830 1831 cam_periph_unlock(periph); 1832 } 1833 } 1834 1835 #endif /* _KERNEL */ 1836